/* 
@font-face {
    font-family: 'tbwa_grotesksemibold';
    src: url('../fonts/tbwagrotesk-semibold-webfont.woff2') format('woff2'),
        url('../fonts/tbwagrotesk-semibold-webfont.woff') format('woff'),
        url('../fonts/tbwagrotesk-semibold-webfont.woff') format('ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'tbwa_groteskitalic';
    src: url('../fonts/tbwagrotesk-italic-webfont.woff2') format('woff2'),
        url('../fonts/tbwagrotesk-italic-webfont.woff') format('woff'),
        url('../fonts/tbwagrotesk-italic-webfont.woff') format('ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'tbwa_groteskregular';
    src: url('../fonts/tbwagrotesk-regular-webfont.woff2') format('woff2'),
        url('../fonts/tbwagrotesk-regular-webfont.woff') format('woff'),
        url('../fonts/tbwagrotesk-regular-webfont.woff') format('ttf');
    font-weight: normal;
    font-style: normal;
} */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
    font-variation-settings:
        "wdth" 100;
    font-feature-settings: 'liga' off, 'clig' off;
}
.container {
    max-width: 1320px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}
.wrapper {
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
}
input,textarea,button,label,select,option {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-feature-settings: 'liga' off, 'clig' off;
}
h1 {
    font-size: 42px;
    font-weight: 600;
    color: #FDFDFD;
}
h2 {
    color: #212121;
    font-size: 36px;
    font-weight: 600;
}
h3 {
    font-size: 24px;
    color: #0E0E10;
    font-weight: 600;
}
h4 {
    font-size: 18px;
    color: #0E0E10;
    font-weight: 400;
}
p {
    font-size: 16px;
    line-height: 24px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
        color: #212121;
}
a,
p a,
li a {
    color: #16AA51;
}
a,span {
    font-weight: inherit;
}
strong,b {
    font-weight: 600;
}
li {
    font-size: 16px;
    line-height: 24px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
        color: #212121;
}
img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
::placeholder {
    color: #3D3C3E;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.red-clr {
    color: #FF5B49;
}
.blue-clr {
    color: #4B97D8;
}
.voilet-clr {
    color: #783AFB;
}
.gray-clr {
    color: #808080;
}
.gold-clr {
    color: #DB9315;
    font-weight: 500;
}
.yellow-clr {
    color: #FED317;
}
.green-clr {
    color: #16AA50;
}
.white-clr {
    color: #fff;
}

.default-btn-outer {
    display: flex;
    gap: 13px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}
.default-btn {
    background: #0E0E10;
    padding: 10px 40px 10px 20px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-align: center;
    position: relative;
    z-index: 1;
}
.default-btn::after {
    content: '';
    background: url(../images/arrowRight.svg) 0 0 no-repeat;
    background-size: 100%;
    transition: all 0.3s ease-in-out;
    width: 16px;
    height: 12px;
    position: absolute;
    top: 14px;
    right: 16px;
}
.default-btn:hover::after {
    right: 12px;
}
.default-btn.rotate::after {
    transform: rotate(-40deg);
}
.default-btn:hover {
    background-color: #609326;
    color: #fff;
}
.orange-btn {
    background-color: #FF5B49;
    font-size: 16px;
    border-radius: 6px;
}
.orange-btn:hover {
    background-color: #0A7C8D;
}
.default-btn.large {
    min-width: 220px;
}
.bg-black {
    background-color: #1C1C1C;
}
.bg-light-gray {
    background-color: #FCFCFC;
}
.bg-voilet {
    background-color: #CEBDF2;
}
.bg-yellow {
    background-color: #FFEAB1;
}
.bg-blue {
    background-color: #EDFAFF;
}
.bg-light-green {
    background-color: #C0F5D9;
}
.bg-green {
    background: #226732;
}
.bg-light-greenish {
    background: #F4F8F5;
}
.bg-light-pink {
    background-color: #FFDCC6;
}

