/* ------------------- Animate on scroll ------------------- */
.hideScrolled{
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.25);
    transition: 1s ease;
}

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

/* ------------------- End Animate on scroll ------------------- */


.bg-1,
.bg-2,
.bg-last{
    position: relative;
    display: block;
    height: 100vh;
}

.bg-1 img,
.bg-2 img,
.bg-3 img,
.bg-last img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-1::before,
.bg-2::before,
.darkerbg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,6,19);
    background: -moz-linear-gradient(90deg, rgba(0,6,19,0.9) 31%, rgba(0,6,19,0.45702030812324934) 66%, rgba(0,6,19,0) 86%);
    background: -webkit-linear-gradient(90deg, rgba(0,6,19,0.9) 31%, rgba(0,6,19,0.45702030812324934) 66%, rgba(0,6,19,0) 86%);
    background: linear-gradient(90deg, rgba(0,6,19,0.9) 31%, rgba(0,6,19,0.45702030812324934) 66%, rgba(0,6,19,0) 86%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000613",endColorstr="#000613",GradientType=1);
    z-index: 2;
    pointer-events: none;
}

.darkerbg::before{
    background: rgba(0, 6, 19, 0.75);
    backdrop-filter: blur(10px);
}

.hero-text{
    position: absolute;
    top: 50%;
    left: 7%;
    text-transform: uppercase;
    transform: translate(0,-50%);
    color: white;
    z-index: 3;
}

.bg-last .hero-text{
    left: 0;
    width: 100%;
    text-align: center;
}

.hero-title-1{
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    line-height: .9;
    margin-top: 0;
    display: block;
    width: 100%;
}

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

.hero-paragraph{
    position: relative;
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    text-transform: none;
    width: 45%;
    margin-top: 3%;
    margin-left: 10px;
    text-align: justify;
}

.bg-last .hero-title-1{
    font-weight: 600;
}

.bg-last .hero-paragraph{
    font-size: 1.1rem;
    width: 65%;
    margin: auto;
    margin-top: 3%;
    text-align: justify;
    text-align-last: center;
}

.hero-paragraph::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 10%;
    width: 3px;
    height: 80%;
    background-color: white;
    border-radius: 50px;
}

.bg-last .hero-paragraph::before{
    background-color: transparent;
}

.bg-3{
    position: relative;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

/* ---------------------------- Attractions & Activities ---------------------------- */

.attractions-title{
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translate(-50%, -15%);
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    z-index: 1010;
}

.horizontal-boxes-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 65vh;
    width: 65vw;
    overflow: hidden;
    border-radius: 1rem;
    z-index: 3;
    transition: .25s ease-out;
}

.horizontal-box {
    position: relative;
    height: 1%;
    border-radius: .25rem;
    flex-grow: 1;
    transition: .5s ease;
}

.horizontal-box:hover {
    flex: 1;
    height: 100%;
}

.horizontal-boxes-container:hover .horizontal-box:not(:hover) {
    flex: 0;
    height: 0;
    opacity: 0;
    filter: blur(25px);
}

.horizontal-box img{
    position: relative;
}

.box-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
    transition: .75s ease;
}

.box-gradient{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,6,19);
    background: -moz-linear-gradient(0deg, rgba(0,6,19,0.9) 0%, rgba(0,6,19,0.45702030812324934) 31%, rgba(0,6,19,0) 65%);
    background: -webkit-linear-gradient(0deg, rgba(0,6,19,0.9) 0%, rgba(0,6,19,0.45702030812324934) 31%, rgba(0,6,19,0) 65%);
    background: linear-gradient(0deg, rgba(0,6,19,0.9) 0%, rgba(0,6,19,0.45702030812324934) 31%, rgba(0,6,19,0) 65%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000613",endColorstr="#000613",GradientType=1);
    opacity: 0;
    z-index: 1;
    transition: .75s ease;
}

.box-title-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 200;
    z-index: 2;
    transition: .5s ease;
}

.box-title-left{
    position: absolute;
    top: auto;
    bottom: 10%;
    left: 0;
    padding: 0 1rem;
    transform: none;
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: left;
    color: white;
    line-height: 35px;
    text-transform: capitalize;
    z-index: 2;
    transition: .5s ease;
    opacity: 0;
    filter: blur(10px);
}

