:root {
    --header-height: 95px;
    --white: #ffffff;
    --cta-primary: #040552;
}


* {
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    scroll-behavior: smooth !important;

}





body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

body.form-visible {
    overflow: hidden;
}

a {
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

li {
    list-style: none;
}


/* --------------------------  Header CSS Start ------------------ */

.sidebar-open {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.sidebar-open .overlay {
    opacity: 1;
    visibility: visible;
}

.header {
    background: #040552;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 7px 12.5px 0px #0000001A;

}

.header .upper_wrap {
    display: none;
}

.header .upper_wrap .inner_wrap {
    max-width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: auto;
    gap: 10px;
    border-radius: 0 0 4px 4px;
    background: var(--cta-primary);
    margin-left: auto;
    padding: 3px 15px;
}

.header .upper_wrap .inner_wrap h5 {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    margin: 0;
}

.header .upper_wrap .inner_wrap a {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    margin: 0;
}

.header .upper_wrap .inner_wrap a:hover {
    text-decoration: underline;
}

.row-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.row-wrap .logo-wrap {}

.row-wrap .logo-wrap a {
    width: 240px;
    display: block;
}

.row-wrap .logo-wrap a:hover {
    opacity: .7;
}

.row-wrap .logo-wrap h6 {
    font-size: 15px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    color: #122A5A;
    margin: 0;
}

/* .row-wrap .nav-wrap {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 31px;
} */

.row-wrap .nav-wrap .button a {
    width: 95px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #FFF;
    background: #353634;
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 186.667% */
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-wrap .nav-wrap .button a:hover {
    opacity: .8;
}

.nav-list {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0;
    gap: 20px;

}



.nav-list li {
    padding: 10px 10px;
    position: relative;
    display: flex;
    /* gap: 8px; */
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-list li:last-child {
     padding: 2px 18px;
    border-radius: 4px;
    box-shadow: 3px 3px 0 #fff;
    background: #53bdf8;

}

.nav-list li:last-child a {
    color: #fff;
    font-weight: 600;
}

.nav-list li a {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;

    padding: 10px 0px;

}

.nav-list li a:hover {
    opacity: .8;
}

.nav-list .current-menu-item a {
    font-weight: 700;
}

.nav-list .current-menu-item .sub-menu a {
    background-color: transparent;
}


.hamburger {
    display: none;
    z-index: 99;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(2) {
    width: 15px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger.is-active .line {
    background-color: #fff;
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(6.5px) rotate(45deg);
    -ms-transform: translateY(6.5px) rotate(45deg);
    -o-transform: translateY(6.5px) rotate(45deg);
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-6.5px) rotate(-45deg);
    -ms-transform: translateY(-6.5px) rotate(-45deg);
    -o-transform: translateY(-6.5px) rotate(-45deg);
    transform: translateY(-6.5px) rotate(-45deg);
}

.header .nav-wrap .menu-item-118 a::before {
    content: none;
}

.header .nav-wrap .menu-item-118 a::after {
    content: none;
}

.header .nav-wrap .menu-item-118 .sub-menu {
    flex-direction: column;
    padding: 0;
    position: absolute;
    top: 54px;
    right: 18px;
    width: 275px;
    border-radius: 4px;
    border: 1.196px solid #353634;
    background: #FFF;
    box-shadow: 0px 0px 13.13px 1.31px rgba(255, 255, 255, 0.30);
    display: none;
}

.header .nav-wrap .menu-item-118 .sub-menu li:last-child {
    background-color: inherit;
    padding: 10px 0;
    border-radius: inherit;
}

.header .nav-wrap .menu-item-118 .sub-menu .menu-item-361 .sub-menu {
    right: -260px;
    top: 0px;
    display: none;
    width: 260px
}


.header .nav-wrap .menu-item-118 .sub-menu li {
    list-style: none;
    width: 100%;
    /* height: 42px; */
    border-bottom: 1px solid #ACACAC;
    padding: 10px 0;
}

.nav-list .menu-item-118 .sub-menu .current-menu-item a {
    background-color: transparent;
    color: #2B2B2B !important;
}


.header .nav-wrap .menu-item-118 .sub-menu li a {
    color: #000 !important;
    font-size: 18.325px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    text-align: left;
}

.header .nav-wrap .menu-item-118 .sub-menu li a::after {
    content: none;
}

.header .nav-wrap .menu-item-118 .sub-menu li a::before {
    content: none;
}

.header .nav-wrap .menu-item-has-children:after {
    content: url(../assets/arrow-header.svg);
    margin-top: -4px;
    margin-left: 10px;
}

.header .nav-wrap .menu-item-has-children #menu-item-361::after {
    content: url(../assets/arrow-header-sub.svg);
    margin-top: -4px;
    margin-right: 10px;
}



.header .nav-wrap .menu-item-118 .sub-menu .current-menu-item a {
    font-weight: 700;
}

.header .nav-wrap .menu-item-118 .sub-menu .current-menu-item .sub-menu a {
    font-weight: 400;


}

.header .nav-wrap {
    display: flex;
    align-items: center;
    gap: 50px;

}

.header .nav-wrap .cta-button {
    width: 95px;
    height: 40px;
    border-radius: 4px;
    background: rgba(18, 42, 90, 1);
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;

}

.header .nav-wrap .cta-button:hover {
    opacity: .8;
}

/* --------------------------  Header  CSS End ------------------ */

/* Progress */


#progress {
    height: 40px;
    width: 40px;
    /* border-radius: 50%; */
    position: fixed;
    bottom: 20px;
    right: -150px;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: .6s all ease-in-out;

}

#progress #progress-value {
    height: 34px;
    width: 34px;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 500;
    color: #122A5A;
}

#progress:hover {
    cursor: pointer;

}

#progress.show {
    opacity: 1;
    visibility: visible;
    right: 20px;
    transform: rotate(360deg);
}

/* --------------------------  Footer  CSS Start ------------------ */

footer {
    background-color: #000;
    height: auto;
    padding: 60px 0;
}

footer .left-side {
    gap: 15px;

}

footer .left-side h5 {
    color: #fff;
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
    max-width: 440px;
}

footer .left-side h5::before {
    content: '\f3c5';
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    padding-right: 10px;
}

footer a:hover {
    opacity: .8;
}

footer .left-side a {
    color: #fff;
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

footer .left-side #number::before {
    content: '\f879';
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    padding-right: 10px;
}

footer .left-side #mail::before {
    content: '\f0e0';
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    padding-right: 10px;
}

footer .left-side img {
    margin-bottom: 40px;
    max-width: 250px;
}

footer .middle-side {}

footer .middle-side ul {
    padding: 0;
    margin: 0;
}

footer .middle-side a {
    color: #fff;
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 10px 0 0 0;
    display: block;
}

footer .middle-side a::before {
    content: '\f061';
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    padding-right: 10px;
}

footer .middle-side h5 {
    color: #fff;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 40px 0;
    text-decoration: underline;
}

footer .right-side {}

footer .right-side h5 {
    color: #fff;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 40px 0;
    text-decoration: underline;
}

footer .right-side .box a {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--cta-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .right-side .box a:hover {
    opacity: .8;
}

.lower-footer {
    height: auto;
    padding: 20px 0;
}

.lower-footer h4 {
    color: #333;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0 auto 0;
}

.lower-footer h4 a {
    color: #131534;
    font-size: 20px;
}

.lower-footer h4 a:hover {
    opacity: .9;
    text-decoration: underline;
}


/* --------------------------  Footer  CSS End ------------------ */

/* --------------------------  HomePage  CSS Start ------------------ */

#home-banner-section {
    height: auto;
    width: 100%;
    /* margin-top: calc(var(--header-height) + 25px); */
    margin-top: var(--header-height);
}

#home-banner-section .cta-btn {
    margin: 20px 0 0 0;
    border: none;
    cursor: pointer;
}

#home-banner-section .slick-dots {
    bottom: 15px;
    /* border: 1px solid red; */
}

#home-banner-section .slick-dots .slick-active button {
    background: var(--cta-primary);

}

#home-banner-section .slick-dots li {
    width: 50px;
    height: 3px;
}

#home-banner-section .slick-dots li button {
    width: 46px;
    height: 3px;
    background: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 0;
}

#home-banner-section .slick-dots li button::before {
    content: none;
}

#home-banner-section .banner-slider-section {
    height: 600px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#home-banner-section .banner-slider-section h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: #ffffff;
    margin: 0px 0 0 0;
    text-transform: uppercase;
}

#home-banner-section .banner-slider-section h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 15px 0 0 0;
    max-width: 640px;

}

#home-banner-section .banner-slider-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 15px 0 0 0;
    max-width: 570px;

}

#home-banner-section .form-box {
    width: 450px;
    height: auto;
    border-radius: 4px;
    border: 1px solid #D3D5D8;
    background: #FFF;
    margin-top: 50px;
    padding: 22px 25px 0;
    margin-left: auto;
    margin-bottom: 50px;
}

#home-banner-section .form-box h3 {
    color: #22243D;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29.523px;
    margin: 0 auto 0;
    text-transform: uppercase;
    max-width: 320px;
}

#home-banner-section .form-box h6 {
    color: #444;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 18.452px;
    max-width: 320px;
    margin: 10px auto 15px;
}

#home-banner-section .form-box span {
    display: block;
    margin: 15px auto;
}

#home-banner-section .form-box span input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--cta-primary);
    background: #FFF;
    height: 46px;
    padding-left: 21px;
    outline: none;
}