.green-bg-text {
    padding: 10px 30px;
    position: relative;
    z-index: 0;
    color: #fff;
}
.green-bg-text::after {
    content: '';
    display: block;
    background-color: #16AA51;
    transform: skew(-15deg, 0deg);
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -1;
}
.white-bg-text {
    padding: 10px 30px;
    position: relative;
    z-index: 0;
    color: #117A41;
}
.white-bg-text::after {
    content: '';
    display: block;
    background-color: #fff;
    transform: skew(-15deg, 0deg);
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -1;
}
.submit-btn {
    padding: 16px 86px;
    background: #117A41;
    color: #F9F9F9;
    border: 0;
    outline: 0;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
}
.submit-btn:hover {
    background-color: #FED317;
    color: #000;
}
.select-box {
    position: relative;
}
.select-box select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.select-box::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 10px;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-left: 1px solid #626262;
    border-bottom: 1px solid #626262;
    transform: rotate(-45deg);
}
.text-center {
    text-align: center;
}
section {
    position: relative;
}
.default-btn img {
    vertical-align: middle;
    margin-right: 10px;
}
.img-item-box img {
    transition: all 0.3s ease-in-out;
}
.img-item-box:hover img {
    transform: scale(1.1);
}
.owl-carousel .owl-stage {
    margin-left: auto;
    margin-right: auto;
}
.padding-t-100 {
    padding-top: 100px;
}
.padding-t-90 {
    padding-top: 90px;
}
.padding-t-80 {
    padding-top: 80px;
}
.padding-t-70 {
    padding-top: 70px;
}
.padding-t-60 {
    padding-top: 60px;
}
.padding-t-50 {
    padding-top: 50px;
}
.padding-t-40 {
    padding-top: 40px;
}
.padding-b-100 {
    padding-bottom: 100px;
}
.padding-b-90 {
    padding-bottom: 90px;
}
.padding-b-80 {
    padding-bottom: 80px;
}
.padding-b-70 {
    padding-bottom: 70px;
}
.padding-b-60 {
    padding-bottom: 60px;
}
.padding-b-50 {
    padding-bottom: 50px;
}
.padding-b-40 {
    padding-bottom: 40px;
}
/*  */
.margin-b-80 {
    margin-bottom: 80px;
}
.margin-t-40 {
    margin-top: 40px;
}
.width-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.width-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
iframe {
    vertical-align: bottom;
}
.moving-animate-component {
    position: relative;
    overflow: hidden;
    /* background: url(../images/forest.png) 0 repeat-x; */
    /* background-size: contain; */
    /* animation: moveBackground 50s linear infinite; */
    /* padding-bottom: 0; */
    /* margin-bottom: 50px; */
}
@keyframes moveBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -100% 0;
    }
}
.moving-animate-component .img-box-style {
    display: flex;
    gap: 40%;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    left: -10%;
    animation: run 6s linear forwards infinite;
    /* bottom: -22px; */
}
@keyframes run {
    0% {
        left: -10%;
    }
    100% {
        left: 100%;
    }
}



/*  */
/* .bottom-patch {
    position: relative;
    display: inline-block;
    padding-bottom: 22px;
}

.bottom-patch::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -5px;
    max-width: 350px;
    width: 100%;
    height: 40px;
    border: solid 2px #eb0029;
    border-color: #eb0029 transparent transparent transparent;
    border-radius: 100% / 30px 30px 0 0;
    animation: expandWidth 1s ease-in-out forwards, hide-highlight 10s ease-in-out forwards;
}

@keyframes expandWidth {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes hide-highlight {
    0% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 0;
        filter: blur(10px);
    }
} */

    
/*  */
.flex-box {
    display: flex;
    gap: 26px;
}
.flex-box.flex-box-style-1 {
    gap: 120px;
}
.row-reverse {
    flex-direction: row-reverse;
}
.image-shade-box {
    position: relative;
    padding: 5px;
    z-index: 0;
    height: 100%;
}
.image-shade-box::after {
    content: '';
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgb(189 189 189 / 10%) 100%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 6px;
    transform: rotate(-2deg);
}
.header-component-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-component-outer .header-component {
    max-width: 830px;
    padding-right: 20px;
}
.header-component {
    margin-bottom: 64px;
}
.header-component p {
    font-size: 18px;
    margin-top: 15px;
}
.header-component .sub-head {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
    position: relative;
}
.header-component .sub-head.icon {
    padding-left: 20px;
}
.header-component .sub-head.icon::before {
    content: '';
    display: inline-block;
    background: url('../images/headingIcon.svg') 0 0 no-repeat;
    background-size: 100%;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
}

