/* ------------------- 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 ------------------- */

/* ---------------------------- Intro ---------------------------- */

.intro-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    margin-top: 150px;
    padding: 0 2rem;
    z-index: 10;
}

.intro-container h2{
    color: white;
    font-weight: 800;
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 3.3rem;
}

.intro-container p {
    color: white;
    font-size: 2.3rem;
    font-weight: 200;
    text-align: center;
    transition: .25s ease;
}

.intro-container .bold {
    font-weight: 700;
}

/* ---------------------------- End Intro ---------------------------- */

/* ---------------------------- Activities ---------------------------- */

.activities-container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

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

.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-grow: 0;
    height: 80vh;
    overflow: hidden;
    border-radius: 0;
}

.horizontal-boxes-container:hover .horizontal-box:not(:hover) {
    /* flex: 0; */
    /* height: 0; */
    /* opacity: 0; */
    filter: blur(5px) brightness(0.5);
}

.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;
    width: 100%;
    padding: 0 1rem;
    transform: none;
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: left;
    color: white;
    line-height: 3rem;
    text-transform: capitalize;
    z-index: 2;
    transition: .5s ease;
    opacity: 0;
    filter: blur(10px);
}

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

.dest-link{
    color: white;
    text-decoration: none;
    transition: .25s ease;
}

.dest-link:hover{
    color: rgb(94, 164, 204);
}

.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;
}


/* ---------------------------- End Activities ---------------------------- */


@media (max-width: 1000px) {

    .box-title-left{
        font-size: 2rem;
    }

    .box-desc{
        font-size: .8rem;
    }

}


@media (max-width: 800px) {

    .intro-container p{
        font-size: 1.7rem;
    }

    .horizontal-boxes-container{
        width: 85vw;
    }

}

@media (max-width: 600px) {

    .intro-container {
        padding: 0 1rem;
    }

    .intro-container p{
        font-size: 1.2rem;
    }

    .intro-container h2{
        font-size: 2.3rem;
    }
}

@media (max-width: 450px) {

    .intro-container p{
        font-size: 1rem;
    }

    .intro-container h2{
        font-size: 1.8rem;
    }
}