#home-banner-section .form-box .wpcf7-form span #query {
    height: 98px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--cta-primary);
    background: #FFF;
    padding-left: 21px;
    padding-top: 10px;
    outline: none;
}


#home-banner-section .form-box .wpcf7-form [type='submit'] {
    width: 100%;
    height: 53.51px;
    border-radius: 4px;
    background: var(--cta-primary);
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16.606px;
    font-style: normal;
    font-weight: 700;
    line-height: 25.832px;
    letter-spacing: .185px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

#home-banner-section .form-box .wpcf7-form [type='submit']:hover {
    opacity: .8;
}


#home-banner-section .form-box .wpcf7-spinner {
    margin: 3px auto 0;
}





#home-section-1 {
    background-color: #fff;
    padding: 90px 0 70px;
}

#home-section-1 h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin: 0px;
}

#home-section-1 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 14px 0 0 0;
}

#home-section-1 .cards-box {
    margin: 20px 0 0 0;
}

#home-section-1 .cards-box .card {
    flex-basis: 320px;
    max-width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 10px;
}

#home-section-1 .cards-box .card h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 4px 0 0 0px;

}

#home-section-1 .cards-box .card p {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 6px 0 0px;
}

.cta-btn {
    width: 260px;
    height: 60px;
    background-color: var(--cta-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    margin: 80px auto 0;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 1);

}

.cta-btn:hover {
    opacity: .8;
}

#destination-section {
    padding: 78px 0 70px;
    background-color: #F4F6F9;
}

#destination-section h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #333;
    margin: 0 auto;
}

#destination-section h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: #444;
    margin: 8px auto 0;
    max-width: 610px;
}

#destination-section .images-main-box {
    margin: 45px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 21px;
    row-gap: 21px;
    flex-wrap: wrap;
}

#destination-section .images-main-box .image-box:first-child {
    max-width: 682px;
    width: 682px;
}

#destination-section .images-main-box .image-box:nth-child(4) {
    max-width: 682px;
    width: 682px;
}

#destination-section .images-main-box .image-box:nth-child(5) {
    max-width: 682px;
    width: 682px;
}

#destination-section .images-main-box .image-box {
    position: relative;
    max-width: 340px;
    width: 340px;
    height: 340px;
    overflow: hidden;
    transition: all .5s ease-in-out;

}

#destination-section .images-main-box .image-box img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 6px;

}

#destination-section .images-main-box .image-box:hover {
    transform: scale(1.02);
}

#destination-section .images-main-box .image-box:hover img {
    opacity: .7;

}

#destination-section .images-main-box h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: #000;
    background-color: rgba(255, 255, 255, .990);
    margin: 0 auto;
    padding: 6px 10px;
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 5px;
}

#package-section .card-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 60px;
}

#package-section .card {
    position: relative;
    max-width: 387px;
}

#package-section .card .main-img {
    border-radius: 20px;
}

#package-section .card-package .description-box {
    position: absolute;
    bottom: 30px;
    left: 26px;
}

#package-section .card-package .description-box .duration {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #FFFFFF;
    margin: 0;
}

#package-section .card-package .description-box .wrapper-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    flex-wrap: wrap;

}

#package-section .card-package .description-box .wrapper-1 .name {
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #FFFFFF;
    margin: 0;
}

#package-section .card-package .description-box .wrapper-1 .rating {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: #000000;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 4px 10px 4px 13px;
    margin: 0;

}

#package-section .card-package .description-box .wrapper-1 .rating::after {
    content: url("../assets/star.svg");
    margin-left: 6px;
}

#package-section .card-package .description-box .wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 20px;
	    max-width: 100%;
    flex-wrap: wrap;
}

#package-section .card-package .description-box .wrapper-2 .price {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #FFFFFF;
    margin: 0;

}

#package-section .card-package .description-box .wrapper-2 .price span {
    text-decoration: line-through;
}

#package-section .card-package .description-box .wrapper-2 .discount {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    margin: 0;

}



#package-section .card-package .description-box .wrapper-3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
    margin-top: 21px;
	    max-width: 100%;
    flex-wrap: wrap;
}

#package-section .card-package .description-box .wrapper-3 .cta_1 {
    width: 248px;
    height: 50px;
    max-width: 100%;
    border-radius: 4px;
    background: var(--cta-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 1);
}

#package-section .card-package .description-box .wrapper-3 .cta_2 {
    color: #fff;
    width: 70px;
    height: 50px;
    border-radius: 4px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F4F4F4
}

#package-section .card-package .description-box .wrapper-3 a:hover {
    opacity: .8;
}

#package-section .card-package .description-box .wrapper-3 .cta_1:hover {
    opacity: .8;
}

#package-section {
    padding: 78px 0 70px;
}

#package-section h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #333;
    margin: 0 auto;
}

#package-section h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: #000;
    margin: 14px auto 0;
    max-width: 470px;
}

#package-section .main-box {
    margin: 50px 0 0 0;
    row-gap: 40px;
}

#package-section .main-box .box {
    overflow: hidden;
}

#package-section .main-box .box .img-box {
    overflow: hidden;
    border-radius: 4px;

}

#package-section .main-box .box img {
    width: 400px;
    border-radius: 12px;
    transition: all .7s linear;
}

#package-section .main-box .box img:hover {
    transform: scale(1.2);
}

#package-section .main-box .box h4 {
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 15px auto;
}

#home-section-3 {
    height: 350px;
    width: 100%;
}

#home-section-3 .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#home-section-3 .banner-slider-section h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0px 0 0 0;
}

#home-section-3 .banner-slider-section h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 15px 0 0 0;
    text-transform: capitalize;

}

#home-section-3 .banner-slider-section .btn-box {
    margin: 30px 0 0 0;
    align-items: center;
    justify-content: flex-start;
}


#home-section-3 .banner-slider-section .btn-box .cta-btn {
    width: 260px;
    height: 60px;
    background-color: var(--cta-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    margin: 0px 0 0 0;
    box-shadow: none;
    border: 1px solid #fff;
    box-shadow: 5px 5px 0px rgb(255, 255, 255);
}

#home-section-3 .banner-slider-section .btn-box a:hover {
    opacity: .8;
}

#home-section-3 .banner-slider-section .btn-box .cta-btn-2 {
    width: 260px;
    height: 60px;
    background-color: transparent;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    margin: 0px 0 0 0;
    border: 1px solid #fff;
    box-shadow: 5px 5px 0px rgb(255, 255, 255);

}

#adventure-section {
    background-color: #F4F6F9;
    padding: 40px 0;
}


#adventure-section .images-main-box {}

#adventure-section .images-main-box .image-box h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: #444;
    margin: 16px auto 0;
}

#adventure-section .images-main-box .image-box {
    flex-basis: 160px;
    height: 160px;
    max-width: 100%;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0px 14px 54px 0px #BBC7DDB5;
    transition: .8s all ease-in-out;

}

#adventure-section .images-main-box .image-box img {
    max-width: 60px;
}

#adventure-section .images-main-box .image-box:hover {
    transform: rotate(360deg) scale(1.1);
}


#reviews-section {
    height: auto;
    width: 100%;
    padding: 60px 0 40px;
}

#reviews-section h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #333;
    margin: 0px auto 0;
}

#reviews-section .reviews-main-box {
    padding-bottom: 50px;
}

#reviews-section .reviews-main-box .review-box {
    max-width: 100%;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0 14px 24px 0 #4770A026;
    margin: 60px 10px 60px;
    cursor: pointer;
    padding: 30px 21px 20px;
    position: relative;
}

#reviews-section .reviews-main-box .review-box .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#reviews-section .reviews-main-box .review-box .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}

#reviews-section .reviews-main-box .review-box h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #333;
    margin: 0px 0;
}

#reviews-section .reviews-main-box .review-box p {
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #444;
    margin: 25px 0 0 0;
    max-width: 100%;
}

#reviews-section .slick-next.slick-arrow {
    position: absolute;
    bottom: 0;
    background: url("../assets/next.svg");
    font-size: 0;
    width: 48px;
    height: 48px;
    border: none;
    background-repeat: no-repeat;
    cursor: pointer;
}

#reviews-section .slick-prev.slick-arrow {
    position: absolute;
    bottom: 0;
    background: url("../assets/prev.svg");
    font-size: 0;
    width: 48px;
    height: 48px;
    border: none;
    background-repeat: no-repeat;
    cursor: pointer;

}

#reviews-section .slick-next:before {
    content: "";
}

#reviews-section .slick-prev:before {
    content: "";
}

#reviews-section .slick-next {
    top: auto !important;
    bottom: 21px !important;
    right: 50%;
    left: 50%;
    transform: translate(-50%);
    margin: 0 60px;

}

#reviews-section .slick-prev {
    top: auto !important;
    bottom: 21px !important;
    right: 50%;
    left: 50%;
    transform: translate(-50%);
}

#reviews-section button:hover {
    opacity: .7;
}

#transportation-section {
    padding: 60px 0;
    background-color: #fff;
}

#transportation-section h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin: 0;
    max-width: 450px;
}

#transportation-section h3 span {
    color: var(--cta-primary);
    font-weight: 700;

}

#transportation-section .main-box {
    margin-top: 60px;
    justify-content: center;
    align-items: flex-start;

}

#transportation-section .main-box .box {
    flex-basis: 380px;
}

#transportation-section .main-box .box .img-box {
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

