:root {
    --theme-color: #2b8933;
    --primary-color: #2b8933;
    --title-color: #113D48;
    --body-color: #6E7070;
    --black-color: #000000;
    --white-color: #ffffff;
    --title-font: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --body-font: "Nunito Sans", sans-serif;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1320px;
    --container-gutters: 24px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 2s
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
}

html,
body {
    scroll-behavior: auto !important
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

iframe {
    border: none;
    width: 100%
}



input:focus {
    outline: none;
    box-shadow: none
}


ul {
    list-style-type: disc
}

ol {
    list-style-type: decimal
}



a {
    color: var(--theme-color);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s
}

a:hover {
    color: var(--title-color)
}


img {
    border: none;
    max-width: 100%
}



p {
    font-family: var(--body-font);
    margin: 0 0 18px 0;
    color: var(--body-color);
    line-height: 1.75;
    font-weight: 500;
}


@media only screen and (min-width: 1300px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: calc(var(--main-container) + var(--container-gutters));
        padding-left: calc(var(--container-gutters) / 2);
        padding-right: calc(var(--container-gutters) / 2)
    }

    .container-xxl.px-0,
    .container-xl.px-0,
    .container-lg.px-0,
    .container-md.px-0,
    .container-sm.px-0,
    .container.px-0 {
        max-width: var(--main-container)
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: var(--container-max-desktop-xl);
        /* 1700px - 1800px */
    }
}

/* Large laptop / desktop */
@media (min-width: 1400px) and (max-width: 1919px) {
    .container {
        max-width: var(--container-max-desktop-lg);
        /* ~1400 */
    }
}

@media (max-width: 1399px) {
    :root {
        --main-container: 1250px;
    }
}


.th-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden
}

.th-menu-wrapper .mobile-logo {
    padding-bottom: 1px;
    padding-top: 4px;
    display: block;
    padding-left: 20px;
    background-color: var(--smoke-color);
    box-shadow: 0px 0px 4px 3px #ccc;
}

.th-menu-wrapper .mobile-logo svg {
    max-width: 185px
}

.th-menu-wrapper .th-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: 10px;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 35px;
    font-size: 18px;
    z-index: 1;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-radius: 50%
}

.th-menu-wrapper .th-menu-toggle:hover {
    background-color: var(--title-color);
    color: var(--white-color)
}

.th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid var(--title-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1
}

.th-menu-wrapper.th-body-visible {
    opacity: 1;
    visibility: visible
}

.th-menu-wrapper.th-body-visible .th-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible
}

.th-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 200px);
    padding-bottom: 40px;
    margin-top: 0px;
    text-align: left
}

.th-mobile-menu ul {
    margin: 0;
    padding: 0 0
}

.th-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none
}

.th-mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1
}

.th-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1.4;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
    padding-left: 0px
}

.th-mobile-menu ul li a:before {
    content: '\f105';
    font-family: var(--icon-font);
    position: absolute;
    left: 0;
    top: 12px;
    margin-right: 10px;
    display: inline-block;
    display: none
}

.th-mobile-menu ul li.th-active>a {
    color: var(--theme-color)
}

.th-mobile-menu ul li.th-active>a:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.th-mobile-menu ul li ul li:last-child {
    border-bottom: none
}

.th-mobile-menu ul .menu-item-has-children>a .th-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: var(--smoke-color);
    color: var(--title-color);
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%
}



.th-mobile-menu ul .menu-item-has-children>a:after {
    content: "\f067";
    font-family: var(--icon-font);
    width: 22px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background-color: var(--smoke-color);
    float: right;
    margin-top: 1px
}


.th-mobile-menu>ul {
    padding: 0 40px
}

.th-mobile-menu>ul>li:last-child {
    border-bottom: none
}

.th-menu-toggle {
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    background-color: var(--theme-color);
    color: var(--white-color);
    display: inline-block
}

.th-menu-toggle:hover {
    background-color: var(--title-color)
}

.th-menu-toggle.style-text,
.th-menu-toggle.style-text-white {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--title-color);
    font-size: 20px
}

.th-menu-toggle.style-text i,
.th-menu-toggle.style-text-white i {
    margin-right: 10px
}

.th-menu-toggle.style-text-white {
    color: var(--white-color)
}

@media (max-width: 400px) {
    .th-menu-wrapper .th-menu-area {
        width: 100%;
        max-width: 400px
    }

    .th-mobile-menu>ul {
        padding: 0 20px
    }
}


.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-family: var(--body-font);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    border: none;
    font-size: 15px;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 48px;
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    gap: 8px
}

.th-header {
    position: relative;
    z-index: 99;
}

.th-header .menu-area {
    position: relative;
    z-index: 2;
}



.th-btn:before {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 30em;
    position: absolute;
    top: 0;
    left: -5%;
    background-color: #00bf63;
    -webkit-transition: .5s ease;
    transition: .5s ease;
    display: block;
    z-index: -1
}

.th-btn:hover,
.th-btn.active {
    color: var(--white-color);
    box-shadow: none
}

.th-btn:hover.th-icon i,
.th-btn.active.th-icon i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.th-btn:hover:before,
.th-btn.active:before {
    width: 110%
}


.th-btn.style1:after {
    background-color: var(--white-color);
}

.th-btn.style1:before {
    background-color: var(--primary-color);

}

.th-icon.thwhite:hover {
    color: var(--white-color);
}


.sticky-wrapper {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

.sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
    -webkit-animation: stickyAni 0.4s ease-in-out;
    animation: stickyAni 0.4s ease-in-out;
    z-index: 99999;
}


.main-menu a {
    display: block;
    position: relative;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--body-font);
    color: var(--black-color);
    text-transform: capitalize
}

.main-menu a:hover {
    color: var(--theme-color)
}

.main-menu>ul>li {
    margin: 0 14px
}

.main-menu>ul>li>a {
    padding: 29px 0
}

.main-menu>ul>li>a:hover {
    color: var(--theme-color)
}

.main-menu ul {
    margin: 0;
    padding: 0
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative
}

.main-menu ul li:has(.sub-menu)>a:after,
.main-menu ul li:has(.mega-menu)>a:after,
.main-menu ul li.menu-item-has-children>a:after {
    content: "\f107";
    display: inline-block;
    position: relative;
    font-family: var(--icon-font);
    margin-left: 4px;
    font-weight: 400;
    top: 0;
    font-size: 0.9em;
    color: var(--black-color);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out
}

.header-layout1 .main-menu>ul>li>a:hover:before,
.header-layout1 .main-menu>ul>li>a.active:before {
    width: 100%;
}

.header-layout1 .main-menu>ul>li>a:before {
    content: '';
    position: absolute;
    height: 1px;
    left: 0;
    background: var(--black-color2);
    width: 0%;
    margin-top: 30px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}


.main-menu ul li:has(.sub-menu)>a:hover:after,
.main-menu ul li:has(.mega-menu)>a:hover:after,
.main-menu ul li.menu-item-has-children>a:hover:after {
    content: "\f106";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    color: var(--black-color);
}

.main-menu ul li:last-child {
    margin-right: 0 !important
}

.main-menu ul li:first-child {
    margin-left: 0 !important
}

.main-menu ul li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9
}

.main-menu ul li:hover ul.mega-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1) translateX(0%);
    -ms-transform: scaleY(1) translateX(0%);
    transform: scaleY(1) translateX(0%);
    z-index: 9
}

.main-menu ul.sub-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    visibility: hidden;
    min-width: 230px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 7px;
    left: -14px;
    opacity: 0;
    z-index: -1;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    border-radius: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    border-bottom: 3px solid var(--theme-color);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s
}

.main-menu ul.sub-menu a {
    font-size: 15px;
    line-height: 30px
}

.main-menu ul.sub-menu {
    padding: 0px 0px 0px 0px;
    left: -27px
}

.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 6px 12px;
    border-bottom: 1px dashed #ccc;
}

