@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*:after,
*:before {
    box-sizing: inherit;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background: #111;
}


/* ============================ First Section =============================== */


/* Header */

section {
    position: relative;
    padding: 10rem;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2.5rem;
}

.header .logo {
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
}

.header .toggle img {
    max-width: 4rem;
    cursor: pointer;
}

.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25rem;
    z-index: 1;
    background: linear-gradient(to top, #111, transparent);
}

.banner .content {
    position: relative;
    max-width: 90rem;
    text-align: center;
    z-index: 1;
}

.banner .content h2 {
    color: #fff;
    font-size: 7rem;
}

.banner .content p {
    color: #fff;
    font-size: 1.6rem;
}

.btn {
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
    margin-top: 3rem;
    padding: 1rem 3rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    transition: .7s;
    overflow: hidden;
}

.btn:hover {
    background-color: rgba(1, 1, 1, .4);
    color: #fff;
    box-shadow: 0 0 1rem rgb(158, 47, 3), 0 0 4rem rgb(158, 47, 3), 0 0 8rem rgb(158, 47, 3), 0 0 .16rem rgb(158, 47, 3);
    transform: scale(1.2);
    transition-delay: 1s;
}

.btn span {
    display: block;
    position: absolute;
}

.btn span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 0.3rem;
    background: linear-gradient(90deg, transparent, rgb(158, 47, 3));
}

.btn:hover span:nth-child(1) {
    left: 100%;
    transition: 1s;
}

.btn span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 0.3rem;
    background: linear-gradient(270deg, transparent, rgb(158, 47, 3));
}

.btn:hover span:nth-child(3) {
    right: 100%;
    transition: 1s;
    transition-delay: .5s;
}

.btn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 0.3rem;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgb(158, 47, 3));
}

.btn:hover span:nth-child(2) {
    top: 100%;
    transition: 1s;
    transition-delay: .25s;
}

.btn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 0.3rem;
    height: 100%;
    background: linear-gradient(360deg, transparent, rgb(158, 47, 3));
}

.btn:hover span:nth-child(4) {
    bottom: 100%;
    transition: 1s;
    transition-delay: .75s;
}

.fitBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
}


/* ============================ Second Section =============================== */


/* About */

.about {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .contentBx {
    max-width: 50%;
    width: 50%;
    text-align: end;
    padding: 4rem;
}

.titleText {
    font-weight: 600;
    color: #fff;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.text {
    color: #fff;
    font-size: 1.6rem;
}

.about .imgBx {
    position: relative;
    min-width: 50%;
    width: 50%;
    min-height: 50rem;
}


/* ============================ Third Section and Section Five =============================== */


/* Banner2 y Banner3*/

.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: 25rem;
    z-index: 1;
    background: linear-gradient(to top, #111, transparent);
}

.banner2:after,
.banner3:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25rem;
    z-index: 1;
    background: linear-gradient(to bottom, #111, transparent);
}


/* ============================ Section Four  =============================== */


/* Destination */

.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: 4rem;
}

.destination .destinationList .box {
    position: relative;
    min-width: 33.4rem;
    height: 48rem;
    background: #191919;
    transition: .5s;
    margin: 1rem;
}

.destination .destinationList:hover .box {
    opacity: 0.4;
}

.destination .destinationList .box:hover {
    opacity: 1;
}

.destination .destinationList .box .imgBx {
    position: relative;
    width: 100%;
    height: 40rem;
}

.destination .destinationList .box .content {
    width: 100%;
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.destination .destinationList .box .content h2 {
    color: #fff;
    font-weight: 500;
    line-height: 3rem;
    font-size: 2.2rem;
}

.destination .destinationList .box .content h2 span {
    font-size: 1.6rem;
    font-weight: 300;
    opacity: .5;
}


/* ============================ Section Six =============================== */


/* Footer */

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer .sci {
    position: relative;
    display: flex;
}

.footer .sci li {
    list-style: none;
}

.footer .sci li a {
    text-decoration: none;
    margin: 0 2rem;
}

.footer .sci li a img {
    filter: invert(1);
    max-width: 4rem;
}

.copyrightText {
    margin-top: 2rem;
    color: #666;
    font-size: 1.8rem;
    font-weight: 300;
}

.copyrightText a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    section {
        padding: 4rem;
    }
    .banner .content h2 {
        font-size: 4.3rem;
    }
    .banner .content p {
        font-size: 1.4rem;
    }
    .about {
        flex-direction: column;
    }
    .about .contentBx,
    .about .imgBx {
        min-width: 100%;
        width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .about .imgBx {
        min-height: 25rem;
    }
    .btn {
        margin-bottom: 3rem;
    }
    .destination .destinationList .box {
        position: relative;
        max-width: 35rem;
        min-width: initial;
        width: 35rem;
        height: 40rem;
    }
    .destination .destinationList .box .imgBx {
        height: 32rem;
    }
    .footer .sci li a img {
        max-width: 3rem;
    }
}