#transportation-section .main-box .box img {
    width: 100%;
    height: 300px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: .8s all linear;
}

#transportation-section .main-box .box img:hover {
    transform: scale(1.2);

}

#transportation-section .main-box .box .bottom {
    background-color: #fff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 20px;
    margin-top: -40px;
    position: relative;
    border: 1px solid var(--cta-primary);
    min-height: 320px;
    height: auto;
    justify-content: space-between;
}

#transportation-section .main-box .box .bottom h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin: 0;
}

#transportation-section .main-box .box .bottom p {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 10px 0 0 0;
    max-width: 450px;
}

#transportation-section .main-box .box .bottom .btn-box {
    justify-content: space-between;
}

#transportation-section .main-box .box .bottom .btn-box a:first-child {

    width: 130px;
    height: 48px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #444;
    border-radius: 4px;
    margin: 0px 0 0 0;
    border: 1px solid #444;
}

#transportation-section .main-box .box .bottom .btn-box .show-form {
    width: 180px;
    height: 48px;
    background-color: var(--cta-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    margin: 0px 0 0 0;
    box-shadow: none;
    cursor: pointer;
    border: none;
}

#transportation-section .main-box .box .bottom .btn-box .show-form:hover {
    opacity: .8;
}

#transportation-section .main-box .box .bottom .btn-box a:hover {
    opacity: .8;
}



#gallery-section {
    background-color: #F4F6F9;
    padding: 60px 0;
}

.destination_gallery_section {
    background-color: #fff !important;
    padding: 60px 0 80px !important;

}

#gallery-section h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #333;
    margin: 0px auto 0;
}

#gallery-section h3 span {
    color: #131534;
    font-weight: 700;
}

#gallery-section p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #444;
    margin: 20px auto 0;
    max-width: 780px;
}

#gallery-section .main-box {
    padding: 0;
    margin: 60px auto 20px;
    max-width: 2000px;
}

#gallery-section .main-box img {
    height: 260px;
    margin: 0 10px;
    border-radius: 8px;
    cursor: pointer;
}

#gallery-section .destination_gallery img {
    height: 340px !important;
}

#video-section {
    background-color: #FFF;
    padding: 60px 0;
}

#video-section h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #333;
    margin: 0px auto 0;
}

#newsletter-section {
    height: 460px;
    width: 100%;
}

#newsletter-section .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#newsletter-section .banner-slider-section h6 {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0px 0 0 0;
    color: #fff;
}

#newsletter-section .banner-slider-section h4 {
    font-size: 40px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--cta-primary);
    margin: 15px 0 0 0;
}

#newsletter-section .banner-slider-section h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 20px 0 0 0;
    max-width: 620px;

}

#newsletter-section form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
    max-width: fit-content;
}

#newsletter-section .wpcf7-form-control-wrap {
    display: block;
    width: 350px;
    height: 56px;
}

#newsletter-section input {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border: none;
    outline: none;
    padding-left: 20px;
}

#newsletter-section form [type='submit'] {
    width: 180px;
    height: 56px;
    border-radius: 4px;
    background: var(--cta-primary);
    font-size: 19px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: .04em;
    text-align: center;
    color: #fff;
    border: none;
    box-shadow: 5px 5px 0px rgb(255, 255, 255);
}

#newsletter-section form [type='submit']:hover {
    opacity: .8;
    cursor: pointer;
}

#newsletter-section form .wpcf7-spinner {
    max-width: 24px;
    width: 100%;
    height: 24px;
    margin: 8px 24px;
}


/* --------------------------  HomePage  CSS End ------------------ */

/* --------------------------  Experience  CSS Start ------------------ */

#experience-banner-section {}

#experience-banner-section {
    height: 502px;
    width: 100%;
    margin-top: var(--header-height);
}

#experience-banner-section .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#experience-banner-section .banner-slider-section h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0px 0 0 0;
    text-transform: uppercase;
    background-color: #000;
    padding: 10px 15px;
    max-width: fit-content;
    border-radius: 4px;
}

#experience-banner-section .banner-slider-section h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 25px 0 0 0;

}

#experience-banner-section .banner-slider-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 21px 0 0 0;
    max-width: 570px;

}


#experience-banner-section .breadcrumb-box {
    gap: 15px;
    padding: 40px 0;
    right: 0;
    bottom: 0;
    background-color: var(--cta-primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 20px;
}

#experience-banner-section .breadcrumb-box a {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    position: relative;
}

#experience-banner-section .breadcrumb-box a::after {
    content: "/";
    margin-left: 5px;
    position: absolute;
    pointer-events: none;

}

#experience-banner-section .breadcrumb-box a::after:hover {
    text-decoration: none;

}

#experience-banner-section .breadcrumb-box a:hover {
    text-decoration: underline;
}

#experience-banner-section .breadcrumb-box h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0;
}


#package-section-main {
    background-color: #fff;
    padding: 78px 0 70px;
}

#package-section-main h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #000;
    margin: 0 auto;
}

#package-section-main h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: #444;
    margin: 14px auto 0;
    max-width: 610px;
}

#package-section-main .main-box {
    margin: 50px 0 0 0;
    row-gap: 40px;
}

#package-section-main .main-box .box {
    overflow: hidden;
}

#package-section-main .main-box .box .img-box {
    overflow: hidden;
    border-radius: 12px;

}

#package-section-main .main-box .box img {
    width: 400px;
    border-radius: 12px;
    transition: all .7s linear;
}

#package-section-main .main-box .box img:hover {
    transform: scale(1.2);
}

#package-section-main .main-box .box h4 {
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: #444;
    margin: 15px auto;
}



#experience-single-banner-section {
    height: 502px;
    width: 100%;
    margin-top: var(--header-height);
}

#experience-single-banner-section .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#experience-single-banner-section .banner-slider-section h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--cta-primary);
    margin: 0px 0 0 0;
    text-transform: uppercase;
    background-color: #000;
    padding: 10px 15px;
    max-width: fit-content;
    border-radius: 4px;
}

#experience-single-banner-section .banner-slider-section h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 25px 0 0 0;

}

#experience-single-banner-section .banner-slider-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 21px 0 0 0;
    max-width: 570px;

}


#experience-single-banner-section .breadcrumb-box {
    gap: 15px;
    padding: 40px 0;
    right: 0;
    bottom: 0;
    background-color: var(--cta-primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 20px;
}

#experience-single-banner-section .breadcrumb-box a {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    position: relative;
}

#experience-single-banner-section .breadcrumb-box a::after {
    content: "/";
    margin-left: 5px;
    position: absolute;
    pointer-events: none;

}

#experience-single-banner-section .breadcrumb-box a::after:hover {
    text-decoration: none;

}

#experience-single-banner-section .breadcrumb-box a:hover {
    text-decoration: underline;
}

#experience-single-banner-section .breadcrumb-box h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0;
}

#main-packages-section {
    padding: 60px 0;
    background-color: #fff;
}

#main-packages-section h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0em;
    text-align: center;
    color: #444;
    margin: 25px auto 4px;
    max-width: fit-content;
}

#main-packages-section h2::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 3px;
    background-color: #444;
    display: block;
}



#main-packages-section .main-box {
    margin-top: 60px;
    justify-content: center;
    align-items: flex-start;

}

#main-packages-section .main-box .box {
    flex-basis: 400px;
}

#main-packages-section .main-box .box .img-box {
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

#main-packages-section .main-box .box img {
    width: 100%;
    height: 320px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: .8s all linear;
}

/* #main-packages-section .main-box .box img:hover {
    transform: scale(1.2);

} */

#main-packages-section .main-box .box .bottom {
    background-color: #fff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 20px;
    margin-top: -40px;
    position: relative;
    border: 1px solid var(--cta-primary);
    min-height: 260px;
    height: auto;
    justify-content: space-between;
}

#main-packages-section .main-box .box .bottom h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin: 0;
}

#main-packages-section .main-box .box .bottom p {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 10px 0 0 0;
    max-width: 450px;
}

#main-packages-section .main-box .box .bottom .btn-box {
    justify-content: space-between;
}

#main-packages-section .main-box .box .bottom .btn-box a:first-child {
    width: 140px;
    height: 50px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #444;
    border-radius: 4px;
    margin: 0px 0 0 0;
    border: 1px solid var(--cta-primary);
}

#main-packages-section .main-box .box .bottom .btn-box .show-form {
    width: 180px;
    height: 50px;
    background-color: var(--cta-primary);
    border: 1px solid var(--cta-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    margin: 0px 0 0 0;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

#main-packages-section .main-box .box .bottom .btn-box .show-form:hover {
    opacity: .8;
}

#main-packages-section .main-box .box .bottom .btn-box a:hover {
    opacity: .8;
}

#main-packages-section .main-box .tiles-box {
    /* border: 1px solid red; */
    top: 10px;
    left: 10px;
}

#main-packages-section .main-box .tiles-box h5 {
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 0;
    background-color: #14B0C3;
    padding: 6px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

#main-packages-section .main-box .tiles-box h5:nth-child(2) {
    background-color: #203D0A;
}

#main-packages-section .main-box .discount-box {
    top: -20px;
    right: -25px;
    background-color: #DD2819;
    padding: 30px 15px;
    height: auto;
    width: fit-content;
    border-radius: 50%;
}

#main-packages-section .main-box .discount-box h4 {
    font-size: 34px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 6px 10px;
    border-radius: 4px;
    transform: rotate(15deg);
}

