@import"https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Racing+Sans+One&display=swap";

:root {
    --site-primary: #11869C;
    --site-secondary: #ECA915;
    --site-heading: #0f0f0f;
    --site-text-light-1: #898989;
    --site-text-light-2: #858D92;
    --site-text-dark: #4F4F4F;
    --site-black: #000;
    --site-white: #fff;
    --cta-shadow: 0 16px 14px #11869C21;
    --site-gradient-horz: linear-gradient(to right, #EEF2F2 20%, transparent 80%);
    --site-gradient-vert: linear-gradient(to bottom. #F9B215, transparent);
    --section-title: #001E2B
}

body {
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    font-family: "Racing Sans One", serif;
    color: var(--site-heading);
    margin: 0
}

p,
ul li,
ol li,
label,
input,
textarea,
a,
span,
div {
    font-family: "Outfit", serif
}

a {
    text-decoration: none
}

ul {
    list-style-type: none;
    padding: 0
}

::-moz-placeholder {
    font-size: 15px;
    font-weight: 400;
    color: var(--site-text-dark)
}

::placeholder {
    font-size: 15px;
    font-weight: 400;
    color: var(--site-text-dark)
}

.site_container {
    width: 100%;
    max-width: 1600px;
    padding: 0 100px;
    margin: 0 auto
}

.site_row {
    display: flex
}

.site_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--site-primary);
    box-shadow: var(--cta-shadow);
    width: 152px;
    height: 49px;
    border-radius: 5px;
    color: var(--site-white) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    transition: .3s all;
    border: 1px solid rgba(0, 0, 0, 0)
}

.site_cta:hover {
    background: var(--site-white);
    color: var(--site-primary) !important;
    border: 1px solid var(--site-primary)
}

.site_header {
    padding: 20px 0;
    z-index: 99999;
    position: relative
}

.site_header .site_row {
    align-items: center;
    gap: 30px
}

.site_header .site_brand {
    width: 347px;
    max-width: 100%
}

.site_header .site_brand img {
    width: 100%
}

.site_header .site_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 377px)
}

.site_header .site_nav ul.nav_menu {
    width: 100%;
    max-width: 613px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0
}

.site_header .site_nav ul.nav_menu li a,
.site_header .site_nav ul.nav_menu li span {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--site-text-dark);
    transition: .3s all
}

.site_header .site_nav ul.nav_menu li a:hover,
.site_header .site_nav ul.nav_menu li span:hover {
    color: var(--site-primary)
}

.site_header .site_nav ul.nav_menu li.current-menu-item a {
    color: var(--site-primary)
}

.site_header .site_nav ul.nav_menu li.menu-item-has-children {
    position: relative
}

.site_header .site_nav ul.nav_menu li.menu-item-has-children span,
.site_header .site_nav ul.nav_menu li.menu-item-has-children a {
    padding-right: 20px;
    position: relative
}

.site_header .site_nav ul.nav_menu li.menu-item-has-children span::before,
.site_header .site_nav ul.nav_menu li.menu-item-has-children a::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../../assets/img/chevron_down.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s all
}

.site_header .site_nav ul.nav_menu li.menu-item-has-children:hover span::before,
.site_header .site_nav ul.nav_menu li.menu-item-has-children:hover a::before {
    transform: translateY(-50%) rotate(-180deg)
}

.site_header .site_nav ul.nav_menu li.menu-item-has-children:hover ul.sub-menu {
    transform: scale(1)
}

.site_header .site_nav ul.nav_menu li.menu-item-has-children ul.sub-menu {
    position: absolute;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
    transform: scale(0);
    transition: .3s all;
    transform-origin: top left;
    box-shadow: none;
    background: var(--site-white)
}

.site_header .site_nav ul.nav_menu li.menu-item-has-children ul.sub-menu:hover {
    border: 1px solid rgba(17, 135, 156, .3098039216);
    box-shadow: var(--cta-shadow)
}

.site_header .site_nav ul.nav_menu li.menu-item-has-children ul.sub-menu li.menu-item a {
    padding: 10px;
    display: block
}

.site_header .site_nav ul.nav_menu li.menu-item-has-children ul.sub-menu li.menu-item a::before {
    display: none
}

.site_header .site_nav ul.nav_menu li.menu-item-has-children ul.sub-menu li.menu-item a:hover {
    background: var(--site-primary);
    color: var(--site-white)
}

.site_header .site_nav .search_block_with_cta {
    display: flex;
    align-items: center;
    gap: 20px
}

.site_header .site_nav .search_block_with_cta form {
    width: 164px;
    max-width: 100%;
    position: relative
}

.site_header .site_nav .search_block_with_cta form input {
    width: 100%;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--site-text-dark);
    padding: 10px;
    outline: 0;
    transition: .3s all;
    border-radius: 0;
    box-shadow: none
}

.site_header .site_nav .search_block_with_cta form input:focus {
    border-color: var(--site-primary)
}

.site_header .site_nav .search_block_with_cta form button {
    border: 0;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    right: 0;
    height: 100%;
    padding: 10px;
    top: 0
}

.site_header .site_nav .search_block_with_cta .site_cta {
    min-width: 164px;
    height: 44px
}

span.before_title_tag {
    position: relative;
    display: block;
    padding-left: 50px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--site-secondary);
    letter-spacing: 5px;
    text-transform: uppercase
}

span.before_title_tag::before {
    width: 43px;
    height: 1px;
    background: var(--site-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    position: absolute
}

.site_banner {
    position: relative;
    height: auto
}

.site_banner .bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.site_banner .bg_layer img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.site_banner .txt_layer {
    position: relative;
    min-height: 735px;
    display: flex;
    align-items: center;
    z-index: 1
}

.site_banner .txt_layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--site-gradient-horz);
    z-index: -1;
    aspect-ratio: 1019/864
}