.main-menu ul.sub-menu li.menu-item-has-children>a:after {
    content: "\2b";
    float: right;
    top: 1px;
    display: inline-block;
    color: var(--black-color);
}

.main-menu ul.sub-menu li.menu-item-has-children>a:hover:after {
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 0;
    font-family: var(--body-font);
    color: var(--black-color);
    text-transform: capitalize;
    font-weight: 600;
}

@media only screen and (min-width: 1300px) {
    .th-container {
        --main-container: 1776px;
    }
}

.main-menu ul.sub-menu li a:hover:before {
    visibility: visible;
    opacity: 1;
    left: 0;
}

.main-menu ul.sub-menu li ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0;
    margin: 0 0;
    margin-left: 0px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
    left: 100%;
    right: auto
}

.main-menu .mega-menu-wrap {
    position: static
}

@media (max-width: 1500px) {
    .main-menu>ul>li {
        margin: 0 13px
    }
}

.header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.header-links li {
    display: inline-block;
    position: relative;
    font-family: var(--body-font);
    font-size: 15px;

}

.header-links li:not(:last-child) {
    margin: 0 46px 0 0
}

.header-links li:not(:last-child):after {
    content: '';
    height: 14px;
    width: 1px;
    background-color: #999999;
    position: absolute;
    top: 5px;
    right: -27px
}

.header-links li>i {
    color: var(--white-color);
    margin-right: 8px
}


.header-links p,
.header-links a {
    color: var(--white-color);
}

.header-links a:hover {
    color: var(--white-color);
}


.header-links .social-links a {
    font-size: 14px
}


.header-top {
    padding: 10px 0;
}

.header-top a:hover {
    color: var(--white-color);
}

.dropdown-link {
    position: relative;
    border: 1px solid var(--light-color);
    border-radius: 100px;
    padding: 3px 12px;
    max-width: 100px
}



.dropdown-link .dropdown-menu {
    position: absolute;
    right: 0;
    border-bottom: 2px solid var(--theme-color);
    border-radius: 0
}

.dropdown-link .gtranslate_wrapper a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: var(--title-color);
    font-family: var(--title-font);
    padding: 5px 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out
}

@media (max-width: 991px) {
    .header-default.unittest-header .menu-area {
        padding: 14px 0
    }
}

.header-layout1 {
    background-color: var(--white-color)
}

.header-layout1 .header-top {
    position: relative;
    padding: 4px 0;
    background-color: var(--theme-color);
    z-index: 2
}

.header-layout1 .menu-item.menu-item-type-custom a:after {
    content: "\f107";
    display: inline-block;
    position: relative;
    font-family: var(--icon-font);
    margin-left: 4px;
    font-weight: 600;
    top: 0;
    font-size: 0.9em;
    color: var(--black-color);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out
}

.header-layout1 .menu-item.menu-item-type-custom a:hover:after,
.header-layout1 .menu-item.menu-item-type-custom a.active:after {
    content: "\f106";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.header-layout1 .menu-item.menu-item-type-custom .sub-menu li a:after {
    display: none
}

.header-layout1 .menu-item.menu-item-type-custom .mega-menu-title a:after {
    display: none
}

.header-layout1 .menu-item.menu-item-type-custom .th-btn:after {
    display: none
}

.header-layout1 .main-menu>ul>li>a:before {
    content: '';
    position: absolute;
    height: 1px;
    left: 0;
    background: var(--theme-color);
    width: 0%;
    margin-top: 30px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    bottom: 0px;
}

.header-layout1 .header-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px
}




.header-layout1 .sticky-wrapper.sticky .menu-area {
    background-image: none !important
}

@media (max-width: 1199px) {
    .header-layout1 .sticky-wrapper .menu-area {
        padding: 12px 0
    }
}

.header-layout1 .menu-area {
    z-index: 0
}


.header-layout1 .logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 19%;
    height: 89px;
    z-index: -1;
    background-color: var(--theme-color)
}

@media (min-width: 1930px) {
    .header-layout1 .logo-bg {
        width: 30%;
        height: 93px
    }
}

@media (max-width: 1299px) {
    .header-layout1 .logo-bg {
        width: 20%
    }
}

@media (max-width: 1199px) {
    .header-layout1 .logo-bg {
        width: 20%;
        height: 80px
    }
}

@media (max-width: 991px) {
    .header-layout1 .logo-bg {
        width: 50%
    }
}

@media (max-width: 767px) {
    .header-layout1 .logo-bg {
        width: 60%
    }
}

@media (max-width: 480px) {
    .header-layout1 .logo-bg {
        width: 70%
    }
}

@media (max-width: 375px) {
    .header-layout1 .logo-bg {
        width: 80%
    }
}

.header-layout1 .main-menu {
    position: relative;
    padding-left: 70px
}

@media (min-width: 1930px) {
    .header-layout1 .main-menu {
        padding-left: 150px
    }
}

@media (max-width: 1399px) {
    .header-layout1 .main-menu {
        padding-left: 40px
    }
}

.header-layout1 .main-menu>ul>li {
    margin: 0px 21px
}

@media (max-width: 1299px) {
    .header-button .th-btn {
        display: block;
    }
}

@media (max-width: 1399px) {
    .header-layout1 .main-menu {
        padding-left: 40px;
    }
}

@media (max-width: 1399px) {
    .header-layout1 .main-menu>ul>li {
        margin: 0px 16px;
    }
}

.bg-mask {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.header-layout4 {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-layout4 .logo-bg {
    background-color: #ebf1ff;
}

.header-layout4 .th-btn:hover:after {
    background-color: var(--white-color);
}

@media (max-width: 1199px) {
    .header-layout5 .menu-area {
        padding: 22px 0
    }
}

.desktop-banner .carousel-control-prev {
    background: none !important;
    outline: none;
    border: none;
}

.desktop-banner .carousel-control-next {
    background: none !important;
    outline: none;
    border: none;
}

.th-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 14px;
    border-radius: 50%;
    text-align: center;
    margin-right: 5px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease
}

.th-social a:last-child {
    margin-right: 0
}

.th-social a:hover {
    background-color: #E9F6F9;
    color: var(--theme-color)
}

.th-social a:hover i {
    -webkit-animation: slideTop 0.5s;
    animation: slideTop 0.5s
}

.marquee-tag-text {
    border-radius: 0px;
    overflow: hidden;
}

.marquee-tag-text marquee {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    line-height: 15px;
}

.blink-text {
    animation: blinkAnimation 1s infinite;
    color: #333;
}

@keyframes blinkAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.about-sec-area {
    position: relative;
    width: 100%;
    padding: 20px 0px 20px;
    background-color: #fff;
}

.about-images-box {
    width: 100%;
    position: relative;
    max-width: 460px;
    margin: 0 auto;
}

.about-images-box img {
    width: 100%;
    border-radius: 8px;

}

.about-images-box .img1 {
    border-radius: 150px 0 150px 0;
}

.about-images-box .img1 img {
    border-radius: 150px 0 150px 0;
    border: 10px solid var(--white-color);
}

.about-images-box .img1.style2 {
    position: relative;
    z-index: 2;
    margin-left: -45px;
}


.sub-title {
    display: block;
    color: #000;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: -4px;
}

.about-sec-title {
    font-size: 27px;
    color: var(--black-color);
    font-weight: 800;
    font-family: var(--title-font);
    margin-bottom: 10px;
}

.about-sec-title span {
    color: var(--theme-color);
}

.about-discirption {
    font-size: 15px;
    color: var(--black-color);
    margin-bottom: 10px;
    font-weight: 400;
}

.about-btn-read .th-btn:hover:after {
    background-color: var(--white-color);
}

.about-btn-read {
    position: relative;
    margin-top: 18px;
}

.about-item:last-child {
    margin-bottom: 0px;
}

.about-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    padding: 10px;
}

.about-item_img {
    min-width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--theme-color);

    transition: all 0.4s ease-in-out;
}