#main-packages-section .main-box .discount-box h4 span {
    font-weight: 400;
    font-size: 20px;
    display: block;
    margin-top: 10px;
}

/* --------------------------  Experience  CSS  End ------------------ */



#gallery-banner-section {
    height: 300px;
    width: 100%;
    margin-top: var(--header-height);
    position: relative;
}

#gallery-banner-section::before {
    content: "";
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .5;

}

#gallery-banner-section .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#gallery-banner-section .banner-slider-section h4 {
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 0px auto 0;
    text-transform: uppercase;
}


#gallery-banner-section .banner-slider-section p {
    font-size: 21px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 21px auto 0;
    max-width: 820px;

}


#gallery-banner-section .breadcrumb-box {
    gap: 15px;
    padding: 40px 0;
    right: 0;
    bottom: 0;
    background-color: var(--cta-primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 20px;
}

#gallery-banner-section .breadcrumb-box a {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    position: relative;
}

#gallery-banner-section .breadcrumb-box a::after {
    content: "/";
    margin-left: 5px;
    position: absolute;
    pointer-events: none;

}

#gallery-banner-section .breadcrumb-box a::after:hover {
    text-decoration: none;

}

#gallery-banner-section .breadcrumb-box a:hover {
    text-decoration: underline;
}

#gallery-banner-section .breadcrumb-box h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0;
}

#gallery-section-1 {
    padding: 60px 0;
    background-color: #fff;
}



/* --------------------------  About Us  CSS  Start  ------------------ */
#about-us-section {
    height: 300px;
    width: 100%;
    margin-top: var(--header-height);
    position: relative;
}

#about-us-section::before {
    content: "";
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .5;

}

#about-us-section .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}


#about-us-section .banner-slider-section h4 {
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 0px auto 0;
    text-transform: uppercase;
}


#about-us-section .banner-slider-section p {
    font-size: 21px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 21px auto 0;
    max-width: 820px;

}


#about-us-section .breadcrumb-box {
    gap: 15px;
    padding: 40px 0;
    right: 0;
    bottom: 0;
    background-color: var(--cta-primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 20px;
}

#about-us-section .breadcrumb-box a {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    position: relative;
}

#about-us-section .breadcrumb-box a::after {
    content: "/";
    margin-left: 5px;
    position: absolute;
    pointer-events: none;

}

#about-us-section .breadcrumb-box a::after:hover {
    text-decoration: none;

}

#about-us-section .breadcrumb-box a:hover {
    text-decoration: underline;
}

#about-us-section .breadcrumb-box h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0;
}

#about-us-section-1 {
    padding: 60px 0;
    background-color: #fff;
}

#about-us-section-1 h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--cta-primary);
    margin: 0px 0 0 0;
    text-transform: uppercase;
}

#about-us-section-1 p {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 10px 0 0 0;
}

#about-us-section-1 p:first-of-type {
    margin: 25px 0 0 0;
}

#about-us-section-1 img {
    margin-left: auto;
    border-radius: 8px;
    height: 600px;
}

#about-us-section-2 {
    padding: 60px 0 60px;
    background-color: #F4F6F9;
}

#about-us-section-2 h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: var(--cta-primary);
    margin: 0px auto 0;
    text-transform: uppercase;
}

#about-us-section-2 h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #000;
    margin: 5px auto 0;
    text-transform: uppercase;
}

#about-us-section-2 p {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: #444;
    margin: 16px auto 0;
    max-width: 840px;
}

#about-us-section-2 a {
    width: 220px;
    height: 56px;
    border-radius: 4px;
    background: var(--cta-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: .04em;
    text-align: center;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 1);
}

#about-us-section-2 a:hover {
    opacity: .8;
}



/* --------------------------  About Us  CSS  End ------------------ */



#destinations-banner-section {
    height: 300px;
    width: 100%;
    margin-top: var(--header-height);
    position: relative;
}

#destinations-banner-section::before {
    content: "";
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .5;

}

#destinations-banner-section .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}


#destinations-banner-section .banner-slider-section h4 {
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 0px auto 0;
    text-transform: uppercase;
}


#destinations-banner-section .banner-slider-section p {
    font-size: 21px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 21px auto 0;
    max-width: 820px;

}


#destinations-banner-section .breadcrumb-box {
    gap: 15px;
    padding: 40px 0;
    right: 0;
    bottom: 0;
    background-color: var(--cta-primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 20px;
}

#destinations-banner-section .breadcrumb-box a {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    position: relative;
}

#destinations-banner-section .breadcrumb-box a::after {
    content: "/";
    margin-left: 5px;
    position: absolute;
    pointer-events: none;

}

#destinations-banner-section .breadcrumb-box a::after:hover {
    text-decoration: none;

}

#destinations-banner-section .breadcrumb-box a:hover {
    text-decoration: underline;
}

#destinations-banner-section .breadcrumb-box h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0;
}

#destinations_main_section {
    padding: 78px 0 70px;
    background-color: #F4F6F9;
}

#destinations_main_section .destinations_main_box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 40px;
    row-gap: 80px;
    flex-wrap: wrap;
}

#destinations_main_section .destinations_main_box .destination_box {
    max-width: 100%;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
    transition: all .3s ease-in-out;
    overflow: hidden;

}

#destinations_main_section .destinations_main_box .destination_box:hover {
    opacity: .7;
    transform: scale(1.05);
}

#destinations_main_section .destinations_main_box .destination_box img {
    overflow: hidden;
    height: 260px;
    border-radius: 4px 4px 0 0;
}

#destinations_main_section .destinations_main_box .destination_box h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #333;
    margin: 21px 0 0 0;
}

#destinations_main_section .destinations_main_box .destination_box p {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: #444;
    margin: 15px 0 0 0;
    max-width: 100%;
    height: 100px;
}










#packages-banner-section {
    height: 300px;
    width: 100%;
    margin-top: var(--header-height);
    position: relative;
}

#packages-banner-section::before {
    content: "";
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .5;

}

#packages-banner-section .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}


#packages-banner-section .banner-slider-section h4 {
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 0px auto 0;
    text-transform: uppercase;
}


#packages-banner-section .banner-slider-section p {
    font-size: 21px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 21px auto 0;
    max-width: 820px;

}


#packages-banner-section .breadcrumb-box {
    gap: 15px;
    padding: 40px 0;
    right: 0;
    bottom: 0;
    background-color: var(--cta-primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 20px;
}

#packages-banner-section .breadcrumb-box a {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    position: relative;
}

#packages-banner-section .breadcrumb-box a::after {
    content: "/";
    margin-left: 5px;
    position: absolute;
    pointer-events: none;

}

#packages-banner-section .breadcrumb-box a::after:hover {
    text-decoration: none;

}

#packages-banner-section .breadcrumb-box a:hover {
    text-decoration: underline;
}

#packages-banner-section .breadcrumb-box h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0;
}



#package_main_section {
    padding: 60px 0 60px;
    background-color: #fff;
}


#package_main_section .card_package_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
}

#package_main_section .card_package_wrapper .card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 820px;
    width: 820px;
    gap: 30px;
    position: relative;
    box-shadow: 0 6px 41px 0 #c9cacf;
    padding: 15px 15px 15px 15px;
    border-radius: 24px;

}

#package_main_section .card_package_wrapper .card img {
    max-width: 400px;
    width: 400px;
    border-radius: 12px;
}

#package_main_section .card_package_wrapper .card .name {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin: 0px 0;
}

#package_main_section .card_package_wrapper .card .duration {
    font-size: 21px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 15px 0 0 0;
}


#package_main_section .card_package_wrapper .card .duration::before {
    content: '\f017';
    color: #444;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 21px;
    padding-right: 6px;
}



#package_main_section .card_package_wrapper .card .rating {
    font-size: 21px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin: 0px 0 0 0;
    position: absolute;
    right: 20px;
    top: 10px;
}

#package_main_section .card_package_wrapper .card .rating::before {
    content: '\f005';
    color: #e9aa07;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    padding-right: 6px;
    margin-top: -2px;
}

#package_main_section .card_package_wrapper .card .price {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin: 15px 0 0 0;
}

#package_main_section .card_package_wrapper .card .price::before {
    content: '\f156';
    color: #000000;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    padding-right: 6px;
    margin-top: -2px;
}

#package_main_section .card_package_wrapper .card .price span {
    text-decoration: line-through;
    color: #c83e3e;
    font-size: 17px;
}

#package_main_section .card_package_wrapper .card button {
    width: 260px;
    height: 60px;
    background-color: var(--cta-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    margin: 40px auto 0;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#package_main_section .card_package_wrapper .card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 60px;
    background-color: transparent;
    font-size: 26px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #000;
    border-radius: 4px;
    margin: 20px auto 0;
    border: 1px solid var(--cta-primary);
    cursor: pointer;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 1);
}

#package_main_section .card_package_wrapper .card button:hover {
    opacity: .7;
}

#package_main_section .card_package_wrapper .card a:hover {
    opacity: .7;
}



/* --------------------------  Contact Us  CSS  Start ------------------ */



#contact-us-section {
    height: 502px;
    width: 100%;
    margin-top: var(--header-height);
}

#contact-us-section .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#contact-us-section .banner-slider-section h4 {
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0px 0 0 0;
    text-transform: uppercase;
    background-color: var(--cta-primary);
    padding: 10px 15px;
    max-width: fit-content;
    border-radius: 4px;
}