.site_banner .txt_layer .site_container {
    display: flex;
    align-items: center
}

.site_banner .txt_layer .site_container .txt_block {
    width: 100%;
    max-width: 800px;
    padding: 50px 0
}

.site_banner .txt_layer .site_container .txt_block .before_title_tag {
    color: var(--site-primary)
}

.site_banner .txt_layer .site_container .txt_block .before_title_tag:before {
    background: var(--site-primary)
}

.site_banner .txt_layer .site_container .txt_block h1 {
    font-size: 65px;
    line-height: 74px;
    margin-top: 20px;
    text-transform: capitalize
}

.site_banner .txt_layer .site_container .txt_block h1 span.highlight {
    position: relative;
    z-index: 1;
    display: inline-block
}

.site_banner .txt_layer .site_container .txt_block h1 span.highlight::before {
    content: "";
    position: absolute;
    height: 30px;
    width: 100%;
    background: url(../../assets/img/highligh_img.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    bottom: 10px;
    z-index: -1;
    background-size: contain
}

.site_banner .txt_layer .site_container .txt_block p.txt {
    margin: 20px 0 0 0;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 5px
}

.site_banner .txt_layer .site_container .txt_block a.site_cta {
    margin-top: 40px
}

.site_banner .txt_layer span.scroll_btn {
    text-transform: capitalize;
    display: block;
    padding-right: 70px;
    position: absolute;
    font-size: 15px;
    line-height: 26px;
    color: #3e3d3d;
    letter-spacing: 2px;
    cursor: pointer;
    bottom: 100px;
    left: 0;
    transform: rotate(-90deg)
}

.site_banner .txt_layer span.scroll_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 62px;
    height: 1px;
    background: linear-gradient(to right, #3E3D3D, transparent)
}

.section_title_decor {
    color: var(--section-title);
    opacity: .04;
    font-size: 75px;
    line-height: 94px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 8px
}

h3 {
    font-size: 40px;
    line-height: 47px;
    text-transform: capitalize
}

p {
    margin: 16px 0 0 0;
    font-size: 15px;
    line-height: 26px;
    color: var(--site-text-light-1)
}

.txt_dark_1 {
    color: var(--site-heading) !important
}

.txt_block_with_img {
    padding: 100px 0;
    overflow: hidden;
    position: relative
}

.txt_block_with_img .section_title_decor {
    position: absolute;
    right: -330px;
    transform: rotate(-90deg);
    top: 350px
}

.txt_block_with_img .car_decor {
    position: absolute;
    bottom: 0;
    right: 0
}

.txt_block_with_img .site_row {
    flex-wrap: wrap;
    gap: 100px;
    align-items: center
}

.txt_block_with_img .site_row .img_colm {
    width: calc((100% - 100px)*.55)
}

.txt_block_with_img .site_row .img_colm img {
    width: 100%;
    border-radius: 40px
}

.txt_block_with_img .site_row .img_colm video {
    border-radius: 40px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 717/570
}

.txt_block_with_img .site_row .txt_colm {
    width: calc((100% - 100px)*.45)
}

.txt_block_with_img .site_row .txt_colm h3 {
    margin-top: 20px
}

.txt_block_with_img .site_row .txt_colm .site_cta {
    margin-top: 40px
}

.txt_block_with_img .site_row .txt_colm span.highlight {
    color: var(--site-primary);
    font-size: 17px;
    font-weight: 500
}

.txt_block_with_img.row_rev .site_row {
    flex-direction: row-reverse
}

.txt_block_with_img.row_rev .section_title_decor {
    right: unset;
    left: -240px;
    top: 300px
}

.txt_block_with_img.about_us .section_title_decor {
    right: -170px;
    top: 250px
}

.destination_block {
    padding: 100px 0;
    background: #f6f8f7
}

.destination_block .block_heading {
    text-align: center
}

.destination_block .block_heading .block_decor_title {
    position: relative
}

.destination_block .block_heading .block_decor_title .before_title_tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-right: 50px
}

.destination_block .block_heading .block_decor_title .before_title_tag::after {
    width: 43px;
    height: 1px;
    background: var(--site-secondary);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    position: absolute
}

.destination_block .block_heading h3 {
    width: 100%;
    max-width: 967px;
    margin: 0 auto
}

.destination_block .site_row {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 30px
}

.destination_block .site_row .colm {
    width: calc((100% - 60px)/2);
}

.single.single-trip .destination_block .site_row .colm {
    width: calc((100% - 60px)/3);
}

.destination_block .site_row .colm .colm_inner {
    position: relative;
    background: var(--site-white);
    border-radius: 15px;
    border: 1px solid #e9eaeb;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination_block .site_row .colm .colm_inner:hover .img_block img.img_thumb {
    transform: scale(1.15)
}

.destination_block .site_row .colm .colm_inner a.des_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.destination_block .site_row .colm .colm_inner .img_block {
    width: 100%;
    height: auto;
    aspect-ratio: 420/270;
    overflow: hidden;
    border-radius: 15px;
    position: relative
}

.destination_block .site_row .colm .colm_inner .img_block img.img_thumb {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: .3s all
}

.destination_block .site_row .colm .colm_inner .img_block p.duration {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 8px;
    background: rgba(116, 116, 116, .3294117647);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    margin: 0;
    z-index: 2
}

.destination_block .site_row .colm .colm_inner .img_block p.duration span {
    color: var(--site-white);
    font-size: 14px;
    font-weight: 500
}

.destination_block .site_row .colm .colm_inner .title_block {
    margin: 20px 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
}

.destination_block .site_row .colm .colm_inner .title_block h4 {
    font-size: 20px;
    line-height: 24px
}

.destination_block .site_row .colm .colm_inner .info_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 10px;
}

.destination_block .site_row .colm .colm_inner .info_block p {
    margin: 0
}

