/*banner*/
.banner{
    background-image: url('../image/about-banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
    position: relative;
    margin-top: -60px;
    z-index: 3;
}
.banner__text{
    text-align: center;
}
.banner__text h2{
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 39px;
}
.banner__text p{
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    width: 60%;
    margin: auto;
}
/*end banner*/

/*intro*/
.intro{
    padding: 50px 0;
    background-color: #f9f9f9;
}
.main__intro{
    width: 80%;
    /*display: flex;
    flex-wrap: wrap;
    justify-content: space-between;*/
    margin: auto;
        column-count: 2;
}
.main__intro p{
	    break-inside: avoid;
}
.intro__content{
    width: 48%;
}
.intro__content h3{
    font-size: 30px;
    font-weight: 700;
    color: #363636;
    line-height: 40px;
    margin-bottom: 25px;
}
.intro__content p{
    font-size: 15px;
    color: #808285;
    line-height: 27px;
}
/*end intro*/

/*general information*/
.general__information{
    padding: 50px 0;
}
.main__general__info{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}
.list__general__info{
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
    text-align: center;
}
.general__info__content img{
	width: 100px;
	margin: 0 auto;
}
.general__info__content h4{
    font-size: 20px;
    color: #363636;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.general__info__content p{
    font-size: 15px;
    color: #808285;
    line-height: 27px;
}
/*end general information*/

/*recommended tour*/
.recommended__tour{
    padding: 50px 0;
    background-color: #f9f9f9;
}
.recommended__tour h3{
    font-size: 30px;
    color: #363636;
    line-height: 40px;
    margin-left: 10%;
    margin-bottom: 30px;
}
.main__recommended__tour{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}
.list__recommended__tour{
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}
.recommended__tour__content{
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}
.recommended__tour__content img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.recommended__tour__des{
    position: absolute;
    width: 100%;
    transform: translateY(-50px);
    background-color: #fff;
    padding: 20px;
    text-align: center;
    transition: all .3s cubic-bezier(.29,.22,.11,1.33);
}
.recommended__tour__content:hover .recommended__tour__des{
    transform: translateY(-120px);
    transition: all .3s cubic-bezier(.29,.22,.11,1.33);
}
.recommended__tour__content:hover .recommended__text__inner p{
    opacity: 1;
    transition: all ease-in-out 0.3s;
}
.title__recommended{
    display: flex;
    justify-content: space-between;
}
.title__recommended a{
    font-family: "Poppins";
    font-size: 20px;
    color: #363636;
    font-weight: 700;
}
.title__recommended span{
    font-size: 20px;
    color: #00bdbb;
    font-weight: 700;
}
.recommended__text__inner{
    padding-bottom: 20px;
}
.recommended__text__inner p{
    font-size: 15px;
    color: #808285;
    line-height: 27px;
    opacity: 0;
    transition: all ease-in-out 0.3s;
}
/*end recommended tour*/

/*slide activities*/
.activities{
    padding: 50px 0;
}
.slide__activities{
    width: 80% !important;
    margin: auto;
}
.activities__image img{
    transition: color .25s ease-in-out;
}
/*end slide activities*/


@media only screen and (max-width: 1200px){
    .banner{
        position: static;
        height: 300px;
        margin-top: 0;
    }
    .banner__text h2{
        font-size: 26px;
    }
    .main__intro,
    .main__general__info,
    .main__recommended__tour{
        width: 95%;
    }
    .intro__content{
        width: 100%;
        margin-bottom: 20px;
    }
    .list__general__info,
    .list__recommended__tour{
        width: 50%;
    }
    .recommended__tour h3{
        margin-left: calc(2.5% + 15px);
    }
    .slide__activities{
        width: 95% !important;
    }

}

@media only screen and (max-width: 767.98px){
    .banner__text p{
        display: none;
    }
    .banner{
        height: 200px;
    }
    .banner__text h2{
        font-size: 20px;
    }
    .list__general__info, .list__recommended__tour{
        width: 100%;
    }
	.main__intro{
		column-count: 1;
	}

}