* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.section-p1 {
    padding: 40px 80px;
}

.section-p2 {
    padding: 20px 20px;
}

.container2 {

    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    padding: 0 8%;
    position: relative;
}

/* Header */

header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
}

header .brand {
    color: white;
    font-size: 29px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

header .navigation {
    position: relative;

}

header .navigation .navigation-item ul {
    list-style: none;
    display: flex;


}


header .navigation .navigation-item a {
    position: relative;
    display: flex;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;


}

header .navigation .navigation-item a:hover:before,
header .navigation .navigation-item a.active {
    color: rgb(243, 181, 25);


    font-weight: bold;
}

header .navigation .navigation-item a:before {
    content: '';
    position: absolute;
    background: white;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: 0.5s ease;
    color: #1680ac;
}

header .navigation .navigation-item a:hover:before {
    width: 100%;

}

/* home page */

section {
    padding: 100px 200px;

}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #2676e9;
}

.home:before {
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(3, 96, 251, 0.3);
    top: 0;
    left: 0;
}


.home .content {
    z-index: 888;
    color: white;
    width: 70%;
    margin-top: 50px;

}

.home .content h1 {
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 40px;


}

.home .content span {
    font-size: 1.2em;
    font-weight: 500;
}

.home .content p {
    margin-bottom: 65px;

}

.home .content a {
    background: white;
    padding: 15px 35px;
    color: #1680ac;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.5s;

}

.home .content a:hover {
    background: #083f69;
    color: white;
    cursor: pointer;

}

.home .media-icons {
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a {
    color: white;
    font-size: 1.6em;
    transition: 0.3s ease;

}

.home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
}

.home .media-icons a:hover {
    transform: scale(1.3);
}

.home video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-navigation {
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}

.slider-navigation .nav-btn {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
    background: rgb(243, 181, 25);
}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
    transform: scale(1.2);
}

.video-slide {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.video-slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}


/* perks */

#feature .perks {

    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#feature h2 {
    text-align: center;
    font-size: 40px;
    font-family: 'Playfair Display', serif;
}

#feature .fe-box {
    width: 250px;
    text-align: center;
    padding: 25px 20px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;


}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.4);
    cursor: pointer;
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box h6 {
    display: inline-block;
    font-size: 18px;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
    background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) h6 {
    background-color: #cdd4f8;
}

#feature .fe-box:nth-child(5) h6 {
    background-color: #f6dbf6;
}

#feature .fe-box:nth-child(6) h6 {
    background-color: #fff2e5;
}


/* adventures */

#adventures {

    text-align: center;
}

#adventures h1 {
    font-size: 40px;
    font-family: 'Playfair Display', serif;
}


.adventures-container {

    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

.adventures-pro {

    width: 30%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

.adventures-pro img {
    width: 100%;
    border-radius: 20px;
}

.adventures-pro:hover {
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.4);
}

.adventures-pro .description {
    text-align: center;
    padding: 10px 0;
}



.adventures-pro .description h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 18px;
}

.adventures-pro .description i {
    font-size: 18px;
    color: rgb(243, 181, 25);
}

.adventures-pro .description h4 {
    padding-top: 7px;
    font-size: 19px;
    font-weight: 700;
    color: #088178;
}

/* Contact us */

#contact {
    display: flex;
    background-color: #083f69;
}

.contact-left {
    flex-basis: 35%;
}

.contact-left h1 {
    font-size: 40px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.contact-right {

    margin-top: 8%;
    flex-basis: 60%;
}

.contact-left p {
    margin-top: 30px;
    color: white;
}

.contact-left p i {
    color:rgb(243, 181, 25);
    margin-right: 15px;
    font-size: 25px;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover {
    color:rgb(243, 181, 25);
    transform: translateY(-5px);
}

.btn.btn2 {
    display: inline-block;
    background: rgb(243, 181, 25);
}

.contact-right form {
    width: 100%;
}

form input,
form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: white;
    font-size: 18px;
    border-radius: 6px;

}

form .btn2 {
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;

}

.copyright {
    width: 100%;
    text-align: center;
    padding: 25px 0;

    font-weight: 300;
    color: white;
    margin-top: 20px;
}

.copyright i {
    color: #ffffff;
}

/* about page */

.about-container {
    width: 100%;
    height: 100vh;

    padding: 100px 200px;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(about.jpeg);
    background-size: cover;
    background-position: center;
}



.row {

    display: flex;
    justify-content: right;

}

.about_col1 {

    flex-basis: 50%;

    margin-top: 2%;

}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 60px;


}

.about_col1 h3 {
    font-weight: bold;
    font-size: px;
    color: #808080;
}

.about_col1 p {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    color: white;
    font-weight: 400;
    margin-top: 2%;
    line-height: 30px;
}

.about_col1 ul li {
    font-size: 18px;
    margin: 10px 10px;
    list-style: none;
    line-height: 30px;
    color: white;
}

.about_col1 ul li i {
    color: red;
    margin-right: 5px;
    font-size: 20px;
}


/* gallery page */

.container {
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('./gallery/back.jpeg');
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-img {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: moving 30s linear infinite;
}

@keyframes moving {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }

    100% {
        transform: perspective(1000px) rotateY(360deg);
    }

}

.slider-img span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i)*45deg)) translateZ(350px);
}

.slider-img span img {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    border-radius: 10px;
    object-fit: cover;
    transition: 2s;
}

.slider-img span img:hover {
    transform: translateY(-50px) scale(1.2);
    cursor: pointer;
}

/* explore page */

#explore {
    width: 100%;
    height: 100vh;
    padding: 100px 150px;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(about.jpeg);
    background-size: cover;
    background-position: center;
    text-align: center;
}

#explore h1 {
    font-size: 40px;
    font-family: 'Playfair Display', serif;
    color: white;
    font-weight: 700;
}

#explore p {
    color: #aaaaaa;
    font-weight: bold;
}

.explore-container {
    /* border: 1px solid red; */
    display: flex;

    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

.explore-pro {

    width: 30%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;


    transition: 0.2s ease;
    position: relative;
}



.explore-pro img {
    width: 100%;
    border-radius: 20px;
}

.explore-pro:hover {
    box-shadow: 20px 20px 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.explore-pro .description {
    text-align: center;
    padding: 10px 0;
}


.explore-pro .description h5 {
    padding-top: 7px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
}



.explore-pro .description h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}