.destination_block .site_row .colm .colm_inner .info_block p.location {
    display: flex;
    align-items: center;
    gap: 8px
}

.destination_block .site_row .colm .colm_inner .info_block span.highlight {
    color: var(--site-primary);
    font-size: 17px;
    font-weight: 500
}

.destination_block a.site_cta {
    margin: 40px auto 0
}

.exp_block {
    padding: 100px 0 130px;
    background: #14324d url(../../assets/img/Packages.webp);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover
}

.exp_block .block_heading .tag {
    display: flex;
    justify-content: center
}

.exp_block .block_heading .tag .before_title_tag {
    padding-right: 50px
}

.exp_block .block_heading .tag .before_title_tag::after {
    width: 43px;
    height: 1px;
    background: var(--site-secondary);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    position: absolute
}

.exp_block .block_heading h3 {
    color: var(--site-white);
    text-align: center;
    margin-top: 30px
}

.exp_block .block_heading p {
    margin: 30px auto 0;
    color: var(--site-white);
    width: 100%;
    max-width: 976px;
    text-align: center
}

.exp_block .video_block {
    margin: 50px auto 0;
    width: 100%;
    aspect-ratio: 1139/508;
    border-radius: 25px;
    overflow: hidden
}

.exp_block .video_block iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.gallery_block {
    padding: 0 0 100px 0;
    position: relative
}

.gallery_block .tl_decor {
    position: absolute;
    top: 20px;
    left: 0;
    height: 548px
}

.gallery_block .br_decor {
    right: 0;
    bottom: 20px;
    position: absolute;
    height: 548px
}

.gallery_block .block_heading {
    text-align: center
}

.gallery_block .block_heading .block_decor_title {
    position: relative
}

.gallery_block .block_heading .block_decor_title .before_title_tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-right: 50px
}

.gallery_block .block_heading .block_decor_title .before_title_tag::after {
    width: 43px;
    height: 1px;
    background: var(--site-secondary);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    position: absolute
}

.gallery_block .block_heading h3 {
    width: 100%;
    max-width: 967px;
    margin: 0 auto
}

.gallery_block .desktop_gallery {
    margin-top: 40px;
    z-index: 1;
    position: relative
}

.gallery_block .desktop_gallery .site_row {
    gap: 30px;
    flex-wrap: wrap
}

.gallery_block .desktop_gallery .site_row .gal_colm {
    width: calc((100% - 60px)/3)
}

.gallery_block .desktop_gallery .site_row .gal_colm .img_block {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    position: relative
}

.gallery_block .desktop_gallery .site_row .gal_colm .img_block a.lt_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.gallery_block .desktop_gallery .site_row .gal_colm .img_block::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    transform-origin: center;
    transition: .5s all;
    background-color: rgba(0, 0, 0, .43);
    background-image: url(../../assets/img/plus_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(0);
    opacity: 0
}

.gallery_block .desktop_gallery .site_row .gal_colm .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 2s all
}

.gallery_block .desktop_gallery .site_row .gal_colm .img_block:hover::after {
    transform: scale(1);
    opacity: 1
}

.gallery_block .desktop_gallery .site_row .gal_colm .img_block:hover img {
    transform: scale(1.25)
}

.gallery_block .desktop_gallery .site_row .gal_colm:nth-child(odd) .img_block:first-child {
    aspect-ratio: 360/235
}

.gallery_block .desktop_gallery .site_row .gal_colm:nth-child(odd) .img_block:last-child {
    aspect-ratio: 360/548;
    margin-top: 30px
}

.gallery_block .desktop_gallery .site_row .gal_colm:nth-child(even) .img_block:first-child {
    aspect-ratio: 360/548
}

.gallery_block .desktop_gallery .site_row .gal_colm:nth-child(even) .img_block:last-child {
    aspect-ratio: 360/235;
    margin-top: 30px
}

.gallery_block .mobile_gallery {
    display: none
}

.gallery_block .mobile_gallery .img_block {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 5px;
    position: relative
}

.gallery_block .mobile_gallery .img_block a.lt_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.gallery_block .mobile_gallery .img_block::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    transform-origin: center;
    transition: .5s all;
    background-color: rgba(0, 0, 0, .43);
    background-image: url(../../assets/img/plus_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(0);
    opacity: 0;
    border-radius: 5px
}

.gallery_block .mobile_gallery .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 2s all
}

.gallery_block .mobile_gallery .img_block:hover::after {
    transform: scale(1);
    opacity: 1
}

.gallery_block .mobile_gallery .img_block:hover img {
    transform: scale(1.25)
}

.testimonial_block {
    position: relative;
    padding: 100px 0;
    z-index: 1
}

.testimonial_block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/testimony.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: .3;
    z-index: -1
}

.testimonial_block .block_heading {
    text-align: center
}

.testimonial_block .block_heading .block_decor_title {
    position: relative
}

.testimonial_block .block_heading .block_decor_title .before_title_tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-right: 50px
}

.testimonial_block .block_heading .block_decor_title .before_title_tag::after {
    width: 43px;
    height: 1px;
    background: var(--site-secondary);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    position: absolute
}

.testimonial_block .block_heading h3 {
    width: 100%;
    max-width: 967px;
    margin: 0 auto
}

.image_carousel_block {
    padding: 100px 0
}

.image_carousel_block .block_heading {
    text-align: center
}

.image_carousel_block .block_heading .block_decor_title {
    position: relative
}

.image_carousel_block .block_heading .block_decor_title .before_title_tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-right: 50px
}

.image_carousel_block .block_heading .block_decor_title .before_title_tag::after {
    width: 43px;
    height: 1px;
    background: var(--site-secondary);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    position: absolute
}

.image_carousel_block .block_heading h3 {
    width: 100%;
    max-width: 967px;
    margin: 0 auto
}

.image_carousel_block .carousel_block {
    margin-top: 50px
}