.about-item .box-title {
    margin-bottom: 0px;
}

.blog-box.style2.th-ani .box-title {
    font-size: 18px;
    line-height: 1.417;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--black-color);
}

.about-item_centent p {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0px;
}

.about-item_img img {
    transition: all 0.4s ease-in-out;
    width: 35px;
    filter: brightness(0) invert(1);
}

.about-item-wrap {
    position: relative;
    margin-top: 17px;
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 40px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear
}

.scroll-top:after {
    content: "\f062";
    font-family: var(--icon-font);
    position: absolute;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: var(--theme-color);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    border: 2px solid var(--theme-color);
    box-shadow: none;
    border-radius: 50%
}

.scroll-top svg {
    color: var(--theme-color);
    border-radius: 50%;
    background: var(--white-color)
}

.scroll-top svg path {
    fill: none
}

.scroll-top .progress-circle path {
    stroke: var(--theme-color);
    stroke-width: 20px;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.site-title {
    text-transform: capitalize;
    font-size: 35px;
    color: var(--color-dark);
    margin-top: 0px;
    margin-bottom: 8px;
    position: relative;
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #333;
    border-radius: 50px 50px 50px 0;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    padding: 15px 15px 15px 0;
    overflow: hidden;
}

.choose-item-icon {
    width: 72px;
    height: 72px;
    line-height: 71px;
    text-align: right;
    background: var(--theme-color);
    border-radius: 50px 50px 50px 0;
    padding-right: 12px;
    margin-left: -12px;
}

.choose-item-icon img {
    width: 50px;
    filter: grayscale(100%) brightness(0) invert(1);
}

.choose-item-info {
    flex: 1;
}

.choose-item-info h4 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
}

.choose-item-info p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 0px;
}


.why-choose-us-sec .title-area .sec-title {
    margin-bottom: 10px;
}

.why-choose-us-sec .title-area p {
    max-width: 900px;
    margin: auto;
    font-size: 15px;
    color: #000;
    margin-bottom: 20px;
}

.choose-content-wrap {
    margin-top: 30px;
}

.choose-img {
    position: relative;
    margin-left: 50px;
}

.choose-img::before {
    content: "";
    position: absolute;
    left: -15px;
    bottom: -15px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--theme-color);
    border-radius: 30% 0 30% 30%;
}

.choose-img img {
    border-radius: 30% 0 30% 30%;
}














































.footer-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #000;
}



.footer-wrapper .widget-area {
    padding-top: 50px;
    padding-bottom: 10px;
    background-image: url(../image/footer-bg.jpeg);
    background-size: cover;
    position: relative;
    background-position: center;
    z-index: 1;
}

.footer-wrapper .widget-area::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .8;
    background: #022617;
    z-index: -1;
}

.copyright-wrap {
    position: relative;
    padding: 5px 0px 5px;
    background-color: #022617;
}

.copyright-text {
    margin-bottom: 0px;
    font-size: 15px;
    text-align: center;
    color: #d3d3d3;
    font-weight: 500;
}

.copyright-text a {
    color: #d3d3d3;
}

.footer-widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}

.footer-widget {
    margin-bottom: 25px;
}

.footer-widget .widget_title {
    color: #d3d3d3;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 1em;
    margin: -0.12em 0 23px 0;
}

.widget_nav_menu ul {
    list-style: none;
    padding: 0;
}

.widget_nav_menu li {
    display: block;
    position: relative;
}

.footer-widget.widget_nav_menu a {
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    margin-bottom: 11px;
    font-family: var(--body-font);
    color: #d3d3d3;
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 0 0 0px;
    background-color: transparent;
    border-bottom: none;
    position: relative;
}



.info-box_text:not(:last-child) {
    margin-bottom: 18px;
}

.info-box_text {
    line-height: 1.75em;
    margin-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    align-items: center;
}

.info-box_text .icon img {

    filter: brightness(0) invert(1);
}

.info-box_text .details {
    margin-top: -0.3em;
}

.info-box_text .details p {
    margin-bottom: 0;
    font-size: 15px;
    color: #fff;
}

.info-box_text .icon {
    color: #000;
    background-color: #d3d3d3;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.info-box_text .details p a {
    color: #d3d3d3;
}

.about-text {
    color: #d3d3d3;
    font-weight: 500;
    font-size: 15px;
    padding-right: 32px;
    margin-bottom: 15px;
}

.about-text a {
    color: #d3d3d3;
    font-weight: 700;
}

.th-widget-about .about-logo {
    margin-bottom: 15px;
}



.counter-area {
    position: relative;
    background: #000000;
    overflow: hidden;
    z-index: 1;
    padding: 40px 0px 40px;
}

.counter-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/counter-back.jpeg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.5;
}

.counter-item {
    display: block;
    position: relative;
    text-align: center;
    padding: 15px 10px 15px 15px;
    border-radius: 100px;
    z-index: 1;
}

.counter-item::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    bottom: -2px;
    width: 40%;

    border-right: none;
    transition: var(--transition);
}


.counter-item .icon {
    width: 70px;
    margin: auto;
    height: 70px;
    line-height: 60px;
    font-size: 35px;
    border-radius: 50px;
    text-align: center;
    color: var(--white-color);
    background: var(--white-color);
    flex-shrink: 0;
}

.counter-item .icon img {
    width: 45px;
}

.counter-item .info {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.content {
    position: relative;
    margin-top: 20px;
}

.counter-item .counter {
    display: block;
    line-height: 1;
    color: var(--white-color);
    font-size: 35px;
    font-weight: 900;
}

.counter-item .unit {
    font-size: 35px;
    color: var(--white-color);
    font-weight: 500;
    line-height: 1;
    margin: 3px 0 0 3px;
}

.counter-item .title {
    color: var(--white-color);
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}




.testimonial-review-sec {
    position: relative;
    width: 100%;
    padding: 20px 0px 10px;
    background-color: #fff;
}

.testimonial-card-main-box {
    background-color: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    padding: 40px 25px 20px 25px;
    box-shadow: 2px 5px 4px 0 rgba(0, 0, 0, .1);
    position: relative;
    z-index: 2;
}

.title-area .sec-title {
    margin-bottom: 22px;
}

.testimonial-card-main-box::before {
    content: '';
    height: 80px;
    width: calc(100% - 100px);
    background-color: var(--theme-color);
    position: absolute;
    bottom: -1px;
    left: 0;
    -webkit-clip-path: polygon(0 0, calc(100% - 50px) 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, calc(100% - 50px) 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.testi-riview-text {
    margin-top: -0.5em;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 15px;
    color: var(--black-color);
}

.testi-grid_quote {
    position: absolute;
    bottom: 30px;
    right: 40px;
}

.testi-grid_author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
}

.testi-grid_avater {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--white-color);
}

.testi-grid_avater img {
    height: 80px;
}

.testi-grid_review {
    color: #FFC107;
    margin-top: -5px;
}

.testi-grid_review i {
    font-size: 14px;
    margin-right: 3px;
}

.testi-grid_name {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0;
    color: var(--black-color);
    font-weight: 600;
}

.riview-title {
    color: var(--black-color);
    font-size: 32px;
    font-family: var(--title-font);
    font-weight: 600;
    display: block;
    padding-bottom: 10px;
    position: relative;
}

.riview-title::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 55px;
    width: 8px;
    height: 4px;
    background: var(--theme-color);
    display: block;
    margin: auto;
    right: -14px;
}

.riview-title::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--theme-color);
    right: 0;
    text-align: center;
    display: block;
    margin: 0 auto;
}



.tour-package-main-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.tour-packages-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.tour-packages-sec .title-area .sec-title {
    margin-bottom: 0px;
}


.category-card {
    position: relative;
    text-align: center;
    margin-bottom: 50px
}

.category-card .box-img {
    border-radius: 24px;
    margin-bottom: 20px;
}