/* */
.hero-banner-section {
    position: relative;
    background: #16AA51 url('../images/bannerImage.jpg') 0 0 no-repeat;
    background-size: cover;
    min-height: 91vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-banner-section::after {
    content: '';
    display: block;
    background: rgb(0 0 0 / 20%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-banner-section .flex-box {
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.hero-banner-section h1 {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
}
.hero-banner-section .left-box {
    flex-basis: 50%;
    padding-right: 20px;
}
.banner-video {
    position: absolute;
    width: 100%;
    object-fit: cover;
    z-index: 0;
    vertical-align: bottom;
}
    
.inquiry-form-component {
    background: rgb(253 253 253 / 90%);
    border-radius: 10px;
    padding: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 520px;
}
.inquiry-form-component label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}
.inquiry-form-component .input-box {
    flex-basis: calc(50% - 15px);
}
.inquiry-form-component .input-box input {
    width: 100%;
}
.inquiry-form-component .input-box input,
.inquiry-form-component .input-box select {
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px rgb(0 0 0 / 50%) solid;
    background: transparent;
    outline: 0;
    width: 100%;
    font-size: 15px;
}
.inquiry-form-component .submit-btn {
    margin-top: 10px;
}
.inquiry-form-component .error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

/*  */
.location-path-illustration {
    position: relative;
}
/* .location-path-illustration::after {
    content: '';
    background: url(../images/locationIllustration.svg) 80% 75% no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
} */

/*  */
.list-img-box-component-divider {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}
.list-box-component {
    padding: 40px 60px;
    border-radius: 15px;
    flex-basis: calc(60% - 13px);
}
.list-box-component p {
    margin-top: 8px;
}
.list-box-component ul {
    list-style-type: none;
    margin-top: 20px;
    padding-left: 0;
    position: relative;
    z-index: 1;
}
.list-box-component ul li {
    position: relative;
    padding-left: 20px;
    margin-top: 8px;
}
.list-box-component ul li::before {
    content: '';
    background: url('../images/checkIcon.svg') 0 0 no-repeat;
    background-size: 100%;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 5px;
    left: 0;
}
.list-box-component.bg-light-pink {
    z-index: 1;
}
.img-box-component {
    background-image: url('../images/traveBgBox1.svg');
    background-repeat: no-repeat;
    border-radius: 15px;
    flex-basis: calc(40% - 13px);
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: bottom;
}
.img-box-component.bg-yellow {
    justify-content: end;
}
.img-box-component::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 54px;
    background: url('../images/verifiedIcon.svg') 0 0 no-repeat;
    background-size: 100%;
    width: 30px;
    height: 100%;
}
.img-box-component::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    background: url('../images/circleTextYellow.svg')  center center no-repeat;
    background-size: 100%;
    width: 110px;
    height: 120px;
    animation: rotateClockwise 10s linear infinite;
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.img-box-component.bg-light-pink {
    background-image: url('../images/traveBgBox2.svg');
    background-size: cover;
    z-index: 1;
}
.img-box-component.bg-light-pink::after {
    background-image: url('../images/circleTextPink.svg');
    left: auto;
    right: 15px;
}
.img-box-component.bg-light-pink::before {
    top: 61px;
    left: auto;
    right: 50px;
    background: url(../images/meterIcon.svg) 0 0 no-repeat;
    background-size: 100%;
    width: 40px;
}
.img-box-component.bg-light-pink img {
    margin-top: 80px;
}

.img-box-component.bg-light-green {
    background-image: url('../images/traveBgBox3.svg');
    background-size: 100%;
    justify-content: flex-end;
}
.img-box-component.bg-light-green::before {
    top: 57px;
    left: 50px;
    background: url(../images/treeIcon.svg) 0 0 no-repeat;
    background-size: 100%;
    width: 40px;
}
.img-box-component.bg-light-green::after {
    background-image: url('../images/circleText.svg');
}
.img-box-component.bg-light-green img {
    margin-top: 80px;
}

/*  */
.img-carousel-component {
    position: relative;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 0;
    text-align: center;
}
.img-carousel-component .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-carousel-component .img-item-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease-in-out;
    padding: 10px;
    cursor: pointer;
}
.img-carousel-component .img-item-box:hover,
.img-carousel-component .img-item-box.active {
    background: #fff;
}
.img-carousel-component .img-item-box:hover p,
.img-carousel-component .img-item-box.active p {
    color: #117A41;
    font-weight: 600;
}
.img-carousel-component .img-item-box:hover img {
    filter: brightness(1);
    transform: scale(1.1);
}
.img-carousel-component .img-item-box.active img {
    filter: brightness(1);
}
.img-carousel-component .img-item-box img {
    max-width: 82px;
    filter: brightness(0);
    transition: all 0.3s ease-in-out;
}
.img-carousel-component .img-item-box p {
    color: #0E0E10;
    transition: all 0.3s ease-in-out;
}
.img-carousel-component.owl-carousel .owl-nav {
    position: absolute;
    top: 30%;
    width: 100%;
    transform: translateY(-50%);
}
.img-carousel-component.owl-carousel .owl-nav button {
    border: 1px #626262 solid !important;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: #fff;
    margin: 0;
    filter: opacity(0.5);
    transition: all 0.3s ease-in-out;
}
.img-carousel-component.owl-carousel .owl-nav button::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 1px solid #626262 !important;
    border-bottom: 1px solid #626262 !important;
    transform: rotate(45deg);
    border-radius: 0;
    position: absolute;
    left: 12px;
    top: 10px;
}
.img-carousel-component.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
}
.img-carousel-component.owl-carousel .owl-nav button.owl-next {
    right: 0;
}
.img-carousel-component.owl-carousel .owl-nav button.owl-next::before {
    left: auto;
    right: 12px;
    transform: rotate(220deg);
}
.img-carousel-component.owl-carousel .owl-nav button:hover {
    background-color: #fff;
    filter: opacity(1);
}