.horizontal-box:hover > .box-title-center{
    opacity: 0;
    filter: blur(10px);
}

.horizontal-box:hover > .box-title-left{
    opacity: 1;
    filter: blur(0);
}

.horizontal-box:hover > .box-overlay{
    opacity: 0;
}

.horizontal-box:hover > .box-gradient{
    opacity: 1;
}

.box-desc {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: normal;
    text-transform: initial;
}

/* ---------------------------- End Attractions & Activities ---------------------------- */

.explore-but{
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: transparent;
    padding: .7rem 2rem;
    border-radius: .25rem;
    border: 1px solid white;
    box-shadow: 0 0 0 0 transparent;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 7;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.explore-but:hover {
    background: white;
    box-shadow: 0 0 30px 3px rgba(230, 230, 230, 0.815);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: #01000a;
}

.explore-but:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
}

.explore-but::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #bdbdbd;
    box-shadow: 0 0 20px 30px #bdbdbd;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

@keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
        left: 100%;
    }
}

.explore-but:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
}

#map {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translate(0, -50%);
    height: 500px;
    width: 35%;
    border-radius: 1rem;
    z-index: 1000;
}

@media (max-width: 1100px){

    .hero-paragraph{
        width: 75%;
    }

    .attractions-title {
        font-size: 3rem;
    }

    .box-title-left {
        font-size: 2rem;
        line-height: 40px;
    }

    .box-desc {
        line-height: 30px;
        font-size: 0.8rem;
        font-weight: 200;
    }


    .map .hero-text {
        top: 30%;
        width: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .map .hero-title-1{
        text-align: center;
        font-size: 3.5rem;
    }

    .map .hero-paragraph{
        width: 100%;
        margin: auto;
        text-align-last: center;
    }

    .map .hero-paragraph::before {
        background-color: transparent;
    }

    #map {
        right: 50%;
        top: 70%;
        transform: translate(50%, -50%);
        height: 350px;
        width: 75%;
    }

}

@media (max-width: 800px){

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

}

@media (max-width: 600px){

    .bg-1::before,
    .bg-2::before{
        background: rgb(0,6,19);
        background: -moz-linear-gradient(90deg, rgba(0,6,19,0.9023984593837535) 19%, rgba(0,6,19,0.6026785714285714) 70%, rgba(0,6,19,0.17690826330532217) 100%);
        background: -webkit-linear-gradient(90deg, rgba(0,6,19,0.9023984593837535) 19%, rgba(0,6,19,0.6026785714285714) 70%, rgba(0,6,19,0.17690826330532217) 100%);
        background: linear-gradient(90deg, rgba(0,6,19,0.9023984593837535) 19%, rgba(0,6,19,0.6026785714285714) 70%, rgba(0,6,19,0.17690826330532217) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000613",endColorstr="#000613",GradientType=1);;
    }

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

    .hero-title-2{
        font-size: 5rem;
    }

    .hero-paragraph{
        font-size: .8rem;
        font-weight: 200;
    }

    .attractions-title {
        font-size: 2rem;
    }

    .explore-but {
        font-size: 1rem;
    }

}

@media (max-width: 425px){

    .bg-1::before,
    .bg-2::before{
        background: rgba(0,6,19, 0.65);
    }

    .hero-text {
        width: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .bg-last .hero-text{
        transform: translate(0, -50%);
    }

    .hero-title-1{
        text-align: center;
        font-size: 1.8rem;
    }

    .hero-title-2{
        text-align: center;
    }

    .hero-paragraph{
        width: 100%;
        margin: auto;
        text-align-last: center;
    }

    .hero-paragraph::before {
        background-color: transparent;
    }

    .attractions-title {
        font-size: 1.5rem;
    }

    .box-title-left {
        font-size: 1.5rem;
        line-height: 30px;
    }

    .box-desc {
        line-height: 20px;
    }

    .explore-but {
        font-size: .8rem;
    }


    .map .hero-text {
        top: 33%;
    }

    .map .hero-title-1{
        font-size: 2.5rem;
        font-weight: 700;
    }

    #map {
        top: 75%;
    }

}