#contact-us-section .banner-slider-section p {
    font-size: 21px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 21px 0 0 0;
    max-width: 820px;

}

#details-section .contact-box {
    padding-bottom: 50px;
    max-width: 720px;
}

#details-section .contact-box .box {
    padding: 10px 30px 10px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px 4px rgba(0, 0, 0, .11);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 30px;
    width: fit-content;
}

#details-section .contact-box .box .img-box {
    background-color: #000;
    padding: 6px 12px;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#details-section .contact-box .box .img-box img {
    width: 15px;
}

#details-section a:hover {
    opacity: .7;
}

#details-section .contact-box a {
    font-size: 21px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;


}

#details-section .contact-box h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 0;
}

#details-section .form-box {
    width: 460px;
    height: auto;
    background: #FFF;
    margin-top: -400px;
    margin-left: auto;
    margin-bottom: 50px;
    box-shadow: 0px 12px 24px 0px #8588ad;
    z-index: 100;
    border-radius: 8px;

}

#details-section .form-box .top {
    background-color: var(--cta-primary);
    max-width: 100%;
    padding: 30px 0 10px;
    border-radius: 8px 8px 0 0;

}

#details-section .form-box .bottom {
    padding: 10px 25px 0;

}

#details-section .form-box .top h3 {
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 29.523px;
    margin: 0 auto 0;
    text-transform: uppercase;
    max-width: 330px;
}

#details-section .form-box .top h6 {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 18.452px;
    max-width: 340px;
    margin: 5px auto 15px;
}

#details-section .form-box span {
    display: block;
    margin: 15px auto;
}

#details-section .form-box span input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--cta-primary);
    background: #FFF;
    height: 50px;
    padding-left: 21px;
    outline: none;
}

#details-section .form-box span select {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--cta-primary);
    background: #FFF;
    height: 50px;
    padding-left: 21px;
    outline: none;
    color: #444;
    font-size: 15px;
    font-family: Open Sans;
    font-weight: 400;
    cursor: pointer;
}

#details-section .form-box .row-50 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#details-section .form-box .row-50 input {
    max-width: 200px;
    width: 200px;
    cursor: pointer;
    color: #444;
    font-size: 15px;
    font-family: Open Sans;
    font-weight: 400;
    cursor: pointer;
}

#details-section .form-box .wpcf7-form span #query {
    height: 110px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--cta-primary);
    background: #FFF;
    padding-left: 21px;
    padding-top: 10px;
    outline: none;
}


#details-section .form-box .wpcf7-form [type='submit'] {
    width: 100%;
    height: 64px;
    border-radius: 5px;
    background: var(--cta-primary);
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.832px;
    letter-spacing: .185px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

#details-section .form-box .wpcf7-form [type='submit']:hover {
    opacity: .8;
}


#details-section .form-box .wpcf7-spinner {
    margin: 3px auto 0;
}

#social-links {
    background-color: #F4F6F9;
    padding: 40px 0 40px;

}

#social-links h5 {
    color: #444;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    max-width: 577px;
    margin: 0px auto 15px;
}

#social-links .box {
    margin-top: 40px;
    align-items: flex-start;
}

#social-links a {
    background-color: var(--cta-primary);
    padding: 20px;
    height: 120px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

#social-links a:hover {
    opacity: .8;
}

#social-links a img {
    width: 40px;
}

.map iframe {
    width: 100%;
    height: 600px;
}








/* --------------------------  Contact Us  CSS  End ------------------ */


/* --------------------------  Blogs  CSS Start ------------------ */


#blog-banner-section {
    height: 502px;
    width: 100%;
    margin-top: var(--header-height);
}

#blog-banner-section .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#blog-banner-section .banner-slider-section h4 {
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0px 0 0 0;
    padding: 10px 15px;
    max-width: 520px;
    border-radius: 4px;
}


#blog-banner-section .breadcrumb-box {
    gap: 15px;
    padding: 40px 0;
    right: 0;
    bottom: 0;
    background-color: var(--cta-primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 20px;
}

#blog-banner-section .breadcrumb-box a {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    position: relative;
}

#blog-banner-section .breadcrumb-box a::after {
    content: "/";
    margin-left: 5px;
    position: absolute;
    pointer-events: none;

}

#blog-banner-section .breadcrumb-box a::after:hover {
    text-decoration: none;

}

#blog-banner-section .breadcrumb-box a:hover {
    text-decoration: underline;
}

#blog-banner-section .breadcrumb-box h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0;
}




/* --------------------------  Blogs  CSS End ------------------ */





/* --------------------------  Single Package  CSS Start ------------------ */
#single-package-banner-section {
    height: 302px;
    width: 100%;
    margin-top: var(--header-height);
}

#single-package-banner-section .banner-slider-section {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

#single-package-banner-section .banner-slider-section h4 {
    font-size: 44px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 0px auto 0;
}



#single-package-banner-section .breadcrumb-box {
    gap: 15px;
    padding: 40px 0;
    right: 0;
    bottom: 0;
    background-color: var(--cta-primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 20px;
}

#single-package-banner-section .breadcrumb-box a {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    position: relative;
}

#single-package-banner-section .breadcrumb-box a::after {
    content: "/";
    margin-left: 5px;
    position: absolute;
    pointer-events: none;

}

#single-package-banner-section .breadcrumb-box a::after:hover {
    text-decoration: none;

}

#single-package-banner-section .breadcrumb-box a:hover {
    text-decoration: underline;
}

#single-package-banner-section .breadcrumb-box h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0;
}

.section-1 {
    background-color: var(--cta-primary);
    width: 100%;
    height: 150px;
}


.section-1 h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 0px 0 0;
}

.section-1 h5 {
    font-size: 22px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin: 0px 0 0;
}

.section-1 .price h3::before {
    content: '\f555';
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    padding-right: 10px;
}

.section-1 .duration h3::before {
    content: '\f017';
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    padding-right: 10px;
}

.section-1 h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 4px 0 0;
}

.single-package-main-section {
    padding: 80px 0;
}

.single-package-main-section .left-side {
    max-width: 800px;
}

.single-package-main-section .slide-show-gallery-package img {
    height: 600px;
    margin: 0 20px;
    border-radius: 12px;

}

.single-package-main-section .slick-next:before {
    content: "\f054";
}

.single-package-main-section .slick-next {
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #000;
}

.single-package-main-section .slick-next:hover {
    background: #fff;
    color: #000;

}

.single-package-main-section .slick-next:focus {
    background: #fff;
    color: #000;

}

.single-package-main-section .slick-next:before {
    font-family: 'Font Awesome 5 Free';
    text-align: center;
    font-weight: 900;
    display: inline-block;
    width: 100%;
    color: #000;
}

.single-package-main-section .slick-prev:before {
    font-family: 'Font Awesome 5 Free';
    text-align: center;
    font-weight: 900;
    display: inline-block;
    width: 100%;
    color: #000;
}

.single-package-main-section .slick-prev:before {
    content: '\f053';
}

.single-package-main-section .slick-prev {
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    z-index: 1;
}

.single-package-main-section .slick-prev:hover {
    background: #fff;
    color: #000;

}

.single-package-main-section .slick-prev:focus {
    background: #fff;
    color: #000;

}

.single-package-main-section .details {
    margin: 40px 0 0 0;
}

.single-package-main-section .details h1,
.single-package-main-section .details h2,
.single-package-main-section .details h3,
.single-package-main-section .details h4,
.single-package-main-section .details h5,
.single-package-main-section .details h6 {
    font-size: 30px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: #313041;
    margin: 0px 0 0;
}

.single-package-main-section .details p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 20px 0 0;
}

.single-package-main-section .details h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: #313041;
    margin: 10px 0 10px;
}

.single-package-main-section .details ul {
    padding: 0;
}

.single-package-main-section .details ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 10px 0 0;
}

.single-package-main-section h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: #313041;
    margin: 40px 0 20px;
}


.single-package-main-section .include-exclude-box h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 10px 0 0px;
}

.single-package-main-section .include-exclude-box .includes h5:before {
    content: '\f00c';
    color: #14B0C3;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline;
    font-size: 14px;
    padding-right: 10px;
}

.single-package-main-section .include-exclude-box .excludes {
    margin-left: 40px;
}

.single-package-main-section .include-exclude-box .excludes h5:before {
    content: '\f00d';
    color: #313041;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline;
    font-size: 14px;
    padding-right: 10px;
}


.single-package-main-section .tour-plans h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    margin: 30px 0 0px;
}

.single-package-main-section .tour-plans p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
    margin: 10px 0 0px;
}

.single-package-main-section .tour-plans h5::before {
    content: '\2192';
    /* Unicode right arrow */
    color: #000;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    display: inline;
    padding-right: 10px;
}

.single-package-main-section .right_side {
    position: sticky;
    top: 130px;
    height: 100%;
}

.single-package-main-section .form-box {
    width: 460px;
    height: auto;
    border: 1px solid var(--cta-primary);
    background: #FFF;
    margin-top: 0px;
    margin-left: auto;
    margin-bottom: 50px;

}

.single-package-main-section .form-box .top {
    background-color: var(--cta-primary);
    max-width: 100%;
    padding: 20px 0;
}

.single-package-main-section .form-box .bottom {
    padding: 10px 25px 0;

}

.single-package-main-section .form-box .top h3 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29.523px;
    margin: 0 auto 0;
    text-transform: uppercase;
    max-width: 320px;
}