/*  */
.img-carousel-component-style-2 {
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.img-carousel-component-style-2 .img-item-box {
    padding: 20px 15px 30px;
    background: #fff;
    border: 1px rgb(0 0 0 / 30%) solid;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.img-carousel-component-style-2 .img-item-box:hover {
    border: 1px solid #117A41;
    background: #F8FFFB;
}
.img-carousel-component-style-2 .default-btn-outer {
    justify-content: center;
    transition: all 0.3s ease-in-out;
    margin-top: 30px;
}
.img-carousel-component-style-2 .img-item-box img {
    transition: all 0.3s ease-in-out;
    margin: auto;
}
/* .img-carousel-component-style-2 .img-item-box:hover img {
    width: 50%;
} */
.img-carousel-component-style-2 .img-item-box .text-box p {
    margin-top: 6px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.4s ease-in-out;
}
.img-carousel-component-style-2 .img-item-box h3 {
    margin-top: 10px;
    margin-bottom: 5px;
}
.img-carousel-component-style-2 .img-item-box .image img {
    max-height: 150px;
    min-height: 150px;
    width: auto;
    object-fit: contain;
}
.img-carousel-component-style-2.owl-carousel .owl-stage-outer {
    padding-bottom: 50px;
}
.img-carousel-component-style-2.owl-carousel .owl-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.img-carousel-component-style-2.owl-carousel .owl-nav button {
    border: 1px #626262 solid !important;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    position: relative;
    background-color: #fff;
    margin: 0;
    filter: opacity(0.5);
    transition: all 0.3s ease-in-out;
}
.img-carousel-component-style-2.owl-carousel .owl-nav button::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 1px solid #626262 !important;
    border-bottom: 1px solid #626262 !important;
    transform: rotate(45deg);
    border-radius: 0;
    position: absolute;
    left: 12px;
    top: 10px;
}
.img-carousel-component-style-2.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
}
.img-carousel-component-style-2.owl-carousel .owl-nav button.owl-next {
    left: 50px;
}
.img-carousel-component-style-2.owl-carousel .owl-nav button.owl-next::before {
    left: auto;
    right: 12px;
    transform: rotate(220deg);
}
.img-carousel-component-style-2.owl-carousel .owl-nav button:hover {
    background-color: #fff;
    filter: opacity(1);
}
.img-carousel-component-style-2.owl-theme .owl-dots {
    position: relative;
    bottom: 5px;
    max-width: max-content;
    margin: auto;
}
.img-carousel-component-style-2.owl-theme .owl-dots .owl-dot span {
    border-radius: 27px;
    background: rgb(17 122 65 / 60%);
    width: 8px;
    height: 8px;
}
.img-carousel-component-style-2.owl-theme .owl-dots .owl-dot.active span {
    border-radius: 27px;
    background: #117A41;
    width: 19px;
    height: 8px;
}
.img-carousel-component-style-2.owl-theme .owl-dots .owl-dot:hover span {
    background: #156f00;
}

/*  */
.list-of-fare-component {
    /* display: none; */
    opacity: 0;
    height: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 1s ease-in-out;
}
.list-of-fare-component.visible {
    /* display: block; */
    opacity: 1;
    height: auto;
    max-height: fit-content;
}

/*  */
.img-carousel-component-style-3 .text-box {
    border-radius: 10px;
    background: #F2F4F7;
    padding: 60px 56px;
    flex: 1;
}
.img-carousel-component-style-3 .text-box p {
    color: #333;
    font-size: 22px;
    line-height: 33px;
    font-style: italic;
}
.img-carousel-component-style-3 .detail-box {
    margin-top: 50px;
}
.img-carousel-component-style-3 .name {
    color: #000;
    font-size: 16px;
    line-height: 27px;
}
.img-carousel-component-style-3 .location {
    color: #333;
    font-size: 14px;
    line-height: 21px;
    margin-top: 4px;
}
.img-carousel-component-style-3 .list-item-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.img-carousel-component-style-3 .img-box img {
    border-radius: 5px;
}

.img-carousel-component-style-3 .img-box {
    z-index: -1;
    position: relative;
}

