@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Roboto+Slab:wght@400;700;800&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto Slab', serif;
}

html,
body {
    overflow-x: hidden !important;
}

.ff_montserrat {
    font-family: 'Montserrat', sans-serif;
}

html::-webkit-scrollbar {
    width: 5px;
}

html::-webkit-scrollbar-track {
    background-color: black;
}

html::-webkit-scrollbar-thumb {
    background: var(--orange);
}

:root {
    /* FONT SIZES  */
    --font-sm: 12px;
    --font-md: 16px;
    --font-lg: 20px;
    --font-xl: 25px;
    --font-xxl: 32px;
    --font-1xl: 40px;
    --font-2xl: 48px;
    --font-3xl: 64px;
    --font-4xl: 100px;
    /* COLORS  */
    --white: #ffffff;
    --white-off: #f3f3f3;
    --black: #000000;
    --blue: #000f43;
    --orange: #ff4c40;
}

/* ----------------------------------- ONLY-MEDIA-QUERIES ----------------------------------- */
@media (max-width: 1199.98px) {
    :root {
        --font-xxl: 30px;
        --font-1xl: 38px;
        --font-2xl: 45px;
        --font-3xl: 60px;
        --font-4xl: 80px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --font-lg: 18px;
        --font-xl: 24px;
        --font-xxl: 28px;
        --font-1xl: 36px;
        --font-2xl: 40px;
        --font-3xl: 50px;
        --font-4xl: 70px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --font-xl: 22px;
        --font-xxl: 26px;
        --font-1xl: 32px;
        --font-2xl: 35px;
        --font-3xl: 45px;
        --font-4xl: 60px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --font-sm: 12px;
        --font-md: 13px;
        --font-lg: 16px;
        --font-xl: 18px;
        --font-xxl: 20px;
        --font-1xl: 22px;
        --font-2xl: 26px;
        --font-3xl: 33px;
        --font-4xl: 36px;
    }
}

.fw_500 {
    font-weight: 500 !important;
}

.fw_800 {
    font-weight: 800 !important;
}

/*FONT-SIZES START*/

.font-sm {
    font-size: var(--font-sm) !important;
}

.font-md {
    font-size: var(--font-md) !important;
}

.font-lg {
    font-size: var(--font-lg) !important;
}

.font-xl {
    font-size: var(--font-xl) !important;
}

.font-xxl {
    font-size: var(--font-xxl) !important;
}

.font-1xl {
    font-size: var(--font-1xl) !important;
}

.font-2xl {
    font-size: var(--font-2xl) !important;
}

.font-3xl {
    font-size: var(--font-3xl) !important;
}

.font-4xl {
    font-size: var(--font-4xl) !important;
}

/*-------------------COLORS CLASSES START--------------*/
.color-blue {
    color: var(--blue) !important;
}

.color-white {
    color: var(--white) !important;
}

.color-black {
    color: var(--black) !important;
}

.color-orange {
    color: var(--orange) !important;
}

.bg_white_off {
    background-color: var(--white-off) !important;
}

.transition_03 {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all o.3s ease-in-out;
    -o-transition: all o.3s ease-in-out;
    transition: all o.3s ease-in-out;
}

.opacity_07 {
    opacity: 0.7;
}

/*COMMON CLASSES START*/
.main_heading {
    font-size: var(--font-2xl);
    font-weight: 700;
}

.main_para {
    font-size: var(--font-md);
    font-weight: normal;
}

.common_btn {
    font-size: var(--font-md);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 4px;
    border: 1px solid var(--orange);
}

.cursor_pointer {
    cursor: pointer;
}

/*BTN HOVER EFFECT*/
.button_hover_effect.fast {
    --duration: .32s;
}

.button_hover_effect {
    --background: var(--orange);
    border: 2px solid var(--orange);
    --text: #fff;
    --font-size: 16px;
    --duration: .44s;
    --move-hover: -4px;
    --font-shadow: var(--font-size);
    line-height: var(--font-size);
    outline: none;
    text-decoration: none;
    letter-spacing: 0.5px;
    background: var(--background);
    color: var(--text);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

.button_hover_effect div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}

.button_hover_effect div span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
}

.button_hover_effect div span:nth-child(1) {
    transition-delay: 0.05s;
}

.button_hover_effect div span:nth-child(2) {
    transition-delay: 0.1s;
}