.single-package-main-section .form-box .top h6 {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18.452px;
    max-width: 310px;
    margin: 5px auto 15px;
}

.single-package-main-section .form-box span {
    display: block;
    margin: 15px auto;
}

.single-package-main-section .form-box span input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--cta-primary);
    background: #FFF;
    height: 50px;
    padding-left: 21px;
    outline: none;
}

.single-package-main-section .form-box span select {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--cta-primary);
    background: #FFF;
    height: 50px;
    padding-left: 21px;
    outline: none;
    font-family: Open Sans;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    color: #444444;
    margin: 0;
}



.single-package-main-section .form-box .row-50 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.single-package-main-section .form-box .row-50 input {
    width: 200px;
    max-width: 200px;
    cursor: pointer;
    font-family: Open Sans;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    color: #444444;
}

.single-package-main-section .form-box label {
    font-family: Open Sans;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    color: #444444;
    margin: 0;
}

.single-package-main-section .form-box .wpcf7-form span #message {
    height: 110px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--cta-primary);
    background: #FFF;
    padding-left: 21px;
    padding-top: 10px;
    outline: none;
}

.single-package-main-section .form-box .wpcf7-form span #query {
    height: 110px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--cta-primary);
    background: #FFF;
    padding-left: 21px;
    padding-top: 10px;
    outline: none;
}

.single-package-main-section .form-box .wpcf7-form [type='submit'] {
    width: 100%;
    height: 58px;
    border-radius: 8px;
    background: var(--cta-primary);
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16.606px;
    font-style: normal;
    font-weight: 700;
    line-height: 25.832px;
    letter-spacing: .185px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.single-package-main-section .form-box .wpcf7-form [type='submit']:hover {
    opacity: .8;
}


.single-package-main-section .form-box .wpcf7-spinner {
    margin: 3px auto 0;
}


/* --------------------------  Single Package  CSS End ------------------ */


/* --------------------------  404 Page Start ------------------ */


#not_found {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#not_found .box h2 {
    color: var(--cta-primary);
    text-align: center;
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: 54px;
    max-width: 605px;
    margin: 30px auto 0;
}

#not_found .box h4 {
    color: var(--cta-primary);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    max-width: 605px;
    margin: 50px 0 0 0;
}

#not_found .box p {
    color: #444;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    max-width: 648px;
    margin: 25px 0 0 0;
}

#not_found .box a {
    width: 279px;
    height: 56px;
    border-radius: 4px;
    background: var(--cta-primary);
    color: #fff;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 50px 0 0 0;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 1);
}

#not_found .box a:hover {
    opacity: .8;
}


/* --------------------------  404 Page End ------------------ */



/* --------------------------  Thank You Page Start ------------------ */

#thank_you_section {}

#thank_you_section .inner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;

}

#thank_you_section .inner-box h4 {
    color: var(--cta-primary);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    max-width: 605px;
    margin: 30px 0 0 0;
}

#thank_you_section .inner-box p {
    color: var(--cta-primary);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    max-width: 640px;
    margin: 25px auto;
}

#thank_you_section .inner-box a {
    width: 279px;
    height: 56px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid var(--cta-primary);
    color: var(--cta-primary);
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 50px auto 0;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 1);

}

#thank_you_section .inner-box a:hover {
    opacity: .8;
}


/* --------------------------  Thank You Page End ------------------ */



/* --------------------------  Media Queries  ------------------ */
@media (max-width: 1510px) {
    .header .nav-wrap .menu-item-118 .sub-menu .menu-item-361 .sub-menu {
        right: 0;
        left: -260px;
    }
}

@media (max-width: 1400px) {
    .single-package-main-section .left-side {
        max-width: 660px;
    }

    .single-package-main-section .form-box {
        width: 420px;
    }
}

@media (max-width: 1200px) {
    .nav-list li a {
        font-size: 14px;
    }

    .nav-list {
        gap: 0px;
    }



    #home-section-1 h2 {
        font-size: 24px;
        font-weight: 600;
        line-height: 34px;
    }

    .single-package-main-section .left-side {
        order: 1;
        max-width: 100%;
    }

    .single-package-main-section .right_side {
        position: static;
        width: 100%;
    }

    .single-package-main-section .form-box {
        width: 420px;
        margin: 0 auto 40px;
    }
}



@media (min-width: 992px) {
    .header .nav-wrap #menu-item-118:hover>.sub-menu {
        display: flex;
    }

    .header .nav-wrap #menu-item-118:hover .sub-menu #menu-item-361:hover .sub-menu {
        display: flex;
    }
}


@media (max-width: 992px) {

    .hamburger {
        display: block;
    }

    .nav-wrap {
        position: fixed;
        left: 0;
        transform: translateY(-100%);
        background: var(--cta-primary);
        transition: all 0.5s linear;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
        flex-direction: column;
        align-items: flex-start !important;
        padding: 20px 0 30px;

    }

    .nav-list li:last-child {
        max-width: fit-content;
        padding: 8px 20px;
    }

    .nav-wrap.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        right: 0;
        z-index: 99;
        top: 95px;
        left: 0;
    }

    .nav-list .current-menu-item a {
        width: fit-content;
        
        background: none;
        font-weight: 600;
        padding: 0;
    }

    .header .nav-wrap .cta-box {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .header .nav-wrap .cta-button {
        width: 140px;
        height: 48px;
        background: #fff;
        color: rgba(44, 44, 44, 1);

    }

    .nav-list {
        flex-direction: column;
        align-items: unset;
        opacity: 0;
        visibility: hidden;
        transition-delay: 0.5s;
        transition-duration: 1s;
        transition-property: all;
        gap: 0px;
        max-width: 100%;
    }

    .nav-wrap.is-open .nav-list {
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        padding: 10px 10px;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }

    .header .nav-wrap .menu-item-118 .sub-menu {
        display: none;
        flex-direction: column;
        padding: 0;
        position: relative;
        top: 12px;
        right: -20px;
        width: 285px;
        border-radius: 7.348px;
        border: 1.196px solid #353634;
        background: #FFF;
        box-shadow: 0px 0px 13.13px 1.31px rgba(255, 255, 255, 0.30);
        width: 97%;
    }

    .header .nav-wrap .menu-item-118 .sub-menu li {

        width: 100%;
    }

    .header .nav-wrap .menu-item-has-children:after {
        content: none;
    }

    .header .nav-wrap .menu-item-has-children #menu-item-361.current-menu-item::after {
        content: none;
    }

    .header .nav-wrap .menu-item-has-children #menu-item-361::after {
        content: none;

    }

    .nav-list li a {
        color: #fff !important;
        text-align: left;
        display: inline-block;
        padding: 2px 0;
    }

    .nav-list li a::after {
        background-color: #FFF;
    }

    .nav-list .current-menu-item::after {
        left: -7%;
        bottom: 16px;
    }

    .nav-list li.with-submenu {
        display: block;
    }

    .nav-list li.with-submenu::after {
        border-color: #FFF;
        right: 10px;
        top: 12px;
    }

    .nav-list li.with-submenu:hover::after {
        transform: rotate(45deg);
        margin-top: 0;
    }

    .nav-list li.with-submenu.is-open::after {
        transform: rotate(225deg);
        margin-top: 5px;
    }

    .nav-list li.with-submenu .submenu {
        position: static;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid #ccc;
        display: none;
        transition: auto;
        margin: 10px 0;
    }

    .nav-list li.with-submenu .submenu li {
        padding: 7px 10px;
    }

    .nav-list li.with-submenu .submenu li:hover a {
        background-color: transparent;
    }

    .nav-list li.with-submenu .submenu li a {
        display: inline-block;
        padding: 2px 0;
    }

    .nav-list li.with-submenu .submenu li a::after {
        display: block;
    }

    .row-wrap .nav-wrap .button {
        max-width: 720px;
        margin: 0 auto;
        width: 100%;
    }

    .row-wrap .nav-wrap .button a {
        max-width: 160px;
        height: 48px;
        padding: 0 20px;
        width: 100%;
        font-size: 14px;

    }

    .nav-wrap.is-open .menu-header-container {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .header .nav-wrap .menu-item-118 .sub-menu .current-menu-item {
        background-color: transparent;
    }

    .header .nav-wrap .menu-item-118 .sub-menu .current-menu-item a {
        color: #000 !important;
        font-weight: 700;
    }

    .header .nav-wrap .current-menu-item a {
        font-weight: 700;
    }

    .header .nav-wrap .menu-item-118 .sub-menu .current-menu-item .sub-menu li a {
        font-weight: 400;
    }

    .header .nav-wrap .menu-item-118 .sub-menu li a {
        width: 80%;
        /* border: 1px solid red; */
    }

    .header .nav-wrap .menu-item-118 .sub-menu .menu-item-361 .sub-menu {
        top: 9px;
        right: -30px;
        left: 36px;
    }

    .header .nav-wrap .menu-item-118 .sub-menu .menu-item-361 .sub-menu {
        width: 94%;
        border-radius: 0;
        border: none;
    }

    .header .nav-wrap .menu-item-118 .sub-menu .menu-item-361 .sub-menu li:last-child {
        border-bottom: none;
    }

    /* Menu */

    .plusminus {
        width: 12px;
        height: 12px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 14px;
        pointer-events: none;
    }

    #menu-item-361 .plusminus {
        right: 10px;
        top: 16px;
    }


    .plusminus.active:before {
        transform: translatey(-50%) rotate(-90deg);
        opacity: 0;
    }

    .plusminus.active:after {
        transform: translatey(-50%) rotate(0);
    }

    .plusminus:before {
        content: "";
        display: block;
        background-color: #fff;
        position: absolute;
        top: 50%;
        left: 0;
        transition: 0.35s;
        width: 100%;
        height: 3px;
    }

    .plusminus:after {
        content: "";
        display: block;
        background-color: #fff;
        position: absolute;
        top: 50%;
        left: 0;
        transition: 0.35s;
        width: 100%;
        height: 3px;
    }

    .sub-menu .plusminus:before {
        background-color: #000 !important;
        /* Black color for the second plusminus icon */
    }

    .sub-menu .plusminus:after {
        background-color: #000 !important;
        /* Black color for the second plusminus icon */
    }

    .plusminus:before {
        transform: translatey(-50%);
    }

    .plusminus:after {
        transform: translatey(-50%) rotate(90deg);
    }


    /* ENds */

    #home-banner-section .form-box {
        margin: 50px auto;
    }

    #home-banner-section .banner-slider-section {
        padding-top: 50px;
    }

    #home-section-1 h2 {
        margin: 20px 0 0 0;
        max-width: 530px;
    }

    #home-section-1 .cards-box .card {
        flex-basis: 0;
    }

    #home-section-1 .cards-box .card p {
        font-size: 12px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0em;
        text-align: left;
        color: #444;
        margin: 6px 0 0px;
        max-width: 300px;
    }

    #home-section-1 .cards-box .card {
        flex-basis: 45%;
        max-width: 45%;
    }

    #home-section-1 .cards-box {
        margin: 20px 0 0 0;
        flex-wrap: wrap;
        flex-direction: row;
    }

    #package-section .main-box .box .img-box {
        margin: 0 auto;
        width: 300px;
    }

    #package-section .main-box .box img {
        width: 100%;
    }

    #package-section .main-box .box h4 {
        font-size: 20px;
        max-width: 230px;
    }


    #destination-section .images-main-box img {
        width: 300px;
        height: 260px;
        border-radius: 4px;
        max-width: 100%;
    }

    #home-section-3 {
        height: auto;
    }

    #home-section-3 .banner-slider-section {
        padding: 50px 0;
    }

    #about-us-section-1 img {
        margin: 60px auto 0;
    }

    #experience-banner-section .banner-slider-section h2 {
        font-size: 50px;
    }

    #package-section-main .main-box {
        align-items: flex-start;
    }

    #package-section-main .main-box .box h4 {
        line-height: 36px;
        max-width: 200px;
    }

    #package-section-main .main-box .box img {
        width: 240px;
    }

    #details-section .main-box {
        flex-direction: column-reverse;
        gap: 0;
    }

    #details-section .contact-box {
        padding-bottom: 100px;
		        width: 100%;
    }

    #details-section .form-box {
        margin-top: 50px;
        margin-left: 0;
        margin-bottom: 50px;
    }


    #package_main_section .card_package_wrapper .card {
        max-width: 400px;
        width: 400px;
        gap: 30px;
        position: relative;
        box-shadow: 0 6px 41px 0 #c9cacf;
        padding: 21px 21px 21px 21px;
        border-radius: 24px;
        flex-direction: column;
    }

    #package_main_section .card_package_wrapper .card img {
        max-width: 360px;
        width: 360px;
        border-radius: 12px;
    }

    #package_main_section .card_package_wrapper .card .rating {
        font-size: 21px;
        line-height: 36px;
        color: #fff;
        position: absolute;
        right: 36px;
        top: 29px;
    }




}