.img-carousel-component-style-3.owl-carousel .owl-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 0;
    gap: 10px;
}
.img-carousel-component-style-3.owl-carousel .owl-nav button {
    border: 1px #fff solid !important;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    position: relative;
    background-color: #fff !important;
    margin: 0;
    /* filter: opacity(0.5); */
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .img-carousel-component-style-3.owl-carousel .owl-nav button::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 1px solid #626262 !important;
    border-bottom: 1px solid #626262 !important;
    transform: rotate(45deg);
    border-radius: 0;
    position: absolute;
    left: 12px;
    top: 10px;
} */
.img-carousel-component-style-3.owl-carousel .owl-nav button.owl-prev {
    transform: rotate(180deg);
}
.img-carousel-component-style-3.owl-carousel .owl-nav button.owl-next::before {
    left: auto;
    right: 12px;
    transform: rotate(220deg);
}
.img-carousel-component-style-3.owl-carousel .owl-nav button:hover {
    background-color: #fff;
    filter: opacity(1);
}

/*  */
.img-carousel-component-style-4 {
    position: relative;
    text-align: center;
}
.img-carousel-component-style-4 .list-item-box .img-box {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.img-carousel-component-style-4 .list-item-box .img-box::after {
    content: '';
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.img-carousel-component-style-4 .list-item-box img {
    transition: all 0.5s ease-in-out;
}
.img-carousel-component-style-4 .list-item-box .img-box:hover img {
    transform: scale(1.2);
}
.img-carousel-component-style-4 .list-item-box .text-box {
    text-align: center;
    width: 100%;
    padding: 20px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.img-carousel-component-style-4 .list-item-box .text-box h3 {
    color: #fff;
    transition: all 0.4s ease-in-out;
    font-weight: 400;
}
.img-carousel-component-style-4.owl-carousel .owl-stage-outer {
    padding-bottom: 50px;
}
.img-carousel-component-style-4.owl-theme .owl-dots {
    position: relative;
    bottom: 5px;
    max-width: max-content;
    margin: auto;
}
.img-carousel-component-style-4.owl-theme .owl-dots .owl-dot span {
    border-radius: 27px;
    background: rgb(17 122 65 / 60%);
    width: 8px;
    height: 8px;
}
.img-carousel-component-style-4.owl-theme .owl-dots .owl-dot.active span {
    border-radius: 27px;
    background: #117A41;
    width: 19px;
    height: 8px;
}
.img-carousel-component-style-4.owl-theme .owl-dots .owl-dot:hover span {
    background: #156f00;
}

/*  */
.accordion-component h3 {
    background: transparent;
    border: 0;
    outline: 0;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    color: #0E0E10;
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 18px;
    cursor: pointer;
}
.accordion-component .accordion-list {
    border-bottom: 1px rgb(0 0 0 / 20%) solid;
    margin-bottom: 18px;
    overflow: hidden;
}
.accordion-component .accordion-list:last-child {
    border: 0;
}
.accordion-component .accordion-content {
    overflow: hidden;
    transition: height 0.3s ease;
}
.accordion-component .accordion-list.show .accordion-content {
    /* height: auto; */
}
.accordion-component .accordion-content p {
    color: #212B37;
    font-size: 18px;
    margin-bottom: 14px;
}
.accordion-component .accordion-list .arrow {
    transition: all 0.3s ease-in-out;
    flex-basis: 5%;
    text-align: right;
}
.accordion-component .accordion-list.show h3,
.accordion-component .accordion-list:hover h3 {
    color: #117A41;
}
.accordion-component .accordion-list.show .arrow {
    transform: translateX(7px) translateY(-15px) rotate(45deg);
}

/*  */
.footer-component {
    background-color: #0E0E10;
}
.footer-component .footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-component .list-box {
    flex: 1;
    padding-right: 10px;
}
.footer-component .list-box:first-child {
    flex-grow: 1.1;
    padding-right: 80px;
}
.footer-component .list-box:last-child {
    flex-grow: 0.7;
}
.footer-component .list-box h4 {
    color: #FDFDFD;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 11px;
}
.footer-component .list-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
}
.footer-component .list-box li {
    color: #F4F7FA;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer-component .list-box li a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.footer-component .list-box li i {
    margin-right: 5px;
}
.footer-component .list-box li a:hover {
    color: #16AA51;
}
.copyright-component {
    background-color: #1A1A1D;
    padding: 34px 0;
    margin-top: 50px;
}
.copyright-component .copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright-component p {
    color: #FFF;
    line-height: 20px;
}
.copyright-component .social-box {
    color: #FDFDFD;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.copyright-component .social-box a img {
    transition: all 0.3s ease-in-out;
}
.copyright-component .social-box a:hover img {
    transform: scale(1.2);
}

/*  */
.second-banner-section {
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
}
.second-banner-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: #16aa50;
}
.second-banner-section .bg-image::after {
    content: '';
    display: block;
    background: rgb(0 0 0 / 40%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.second-banner-section .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*  */
.breadcrumb-component {
    color: #FDFDFD;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 12px;
}
.breadcrumb-component a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    transition: all 0.3s ease-in-out;
}
.breadcrumb-component a:hover {
    color: #16AA51;
}

/*  */
.img-column-box-component {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    max-width: 1060px;
    margin: auto;
}
.img-column-box-component .img-item-box {
    padding: 20px 15px 30px;
    background: #fff;
    border: 1px rgb(0 0 0 / 30%) solid;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    flex-basis: calc(33.33% - 19px);
}
.img-column-box-component .img-item-box:hover {
    border: 1px solid #117A41;
    background: #F8FFFB;
}
.img-column-box-component .default-btn-outer {
    justify-content: center;
    margin-top: 30px;
}
.img-column-box-component .img-item-box .text-box p {
    margin-top: 6px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.4s ease-in-out;
}
.img-column-box-component .img-item-box h3 {
    margin-top: 10px;
    margin-bottom: 5px;
}
.img-column-box-component .img-item-box .image img {
    max-height: 150px;
    min-height: 150px;
    width: auto;
    object-fit: contain;
}

/*  */
.tour-column-box-component {
    display: flex;
    flex-wrap: wrap;
    gap: 35px 28px;
    max-width: 1060px;
    margin: auto;
}
.tour-column-box-component .img-item-box {
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    flex-basis: calc(33.33% - 19px);
}
.tour-column-box-component .default-btn-outer {
    margin-top: 30px;
}
.tour-column-box-component .img-item-box .text-box p {
    margin-top: 6px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}
.tour-column-box-component .img-item-box .text-box h4 span {
    font-weight: 500;
}
.tour-column-box-component .img-item-box h3 {
    margin-top: 15px;
    margin-bottom: 5px;
}
.tour-column-box-component .img-item-box .image img {
    transition: all 0.3s ease-in-out;
    width: 100%;
}
.tour-column-box-component .img-item-box .image {
    overflow: hidden;
    border-radius: 10px;
    background: #dddddd;
    min-height: 250px;
}
.tour-column-box-component .img-item-box:hover .image img {
    transform: scale(1.2);
}

/*  */

.full-width-img-component .big-image {
    background: #dddddd;
    min-height: 350px;
    border-radius: 10px;
}
.full-width-img-component .big-image img {
    width: 100%;
}
.full-width-img-component .header-component {
    margin-top: 30px;
}
.content-box-component h4 {
    color: #0E0E10;
    font-size: 22px;
    font-weight: 400;
    line-height: 40px;
    margin-top: 20px;
}
.content-box-component p {
    margin-top: 15px;
}


/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    color: #DB9315;
    background: transparent;
    outline: 0;
    border: none;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s, transform 0.3s;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-right: 20px;
    z-index: 9;
}
.scroll-to-top:hover {
    transform: scale(1.1);
    background: transparent;
    color: #DB9315;
}
.scroll-to-top::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 1px solid #DB9315;
    border-bottom: 1px solid #DB9315;
    transform: rotate(135deg);
    position: absolute;
    right: 0;
    top: 10px;
}