.image_carousel_block .carousel_block .img_block {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 5px;
    position: relative
}

.image_carousel_block .carousel_block .img_block a.lt_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.image_carousel_block .carousel_block .img_block::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transition: .5s all;
    background-color: rgba(0, 0, 0, .43);
    background-image: url(../../assets/img/plus_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(0);
    opacity: 0;
    border-radius: 5px
}

.image_carousel_block .carousel_block .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 2s all
}

.image_carousel_block .carousel_block .img_block:hover::after {
    transform: scale(1);
    opacity: 1
}

.image_carousel_block .carousel_block .img_block:hover img {
    transform: scale(1.25)
}

.image_carousel_block .exp_slider {
    margin-top: 60px
}

.site_footer {
    position: relative;
    background: url(../../assets/img/footer_bg.webp);
    padding: 8% 0 12%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover
}

.site_footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 51, 81, 0.8980392157), rgba(17, 51, 81, 0.7215686275), rgba(17, 51, 81, 0.1882352941))
}

.site_footer .site_container {
    z-index: 1;
    position: relative
}

.site_footer .site_row {
    gap: 80px;
    flex-wrap: wrap;
    align-items: center
}

.site_footer .site_row .left_colm {
    width: 340px;
    position: relative
}

.site_footer .site_row .left_colm::after {
    content: "";
    top: 0;
    right: -40px;
    width: 1px;
    height: 186px;
    background: #708da7;
    position: absolute
}

.site_footer .site_row .left_colm ul.social_icon {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0
}

.site_footer .site_row .left_colm ul.social_icon li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1019607843);
    border-radius: 50%
}

.site_footer .site_row .left_colm ul.social_icon li a i {
    color: var(--site-white)
}

.site_footer .site_row .left_colm a.cta_link {
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: underline;
    display: block;
    color: var(--site-white);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 40px
}

.site_footer .site_row .right_colm {
    width: calc(100% - 420px)
}

.site_footer .site_row .right_colm .inner_row {
    display: flex;
    gap: 30px
}

.site_footer .site_row .right_colm .inner_row .colm {
    width: auto;
    flex-grow: 1
}

.site_footer .site_row .right_colm h4 {
    color: var(--site-white);
    font-size: 24px;
    line-height: 47px;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 20px
}

.site_footer .site_row .right_colm h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 39px;
    height: 2px;
    background: var(--site-white)
}

.site_footer .site_row .right_colm ul li {
    margin-bottom: 6px
}

.site_footer .site_row .right_colm ul li:last-child {
    margin-bottom: 0
}

.site_footer .site_row .right_colm ul li a {
    font-size: 16px;
    line-height: 30px;
    color: var(--site-white)
}

.site_footer .site_row .right_colm ul.contact_link li a {
    display: flex;
    align-items: center;
    gap: 8px
}

.site_footer .site_row .full_colm {
    width: 100%;
    border-top: 1px solid var(--site-white)
}

.site_footer .site_row .full_colm p {
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--site-white)
}

.site_banner.inner_page_banner .txt_layer {
    min-height: 530px
}

.site_banner.inner_page_banner .txt_layer .txt_block .site_breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px
}

.site_banner.inner_page_banner .txt_layer .txt_block .site_breadcrumb a,
.site_banner.inner_page_banner .txt_layer .txt_block .site_breadcrumb span {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 8px;
    text-transform: uppercase
}

.site_banner.inner_page_banner .txt_layer .txt_block .site_breadcrumb a {
    color: var(--site-heading)
}

.site_banner.inner_page_banner .txt_layer .txt_block .site_breadcrumb span {
    color: var(--site-primary)
}

.site_banner.inner_page_banner .txt_layer .txt_block h1 {
    margin-top: 0
}

.tour_list_block {
    padding: 100px 0
}

.tour_list_block .heading_row {
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    justify-content: space-between
}

.tour_list_block .heading_row .block_heading {
    max-width: 713px;
    width: 100%
}

.tour_list_block .heading_row .filter_block {
    display: flex;
    align-items: center;
    gap: 20px
}

.tour_list_block .heading_row .filter_block span.label {
    color: var(--site-primary);
    font-weight: 600;
    display: block
}

.tour_list_block .heading_row .filter_block .filter_select {
    max-width: 100%;
    width: 260px
}

.tour_list_block .heading_row .filter_block .filter_select .did-floating-label-content {
    position: relative;
    width: 100%
}

.tour_list_block .heading_row .filter_block .filter_select .did-floating-label {
    color: #515151;
    font-size: 12px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 15px;
    padding: 0 5px;
    background: #fff;
    transition: .2s ease all;
    -moz-transition: .2s ease all;
    -webkit-transition: .2s ease all
}

.tour_list_block .heading_row .filter_block .filter_select .did-floating-input,
.tour_list_block .heading_row .filter_block .filter_select .did-floating-select {
    font-size: 12px;
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    background: #fff;
    color: #858585;
    border: 1px solid #858585;
    border-radius: 4px;
    box-sizing: border-box
}

.tour_list_block .heading_row .filter_block .filter_select .did-floating-input:focus,
.tour_list_block .heading_row .filter_block .filter_select .did-floating-select:focus {
    outline: none
}

.tour_list_block .heading_row .filter_block .filter_select .did-floating-input:focus~.did-floating-label,
.tour_list_block .heading_row .filter_block .filter_select .did-floating-select:focus~.did-floating-label {
    top: -8px;
    font-size: 12px
}

.tour_list_block .heading_row .filter_block .filter_select select.did-floating-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 14px
}

.tour_list_block .heading_row .filter_block .filter_select select.did-floating-select::-ms-expand {
    display: none
}

.tour_list_block .heading_row .filter_block .filter_select .did-floating-input:not(:-moz-placeholder-shown)~.did-floating-label {
    top: -8px;
    font-size: 12px
}

