
body{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header{
    border-bottom: 1px solid #ddd; 
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}
.page-wrapper{
    max-width: 1500px;
    align-self: center;
}

.logo-label{
    color:#eee;
}
.banner-title{
    margin-top:10%;
}
.banner-desc{
    margin-top:4%;
    text-align: center;
}
.banner-image-crop{
    position: relative;  /* provide a positioning context */
	overflow: hidden;
	height: 1000px;       /* make space */
    z-index: -1;
    margin-top:-60px;
}
.banner-image{
    position: absolute;
	left: -100%;         /* anchor the image corners outside the viewable area (increase for large images) */
	right: -100%;
	top: -100%;
	bottom: -100%;
	width: auto;         /* dynamic width based on viewable area */
	height: 1000px;       /* set height (swap these for variable height) */
	margin: auto;        /* centre the image */
}
.tour-card{
    width: 25%;
    margin-top:10px;
    cursor: pointer;
}
.tour-card:hover{
    opacity: 0.5;
}
.tour-card-block{
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
}
.service-card{
    width: 33%;
    margin-top:20px;
    height: 160px;
}
.service-card:last-child{
    margin-bottom:20px;
}
.service-card-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 20px;
    padding: 16px 10%;
    border-radius: 4px;
    background-color: white;
    height: 130px;
}
.tour-card-img-crop{
    border-radius: 4px;
    position: relative;  /* provide a positioning context */
	overflow: hidden;
	height: 270px;       /* make space */
}
.tour-card-img{
    position: absolute;
	left: -100%;         /* anchor the image corners outside the viewable area (increase for large images) */
	right: -100%;
	top: -100%;
	bottom: -100%;
	width: auto;         /* dynamic width based on viewable area */
	height: 270px;       /* set height (swap these for variable height) */
	margin: auto;        /* centre the image */
}
.createTrip{
    color:white;
    margin-top:20px;
    border: solid 1px white;
    padding: 4px 20px;
    cursor: pointer;
}
.createTrip:hover{
    color:rgb(204, 73, 17);
    border: solid 1px rgb(204, 73, 17);
}
#seeMore:hover{
    background-color: rgb(244, 244, 244);
}
.more-clicked{
    background-color: rgb(244, 244, 244);
}
@media (max-width: 1500px) {
    .service-card-block{
        height: 130px;
    }
    .service-card{
        height: 160px;
    }
    .banner-image-crop,.banner-image{
        height: 970px;
    }
}
@media (max-width: 1400px) {
    .service-card-block{
        height: 150px;
    }
    .service-card{
        height: 180px;
    }
    .banner-image-crop,.banner-image{
        height: 870px;
    }
}
@media (max-width: 1300px) {
    .service-card-block{
        height: 180px;
    }
    .service-card{
        height: 210px;
    }
    .banner-image-crop,.banner-image{
        height: 770px;
    }
}
@media (max-width: 1150px) {
    .banner-image-crop,.banner-image{
        height: 670px;
    }
}
@media (max-width: 1024px) {
    .banner-title{
        margin-top:10%;
    }
    .banner-desc{
        margin-top:4%;
    }
    .tour-card,.service-card{
        width: 50%;
    }
    .service-card-block{
        height: 140px;
    }
    .service-card{
        height: 170px;
    }
    .banner-image-crop,.banner-image{
        height: 570px;
    }
    .tour-card-img-crop,.tour-card-img{
        height: 320px;
    }
}
@media (max-width: 767px) {
    .banner-title{
        margin-top:20px;
    }
    .banner-desc{
        margin-top:20px;
    }
    .tour-card{
        width: 50%;
    }
    .service-card{
        height: 130px;
        width: 100%;
    }
    .service-card-block{
        height: 100px;
    }
    .banner-image-crop,.banner-image{
        height: 430px;
    }
    .tour-card-img-crop,.tour-card-img{
        height: 280px;
    }
}
@media (max-width: 600px) {
    .tour-card{
        width: 50%;
    }
    .tour-card-img-crop,.tour-card-img{
        height: 270px;
    }
}
@media (max-width: 500px) {
    .tour-card,.service-card{
        width: 100%;
    }
    .banner-image-crop,.banner-image{
        height: 330px;
    }
    .tour-card-img-crop,.tour-card-img{
        height: 330px;
    }
}
@media (max-width: 400px) {
    .tour-card-img-crop,.tour-card-img{
        height: 270px;
    }
}