.hideScrolled{
    opacity: 0;
    filter: blur(5px);
}

.hideScrolled.top{
    transform: translateY(-100%) !important;
}

.hideScrolled.bottom{
    transform: translateY(100%) !important;
}

.hideScrolled.right{
    transform: translateX(100%) !important;
}

.hideScrolled.left{
    transform: translateX(-100%) !important;
}

.showScrolled{
    opacity: 1;
    filter: blur(0);
    transform: none;
}

.hideScrolled, .showScrolled {
    transition: 1s cubic-bezier(0.415, 1.485, 0.535, 1.000) !important;
}

/* --------------------- Hero --------------------- */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 6, 19, 0.55);
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 6, 19, 1) 50%); */
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.3s;
}

.hero{
    z-index: 0;
    position: relative;
    display: flex;
    height: 100vh;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.hero img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgb(0,10,33);
    background: -moz-linear-gradient(90deg, rgba(0,10,33,0.7203256302521008) 17%, rgba(0,10,33,0.41780462184873945) 55%, rgba(0,6,19,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,10,33,0.7203256302521008) 17%, rgba(0,10,33,0.41780462184873945) 55%, rgba(0,6,19,0) 100%);
    background: linear-gradient(90deg, rgba(0,10,33,0.7203256302521008) 17%, rgba(0,10,33,0.41780462184873945) 55%, rgba(0,6,19,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000a21",endColorstr="#000613",GradientType=1); */
    background: rgb(0,6,19);
    background: -moz-linear-gradient(0deg, rgba(0,6,19,1) 0%, rgba(0,6,19,0.6026785714285714) 25%, rgba(0,6,19,0) 50%);
    background: -webkit-linear-gradient(0deg, rgba(0,6,19,1) 0%, rgba(0,6,19,0.6026785714285714) 25%, rgba(0,6,19,0) 50%);
    background: linear-gradient(0deg, rgba(0,6,19,1) 0%, rgba(0,6,19,0.6026785714285714) 25%, rgba(0,6,19,0) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000613",endColorstr="#000613",GradientType=1);
    z-index: 2;
    pointer-events: none;
}

.hero-text{
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: white;
    z-index: 5;
}

.hero-title{
    text-align: center;
    width: 100%;
}

.hero-title-1{
    position: relative;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: .9;
    margin: 0 auto;
    display: block;
    width: 80%;
}

.hero-title-2{
    position: relative;
    font-size: 7rem;
    font-weight: 700;
    line-height: .9;
    margin-top: 0;
}

.hero-paragraph{
    position: relative;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 2;
    text-transform: none;
    width: 60%;
    margin: 3% auto;
    text-align: justify;
    text-align-last: center;
}

/* --------------------- End Hero --------------------- */

/* --------------------- Destinations --------------------- */

.destinations-container{
    z-index: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding: 5rem 0;
}

.image-overlay-2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 6, 19);
    z-index: 6;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.destination {
    height: 40vh;
    width: 70vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 5rem 0;
    z-index: 10;
}

.image {
    width: 50%;
    /* height: 100%; */
    aspect-ratio: 16 / 9;
    object-fit: cover;
    padding: 0 1rem;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.text {
    display: flex;
    align-items: center;
    height: 100%;
    width: 50%;
    padding: 0 1rem;
    color: white;
    flex-wrap: wrap;
    align-content: center;
    font-size: 1.5rem;
    font-weight: 200;
}

.text h1 {
    width: 100%;
    font-weight: 700;
    font-size: 4rem;
}

.read-more{
    color: #bbbbbb;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #bbbbbb;
    border-radius: .5rem;
    transition: .25s ease;
}

.read-more:hover{
    color: white;
    border: 1px solid white;
}

/* --------------------- End Destinations --------------------- */

@media (max-width: 1700px){

    .destination {
        width: 90vw;
    }
}

@media (max-width: 1300px){

    .hero-title-1 {
        font-size: 3rem;
    }

    .hero-paragraph {
        width: 80%;
    }


    .text {
        font-size: 1.2rem;
    }

    .text h1 {
        font-size: 3rem;
    }

}

@media (max-width: 1000px){

    .text h1 {
        font-size: 2.3rem;
    }

    .text {
        font-size: 1rem;
        line-height: 2rem;
    }

}

@media (max-width: 900px){

    .hero-title-1 {
        font-size: 2.3rem;
    }

    .hero-paragraph {
        font-size: 1rem;
    }
}

@media (max-width: 800px){

    .destination{
        height: auto;
        justify-content: center;
    }

    .image{
        width: 80%;
        order: 1;
    }

    .text{
        width: 100%;
        height: 50%;
        text-align: center;
        justify-content: center;
        order: 2;
    }

}

@media (max-width: 700px){

    .hero-title-1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .hero-paragraph {
        font-size: 0.9rem;
    }
}

@media (max-width: 500px){

    .hero-title-1 {
        font-size: 1.3rem;
    }

}

@media (max-width: 600px){

    .destination {
        margin: 4rem 0;
    }

    .image{
        width: 100%;
    }

    .text{
        font-size: 0.9rem;
        height: 55%;
    }

}

@media (max-width: 450px){

    .destination {
        margin: 3rem 0;
    }

    .text{
        height: 65%;
    }

    .text h1 {
        font-size: 2rem;
    }

}