.tour_list_block .heading_row .filter_block .filter_select .did-floating-input:not(:placeholder-shown)~.did-floating-label {
    top: -8px;
    font-size: 12px
}

.tour_list_block .heading_row .filter_block .filter_select .did-floating-select:not([value=""]):valid~.did-floating-label {
    top: -8px;
    font-size: 12px
}

.tour_list_block .heading_row .filter_block .filter_select .did-floating-select[value=""]:focus~.did-floating-label {
    top: 11px;
    font-size: 12px
}

.tour_list_block .heading_row .filter_block .filter_select .did-floating-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%23003d71'/%3E%3C/svg%3E%0A");
    background-position: right 15px top 50%;
    background-repeat: no-repeat
}

.tour_list_block .heading_row .filter_block .filter_select .did-error-input .did-floating-input,
.tour_list_block .heading_row .filter_block .filter_select .did-error-input .did-floating-select {
    border: 2px solid #9d3b3b;
    color: #9d3b3b
}

.tour_list_block .heading_row .filter_block .filter_select .did-error-input .did-floating-label {
    font-weight: 600;
    color: #9d3b3b
}

.tour_list_block .heading_row .filter_block .filter_select .did-error-input .did-floating-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%239d3b3b'/%3E%3C/svg%3E%0A")
}

.tour_list_block .heading_row .filter_block .filter_select .input-group {
    display: flex
}

.tour_list_block .heading_row .filter_block .filter_select .input-group .did-floating-input {
    border-radius: 0 4px 4px 0;
    border-left: 0;
    padding-left: 0
}

.tour_list_block .heading_row .filter_block .filter_select .input-group-append {
    display: flex;
    align-items: center
}

.tour_list_block .heading_row .filter_block .filter_select .input-group-text {
    display: flex;
    align-items: center;
    font-weight: 400;
    height: 34px;
    color: #323840;
    padding: 0 5px 0 20px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #3d85d8;
    border-radius: 4px 0 0 4px;
    border-right: none
}

.tour_list_block .list_row {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 30px
}

.tour_list_block .list_row .colm {
    width: calc((100% - 30px)/2)
}

.tour_list_block .list_row .colm .colm_inner {
    position: relative;
    background: var(--site-white);
    border-radius: 15px;
    border: 1px solid #e9eaeb;
    padding: 15px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, .05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour_list_block .list_row .colm .colm_inner:hover .img_block img.img_thumb {
    transform: scale(1.15)
}

.tour_list_block .list_row .colm .colm_inner a.des_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.tour_list_block .list_row .colm .colm_inner .img_block {
    width: 100%;
    height: auto;
    aspect-ratio: 420/270;
    overflow: hidden;
    border-radius: 15px;
    position: relative
}

.tour_list_block .list_row .colm .colm_inner .img_block img.img_thumb {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: .3s all
}

.tour_list_block .list_row .colm .colm_inner .img_block p.duration {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 8px;
    background: rgba(116, 116, 116, .3294117647);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    margin: 0;
    z-index: 2
}

.tour_list_block .list_row .colm .colm_inner .img_block p.duration span {
    color: var(--site-white);
    font-size: 14px;
    font-weight: 500
}

.tour_list_block .list_row .colm .colm_inner .title_block {
    margin: 20px 0 10px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.tour_list_block .list_row .colm .colm_inner .title_block h4 {
    font-size: 24px;
    line-height: 30px;
    width: 100%;
    max-width: 375px
}

.tour_list_block .list_row .colm .colm_inner .info_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 10px;
}

.tour_list_block .list_row .colm .colm_inner .info_block p {
    margin: 0
}

.tour_list_block .list_row .colm .colm_inner .info_block p.location {
    display: flex;
    align-items: center;
    gap: 8px
}

.tour_list_block .list_row .colm .colm_inner .info_block span.highlight {
    color: var(--site-primary);
    font-size: 17px;
    font-weight: 500
}

.blog_list_block {
    padding: 100px 0
}

.blog_list_block .site_row {
    flex-wrap: wrap;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 60px
}

.blog_list_block .site_row .colm {
    width: calc((100% - 60px)/3)
}

.blog_list_block .site_row .colm .colm_inner {
    position: relative
}

.blog_list_block .site_row .colm .colm_inner:hover .img_block img {
    transform: scale(1.2)
}

.blog_list_block .site_row .colm .colm_inner a.blog_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}

.blog_list_block .site_row .colm .colm_inner .img_block {
    width: calc(100% - 30px);
    aspect-ratio: 409/456;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    margin-left: auto
}

.blog_list_block .site_row .colm .colm_inner .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: .5s all
}

.blog_list_block .site_row .colm .colm_inner .txt_info {
    padding: 30px;
    box-shadow: 10px 14px 35px rgba(0, 0, 0, .08);
    border-radius: 10px;
    width: calc(100% - 30px);
    background: var(--site-white);
    z-index: 1;
    position: relative;
    margin-top: -120px;
    display: flex;
    flex-direction: column;
}

.blog_list_block .site_row .colm .colm_inner .txt_info .posted_on {
    display: flex;
    gap: 8px;
    align-items: center
}

.blog_list_block .site_row .colm .colm_inner .txt_info .posted_on span {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 24px
}

.blog_list_block .site_row .colm .colm_inner .txt_info h4 {
    margin-top: 15px;
    font-size: 18px;
    line-height: 23px
}

.blog_list_block .site_row .colm .colm_inner .txt_info p {
    margin-top: 15px
}

.blog_list_block .site_row .colm .colm_inner .txt_info a.cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.blog_list_block .site_row .colm .colm_inner .txt_info a.cta span {
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--site-primary);
    letter-spacing: 5px
}

.blog_list_block ul.blog_pagination {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center
}