/*  */
.two-col-component {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 100px;
}
.two-col-component .content-component {
    flex-basis: calc(50% - 50px);
}
.two-col-component .img-patch-component {
    padding: 34px 32px 0 14px;
    flex-basis: calc(50% - 50px);
    max-width: 480px;
}
.content-component p {
    margin-top: 15px;
}
.img-patch-component {
    position: relative;
}
.img-patch-component::after {
    content: '';
    background: url(../images/bgDotsPattern.svg) 0 0 no-repeat;
    background-size: 100%;
    width: 250px;
    height: 250px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.img-patch-component img {
    width: 100%;
}
.img-patch-component::before {
    content: '';
    background: url(../images/greenYellowPatch.svg) 0 0 no-repeat;
    background-size: 100%;
    width: 34px;
    height: 120px;
    display: block;
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 1;
}
.row-reverse .img-patch-component::after {
    left: 0;
    right: auto;
}
.row-reverse .img-patch-component {
    padding: 34px 0 0 31px;
    max-width: 480px;
}
.row-reverse .img-patch-component::before {
    left: 16px;
    background: url(../images/bgDotsPattern2.svg) 0 0 no-repeat;
    background-size: 100%;
}

/*  */
.detail-info-component-outer {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.detail-info-component {
    display: flex;
    gap: 15px;
    background: #F4F8F5;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    flex-basis: 40%;
    align-items: flex-start;
}
.detail-info-component img {
    background: #117A41;
    padding: 8px;
    border-radius: 4px;
}
.detail-info-component .label {
    color: #3D3C3E;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.detail-info-component .detail {
    color: #0E0E10;
    font-size: 20px;
    font-weight: 400;
    margin-top: 4px;
}
.detail-info-component .detail a {
    text-decoration: none;
    color: inherit;
}

/*  */
.col-box-component {
    flex-basis: 40%;
    flex-grow: 1;
}
.col-box-component:last-child {
    padding-left: 30px;
}
.contact-form-component {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.05);
    padding: 34px 30px;
}
.contact-form-component p {
    margin-top: 10px;
}
.contact-form-component label {
    width: 100%;
    display: block;
    color: #0E0E10;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 7px;
}
.contact-form-box {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 50px;
    margin-top: 30px;
}
.contact-form-box .input-box {
    flex-basis: 40%;
    flex-grow: 1;
}
.contact-form-box textarea {
    flex-basis: 100%;
}
.contact-form-box input,
.contact-form-box textarea {
    border-radius: 4px;
    border: 1px solid #9B9B9B;
    padding: 10px;
    width: 100%;
    outline: 0;
    resize: none;
}
.contact-form-box textarea {
    height: 110px;
}
.contact-form-box .submit-btn {
    max-width: 126px;
}
.contact-form-box .full-width {
    flex-basis: 100%;
}

/* media querry */
@media (max-width:1200px) {
    .padding-t-100,.padding-t-90,.padding-t-80,.padding-t-70 {
        padding-top: 60px;
    }
    .padding-b-100,.padding-b-90,.padding-b-80,.padding-b-70 {
        padding-bottom: 60px;
    }
    .margin-b-80 {
        margin-bottom: 60px;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 22px;
    }
    .header-component {
        margin-bottom: 40px;
    }
    .img-carousel-component {
        padding-left: 10px;
    }
    .img-carousel-component.owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }
    .submit-btn {
        padding: 14px 60px;
    }
    .list-box-component {
        padding: 30px 40px;
    }
    .img-carousel-component-style-3 .text-box {
        padding: 40px 30px;
    }
    .img-carousel-component-style-3 .text-box p {
        font-size: 18px;
    }
    .header-component-outer .header-component {
        max-width: 80%;
    }
    .tour-column-box-component {
        gap: 30px 15px;
    }
    .tour-column-box-component .img-item-box {
        flex-basis: calc(33.33% - 10px);
    }
    .scroll-to-top {
        color: transparent;
        width: 30px;
        height: 30px;
        background: #16aa50;
        border-radius: 50px;
        bottom: 70px;
    }
    .scroll-to-top::after {
        border-color: #ffffff;
        right: 10px;
        top: 13px;
    }
    .two-col-component {
        gap: 20px;
    }
    .two-col-component .content-component,
    .two-col-component .img-patch-component {
        flex-basis: calc(50% - 10px);
    }
    .img-patch-component::before {
        width: 20px;
        height: 70px;
        left: 4px;
    }
    .detail-info-component .detail {
        font-size: 16px;
    }
    .contact-form-box {
        gap: 18px 10px;
    }
    .detail-info-component-outer {
        flex-direction: column;
    }

}