.button_hover_effect div span:nth-child(3) {
    transition-delay: 0.15s;
}

.button_hover_effect div span:nth-child(4) {
    transition-delay: 0.2s;
}

.button_hover_effect div span:nth-child(5) {
    transition-delay: 0.25s;
}

.button_hover_effect div span:nth-child(6) {
    transition-delay: 0.3s;
}

.button_hover_effect div span:nth-child(7) {
    transition-delay: 0.35s;
}

.button_hover_effect div span:nth-child(8) {
    transition-delay: 0.4s;
}

.button_hover_effect div span:nth-child(9) {
    transition-delay: 0.45s;
}

.button_hover_effect div span:nth-child(10) {
    transition-delay: 0.5s;
}

.button_hover_effect div span:nth-child(11) {
    transition-delay: 0.55s;
}

.button_hover_effect div span:nth-child(12) {
    transition-delay: 0.55s;
}

.button_hover_effect:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
}

.button_hover_effect:hover span {
    --m: calc(var(--font-size) * -1);
}

/*-----------------------------------HERO CSS START-----------------------------------*/
.hero_top_bg {
    background-image: url("../images/webp/hero-bg.webp");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    background-repeat: no-repeat;
}

.hero_bird_img {
    top: 7%;
    right: 3%;
}

.custom_side_icons {
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.index_2 {
    z-index: 2;
}

.icon_bg {
    display: flex;
    justify-content: space-between;
    transform: rotate(-90deg);
    z-index: 1;
}

.icon_bg a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon_hover {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 7px 15px;
    margin: 0px 15px;
    transition: all 0.2s ease-in-out;
}

.icon_hover:hover {
    background: var(--orange);
}

.social_text_hover {
    color: var(--blue);
}

.icon_hover span svg path {
    transition: all 0.3 ease-in-out;
}

.icon_hover:hover span svg path {
    fill: var(--white);
}

.icon_hover:hover .social_text_hover {
    color: var(--white);
}

.hero_video_cross_icon {
    right: 20px;
    top: 5%;
    z-index: 1;
}

.hero-section-modal .modal-body {
    overflow: hidden;
}

.hero-section-modal .modal-content {
    background-color: transparent;
    border: none !important;
}

/* .iframe_video {
    height: 100%;
} */

.modal {
    overflow-x: unset !important;
    overflow-y: unset !important;
}

/*--------------------------ABOUT US CSS START----------------------*/
.about_us_img_effect:hover {
    transform: scale(1.1);
    border-radius: 4px;
}

.br_4 {
    border-radius: 4px !important;
}

/*----------------POPULAR ADVENTURES CSS START--------------------------*/
.popular_cards_bg {
    background: var(--white);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
    padding-bottom: 36px;
}

/* ============================ BACK TO TOP CSS START ============================ */
#scroll {
    position: fixed;
    right: 2%;
    bottom: 3%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    overflow: hidden;
    display: none;
    border-radius: 50%;
    background-color: var(--white);
    border: 1.6px solid var(--orange);
    -webkit-animation: up-down 2.5s ease-in-out infinite;
    animation: up-down 2.5s ease-in-out infinite;
    z-index: 10;
}

@-webkit-keyframes up-down {
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: var(--orange);
}

#scroll:hover {
    -webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.547);
    box-shadow: 0 0 17px rgba(0, 0, 0, 0.547);
}

#scroll:hover::after {
    height: 100%;
}

/* ==========PRE-LOADER============ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 3000;
    background: var(--orange);
}

.preloader-logo {
    width: 230px;
    animation: logo 2s infinite ease-in-out;
}

@keyframes logo {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

/*----------------WHY JOIN CSS START--------------------------*/

.join_bg {
    background-image: url("../images/webp/join-bg.webp");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

/*--------------------------------- RECENT EXPEDITIONS CSS START------------------------------- */
.grid_template {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
}

.item-1 {
    grid-row: 1/2;
    grid-column: 1/2;
}

.item-2 {
    grid-row: 1/2;
    grid-column: 2/3;
}

.item-3 {
    grid-row: 1/2;
    grid-column: 3/4;
}

.item-4 {
    grid-row: 2/3;
    grid-column: 1/2;
}

.item-5 {
    grid-row: 2/3;
    grid-column: 2/3;
}

.item-6 {
    grid-row: 2/3;
    grid-column: 3/4;
}

.overlay_positioning {
    background: linear-gradient(0deg, rgba(255, 103, 62, 0.85), rgba(255, 103, 62, 0.85)) !important;
    opacity: 0;
}

.overlay_positioning:hover {
    opacity: 1;
}

/*-------------------SUBSCRIBE CSS START----------------*/
.subscribe-bg {
    background-image: url("../images/webp/subscribe-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 65vh;
}

#entry-box {
    border: none;
    border-bottom: 2px solid #000F43;
}

input:focus {
    outline: none !important;
}

#submit-btn:hover {
    color: var(--orange) !important;
}