.blog_list_block ul.blog_pagination li span,
.blog_list_block ul.blog_pagination li a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-primary);
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    transition: .3s all
}

.blog_list_block ul.blog_pagination li span:hover,
.blog_list_block ul.blog_pagination li a:hover {
    transform: translateY(-4px)
}

.blog_list_block ul.blog_pagination li span {
    background: var(--site-primary);
    color: var(--site-white)
}

.blog_list_block ul.blog_pagination li a {
    color: var(--site-primary)
}

.blog_list_block ul.blog_pagination li span.first,
.blog_list_block ul.blog_pagination li a.first,
.blog_list_block ul.blog_pagination li span.last,
.blog_list_block ul.blog_pagination li a.last{
    background: #efefef;
    border-color: #e5e5e5;
    color: #11869c;
}

.meet_team {
    padding: 100px 0;
    background: rgba(17, 134, 156, .06)
}

.meet_team .heading_block {
    margin-bottom: 40px;
    text-align: center
}

.contact_block {
    padding: 100px 0
}

.contact_block .site_row {
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 50px
}

.contact_block .site_row .colm {
    width: calc((100% - 50px)/2)
}

.contact_block .site_row .colm .colm_inner {
    height: 100%;
    padding: 40px;
    border: 1px solid #e9e9e9;
    border-radius: 30px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06)
}

.contact_block .site_row .colm .colm_inner .video_block {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 623/271;
    overflow: hidden;
    margin-top: 40px
}

.contact_block .site_row .colm .colm_inner .video_block video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.contact_block .site_row .colm .colm_inner .con_info_block {
    margin-top: 40px
}

.contact_block .site_row .colm .colm_inner .con_info_block .info_item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, .2)
}

.contact_block .site_row .colm .colm_inner .con_info_block .info_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.contact_block .site_row .colm .colm_inner .con_info_block .info_item .icon_block {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 134, 156, .2)
}

.contact_block .site_row .colm .colm_inner .con_info_block .info_item .icon_block .block_inner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--site-white)
}

.contact_block .site_row .colm .colm_inner .con_info_block .info_item .txt_block {
    width: calc(100% - 90px)
}

.contact_block .site_row .colm .colm_inner .con_info_block .info_item .txt_block span.title {
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500
}

.contact_block .site_row .colm .colm_inner .con_info_block .info_item .txt_block p,
.contact_block .site_row .colm .colm_inner .con_info_block .info_item .txt_block a {
    display: block;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: #56567d;
    margin-top: 2px
}

.blog_details_block {
    padding: 0px 0 100px
}

.blog_details_block .blog_img_full {
    width: 100%;
    height: auto;
    aspect-ratio: 1400/606;
    overflow: hidden
}

.blog_details_block .blog_img_full img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.blog_details_block .blog_text_details {
    width: calc(100% - 80px);
    margin: 0 auto 0;
    max-width: 1200px;
    padding: 40px;
    box-shadow: 0 5px 50px rgba(0, 0, 0, .06);
    background: var(--site-white);
    margin-top: -120px;
    z-index: 1;
    position: relative
}

.blog_details_block .blog_text_details .posted_on {
    display: flex;
    align-items: center;
    gap: 8px
}

.blog_details_block .blog_text_details .posted_on span {
    font-size: 15px;
    line-height: 24px;
    color: #a0a0a0
}

.blog_details_block .blog_text_details .blog_title {
    margin-top: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    padding-bottom: 20px
}

.blog_details_block .blog_text_details .blog_title h1 {
    font-size: 38px;
    line-height: 47px
}

.blog_details_block .blog_text_details .blog_title p {
    font-size: 15px;
    line-height: 26px
}

.blog_details_block .blog_text_details .blog_title strong {
    font-weight: 600;
    color: var(--site-heading)
}

.blog_details_block .blog_text_details .blog_desc {
    margin-top: 20px
}

.blog_details_block .blog_text_details .blog_desc p {
    font-size: 15px;
    line-height: 26px;
    margin-top: 0
}

.blog_details_block .blog_text_details .blog_desc strong {
    font-weight: 600;
    color: var(--site-heading)
}

.blog_details_block .blog_text_details .blog_desc h2,
.blog_details_block .blog_text_details .blog_desc h3 {
    margin-top: 20px;
    color: var(--site-primary);
    font-size: 18px;
    line-height: 47px;
    font-family: "Outfit", Sans-serif;
}

.blog_details_block .blog_text_details .blog_desc h4,
.blog_details_block .blog_text_details .blog_desc h5,
.blog_details_block .blog_text_details .blog_desc h6 {
    font-size: 17px;
    line-height: 36px;
    font-weight: 600;
    color: var(--site-primary);
    font-family: "Outfit", serif;
    margin-top: 16px
}

.tourist_spot_details {
    padding: 100px 0
}

.tourist_spot_details .spot_imgs {
    padding: 16px 8px 16px 16px;
    border-radius: 10px;
    box-shadow: 0 0 34px rgba(0, 0, 0, .09)
}

.tourist_spot_details .spot_imgs .site_row {
    flex-wrap: wrap;
    gap: 16px
}

.tourist_spot_details .spot_imgs .site_row .left_colm,
.tourist_spot_details .spot_imgs .site_row .right_colm {
    width: calc((100% - 16px)/2)
}

.tourist_spot_details .spot_imgs .site_row .left_colm .img_block {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 670/570;
    height: 100%;
    position: relative;
    width: 100%;
    max-height: 570px
}

.tourist_spot_details .spot_imgs .site_row .left_colm .img_block:hover::before {
    opacity: 1;
    transform: scale(1)
}

.tourist_spot_details .spot_imgs .site_row .left_colm .img_block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transition: .5s all;
    background-color: rgba(0, 0, 0, .43);
    background-image: url(../../assets/img/plus_ylw.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(0);
    opacity: 0
}