.global-img {
    position: relative;
    overflow: hidden;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.box-title a {
    color: var(--black-color);
}

.tour-btn {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 14px;
}

.gallery-sec-home {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.gallery-box {
    position: relative;
}

.gallery-box.style5 .gallery-img {
    height: 270px;
}

.gallery-box .gallery-img {
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all .5s ease-out;
    border-radius: 16px;
}

.gallery-box.style5 .gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-box .gallery-img img {
    border-radius: 16px;
}

.gallery-box .gallery-img .icon-btn {
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    z-index: 3;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border: none;
    font-size: 40px;
    font-weight: 300;
    color: var(--white-color);
}

.icon-btn {
    display: inline-block;
    width: var(--btn-size, 46px);
    height: var(--btn-size, 46px);
    line-height: var(--btn-size, 43px);
    font-size: var(--btn-font-size, 18px);
    background-color: transparent;
    border: 2px solid #888C97;
    color: var(--title-color);
    text-align: center;
    border-radius: 99px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    position: relative;
}

.gallery-box:hover .icon-btn {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.gallery-box .gallery-img .icon-btn:hover {
    background-color: transparent;
}

.gallery-box:hover .gallery-img::after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}




.gallery-box .gallery-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: -webkit-linear-gradient(bottom, rgba(13, 13, 12, 0.5), rgba(13, 13, 12, 0.5));
    background: linear-gradient(0deg, rgba(13, 13, 12, 0.5), rgba(13, 13, 12, 0.5));
    border-radius: 16px;
    opacity: 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    z-index: 1;
}

.global-img:hover::after {
    height: 100%;
    opacity: 1;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}



.gallery-sec-home .swiper-button-next,
.swiper-button-prev {
    color: var(--white-color);
    font-size: 20px;
}

.blog-sec-area {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #fff;
}

.blog-box .blog-img {
    margin-bottom: 15px;

}

.blog-box .blog-meta {
    margin: -0.3rem 0 6px 0;
}

.blog-meta {
    display: block;
}

.blog-meta span,
.blog-meta a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black-color);
    font-family: var(--body-font);
    position: relative;
    text-transform: capitalize;
    margin-right: 12px;
}

.blog-sec-area .box-title {
    margin-bottom: 6px;
}

.desination-planning {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 8px;
    line-height: 23px;
    font-weight: 400;
}

.author i {
    padding-right: 5px;
    font-weight: 600;
    color: var(--theme-color);
}

.product-package-sec {
    position: relative;
    background: #000000c7;
    overflow: hidden;
    z-index: 1;
    padding: 40px 0px 40px;
}


.product-package-sec::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/banner/products-banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    opacity: 0.1;
}



.tour-package-sec .title-area .sec-title {
    margin-bottom: 0px;
}

.tour-package-main-box {
    background: #fff;
    border: solid 1px #d4d4d4;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);
    transition: 0.3s;
    overflow: hidden;
    margin-bottom: 15px;

}

.tour-images {
    position: relative;
    border-radius: 6px 6px 0px 0px;
    overflow: hidden;

}

.tour-images img {
    height: auto;
    width: 100%;
    position: relative;


}



.tour-packages-area {
    flex: 1;
    margin-right: 0;
    padding: 5px 5px;
    background-color: #ebf1ff;
}

.enquary-button-two {

    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 10px;
    align-items: center;
}

.enquary-button-two a {
    padding: 3px 5px;
    border: 1px solid #ddd;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    flex: 1;
    background: #fff;
    border-color: #607D8B;
    color: #000;
}

.enquary-button-two a:nth-of-type(2) {
    background: var(--theme-color);
    color: #fff;
    border: var(--theme-color);
}

.destination-tour {
    font-size: 14px;
    color: var(--black-color);
    font-weight: bold;
    margin-bottom: 7px;
    padding-bottom: 0;
}

.tour-content-box {
    padding: 0 5px;
    position: relative;
}




.content-tour-text {
    font-size: 15px;
    color: var(--black-color);
    line-height: 24px;
    position: relative;
    padding-bottom: 7px;
    margin: 0px;
    font-weight: 400;
}

.blog-box.style2.th-ani {
    background: #fff;
    border: solid 1px #d4d4d4;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);
    transition: 0.3s;
    overflow: hidden;
    margin-bottom: 15px;
    min-height: 460px;
    padding: 5px 8px;
}

.blog-box.style2.th-ani img {
    width: 100%;
    height: 280px;
    filter: brightness(90%);
}

.breadcumb-wrapper {
    position: relative;
    background-color: #d3d3d3;
    background-position: center;
    padding: 5px 0 5px;
}



.breadcumb-content {
    position: relative;
    z-index: 9;
}

.breadcumb-title {
    margin: -0.23em 0 -0.18em 0;
    font-size: 34px;
    font-family: var(--title-font);
    color: var(--black-color);
    font-weight: 700;
    text-transform: capitalize;
}

.breadcumb-menu {
    max-width: 100%;
    padding: 0;
    list-style-type: none;
    position: relative;
    margin: 0px;
}

.breadcumb-menu li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcumb-menu li {
    display: inline-block;
    margin-right: 4px;
    color: var(--black-color);
    padding-right: 4px;
    list-style: none;
    font-weight: 700;
    position: relative;
}

.breadcumb-menu span {
    color: var(--black-color);
    padding-right: 5px;
}

.breadcumb-menu li a {
    color: var(--black-color);
}

.blog-sec-page {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
}

.gallery-sec-page {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
}

.gallery-sec-page .gallery-box.style5 {
    margin-bottom: 20px;
}

.our-team-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.our-team-sec .title-area .sec-title {
    margin-bottom: 0px;
}

.team-grid {
    position: relative;
    background-color: #E9F6F9;
    text-align: center;
    border-radius: 16px;
    --space: 72px
}

.team-grid .team-img {
    border-radius: 16px 16px 0 0;
}

.th-team .team-img {
    position: relative;
    overflow: hidden;
}

.team-grid .team-img img {
    -webkit-transition: all 1.3s ease 0s;
    transition: all 1.3s ease 0s;
}

.th-team .team-img img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.team-grid .team-img2 {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    margin-top: -100px;
    border: 3px solid var(--white-color);
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    z-index: 3;
}

.team-grid .team-img2 img {
    width: 100%;
    border-radius: 50%;
    -webkit-transition: all 1.3s ease 0s;
    transition: all 1.3s ease 0s;
}

.team-grid .team-content {
    position: relative;
    padding: 24px 16px 16px 16px;
    border-radius: 16px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 2;
}

.team-grid .media-body {
    position: relative;
    border-radius: 16px;
    background-color: #fff;
    padding: 24px 28px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 2;
    overflow: hidden;
}

.team-grid .media-body:before {
    content: "";
    position: absolute;
    inset: 0;
    height: 0;
    background-color: var(--theme-color);
    z-index: -1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.team-grid:hover .media-body::before {
    height: 100%;
    bottom: 100%;
}

.team-grid .box-title {
    color: var(--black-color2);
}

.th-team .box-title {
    margin-bottom: 0;
}

.about-item .box-title {
    font-size: 20px;
    line-height: 1.417;
    font-weight: 600;
    color: var(--black-color);
    margin-top: -0.32em;
}

.box-title {
    font-size: 20px;
    line-height: 1.417;
    font-weight: 600;
    color: var(--black-color);
    margin-top: -0.68em;
}


.team-grid .team-desig {
    margin-bottom: 12px;
}

.th-team .team-desig {
    font-size: 16px;
    font-weight: 400;
    display: block;

    color: var(--black-color2);
}

.team-grid:hover .box-title a {
    color: var(--white-color);
}

.team-grid:hover .th-social a {
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.team-grid:hover .team-desig {
    color: var(--white-color);
}

.th-team .th-social a {
    --icon-size: 32px;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    font-size: 14px;
}

.th-social a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    margin-right: 5px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contact-page-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px
}

.contact-page-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px
}

