*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ranchers', cursive;
    scroll-behavior: smooth;
}
body
{
    background: #111;
}
section
{
    padding: 100px;
    position: relative;
}
.header
{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;

}

.header .logo
{
    font-family: 'Ranchers', cursive;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.header .logo:hover 
{
    color: rgb(0, 0, 0);
}

.toggle 
{
    position: fixed;
    top: 0px;
    right:30px;
    width: 60px;
    height: 60px;
    background: url(./images/toggle.png); /*Changes made */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    cursor: pointer;
    z-index: 1000;   
}
.toggle.active
{
    background:transparent url(./images/close.png); /*Changes made */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
    /* filter: invert(1); */
}
.toggle .bars:hover{
    color: rgb(8, 155, 160);
}
.nav
{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);  /*Changes made */
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
   
}
.nav.active
{
    left: 0px;
}
.nav ul{
    position: relative;
}
.nav ul li
{
    position: relative;
    list-style: none;
    text-align: center;
    padding-bottom: 20px;
    
    
}
.nav ul li a
{
    font-size: 2.5em;
    color: rgb(199, 198, 198);
    text-decoration: none;
    font-weight: 300;

}
.nav ul li a:hover
{
    color:rgb(8, 155, 160);
}





.banner
{
    position: relative;
    widows: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner::before
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index:1;
    background: linear-gradient(to top,#111,transparent);
}

.banner .content,
.banner2 .content,
.banner3 .content
{
    position: relative;
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.banner .content h2
{
    color: #fff;
    font-size: 5em;
}

.banner2 .content h2
{
    color: #fff;
    font-size: 3em;
}
.banner3 .content h2
{
    color: #fff;
    font-size: 3em;
}


.banner .content p
{
    color: #fff;
    font-size: 1.2em;
}
.banner3 .content p
{
    color: #fff;
    font-size: 1.2em;
}

.btn
{
    position: relative;
    display: inline-block;
    margin-top: 30px;
    padding:10px 30px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
}

.btn:hover
{
    color: #fff;
    background: rgb(8, 155, 160);
    transition: 0.2s ease-in-out;
}

.fitbg
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.about
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about .contentBx
{
    min-width: 50%;
    width: 50%;
    text-align: end;
    padding-right: 40px;
}
.titleText
{
    font-weight: 600;
    color: #fff;
    font-size: 2em;
    margin-bottom: 10px;
}
.text
{
    color: #fff;
    font-size: 1em;   
}
.about .imgbx
{
    position: relative;
    min-width: 50%;
    width: 50%;
    min-height: 500px;
}
.banner2,
.banner3
{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;    
}
.banner2::before,
.banner3::before
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index:1;
    background: linear-gradient(to top,#111,transparent);
}
.banner2::after,
.banner3::after
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index:1;
    background: linear-gradient(to bottom,#111,transparent);
}
.destination
{
    text-align: center;
}
.destination .content
{
    text-align: center;
}
.destination .destinationList
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.destination .destinationList .box
{
    position: relative;
    min-width: 265px;
    width: 265px;
    height: 400px;
    background: #191919;
    transition: 0.5s;
    margin: 10px;
}
.destination .destinationList:hover .box
{
    opacity: 0.2;
}
.destination .destinationList .box:hover
{
    opacity: 1;
}
.destination .destinationList .box .imgbx
{
    position: relative;
    width: 100%;
    height: 320px;
}
.destination .destinationList .box .content
{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.destination .destinationList .box .content h2
{
    color: #fff;
    font-weight: 500;
    line-height: 1.2em;    
}
.destination .destinationList .box .content h2 span
{
    font-size: 0.8em;
    font-weight: 300;
    opacity: 0.5;
}
.footer
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 200px;
}
.footer .sci
{
    position: relative;
    display: flex;
    
}
.footer .sci li
{
    list-style: none;
}
.footer .sci li a
{
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    
}
.footer .sci li a .fa
{
  
    margin-top: 20px;
    transition: all 0.5s ease;
}

.footer .sci li:hover .fa-facebook 
{
    color: #3b5998;
    text-shadow: 0 0 15px #3b5998;
    transition: all 0.5s ease;  
}

.footer .sci li:hover .fa-twitter {
    color: #00aced;
    text-shadow: 0 0 15px #00aced;
    transition: all 0.5s ease;
  }

  .footer .sci li:hover .fa-instagram {
    color: #bc2a8d;
    text-shadow: 0 0 15px #bc2a8d;
    transition: all 0.5s ease;
  }

.copyrightText
{
    margin-top: 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    color: #666;
    text-align: center;   
}
.copyrightText a
{
    text-decoration: none;
    color: #fff;
    font-weight: 300;
}


@media (max-width: 767px)
{
    section
    {
        padding: 40px;
    }
    .banner .content h2
    {
        font-size: 2.5em;
    }
    .banner .content p
    {
        font-size: 1em;
    }
    .about
    {
        flex-direction: column;
    }
    .about .contentBx,
    .about .imgbx
    {
        min-width: 100%;
        width: 100;
        text-align: center;
        padding-right: 0px;
    }
    .about .imgbx
    {
        min-height: 250px;
    }
    .btn
    {
        margin-bottom: 30px;
    }
    .destination .destinationList .box
    {
        position: relative;
        max-width: 350px;
        width: 350px;
        height: 400px;
        min-width:initial;
    }
    .destination .destinationList .box .imgbx
    {
        height: 320px;
    }
    .footer .sci li a .img 
    {
        max-width: 30px;
    }
}