@media (max-width:991px) {
    .container {
        padding: 0 20px;
    }
    .default-btn {
        font-size: 15px;
    }
    .hero-banner-section h1 {
        font-size: 32px;
    }
    .inquiry-form-component {
        padding: 30px 20px;
        gap: 10px;
        max-width: 480px;
    }
    .inquiry-form-component .input-box {
        flex-basis: calc(50% - 5px);
    }
    .inquiry-form-component .submit-btn {
        margin-top: 20px;
    }
    .list-box-component {
        padding: 30px 20px;
    }
    .img-box-component::before {
        top: 35px;
        left: 40px;
    }
    .img-box-component::after {
        width: 80px;
        height: 80px;
    }
    .img-box-component.bg-light-pink::before {
        top: 41px;
        right: 34px;
    }
    .img-box-component.bg-light-green::before {
        top: 38px;
        left: 35px;
    }
    .footer-component .list-box li {
        font-size: 14px;
    }
    .img-column-box-component {
        gap: 15px;
    }
    .tour-column-box-component .img-item-box {
        flex-basis: calc(50% - 10px);
    }
    .full-width-img-component .big-image {
        min-height: 250px;
    }
    .two-col-component .img-patch-component {
        padding: 34px 15px 0 14px;
    }
    .row-reverse .img-patch-component {
        padding-left: 26px;
    }
    .img-patch-component::before {
        bottom: 50px;
    }
    .img-patch-component::after {
        width: 150px;
        height: 150px;
        top: 20px;
    }
    .row-reverse .img-patch-component::after {
        left: 14px;
    }
    .contact-form-box {
        flex-direction: column;
    }

}