@media (max-width: 768px) {
    .header .nav-wrap .menu-item-118 .sub-menu .menu-item-361 .sub-menu {
        width: 92%;
    }

    .header .nav-wrap .cta-box {
        max-width: 540px;
    }

    .nav-wrap.is-open .menu-header-container {
        max-width: 540px;
    }

    .row-wrap .nav-wrap .button {
        max-width: 540px;
    }

    .header .nav-wrap .menu-item-118 .sub-menu {
        width: 97%;
    }

    .nav-wrap.is-open {
        height: auto;
        overflow-y: scroll;
        max-height: 480px;
    }

    .upper-row-wrap .box h4 {
        font-size: 10px;
    }

    .upper-row-wrap .box a {
        font-size: 12px;
    }

    .upper-row-wrap .box img {
        height: 12px;
    }

    .upper-row-wrap .box .mail {
        gap: 10px;
        margin-left: 0px;
    }

    #destination-section .images-main-box img {
        width: 230px;
        height: 200px;
        border-radius: 4px;
        max-width: 100%;
    }



    #destination-section .images-main-box {
        row-gap: 15px;
        column-gap: 15px;
    }

    #gallery-section .main-box img {
        height: 140px;
    }

    #gallery-section .destination_gallery img {
        height: 160px !important;
    }

    footer .left-side {
        gap: 10px;
        width: 50%;
    }

    footer .middle-side {
        width: 40%;
    }

    #about-us-section {
        height: auto;
    }

    #about-us-section .banner-slider-section {
        padding: 50px 0 0;
    }

    #about-us-section .banner-slider-section .w-lg-50 {
        padding-bottom: 90px;
    }

    #package-section-main .main-box {
        gap: 20px;
    }

    #experience-banner-section .banner-slider-section h2 {
        font-size: 40px;
    }

    #experience-single-banner-section .banner-slider-section h2 {
        font-size: 40px;
    }

    #main-packages-section h2 {
        font-size: 40px;
    }

    .single-package-main-section .include-exclude-box .excludes {
        margin: 0;
    }

    #not_found .box p {
        font-size: 18px;
        line-height: 30px;
    }

    #not_found .box h2 {
        font-size: 75px;
    }

    #not_found .box h4 {
        font-size: 40px;
        margin: 34px 0 0 0;
    }
}