.about-contact-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    border: 1px solid #E1E4E6;
    border-radius: 8px;
    padding: 12px;
    min-height: 132px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.about-contact-grid .about-contact-icon {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 60px;
    height: 60px;
    line-height: 58px;
    text-align: center;
    background: var(--theme-color);
    border-radius: 50%;
    color: var(--white-color);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.about-contact-grid .about-contact-icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.about-contact-grid .about-contact-icon img {
    width: 30px;
}


.about-contact-grid .box-title {
    font-size: 18px;
    font-weight: 700;
    margin-top: -0.3em;
    color: var(--black-color);
    margin-bottom: 2px;
}

.about-contact-grid .about-contact-details-text {
    color: var(--title-color);
    margin-bottom: 0;
}

.about-contact-grid .about-contact-details-text a {
    color: var(--title-color);
    margin-bottom: 0;
}

.contact-form-box {
    padding: 20px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .08);
    margin-bottom: 0px;
    background-color: #fff;
    border-radius: 10px 0px 0px 10px;
}

.contact-form-box>h3 {
    color: #000;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 7px !important;
}

.contact-form-box .input_div_contact {
    margin-bottom: 10px;
}

.contact-form-box .input_div_contact>label {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.contact-form-box .input_div_contact>input {
    border-radius: 5px !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-dark);
    border: 1px solid #333 !important;
    height: 40px;
    background-color: var(--white-color);
}

.form-controlarea:focus {
    box-shadow: none;
    outline: none;

}

.form-controlarea {
    border-radius: 5px !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-dark);
    border: 1px solid #333 !important;
    height: 100px;
    width: 100%;
    background-color: var(--white-color);
}

.contact-form-box .input_div_contact_btn>button {
    color: var(--white-color);
    background-color: var(--theme-color);
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}

.contact-inner-page {
    position: relative;
    width: 100%;
    padding: 10px 0px 40px;
}

.destination-card-main-page {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.destination-card-main-page .destination-title {
    line-height: 26px;
}

.rating-box {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.rating-label {
    color: #94a3b8;
    font-weight: 500;
}

.rating-stars {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 8px;
}

.rating-stars li {
    display: inline-block;
    margin-right: 4px;
}

.rating-stars i.fa-star {
    color: #fbbf24;
    font-size: 14px;
    transition: transform 0.2s ease, color 0.2s ease;
}


.rating-text {
    color: #111827;
    font-size: 0.875rem;
    margin-left: 6px;
}

.span-rate-percentage {
    position: absolute;
    top: 12px;
    left: 0;
    background: #e11d48;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 18px;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider_section2 {
    display: none;
}

.slider_section2 .carousel-control-prev {
    background: none !important;
    outline: none;
    border: none;
}

.slider_section2 .carousel-control-next {
    background: none !important;
    outline: none;
    border: none;
}

.blog-details-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.blog-single {
    position: relative;
    margin-bottom: 20px;

}

.blog-single .blog-img {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #E9F6F9;
}

.blog-single .blog-img:before {
    background: rgba(255, 255, 255, 0.5);
    content: "";
    height: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
}

.blog-single .blog-img img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: 1.3s all ease;
    transition: 1.3s all ease;
}

.blog-single:hover .blog-img img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.1);
}

.blog-single:hover .blog-img:before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}

.blog-single .blog-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
    z-index: 2;
    gap: 10px 0;
}

.blog-single .blog-meta a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #1C2D37;
    font-family: var(--body-font);
    position: relative;
    line-height: normal;
}

.blog-meta a:not(:last-child) {
    padding-right: 16px;
}

