body{
    margin: 0;
}
html{
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
    margin: 0;
}

/* inside the container */
.container{
    height: 100vh;
    max-width: 1140px;
    margin: 0px 10%;
    margin: auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
/* inside the container */

/* start header */
header{
    background-image: url(/image/BG11.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 10;
    left: 0px;
    right: 0px;
}
header .header-content{
    justify-content: space-between;
    display: flex;
    flex: 50%;
    margin:  27px 5%;
}
header .header-content .header-nav{
    display: flex;
}
header .header-content .header-nav a{
    margin: 0px 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
}
header .header-content .header-cnav{
    display: flex;
}
header .header-content .header-cnav a{
    margin: 0px 10px;
    color: #ffffff;
    font-size: 20px;
}

/* Header fixed */
header.fixed{
    background: none;
    background-color: #2e3136;
    position: fixed;
    transition: ease .5s;
}
header.fixed .header-content{
    margin:  17px 5%;
}
/* end header */

/* start home1 */
.home1{
    background-image: url(/image/BG11.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home1 .container{
    height: 50vh;
}
.home1 .home1-content{
    display: flex;
    margin: 10% auto;
    color: #ffffff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.home1 .home1-content .simp{
    font-size: 38px;
    font-weight: bolder;
    margin-right: 10px;
}
.home1 .home1-content .trav{
    font-size: 38px;
    font-weight: 100;
    border: 3px solid #ffffff;
    padding: 20px 10px;
    margin-top: -23px;
}
/* end home1 */

/* start home2 */
.home2{
    height: 330vh;
}
.home2 .home2-content{
    display: flex;
    margin-top: 50px;
}
.home2 .home2-content .left-side{
    width: 50%;
}
.home2 .home2-content .left-side h2{
    font-size: 36px;
    margin-bottom: 30px;
}
.home2 .home2-content .left-side h4{
    font-size: 20px;
    margin: 25px 0;
}
.home2 .home2-content .right-side{
    width: 50%;text-align: center;
}
.home2 .home2-content .right-side img{
    border: 1px solid black;
    height: 650px;
    width: 506px;
}
.home2 .home2-content .right-side .fa{
    background-color: #59b9de;
    color: #ffffff;
    padding: 30px;
    font-size: 40px;
    margin: 0px 1.437px;
    transition: ease .5s;
}
.home2 .home2-content .right-side .fa-facebook{
    padding: 30px 37px;
}
.home2 .home2-content .right-side .fa-facebook:hover{
    background-color: #3e63ad;
}
.home2 .home2-content .right-side .fa-instagram:hover{
    background-color: rgb(58, 63, 59);
}
.home2 .home2-content .right-side .fa-youtube:hover{
    background-color: rgb(253, 74, 74);
}
.home2 .home2-content .right-side .fa-twitter:hover{
    background-color: #00a2ff;
}
.home2 .home2-content .right-side .fa-pinterest:hover{
    background-color: #c73a3a;
}
/* end home2 */

/* start footer */
footer{
    /* margin-top: 100%; */
    height: 10vh;
    background-color: #2e3136;
}
footer .footer-content{
    margin: auto;
    margin-top: 25px;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
}
/* end footer */