/*-------------------FOOTER CSS START----------------*/
.supported_icons:hover {
    transform: scale(1.04);
}

/*-------------------FOOTER CSS START----------------*/

footer {
    background-image: url("../images/webp/footer-bg.webp");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.footer_border {
    border-bottom: 1px solid rgba(0, 15, 67, 0.21);
}

.footer_text_hover:hover {
    opacity: 0.7;
}

/*----------------------------------------------SPONSOR PAGE CSS START--------------------------------------*/
.sponsor_top_bg {
    background-image: url("../images/png/sponsor/sponsor-hero-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.border_left {
    border-left: 1px solid rgba(0, 15, 67, 0.55);
}

.lorem_border {
    border-bottom: 1px solid #737B98;
}

.custom_width {
    width: 73px;
    height: 60px;
}

.contact_bg {
    background-image: url("../images/png/homepage/contact_bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 17px 13px 18px 14px;
}

/*-------------------------------DETAILS PAGE CSS START-------------------------------------*/
.doller_btn {
    background: #FDFDFF;
    border-radius: 12px;
    padding: 32px 36px 31px 37px;
}

.border_y_axix {
    border-top: 1px solid #00000036;
    border-bottom: 1px solid #00000036;
}

.include_box {
    background: #FDFDFF;
    border-radius: 12px;
    padding: 30px 0px 28px 20px;
}

/* MEDIA-QUERY */

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

@media (min-width: 1536px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width:1200px) {
    /* .hero-section-modal .modal-xl {
        max-width: 1090px !important;
    } */
}

@media (max-width:1199.98px) {
    .iframe_video {
        height: unset;
    }
}

@media (max-width: 991.98px) {
    .item-1 {
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .item-2 {
        grid-row: 1/2;
        grid-column: 2/3;
    }

    .item-3 {
        grid-row: 2/3;
        grid-column: 1/2;
    }

    .item-4 {
        grid-row: 2/3;
        grid-column: 2/3;
    }

    .item-5 {
        grid-row: 3/4;
        grid-column: 1/2;
    }

    .item-6 {
        grid-row: 3/4;
        grid-column: 2/3;
    }

    .subscribe-bg {
        min-height: unset;
    }

    .tour_card_2 {
        background-color: unset;
    }

    .hero_video_cross_icon {
        top: 22%;
    }

}

@media (max-width:767.98px) {
    .custom_side_icons {
        left: -50px;
        transition: all 0.3s ease-in-out;
    }

    .custom_side_icons:hover {
        left: 0px;
    }

    .custom_bg {
        position: relative;
    }

    .custom_bg::after {
        content: "";
        position: absolute;
        background: var(--black);
        border-radius: 5px;
        border: 1px solid var(--orange);
        width: 70px;
        height: 90%;
    }

    .icon_hover {
        margin: 0px 0px;
    }

    .social_text_hover {
        color: var(--white) !important;
    }

    .icon_hover span svg path {
        fill: var(--white);
    }

    .common_btn {
        padding: 10px 20px;
    }

    .include_box {
        padding: 30px 0px 0px 20px;
    }
}

@media (max-width:575.98px) {
    .about_us_img {
        max-width: 300px;
    }

    .about_us_img_2 {
        min-width: 300px;
    }

    .popular_cards_bg {
        max-width: 300px;
        margin: auto;
    }

    .about_us_img_effect:hover {
        transform: unset;
    }

    .w_75 {
        width: 75%;
    }

    .border_left {
        border-left: unset;
    }

    .doller_btn {
        padding: 0px !important;
    }

    .hero_video_cross_icon svg {
        width: 15px;
        height: 15px;
    }

    .hero_video_cross_icon {
        top: 30%;
    }
}