.blog-main-title {
    font-size: 24px;
    color: var(--black-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-content p {
    font-size: 15px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 21px;
    color: var(--black-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-content h4 {
    font-size: 18px;
    color: var(--black-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-content ul {
    padding-left: 17px;
    list-style-type: disc;
}

.blog-content ul li {
    font-size: 15px;
    color: var(--black-color);
}

.related-bolgs-page {
    position: relative;
    width: 100%;
    padding: 10px 0px 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0px;
}

.pagination li a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid gray;
    color: black;
    margin: 0 4px;
    border-radius: 5px;
}

.right_side_artical_main_div {
    position: sticky;
    top: 100px;
    padding: 40px 40px;
    background-color: #f5f7fa;
    margin-bottom: 40px;
    border-radius: 20px;
}

.right_side_artical_main_div .widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 1em;
    padding-bottom: 17px;
    color: #010f34;
    margin: -0.12em 0 30px 0;
}

.right_side_artical_main_div .widget_title:before,
.widget_title:after {
    content: "";
    height: 3px;
    width: 100%;
    background-color: #d8dde1;
    position: absolute;
    bottom: 0;
    left: 0;
}

.right_side_artical_main_div .widget_title:after {
    background-color: var(--theme-color) !important;
    width: 30px !important;
}

.main-author-box img {
    width: 130px;
    height: 130px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.writer-title {
    font-size: 15px;
    margin-bottom: 0px;
    color: var(--black-color);
}

.destination-title-blog {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 5px;
}

.destination-title a {
    color: var(--black-color);
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content {
    border: 4px solid var(--theme-color);
    border-radius: 10px;
    box-shadow: none;
    background-color: #ffff;
    outline: none;
}

.modal-enquary-box-modal .modal {
    z-index: 99999999;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-header {
    padding: 8px 10px !important;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-header .modal-title {
    font-size: 21px;
    color: #000;
    font-weight: 800;
    text-transform: capitalize;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .close {
    box-shadow: none;
    position: absolute;
    right: -19px;
    background: var(--theme-color);
    opacity: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    font-weight: 600;
    color: #fff;
    font-size: 22px;
    border: none;
    top: -19px;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-body {
    padding: 5px 15px;
}

.enquiry_popup_input_div>label {
    font-size: 14px;
    color: #000 !important;
    font-weight: 600;
    margin-bottom: 2px !important;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .contact_pg_form_right_side input,
textarea {
    border: 1px solid #333 ! Important;
    outline: none ! Important;
    background: #fff;
    border-radius: 5px !important;
    height: 38px;
    line-height: 38px;
    margin-bottom: 10px;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .contact_pg_form_right_side input:focus {
    outline: none;
    box-shadow: none;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .contact_pg_form_right_side textarea:focus {
    outline: none;
    box-shadow: none;
}

.custom-textarea {
    height: 80px;
    resize: none;
}

.popup-btn {
    color: var(--white-color);
    background-color: var(--theme-color);
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}

.tuor-details-page-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.mobile_call_whatsapp_fixed_main_div {
    position: fixed;
    bottom: 120px;
    right: 25px;
    z-index: 99;
}

.call_icon_div {
    text-align: center;
}

.call_icon_div>a {
    background-color: #dc3545;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: moveUpDown 2s ease-in-out infinite;
    display: inline-block;
    margin-bottom: 8px;
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.call_icon_div>a>img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

.whatsapp_icon_div {
    text-align: center;
}

.whatsapp_icon_div>a {
    background-color: #008000;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: zigzag 0.5s ease-in-out infinite;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    animation-timing-function: steps(1, end);
    position: relative;
    animation: zigzag 8s infinite;
    display: inline-block;
}

@keyframes zigzag {
    0% {
        left: 0px;
    }

    1% {
        left: -5px;
    }

    2% {
        left: 5px;
    }

    3% {
        left: -5px;
    }

    4% {
        left: 5px;
    }

    5% {
        left: 0px;
    }

    100% {
        left: 0px;
    }
}

.whatsapp_icon_div>a>img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}


.mobile_whatsapp {
    display: none;
}

.sidebar_contactus_information_div_main {
    padding: 0px 20px;
    margin-top: 20px;
}

.sidebar_contactus_information_div_main {
    display: none;
}

.sidebar_contactus_information_div_main>h4 {
    color: var(--color-dark);
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
}

.sidebar_media_main_div {
    margin-bottom: 18px;
}

.sidebar_media_main_div>.d-flex>.flex-shrink-0>i {
    background-color: var(--theme-color);
    width: 45px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    font-size: 20px;
}

.sidebar_contactus_content_div>a {
    display: block;
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 700;
    line-height: 27px;
}

.sidebar_contactus_content_div>p {
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 0px !important;
}

.side_bar_main_div_flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social_icon_div {
    margin-bottom: 20px !important;
}

.social_icon_div>p {
    margin-bottom: 7px !important;
    color: #333;
    font-size: 15px;
    text-transform: capitalize;
}

.social_icon_div>a {
    background-color: var(--theme-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 0px 1px;
    font-size: 14px;
    border-radius: 2px;
    color: #fff;
}



.tour-packages-second {
    position: relative;
    margin-bottom: 22px;
}

.package-title {
    font-size: 28px;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.tour-snap-wrapp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}

.sub-title-box {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

.tour-packages-content-details p {
    font-size: 16px;
    color: var(--black-color);
}

.tour-snap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.tour-snap .title {
    font-weight: 600;
    display: block;
    color: var(--black-color);
}

.tour-snap span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--title-color);
    margin-bottom: -0.3rem;
}

.tour-snap .icon i {
    font-size: 23px;
    color: var(--theme-color);
    font-weight: 600;
}

.faq-title h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--black-color);
    font-weight: 600;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion .accordion-item .accordion-button {
    border-left: 3px solid var(--theme-color);
    background-color: transparent;
    color: #67023e;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin-bottom: 0;
    padding: 10px 25px;
    text-align: left;
    border-radius: 0px;
}

.accordion-item .accordion-button:focus {
    outline: none;
    box-shadow: none;
    border-color: none;
}

.accordion .accordion-item .accordion-body {
    font-size: 15px;
    padding: 5px 27px 15px;
    text-align: justify;
    border-left: 3px solid var(--primary-color);
    border-top: 1px solid #ddd;
}

.accordion .accordion-item {
    margin-bottom: 20px;
    border: none;
    border-radius: 0px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2), 0 4px 4px 0 rgba(0, 0, 0, 0.19);
}

.accordion-collapse {
    border: none;
}

@media (max-width: 1299px) {
    .tour-snap-wrapp {
        display: grid;
        grid-template-columns: auto auto;
        gap: 20px;
    }
}

.map-sec {
    margin-top: 20px;
    margin-bottom: 20px;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.category-sidebaar {
    display: block;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: var(--white-color);
    margin: 0px 0px 25px;
}

.category-title {
    font-size: 20px;
    color: var(--white-color);
    font-weight: 600;
    line-height: 20px;
    display: block;
    background-color: var(--theme-color);
    padding: 20px 40px;
}

.category-list {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 0px;
}

.category-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0px;
    gap: 10px;
    font-size: 15px;
    color: #000;
}

.category-list li i {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--white-color);
    display: block;
    flex-shrink: 0px;
    flex: 0 0 30px;
    background: var(--theme-color);
    border-radius: 26px;
}

.need-help {
    position: relative;
    display: block;
    padding: 50px 50px 45px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    z-index: 1;
    background-color: var(--theme-color);
}

.need-help-title {
    font-size: 26px;
    color: var(--white-color);
    line-height: 32px;
    font-weight: 600;
}

.need-help-contact {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 38px;
    align-items: center;
}

.need-help-contact p {
    font-size: 16px;
    color: var(--white-color);
    margin: 0;
    line-height: 16px;
    font-weight: 600;
}

.cta-call {
    background: var(--white-color);
    padding: 0px 25px 0px 55px;
    border-radius: 50px;
    height: 50px;
    line-height: 15px;
    color: var(--black-color);
    transition: 0.3s all;
    display: inline-flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 17px;
    font-weight: 700;
}

.cta-call span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
}

.cta-call::after {
    content: "\f095";
    /* Phone icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--white-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    text-align: center;
    position: absolute;
    left: 5px;
    top: 5px;
    background: var(--black-color);
    border: 1px solid var(--black-color);
}

.tour-card-box-details {
    display: block;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: var(--white-color);
    margin: 0px 0px 0px;
    padding: 10px;
}

.privacy_section {
    position: relative;
    padding: 30px 0px 30px 0px;
}

.privacy_content_main_div>h1 {
    color: var(--black-color);
    text-transform: capitalize;
    font-weight: 700;
    font-size: 27px;
    margin-bottom: 8px !important;
}

.privacy_content_main_div>p {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: justify;
    color: #212121;
    transition: 0.2s ease-in-out;
    margin-bottom: 3px !important;
}

.link-anchor {
    color: #5768df;
    text-decoration: underline;
}

.privacy_content_main_div>ul {
    padding-left: 18px;
}

.privacy_content_main_div>ul>li {
    font-size: 15px;
    color: var(--black-color);
    transition: 0.2s ease-in-out;
    margin-bottom: 3px !important;
    list-style: disc;
}

.privacy_content_main_div>h2 {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div>h3 {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
    font-weight: 600;
}

.privacy_content_main_div>h4 {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    margin-bottom: 4px !important;
    font-weight: 600;
    margin-top: 4px !important;
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.about-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.about-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-phone .icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--theme-color);
    color: var(--white-color);
    border-radius: 50px;
    text-align: center;
    font-size: 19px;
    box-shadow: -5px 5px 0 var(--theme-color-light);
}

.about-phone .number {
    line-height: 1;
}

.about-phone .number span {
    color: var(--theme-color);
    font-weight: 500;
}

.about-phone .number h6 {
    font-size: 17px;
    margin-top: 4px;
    font-weight: 500;
}

.about-phone .number h6 a {
    color: var(--theme-color);
}

.tour-packages-sec .gallery-box .gallery-img.global-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-packages-sec .gallery-box .gallery-img.global-img {
    height: 220px;
    overflow: hidden;
    border-radius: 5px;

}

.blog-box_content {
    position: relative;
    padding-bottom: 5px;
}



.testimonial-block_two {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-block_two-inner {
    position: relative;
    padding: 55px 25px 25px;
}

.testimonial-block_two-inner::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 30px;
    right: 0px;
    bottom: 0px;
    border-radius: 10px;
    background-color: var(--white-color);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
}

.testimonial-block_two .upper-box {
    position: relative;
    padding-left: 140px;
}

.testimonial-block_two-author {
    position: absolute;
    left: 0px;
    top: 0px;
}

.testimonial-block_two-author:before {
    position: absolute;
    content: '';
    right: -6px;
    top: -45px;
    bottom: -6px;
    left: -6px;
    border-radius: 30px 0px 100px 100px;
    background-image: linear-gradient(to bottom, #1f5a2e, #1f5a2e, #1f5a2e, #1f5a2e, #1f5a2e);
}

.testimonial-block_two-author:after {
    position: absolute;
    content: '';
    right: -26px;
    top: -45px;
    border-bottom: 20px solid var(--primary-color);
    border-right: 20px solid transparent;
}

.testimonial-block_two-author img {
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 100px;
    border: 5px solid var(--white-color);
}

.testimonial-block_two-rating {
    position: relative;
    color: rgb(252, 176, 63);
}

.testimonial-block_two-designation {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    color: rgb(31, 30, 23);
    margin-top: 8px;
}

.testimonial-block_two-designation span {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    color: var(--color-three);
    font-family: "Edu NSW ACT Hand Pre", cursive;
}

.testimonial-block_two-text {
    position: relative;
    margin-top: 55px;
    font-size: 15px;
    color: var(--black-color);
    line-height: 22px;
    position: relative;

}

.flaticon-write:before {
    content: "\f10d";
}

.testimonial-block_two-icon {
    position: absolute;
    right: 130px;
    top: 40px;
    opacity: 0.10;
    line-height: 1em;
    font-size: 130px;
    color: var(--color-five);
    font-family: "Font Awesome 6 Pro";
}

.product-services-range {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-bottom: 12px;

}

.product-services-range .box-content {
    position: relative;
    z-index: 3;
    background-color: var(--white-color);
    margin-bottom: -46px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.product-services-range .box-content .shape {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 33px;
    background-size: 432px 33px;
    background-position: bottom -1px center;
    background-repeat: repeat-x;
}

.product-services-range.box-title {
    margin-bottom: 8px;
}

.box-title {
    font-size: 21px;
    line-height: 1.455;
    margin-top: 0.68em;
    font-weight: 600;
    margin-bottom: 3px;
}

.product-services-range .box-text {
    padding: 0 10px;
}

.box-text {
    margin-bottom: -0.4em;
}

.product-services-range .ot-btn {
    width: 100%;
    padding: 16px 30px;
    background-color: var(--theme-color);
    border-radius: 0;
    margin-top: 30px;
}

.product-services-range:hover .box-content {
    -webkit-transform: translateY(-46px);
    -ms-transform: translateY(-46px);
    transform: translateY(-46px);
}

.ot-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 21px 30px;
    min-width: 142px;
    border-radius: 4px
}

.ot-btn:after,
.ot-btn:before {
    content: "";
    position: absolute;
    height: 400%;
    left: 50%;
    top: 50%;
    width: 0;
    background-color: var(--primary-color);
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    z-index: -1;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease
}

.ot-btn:after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg)
}

.ot-btn:hover,
.ot-btn.active {
    color: var(--white-color)
}

.ot-btn:hover:after,
.ot-btn:hover:before,
.ot-btn.active:after,
.ot-btn.active:before {
    width: calc(100% - 20px)
}

.ot-btn.style2 {
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 19.5px 27px;
    box-shadow: none
}

.box-quote {
    position: absolute;
    top: 50px;
    right: 60px;
}



.product-content-box {
    position: relative;
}

.destination-title {
    font-size: 26px;
    line-height: 20px;
    margin-bottom: 15px;

}




.product-packages-area {
    flex: 1;
    margin-right: 0;
    padding: 5px 5px;
    background-color: #ebf1ff;
}

.enquary-button-two {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 10px;
    align-items: center;
}

.enquary-button-two a {
    padding: 3px 5px;
    border: 1px solid #ddd;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    flex: 1;
    background: #fff;
    border-color: #607d8b;
    color: #000;
}

.enquary-button-two a:nth-of-type(2) {
    background: var(--theme-color);
    color: #fff;
    border: var(--theme-color);
}

.why-choose-us-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}


.why-chhose-us-main-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.why-choose-us-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.why-chhose-us-main-card:hover .why-choose-us-card-inner {
    transform: rotateY(180deg);
}

.why-card-front,
.why-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    background-color: var(--theme-color);
}

.why-card-back {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.back-layer-back-text {
    text-align: center;
    justify-content: flex-start;
    border-radius: 14px;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 35px;
    color: var(--white-color);
}

.front-card-box-text-layer {
    text-align: center;
    justify-content: flex-start;
    border-radius: 14px;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 35px;
    color: var(--white-color);
}

.product-why-content {
    position: relative;
    padding-top: 10px;
}

.product-why-content h3 {
    font-size: 22px;
    color: #fff;
}

.choose-us-disicrption p {
    font-size: 15px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 0px;
    margin: 0px;
    font-weight: 400;

}

.mobile-banner {
    display: none !important;
}

.tour-images {
    margin-bottom: 20px;
    text-align: center;
    background-color: #fff;
    padding: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    overflow: hidden;
    transition: .5s ease-in-out;
}

.testimonial-card-box {
    background-color: #F0F0F0;
    padding: 20px 14px;
    display: block;
    box-sizing: 9px 11px 14px 0 rgba(0, 0, 0, .1);
    position: relative;
    z-index: 1;
    min-height: 330px;
    transition: all .4s ease;
}

.testimonial-card-box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.testimonial-rate i {
    color: #fec42d;
    fill: #fec42d;
}

.testimonial-quote-icon {
    position: absolute;
    color: rgba(37, 117, 252, .2);
    align-self: flex-end;
    line-height: 1;
    display: inline-block;
    bottom: 30px;
    right: 30px;
}

.testimonial-quote p {
    font-size: 15px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #404040;
}

.why-image img {
    width: 100%;
}

.why-image {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
}

.widget.widget_nav_menu.footer-widget.product-footer {
    padding-left: 30px;
}


.infuture-product-shape {
    position: relative;
    ;
    overflow: hidden;
    display: block;
    margin-bottom: 20px;
    border-top: 2px solid #fbfbfb;
    border-left: 2px solid #fbfbfb;
    border-right: 2px solid #fbfbfb;
}

.product-tilte-text {
    position: relative;
}

.in_heading {
    padding: 15px 15px;
    background: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.50px;
    color: #000;
    transition: all 500ms ease;
    opacity: 1;
}

.product-overlay {
    background: rgb(251 251 251 / 90%);
    padding: 30px 20px 25px 20px;
    text-align: center;
    transition: all 500ms ease;
    opacity: 1;
    transform: translateY(101%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border-bottom: 4px solid var(--theme-color);
    position: absolute;
    display: block;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
}

.product-overlay h6 {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 0px;
    color: #414141;
    text-align: center;
    letter-spacing: 0.50px;
    display: block;
}

.product-overlay p {
    color: #414141;
    text-align: center;
    display: block;
    font-size: 14px;
    letter-spacing: 0.30px;
    font-weight: 400;
    margin-bottom: 5px;
}

.product-btn {
    padding-top: 10px;
}

.infuture-product-shape:hover .product-overlay {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}

.ind_btn {
    position: relative;
    padding: 10px 30px;
    display: inline-flex;
    width: 175px;
    color: var(--black-color);
    font-size: 15px;
    align-items: center;
    background: #fff;
    transition: all 0.3s;
    z-index: 1;
    font-weight: 700;
    justify-content: center;
    gap: 10px;
}

.ind_btn:hover {
    background: var(--theme-color);
    color: #fff;
}

.ind_btn:before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    z-index: -1;
    background: var(--theme-color);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    height: 20px;
    width: 20px;
    transition: all 0.3s;
}

.ind_btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--theme-color);
    clip-path: polygon(0 0, 0 100%, 100% 0);
    height: 20px;
    width: 20px;
    transition: all 0.3s;
}

.navbar_number_div_flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon_div_navbar>span {
    color: #000;
    background-color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100px;
    font-size: 16px;
}

.navbar_number_div>p {
    margin-bottom: 0px !important;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.navbar_number_div>a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.phone-enquiry-button {
    align-items: center;
    gap: 17px;
}

.th-header.header-layout1.header-layout4 .sticky-wrapper .container {
    padding-right: 0px !important;
}

.phone-enquiry-button {
    padding-right: 15px;
    background: #2b8933;
    padding: 17px;
}

.th-icon.thwhite {
    background-color: #fff;
    color: #000;
}


.seed-industries {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
    background-color: #f5f7fa;
}

.we-industries-card-box {
    position: relative;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 15px;
}

.we-industries-card-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(to top right, transparent 49%, #2b8933 50%) top right / 20% 20% no-repeat, linear-gradient(to bottom left, transparent 49%, #2b8933 50%) bottom left / 20% 20% no-repeat, #eee;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.we-industries-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.we-industries-card-box img {
    width: 50% !important;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto;
}

.we-industries-card-box h4 {
    margin-top: 15px;
    flex-grow: 0;
    line-height: 1.3;
    display: flex;
    font-size: 17px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}

.we-industries-card-box h4 a {
    color: #000;
}


.why-choose-us-card-box {
    background: #ffffffd6;
    border-radius: 10px;
    min-height: 280px;
    position: relative;
    display: flex;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    padding: 20px;
}

.desc-wrapper h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
    letter-spacing: 0px;
}

.why-choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    overflow: hidden;
    margin: 0 0 0px 0;
}

.desc-wrapper p {
    font-size: 16px;
    color: #000;
}


.products-range-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #f5f7fa;
}

.th-menu-toggle {
    display: none;
}


.blogs-sec-page {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #fdedf1;
}

.gallery-sec-page {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #fdedf1;

}

.gallery-box-item-box {
    position: relative;
    overflow: hidden;
}

.gallery-box-item-box img {
    display: block;
    width: 100%;
    height: auto;
}

.overlay_zoom_cion_div {
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0; */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: opacity .18s ease;
    z-index: 5;
}

.gallery-box-item-box:hover .overlay_zoom_cion_div {
    opacity: 1;
}

.overlay_zoom_cion_div a {
    font-size: 28px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.gallery-box-item-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(90%);
}

.gallery-box-item-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: block;
    border: 1px solid #fff;
    padding: 2px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    transition: box-shadow .18s ease, transform .18s ease;
}

.mission-vision-sec-about {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #fff;
}

.mission-vission-layout1 {
    margin-bottom: 0px;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    min-height: 533px;
}

.mission-vission-layout1 .image-box {
    margin-bottom: 0px;
}

.content-box.text-center {
    position: relative;
    padding: 20px 20px;
}

.mission-vission-layout1 .content-box h2 {
    font-size: 25px !important;
    color: #333333;
    margin-bottom: 10px;
}

.mission-vission-layout1 .content-box p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.mission-vission-layout1 .image-box img {
    width: 100%;
}

.about-two__tab {
    position: relative;
    display: block;
    margin-top: 20px;
}

.about-two__tab .tabs-button-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f1f5f9;
    padding-left: 0px;
    margin-bottom: 19px;
    z-index: 1;
}

.about-two__tab .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 13px 20px 12px;
    cursor: pointer;
    color: var(--black-color);
}

.about-two__tab .tabs-button-box .tab-btn-item.active-btn:after {
    height: 100%;

}



.about-two__tab .tabs-button-box li:last-child:before {
    display: none;
}

.about-two__tab .tabs-button-box li::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: rgba(5, 41, 68, 0.25);
    content: "";
}

.about-two__tab .tabs-button-box .tab-btn-item h3 {
    color: var(--black-color);
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    text-transform: capitalize;
}

.about-two__tab .tabs-button-box .tab-btn-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0%;
    background-color: var(--theme-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.about-two__tab .tabs-button-box li:last-child {
    margin-right: 0px;
}

.about-two__tab .tabs-content {
    position: relative;
    display: block;
}

.about-two__tab .tabs-content .tab.tab-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.about-two__tab .tabs-content .tab {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.about-two__tab .tabs-button-box .tab-btn-item.active-btn h3 {
    color: var(--white-color);
}

.mission-card-img img {
    border-radius: 8px;
}

.why-choose-one__single-tab-content p {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.product-page-sec {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
    background-color: #f1f5f9;
}

.product-content-box-main {
    position: relative;
}

.product-content-box-main h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black-color);
}

.product-content-box-main p {
    color: var(--black-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.product-page-sec .infuture-product-shape {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    padding: 4px;
    border-radius: 4px;
}

.products-details-paage-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: f5f7f9;
}

.product-details-box-card {
    box-shadow: 0 6px 18px rgba(15, 15, 15, 0.05);
    background: #fafafa;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    position: relative;
}

.produst-images-box {
    width: 100%;
    position: relative;
    transition: .5s ease-in-out;
    overflow: hidden;
    text-align: center;
    margin: auto;
    margin-bottom: 15px;

}

.produst-images-box img {
    width: 100%;
    transition: .5s ease-in-out;
    display: block;
    filter: brightness(90%);
}

.products_details_content_main_div>h1 {
    color: var(--black-color);
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
}

.products_details_content_main_div>h4 {
    color: var(--black-color);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
}

.products_details_content_main_div>p {
    font-size: 16px;
    line-height: 26px;
    color: var(--black-color);
    margin-bottom: 10px !important;
}

.btn_enquiry_div {
    position: absolute;
    right: 8px;
    top: 23px;
    animation: upDownMove 5s ease-in-out infinite;
    transition: 0.5s ease-in-out;
}

.btn_enquiry_div>a {
    background-color: var(--theme-color);
    padding: 7px 11px;
    border-radius: 8px;
    color: var(--white-color);
    font-weight: 700;
    transition: 0.5s ease-in-out;
    font-size: 14px;
    text-align: center;
}

@keyframes upDownMove {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.table-wrap {
    overflow: auto
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px
}

thead th {
    background: #f1f5f9;
    text-align: left;
    padding: 12px 14px;
    font-weight: 600;
    border: 1px solid #e6e9ef;
    color: var(--black-color);
    font-weight: 600;
}

tbody td {
    padding: 12px 14px;
    border: 1px solid #e6e9ef;
    vertical-align: middle;
    color: #000;
}

tbody tr:nth-child(odd) td {
    background: #fff
}

tbody tr:nth-child(even) td {
    background: #fbfcfe
}

th.model {
    min-width: 160px
}

caption {
    caption-side: top;
    text-align: left;
    font-weight: 700;
    color: #0b69ff;
    margin-bottom: 10px
}

@media (max-width:720px) {

    thead th,
    tbody td {
        padding: 10px 8px
    }

    table {
        min-width: 640px
    }
}

.widget-right-side {
    padding: 30px 8px 0px;
    background-color: var(--white-color);
    border: 1px solid #E1E4E5;
    border-radius: 8px;
    margin-bottom: 40px;
    position: relative;
}

.widget-right-side .widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    line-height: 1em;
    position: relative;
    color: var(--black-color);
    padding-bottom: 17px;
    margin: -0.12em 0 30px 0;
}

.widget-right-side .widget_title::before {
    content: '';
    height: 3px;
    width: 100%;
    background-color: #E9EDF5;
    position: absolute;
    bottom: 0;
    left: 0;
}

.widget-right-side .widget_title::after {
    content: '';
    height: 3px;
    background-color: var(--theme-color);
    width: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.recent-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

.recent-post .media-img {
    margin-right: 15px;
    width: 160px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.recent-post .media-img img {
    width: 100%;
    border-radius: 4px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.recent-post .post-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black-color);
    text-transform: capitalize;
}

.recent-post .post-title a {
    color: inherit;
}


.card-container-mission-vission {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}


.card-mission {
    text-align: left;
    border-radius: .375rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    background: #2b8933;
    padding: 20px 20px;
    height: 380px;
}

.card-body-mission {
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-img img {
    max-width: 75px;
    transform: translate(0px, 13px);
    margin-bottom: 15px;
}

.mission-title {
    margin-top: .5rem;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 10px;
    text-align: left;
}

.card-mission .card-text {
    margin-bottom: 1rem;
    text-align: left;
    color: #fff;
    margin: 0px;
}

.card-mission:hover {
    background-image: url(../image/mission-hover.jpg);
    transition: 0.3s;
    background-color: #fff;
    background-size: cover;
    background-position: center;
}

.how-to-work-sec {
    position: relative;
    width: 100%;
    padding: 20px 0px 30px;
}

.working-process-sec-card-mian {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    border-color: inherit;
    padding: 10px;
}

.working-process-sec-card {
    font-size: 14px !important;
    padding: 10px !important;
    border-radius: 4px !important;
    border: 2px dashed #008b43 !important;
    display: flex;
    align-items: flex-start;
    min-height: 286px!important;
    text-align: left;
}

.working-icon{
    margin-right: calc(15px + 0.1px);
        display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    font-size: 2rem;
    text-align: center;
    max-width: 100%;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.working-icon img {
    height: auto;
    width: 70px;
}
.working-process-text p{
    color: var(--black-color);
    margin: 0px;
    font-size: 15px;
}
.working-process-text h4{
    font-size: 20px;
    font-weight: 700;
    color:var(--black-color);
    margin-bottom: 6px;
}
