@media(prefers-reduced-motion){
.hideScrolled{
    transition: none;
}
}

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

.box-container:nth-child(2){
    transition-delay: 200ms;
}

.box-container:nth-child(3){
    transition-delay: 400ms;
}

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

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

.bg-1,
.bg-2,
.bg-3,
.bg-last{
    z-index: 0;
    position: relative;
    display: flex;
    height: 100vh;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

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

.bg-1::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: 4rem;
    font-weight: 400;
    line-height: .9;
    margin-top: 0;
}

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

.hero-paragraph{
    position: relative;
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    text-transform: none;
    width: 60%;
    margin: 3% auto;
    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;
} */

.explore-but{
    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;
}
/* --------------------- End Hero --------------------- */

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

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

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

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

/* --------------------- Tours --------------------- */

.dest-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 70%;
    z-index: 6;
}

.destination {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: auto;
    flex-grow: 1;
    overflow: hidden;
    margin: 0 1rem;
    /* border: 1px solid #a0a0a0; */
    /* border-radius: .5rem; */
    transition: .5s ease;
}

.destination::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgbA(0,6,19, 0.4);
    z-index: 2;
    pointer-events: none;
}

.destination a:hover{
    padding: 2rem 4rem;
    background-color: rgba(0, 0, 0,0.4);
    border-radius: 1rem;
}

.destination img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.destination a {
    color: white !important;
    background-color: transparent;
    border: 5px solid white;
    padding: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    transition: .5s ease;
    z-index: 3;
}

/* --------------------- End Tours --------------------- */

/* --------------------- Services --------------------- */
.image-overlay-3{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,6,19);
    background: -moz-linear-gradient(180deg, rgba(0,6,19,1) 0%, rgba(0,6,19,0.6026785714285714) 25%, rgba(0,6,19,0) 50%, rgba(0,6,19,0.6) 75%, rgba(0,6,19,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,6,19,1) 0%, rgba(0,6,19,0.6026785714285714) 25%, rgba(0,6,19,0) 50%, rgba(0,6,19,0.6) 75%, rgba(0,6,19,1) 100%);
    background: linear-gradient(180deg, rgba(0,6,19,1) 0%, rgba(0,6,19,0.6026785714285714) 25%, rgba(0,6,19,0) 50%, rgba(0,6,19,0.6) 75%, rgba(0,6,19,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000613",endColorstr="#000613",GradientType=1);
    z-index: 6;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.services-text{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    text-transform: uppercase;
    transform: translate(-50%,-50%);
    color: white;
    z-index: 7;
    text-align: center;
}

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

.boxes{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 75px;
}

.box-container{
    width: 20%;
    display: flex;
    justify-content: center;
}

.box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid white;
    border-radius: 1rem;
    -webkit-box-shadow: inset 0px 0px 48px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 48px 0px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 48px 0px rgba(0,0,0,0.75);
}

.box .icon{
    width: 100%;
    text-align: center;
    font-size: 2rem;
}

.box .title{
    width: 100%;
}

.box .brief{
    width: 100%;
    font-size: 1rem;
}
/* --------------------- End Services --------------------- */


/* --------------------- Partners --------------------- */

.logos {
    overflow: hidden;
    padding: 60px 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}


@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
}

.logos-slide img {
    height: 75px;
    margin: 0 40px;
    transition: .5s ease-out;
}


/* --------------------- End Partners --------------------- */


/* --------------------- Stats --------------------- */

.stats {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 175px;
    transition: .5s ease-out;
}

.stats img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.counters-container {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0, -50%);
}

.counter-classic {
	text-align: center;
}

.counter-classic-number {
	font-size: 38px;
	line-height: 0.8;
	font-weight: 700;
	letter-spacing: .017em;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	margin-bottom: 7px;
}

/* @media (min-width: 992px) {
	.counter-classic-number {
		font-size: 48px;
	}
} */

.counter-classic-number > * {
	display: inline-block;
}

.counter-classic-number .symbol {
	font-size: 40px;
	letter-spacing: 0;
}