.tourist_spot_details .spot_imgs .site_row .left_colm .img_block a.img_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.tourist_spot_details .spot_imgs .site_row .left_colm .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.tourist_spot_details .spot_imgs .site_row .right_colm {
    max-height: 570px;
    overflow-y: auto;
    padding-right: 8px
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    height: 100%
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm {
    width: calc((100% - 16px)/2)
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm .img_block {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 325/272;
    position: relative;
    min-height: 277px;
    width: 100%
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm .img_block:hover::before {
    opacity: 1;
    transform: scale(1)
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm .img_block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transition: .5s all;
    background-color: rgba(0, 0, 0, .43);
    background-image: url(../../assets/img/plus_ylw.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(0);
    opacity: 0
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm .img_block a.img_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm:last-child .img_block,
.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm:nth-last-child(2) .img_block {
    position: relative
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm:last-child .img_block .overlay,
.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm:nth-last-child(2) .img_block .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm:last-child .img_block .overlay img,
.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm:nth-last-child(2) .img_block .overlay img {
    height: auto;
    width: auto;
    -o-object-fit: none;
    object-fit: none
}

.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm:last-child .img_block .overlay span,
.tourist_spot_details .spot_imgs .site_row .right_colm .colm_row .inner_colm:nth-last-child(2) .img_block .overlay span {
    color: var(--site-white);
    font-size: 16px;
    line-height: 34px;
    font-weight: 600;
    text-align: center
}

.tourist_spot_details .spot_details {
    margin-top: 40px
}

.tourist_spot_details .spot_details .site_row {
    gap: 50px;
    flex-wrap: wrap
}

.tourist_spot_details .spot_details .site_row .left_colm {
    width: calc(100% - 530px)
}

.tourist_spot_details .spot_details .site_row .right_colm {
    width: 480px
}

.tourist_spot_details .spot_details .site_row .right_colm .video_block {
    aspect-ratio: 480/381;
    overflow: hidden;
    border-radius: 40px
}

.tourist_spot_details .spot_details .site_row .right_colm .video_block video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.tourist_spot_details .spot_details .site_row .left_colm h2 {
    position: relative;
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 20px;
    display: inline-block
}

.tourist_spot_details .spot_details .site_row .left_colm .quick-details-header::after {
    content: "";
    position: absolute;
    right: -65px;
    height: 1px;
    width: 55px;
    background: linear-gradient(to right, #0F0F0F, rgba(15, 15, 15, 0));
    top: 50%;
    transform: translateY(-50%)
}

.tourist_spot_details .spot_details .site_row .left_colm .duration {
    display: flex;
    align-items: center;
    gap: 8px
}

.tourist_spot_details .spot_details .site_row .left_colm .duration span {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--site-primary)
}

.tourist_spot_details .spot_details .site_row .left_colm ul {
    margin-top: 20px;
    list-style-type: disc;
    margin-left: 20px
}

.tourist_spot_details .spot_details .site_row .left_colm ul li {
    line-height: 26px;
    font-size: 15px;
    color: var(--site-text-light-1);
    margin-bottom: 8px
}

.tourist_spot_details .spot_details .site_row .left_colm ul li:last-child {
    margin-bottom: 0
}

.tourist_spot_details .spot_details .site_row .left_colm h3 {
    margin-top: 20px;
    font-size: 30px;
    line-height: 42px
}

.tourist_spot_details .spot_details .site_row .left_colm h5 {
    font-size: 17px;
    line-height: 21px;
    color: var(--site-primary);
    margin-top: 20px
}

.tourist_spot_details .spot_details .site_row .left_colm h4 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 42px
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 50px
}

::-webkit-scrollbar-thumb {
    background: #858585;
    border-radius: 50px
}

.site_header .site_nav ul.nav_menu span.nav_arrowdown {
    display: none !important
}

.blog_list_block .site_row .colm .colm_inner .txt_info {
    min-height: 275px;
    max-height: 300px
}

.blog_list_block .pagination,
.tour_list_block .pagination {
    justify-content: center
}

.tour_list_block ul.blog_pagination {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center
}

.tour_list_block ul.blog_pagination li span,
.tour_list_block ul.blog_pagination li a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-primary);
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    transition: .3s all
}

.tour_list_block ul.blog_pagination li span:hover,
.tour_list_block ul.blog_pagination li a:hover {
    transform: translateY(-4px)
}

.tour_list_block ul.blog_pagination li span {
    background: var(--site-primary);
    color: var(--site-white)
}

.tour_list_block ul.blog_pagination li a {
    color: var(--site-primary)
}

.contact-form-main-wrap {
    padding-bottom: 40px
}

.contact-form-main-wrap .form-group-field .form-input-field {
    width: 50%
}

.contact-form-main-wrap .form-group-field {
    display: flex;
    gap: 30px
}

.contact-form-main-wrap .wpcf7-form-control-wrap {
    width: 100%;
    display: inline-block
}

.contact-form-main-wrap .form-control {
    background: #f9f6ef;
    width: 100%;
    min-height: 52px;
    border: 1px solid #f9f6ef;
    padding: 12px;
    border-radius: 6px
}

.contact-form-main-wrap p {
    margin-bottom: 30px
}

.contact-form-main-wrap p label {
    color: #0f0f0f;
    margin-bottom: 7px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600
}

.contact-form-main-wrap .contact-submit input.submit_btn {
    background-color: #11869c;
    color: #fff;
    font-family: "Outfit", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 18px;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0px 14px 16px 0px rgba(17, 133, 156, .13);
    padding: 15px 30px 15px 30px;
    border-color: #11869c
}

.gallery_block a.site_cta {
    margin: 50px auto 0
}

.testimonial_block .block_heading h3 {
    margin: 0 auto 30px
}

.ti-widget.ti-goog .ti-controls .ti-next:before,
.ti-widget.ti-goog .ti-controls .ti-prev:before,
.ti-widget.ti-goog .ti-controls .ti-next:after,
.ti-widget.ti-goog .ti-controls .ti-prev:after {
    background: var(--site-primary) !important
}

.contact_block .contact_form_block .contact-form-main-wrap p {
    margin-bottom: 0
}

.contact_block .contact_form_block .contact-form-main-wrap {
    padding-bottom: 0 !important
}

.contact_block .contact_form_block .contact-submit p {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content
}

.contact_block .contact_form_block .contact-submit p input {
    width: 162px !important;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center
}

.contact_block .contact_form_block .contact-submit p span.wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.trip-faqs {
    position: relative
}

.trip-faqs .accordion {
    margin-bottom: 30px
}

.trip-faqs .accordion .accordion-item {
    position: relative;
    cursor: pointer
}

.trip-faqs .accordion .accordion-item .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #999
}

.trip-faqs .accordion .accordion-item .accordion-header .faq-icon {
    font-size: 40px
}

.trip-faqs .accordion .accordion-item .accordion-content {
    padding-top: 30px
}

.trip-content-wrap p,
.trip-content-wrap li {
    font-family: "Outfit";
    font-size: 15px;
    line-height: 26px;
    font-weight: 400
}

.trip-content-wrap h1,
.trip-content-wrap h2,
.trip-content-wrap h3 {
    font-family: "Racing Sans One";
    color: #0f0f0f
}

.trip-content-wrap p strong {
    color: #11869c
}

.trip-booking-btn {
    font-family: "Outfit";
    font-size: 15px;
    font-weight: 500;
    color: #11869c;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: auto 15px 10px;
    display: flex;
    position: relative;
    transition: all .3s
}

.trip-booking-btn-icon {
    width: 13px;
    height: 13px;
    margin-left: 5px;
    fill: #11869c;
    color: #11869c;
    transition: all .3s
}

.trip-booking-btn:hover,
.trip-booking-btn:hover .trip-booking-btn-icon {
    color: #eca915;
    fill: #eca915
}

.tourist_spot_details .spot_details .site_row .right_colm .booking_block {
    background: rgba(249, 178, 21, .08);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px
}

.tourist_spot_details .spot_details .site_row .right_colm .booking_block h2 {
    text-align: center
}

.tourist_spot_details .spot_details .site_row .right_colm .booking_block iframe {
    width: 100%;
    margin-top: 30px
}

.trip-faqs .accordion .accordion-item {
    border: 0
}

.trip-faqs .accordion .accordion-item .faq-title h5 {
    margin-top: 0;
    font-family: "Outfit", serif;
    font-size: 18px;
    line-height: 26px;
    color: var(--site-heading)
}

.trip-faqs .accordion .accordion-item p {
    margin: 0
}

.trip-faqs .accordion .accordion-item iframe {
    width: 100%;
    margin-top: 20px
}

.trip-faqs .accordion .accordion-item .accordion-content {
    padding-top: 15px
}

.blog_details_block .blog_text_details .blog_desc img {
    width: 100%;
    margin: 16px 0
}

.blog_details_block .blog_text_details .blog_desc ol {
    padding-left: 0;
    margin-left: 20px;
    margin-top: 20px
}

.blog_details_block .blog_text_details .blog_desc ol li {
    color: var(--site-text-light-1);
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 10px
}

.blog_details_block .blog_text_details .blog_desc a {
    color: var(--site-primary)
}

.blog_details_block .blog_text_details .blog_desc ol li:last-child {
    margin-bottom: 0
}

.blog_details_block .blog_text_details .blog_desc h2 strong,
.blog_details_block .blog_text_details .blog_desc h3 strong {
    font-weight: 400 !important
}

.site_header .menu_toggler {
    display: none
}


.tourist_spot_details .spot_details .site_row .right_colm .booking_block .tour-price-details .tour-price-block{
    display: flex; align-items: center; row-gap: 30px; position: relative;
    justify-content: space-between; flex-wrap: wrap;
    -moz-column-gap: 10px; column-gap: 10px; margin-top: 30px;
}
.tourist_spot_details .spot_details .site_row .right_colm .booking_block .tour-price-details .tour-price-block:before {
    content: '';
    position: absolute; left: 110px; right: 80px; top: 15px;
    border-top: 1px dashed #ccc; z-index: 1; width: auto;
}

.tourist_spot_details .spot_details .site_row .right_colm .booking_block .tour-price-details p,
.tourist_spot_details .spot_details .site_row .right_colm .booking_block .tour-price-details span {
    margin: 0;
    width: calc((100% - 10px)/2)
}

.tourist_spot_details .spot_details .site_row .right_colm .booking_block .tour-price-details p {
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500
}

.tourist_spot_details .spot_details .site_row .right_colm .booking_block .tour-price-details span {
    display: block;
    text-align: right;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    color: var(--site-primary)
}


.single-trip .tourist_spot_details .mobile_gallery{display: none !important;}
.page-template-kayak-hire .mobile_gallery{display: none !important;}


.search-no-results .page-section .wrapper{max-width: 1410px; width: 100%; margin: auto;}
.search-no-results .page-section .wrapper .no-data{padding: 100px 15px;}
.search-no-results .page-section .wrapper .no-data p{font-size: 18px;}

.cta-wrap{
    margin-top: auto;
}
.cta-wrap .cta-learn-more{
    font-family: "Outfit", Sans-serif; font-size: 15px;
    display: flex; align-items: center; margin: 10px;
    font-weight: 500; line-height: 18px; letter-spacing: 4px;
    fill: #11869C; color: #11869C; text-transform: uppercase;
}
.cta-wrap .cta-learn-more img{width: 13px; height: 13px; margin-left: 4px;}
.cta-wrap .cta-learn-more:hover{color: #ECA915; fill: #ECA915;}