@media (max-width: 576px) {
    .header .nav-wrap .menu-item-118 .sub-menu .menu-item-361 .sub-menu {
        left: 10px;
    }

    .header .nav-wrap .menu-item-118 .sub-menu .menu-item-361 .sub-menu {
        width: 95%;
    }

    .header .nav-wrap .cta-box {
        padding: 0 20px;
    }

    .nav-wrap.is-open .menu-header-container {
        padding: 0 20px;

    }

    .header {
        height: auto;
    }


    .nav-list li a {
        font-size: 16px;
    }

    .header .nav-wrap .menu-item-118 .sub-menu li a {
        font-size: 15px;
    }

    .row-wrap .nav-wrap .button {
        padding: 0 20px;
    }

    .header .nav-wrap .menu-item-118 .sub-menu {
        width: 97%;
    }

    .row-wrap .logo-wrap h6 {
        font-size: 12px;
        max-width: 240px;
    }

    .row-wrap .logo-wrap a {
        max-width: 250px;
        display: block;
    }

    .upper-row-wrap .box h4 {
        display: none;
    }

    #home-banner-section .banner-slider-section h4 {
        font-size: 22px;
    }

    #home-banner-section .banner-slider-section h1 {
        font-size: 40px;
        line-height: 50px;
    }

    #home-banner-section .banner-slider-section p {
        font-size: 15px;
        line-height: 24px;
    }

    #home-banner-section .form-box {
        max-width: 100%;
    }

    #home-banner-section .form-box .wpcf7-form [type='submit'] {
        font-size: 15.606px;
    }

    #home-section-1 h2 {
        font-size: 20px;
        line-height: 30px;
    }

    #home-section-1 p {
        font-size: 15px;
        line-height: 24px;
    }

    #home-section-1 .cards-box {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .cta-btn {
        margin: 50px auto 0;
    }

    #package-section {
        padding: 60px 0 70px;
    }

    #package-section .main-box .box .img-box {
        margin: 0 auto;
        width: 230px;
        max-width: 100%;
    }

    #package-section h5 {
        font-size: 14px;
        line-height: 26px;
        max-width: 290px;
    }

    #package-section .main-box {
        margin: 50px 0 0 0;
        row-gap: 30px;
    }

    #destination-section h5 {
        font-size: 14px;
        line-height: 24px;
        max-width: 320px;
    }

    #destination-section h3 {
        font-size: 28px;
    }

    #destination-section {
        padding: 60px 0 70px;
    }

    #destination-section .images-main-box img {
        width: 270px;
        height: 200px;
        border-radius: 4px;
        max-width: 100%;
    }



    #home-section-3 .banner-slider-section h4 {
        font-size: 24px;
    }

    #home-section-3 .banner-slider-section h6 {
        font-size: 15px;
        max-width: 320px;
    }


    #adventure-section h3 {
        font-size: 24px;
    }

    #adventure-section h5 {
        font-size: 14px;
        line-height: 24px;
        max-width: 340px;
    }

    #adventure-section .images-main-box {
        margin: 60px 0 0 0;
        gap: 20px;
    }

    #adventure-section .images-main-box .image-box {
        flex-basis: 150px;
        height: 160px;
    }

    #adventure-section .images-main-box .image-box img {
        width: 50px;
    }

    #adventure-section .images-main-box .image-box h6 {
        font-size: 15px;
        margin: 10px auto 0;
    }

    #transportation-section h3 {
        font-size: 26px;
        line-height: 34px;
    }

    #transportation-section .main-box .box .bottom .btn-box a:first-child {
        width: 104px;
        height: 46px;
        font-size: 15px;
    }

    #transportation-section .main-box .box .bottom .btn-box .show-form {
        width: 150px;
        height: 46px;
        font-size: 15px;
    }

    #gallery-section h3 {
        font-size: 28px;
        line-height: 34px;
        max-width: 320px;
    }

    #gallery-section p {
        font-size: 13px;
        line-height: 20px;
        max-width: 340px;
    }

    #gallery-section {
        padding: 50px 0;
    }

    #newsletter-section .banner-slider-section h4 {
        font-size: 28px;
        line-height: 38px;
    }

    #newsletter-section .banner-slider-section h5 {
        font-size: 16px;
        line-height: 26px;
    }

    #newsletter-section {
        height: auto;
        width: 100%;
    }

    #newsletter-section .banner-slider-section {
        padding: 50px 0;
    }

    #newsletter-section form [type='submit'] {
        font-size: 17px;
    }

    footer .left-side {
        gap: 10px;
        width: 100%;
    }

    footer .middle-side {
        width: 100%;
    }

    footer .middle-side h5 {
        margin: 0 0 10px 0;
    }

    footer .right-side h5 {
        margin: 0 0 20px 0;
    }

    .lower-footer h4 {
        font-size: 14px;
    }

    #about-us-section .banner-slider-section p {
        font-size: 14px;
        line-height: 28px;
    }

    #about-us-section .banner-slider-section h4 {
        font-size: 22px;
        line-height: 30px;
    }

    #about-us-section .breadcrumb-box {
        margin-right: 30px;
    }

    #about-us-section-1 p {
        font-size: 15px;
        line-height: 26px;
    }

    #about-us-section-2 p {
        font-size: 15px;
        line-height: 26px;
    }

    #about-us-section-1 img {
        height: 400px;
        margin: 40px auto 0;

    }

    #about-us-section-1 {
        padding: 60px 0 40px;
    }

    #experience-banner-section .banner-slider-section h4 {
        font-size: 20px;
        line-height: 32px;
    }

    #experience-banner-section .banner-slider-section h2 {
        font-size: 30px;
        line-height: 50px;
    }

    #experience-banner-section {
        height: auto;
    }

    #experience-banner-section .w-lg-50 {
        width: 100%;
        margin-top: 70px;
        margin-bottom: 90px;
    }

    #experience-banner-section .breadcrumb-box {
        margin-right: 20px;
    }

    #experience-banner-section .banner-slider-section p {
        font-size: 15px;
    }

    #package-section-main h3 {
        font-size: 26px;
    }

    #package-section-main h5 {
        font-size: 15px;
        max-width: 400px;
    }

    #package-section-main .main-box .box h4 {
        font-size: 22px;
    }

    #package-section-main {
        padding: 78px 0 10px;
    }

    #experience-single-banner-section .banner-slider-section h4 {
        font-size: 20px;
        line-height: 32px;
    }

    #experience-single-banner-section .banner-slider-section h2 {
        font-size: 30px;
        line-height: 50px;
    }

    #experience-single-banner-section {
        height: auto;
    }

    #experience-single-banner-section .w-lg-50 {
        width: 100%;
        margin-top: 70px;
        margin-bottom: 90px;
    }

    #experience-single-banner-section .breadcrumb-box {
        margin-right: 20px;
    }

    #main-packages-section h2::after {
        content: none;
    }

    #main-packages-section h2 {
        font-size: 30px;
    }

    #main-packages-section .main-box {
        margin-top: 40px;
    }

    #main-packages-section .main-box .box .bottom h4 {
        font-size: 22px;
    }

    #main-packages-section .main-box .discount-box {
        top: 0;
        right: 0;
    }

    #contact-us-section .banner-slider-section h4 {
        font-size: 20px;
    }

    #contact-us-section .banner-slider-section p {
        font-size: 18px;
    }

    #contact-us-section {
        height: auto;
    }

    #contact-us-section .w-lg-50 {
        padding: 100px 0;
    }

    #details-section .form-box {
        max-width: 100%;
    }

    #details-section .form-box .top h3 {
        font-size: 20px;
    }

    #details-section .form-box .top h6 {
        font-size: 13px;
    }

    #details-section .contact-box a {
        font-size: 18px;
    }

    #details-section .contact-box h6 {
        font-size: 18px;
    }

    #social-links h5 {
        font-size: 24px;
    }

    .single-package-main-section .slide-show-gallery-package img {
        height: 300px;
    }

    .single-package-main-section .form-box {
        max-width: 100%;
    }

    .single-package-main-section .slick-next {
        width: 35px;
        height: 35px;
    }

    .single-package-main-section .slick-prev {
        width: 35px;
        height: 35px;
    }

    .section-1 {
        height: auto;
        padding: 40px 0;
    }

    .section-1 h4 {
        font-size: 26px;
    }

    .section-1 .inner-box {
        margin-top: 40px;
        justify-content: flex-start;
    }

    .section-1 h3 {
        font-size: 20px;
    }

    #single-package-banner-section .breadcrumb-box {
        margin-right: 20px;
    }

    #single-package-banner-section .breadcrumb-box h6 {
        font-size: 13px;
    }

    #single-package-banner-section .breadcrumb-box a {
        font-size: 13px;
    }

    #not_found {
        height: 90vh;
    }

    #not_found .box h2 {
        font-size: 70px;
    }

    #not_found .box h4 {
        font-size: 35px;
        margin: 20px 0 0 0;
    }

    #not_found .box p {
        font-size: 16px;
        line-height: 26px;
        max-width: 440px;
        margin: 20px 0 0 0;
    }

    #not_found .box a {
        width: 240px;
        height: 52px;
        font-size: 15px;
        margin: 30px 0 0 0;
        max-width: 100%;
    }

    #thank_you_section .inner-box {
        height: 90vh;
    }

    #thank_you_section .inner-box img {
        transform: scale(.7);
    }

    #thank_you_section .inner-box h4 {
        font-size: 35px;
        margin: 20px 0 0 0;
    }

    #thank_you_section .inner-box p {
        font-size: 18px;
        line-height: 30px;
        max-width: 380px;
        margin: 15px auto;
    }

    #thank_you_section .inner-box a {
        width: 240px;
        height: 52px;
        font-size: 15px;
        margin: 20px 0 0 0;
        max-width: 100%;
    }

    #destination-section .images-main-box .image-box:first-child {
        max-width: 160px;
        width: 160px;
    }

    #destination-section .images-main-box .image-box {
        max-width: 160px;
        width: 160px;
        height: 200px;
    }

    #destination-section .images-main-box .image-box:nth-child(4) {
        max-width: 160px;
        width: 160px;
    }

    #destination-section .images-main-box .image-box:nth-child(5) {
        max-width: 160px;
        width: 160px;
    }

    .blog-home-box h2 {
        font-size: 30px !important;
    }

    #package-section .card-package .description-box {
        position: absolute;
        bottom: 30px;
        left: 14px;
    }

    #package-section .card-package .description-box .wrapper-1 .rating {
        font-size: 14px;
        display: none;
    }

    #package-section .card-package .description-box .wrapper-3 .cta_1 {
        width: 221px;
    }

    #packages-banner-section .banner-slider-section p {
        font-size: 16px;
        line-height: 26px;
        margin: 21px auto 0;
        max-width: 820px;
    }

    #package_main_section .card_package_wrapper .card {
        max-width: 340px;
        width: 100%;
        gap: 21px;
        box-shadow: 0 6px 41px 0 #c9cacf;
        padding: 10px 15px 30px 15px;
        border-radius: 24px;
        flex-direction: column;
    }

    #package_main_section .card_package_wrapper .card img {
        max-width: 340px;
        width: 100%;
    }

    #package_main_section .card_package_wrapper .card .name {
        font-size: 26px;

    }

    #package_main_section .card_package_wrapper .card .duration {
        font-size: 18px;
        margin: 8px 0 0 0;
    }

    #package_main_section .card_package_wrapper .card .price {
        font-size: 18px;
        line-height: 28px;
        color: #000;
        margin: 6px 0 0 0;
    }

    #reviews-section h3 {
        font-size: 30px;
        font-weight: 600;
        line-height: 40px;
        letter-spacing: 0em;
        text-align: center;
        color: #333;
        margin: 0px auto 0;
    }

    #destinations-banner-section .banner-slider-section p {
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0em;
        text-align: center;
        color: #fff;
        margin: 21px auto 0;
        max-width: 820px;
    }

    .destination_gallery_section {
        padding: 60px 0 40px !important;
    }

    #details-section .form-box .row-50 {
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 4px;
    }
	#details-section .contact-box .box .img-box {
		display: none;
}
	#details-section .contact-box .box {
		padding: 10px 30px 10px 15px;
		gap: 0;
		margin-top: 10px;
		max-width: 100%;
	}
    #details-section .form-box .row-50 input {
        max-width: 100%;
        width: 100%;
        cursor: pointer;
        color: #444;
        font-size: 15px;
        font-family: Open Sans;
        font-weight: 400;
        cursor: pointer;
    }

    .single-package-main-section .form-box .row-50 {
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 4px;
    }
	.single-package-main-section {
		padding: 55px 0;
	}
    .single-package-main-section .form-box .row-50 input {
                max-width: 100%;
        width: 100%;
    }

    #about-us-section .banner-slider-section p {
        display: none;
    }
    #about-us-section .breadcrumb-box {
        display: none;
    }
    #about-us-section .banner-slider-section {
        padding: 40px 0 40px;
    }







}

@media (max-width: 360px) {}