.counter-classic-number .counter {
	letter-spacing: normal;
}

.counter-classic-title {
	font-weight: 400;
	letter-spacing: .15em;
	font-size: 14px;
	text-transform: uppercase;
	color: #b3bbc1;
	font-family: "Poppins", sans-serif;
}


/* --------------------- End Stats --------------------- */

/* --------------------- Last Slide --------------------- */

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

.bg-last::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,6,19);
    background: -moz-linear-gradient(180deg, rgba(0,6,19,1) 0%, rgba(0,6,19,0.6026785714285714) 25%, rgba(0,6,19,0) 50%);
    background: -webkit-linear-gradient(180deg, rgba(0,6,19,1) 0%, rgba(0,6,19,0.6026785714285714) 25%, rgba(0,6,19,0) 50%);
    background: linear-gradient(180deg, 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;
}

.bg-last .hero-text{
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}

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

/* --------------------- End Last Slide --------------------- */

.show{
    opacity: 1 !important;
}

@media (max-width: 1200px){
    .services-text{
        width: 85%;
    }

    .services-title{
        font-size: 5rem;
    }
}

@media (max-width: 1000px){

    .dest-container {
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }

    .destination {
        height: auto;
        width: 100%;
        flex-grow: 0.3;
    }


    .destination::before{
        background: rgb(0,6,19);
        background: -moz-linear-gradient(90deg, rgba(0,6,19,0.7) 0%, rgba(0,6,19,0.6026785714285714) 5%, rgba(0,6,19,0.4) 50%, rgba(0,6,19,0.6) 95%, rgba(0,6,19,0.7) 100%);
        background: -webkit-linear-gradient(90deg, rgba(0,6,19,0.7) 0%, rgba(0,6,19,0.6026785714285714) 5%, rgba(0,6,19,0.4) 50%, rgba(0,6,19,0.6) 95%, rgba(0,6,19,0.7) 100%);
        background: linear-gradient(90deg, rgba(0,6,19,0.7) 0%, rgba(0,6,19,0.6026785714285714) 5%, rgba(0,6,19,0.4) 50%, rgba(0,6,19,0.6) 95%, rgba(0,6,19,0.7) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000613",endColorstr="#000613",GradientType=1);
    }

    .services-text{
        width: 85%;
    }

    .services-title{
        font-size: 3.5rem;
    }

    .boxes{
        margin-top: 0;
    }

    .box-container{
        width: 100%;
        margin-top: 20px;
    }

    .box{
        width: 60%;
        padding: 0.75rem 1.5rem;
    }

}

@media (max-width: 800px){

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

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

    .hero-paragraph{
        width: 55%;
    }

    .about-title-1{
        font-size: 5rem;
    }

    .about-paragraph{
        width: 55%;
    }

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

@media (max-width: 575px){

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

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

    .hero-paragraph{
        font-size: .8rem;
        width: 75%;
    }

    .about-title-1{
        font-size: 4rem;
    }

    .about-paragraph{
        font-size: .7rem;
        width: 75%;
    }

    .destination a {
        font-size: 2rem;
    }

    .explore-but{
        left: 0;
        right: 0;
        margin: auto;
        width: 60%;
        text-align: center;
        font-size: 1rem;
    }

    .services-title{
        font-size: 2.5rem;
    }

    .box .brief{
        font-size: .75rem;
    }

    .logos-slide img {
        height: 50px;
        margin: 0 20px;
    }

    .stats {
        height: 330px;
    }

    .counters-container {
        display: flex;
        height: 100%;
        align-items: center;
    }

    .bg-last .hero-title-1 {
        font-size: 1.7rem;
    }
}

@media (max-width: 450px){
    .hero-title-1{
        font-size: 1.3rem;
    }

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

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

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

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

    .about-paragraph{
        font-size: .6rem;
    }

    .destination a {
        font-size: 1.5rem;
    }

    .bg-last .hero-title-1 {
        font-size: 1.2rem;
    }
}