@media (max-width:767px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 20px;
    }
    p,li {
        font-size: 14px;
    }    
    .flex-box {
        flex-direction: column;
    }
    .image-shade-box img {
        width: 100%;
    }
    .padding-t-100,.padding-t-90,.padding-t-80,.padding-t-70,.padding-t-60,.padding-t-50 {
        padding-top: 40px;
    }
    .padding-b-100,.padding-b-90,.padding-b-80,.padding-b-70,.padding-b-60,.padding-b-50 {
        padding-bottom: 40px;
    }
    .margin-b-80 {
        margin-bottom: 40px;
    }
    .hero-banner-section {
        min-height: auto;
    }
    .hero-banner-section h1 {
        gap: 14px;
    }
    .hero-banner-section .left-box {
        padding-right: 0;
    }
    .hero-banner-section .flex-box {
        align-items: flex-start;
        display: block;
    }
    .inquiry-form-component {
        flex-direction: column;
        margin-top: 30px;
        gap: 16px;
    }
    .inquiry-form-component .input-box input,
    .inquiry-form-component .input-box select {
        font-size: 14px;
        padding: 8px 10px;
    }
    .inquiry-form-component label {
        font-size: 14px;
        margin-bottom: 5px;
    }    
    .moving-animate-component {
        /* margin-bottom: 30px; */
    }
    .list-img-box-component-divider {
        flex-direction: column;
    }
    .list-box-component.bg-yellow {
        order: 2;
    }
    .img-box-component.bg-yellow {
        order: 1;
    }
    .img-box-component.bg-light-pink {
        order: 3;
    }
    .list-box-component.bg-light-pink {
        order: 4;
    }
    .list-box-component.bg-light-green {
        order: 6;
    }
    .img-box-component.bg-light-green {
        order: 5;
    }
    .img-carousel-component.owl-carousel .owl-nav button,
    .img-carousel-component-style-2.owl-carousel .owl-nav button {
        width: 25px;
        height: 25px;
    }
    .img-carousel-component.owl-carousel .owl-nav button::before,
    .img-carousel-component-style-2.owl-carousel .owl-nav button::before {
        width: 6px;
        height: 6px;
        left: 10px;
        top: 9px;
    }
    .img-carousel-component.owl-carousel .owl-nav button.owl-next::before,
    .img-carousel-component-style-2.owl-carousel .owl-nav button.owl-next::before {
        top: 9px;
        right: 9px;
    }
    .img-carousel-component-style-2.owl-carousel .owl-nav {
        bottom: 30px;
    }
    .img-carousel-component-style-2.owl-carousel .owl-nav button.owl-prev {
        left: 20px;
        position: absolute;
    }
    .img-carousel-component-style-2.owl-carousel .owl-nav button.owl-next {
        left: auto;
        right: 20px;
        position: absolute;
    }
    .img-carousel-component-style-3 .list-item-box {
        flex-direction: column;
    }
    .img-carousel-component-style-3 .detail-box {
        margin-top: 30px;
    }
    .img-carousel-component-style-3 .text-box {
        padding: 30px 20px;
    }
    .inquiry-form-component .submit-btn {
        margin-top: 30px;
    }
    .header-component-outer {
        align-items: center;
        flex-direction: column;
    }
    .header-component-outer .header-component {
        max-width: 100%;
    }
    .header-component-outer {
        margin-bottom: 30px;
    }
    .header-component p {
        font-size: 16px;
    }
    .footer-component .footer-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .footer-component .list-box:first-child {
        padding-right: 0;
    }
    .copyright-component .copyright-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .accordion-component h3 {
        font-size: 16px;
    }
    .accordion-component .accordion-list.show p {
        font-size: 15px;
    }
    .accordion-component .accordion-list.show .arrow {
        transform: translateX(-3px) translateY(-4px) rotate(45deg);
    }
    .img-column-box-component {
        flex-direction: column;
    }
    .second-banner-section {
        min-height: 250px;
    }
    .tour-column-box-component {
        flex-direction: column;
    }
    .full-width-img-component .big-image {
        min-height: 100px;
    }
    .content-box-component p {
        font-size: 15px;
    }
    .content-box-component h4 {
        font-size: 18px;
    }
    .scroll-to-top {
        width: 24px;
        height: 24px;
        padding: 0;
    }
    .scroll-to-top::after {
        right: 8px;
        top: 11px;
        width: 6px;
        height: 6px;
    }
    .two-col-component {
        flex-direction: column;
    }
    .img-patch-component::before {
        bottom: 50px;
    }
    .col-box-component:last-child {
        padding-left: 0;
    }
    .detail-info-component .detail {
        font-size: 15px;
    }
    .detail-info-component .label {
        font-size: 14px;
    }
    .detail-info-component img {
        padding: 6px;
        max-width: 28px;
        max-height: 28px;
    }
    .detail-info-component {
        padding: 12px;
    }
    .contact-form-box {
        gap: 15px;
    }
    .contact-form-component {
        padding: 20px 18px;
    }
    .contact-form-component label {
        font-size: 14px;
    }

}


