/* @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); */



@font-face {
    font-family: 'Outfit';
    src: url('./fonts/Outfit-Thin.woff2') format('woff2'),
        url('./fonts/Outfit-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('./fonts/Outfit-SemiBold.woff2') format('woff2'),
        url('./fonts/Outfit-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Outfit';
    src: url('./fonts/Outfit-Black.woff2') format('woff2'),
        url('./fonts/Outfit-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('./fonts/Outfit-Bold.woff2') format('woff2'),
        url('./fonts/Outfit-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('./fonts/Outfit-Medium.woff2') format('woff2'),
        url('./fonts/Outfit-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('./fonts/Outfit-Light.woff2') format('woff2'),
        url('./fonts/Outfit-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('./fonts/Outfit-ExtraLight.woff2') format('woff2'),
        url('./fonts/Outfit-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('./fonts/Outfit-ExtraBold.woff2') format('woff2'),
        url('./fonts/Outfit-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('./fonts/Outfit-Regular.woff2') format('woff2'),
        url('./fonts/Outfit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit';
    background: rgba(240, 238, 234, 1);
    color: var(--black);
    overflow-x: hidden;
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
}

:root {
    --white: rgba(255, 255, 255, 1);
    --white-opacity: rgba(255, 255, 255, 0.1);
    --white-opacity2: rgba(255, 255, 255, 0.7);
    --green: rgba(24, 120, 48, 1);
    --orange: #db8015;
    --black: rgba(24, 24, 24, 1);
    --black-opacity: rgba(24, 24, 24, 0.8);
    --black-opacity2: rgba(0, 0, 0, 0.6);
    --gray: rgba(240, 238, 234, 1);
    --dark-gray: rgba(51, 51, 51, 1);
    --light-gray: rgba(168, 168, 168, 1);
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    -webkit-user-select: none;
    user-select: none;
    box-sizing: border-box;
}

.container {
    max-width: 1700px;
    width: 100%;
    margin: 0px auto;
    padding: 0px 50px;
}

a {
    cursor: pointer;
    text-decoration: none;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit';
    font-weight: 400;
}

h1,
.title-h1 {
    font-size: 80px;
    line-height: 138%;
}

h2,
.title-h2 {
    font-size: 60px;
    line-height: 127%;
}

h3,
.title-h3 {
    font-size: 24px;
    line-height: 125%;
}

h4,
.title-h4 {
    font-size: 18px;
    line-height: 134%;
}

.title-h1-big {
    font-size: 72px;
    line-height: 126%;
}

p {
    font-family: 'Outfit';
    font-size: 20px;
    line-height: 150%;
    font-weight: 300;
}

.title-h1 span,
.title-h2 span {
    color: var(--green);
}

.bg-black {
    background: var(--black);
    color: var(--white);
}

.bg-gray {
    background: var(--gray);
    color: var(--black);
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 20px;
    line-height: 126%;
    text-align: center;
    padding: 11px 23px;
    border: 1px solid var(--orange);
    background-color: var(--orange);
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.btn:hover {
    background: transparent;
    color: var(--orange);
}

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

.pad-both {
    padding: 150px 0px;
}
.pad-btm{
    padding-bottom: 150px;
}

.cmn-space-top {
    padding-top: 208px;
}

.gap-sixty {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--gray);
    border-bottom: 1px solid var(--black-opacity2);
    padding: 24px 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

.menu-scrolled header {
    background-color: var(--gray);
    padding: 15px 0;
}

.header_main {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.header_logo {
    display: flex;
    width: max-content;
}

.header a.white_logo {
    display: none;
}

.header_right {
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.header_menu {
    display: flex;
    flex: 1;
    margin: 0px auto;
    justify-content: center;
}

.header_menu ul {
    gap: 60px;
    display: flex;
    align-items: center;
}

.header_menu ul li a {
    font-weight: 400;
    font-size: 20px;
    line-height: 126%;
    color: var(--black-opacity);
    transition: all 0.4s ease-in-out;
}

.header_menu ul li a:hover {
    -webkit-text-stroke: 0.5px var(--black);
    color: var(--black);
}

.header_menu ul li a:hover,
.header_menu li.current_page_item a {
    color: var(--black);
}

.header_btn_otr {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobileIcon {
    display: none;
}


/* Hero Banner */

.hero-banner-title {
    flex: 1;
}

.hero-banner-title h1 {
    max-width: 1104px;
    margin: 0px auto;
}

.hero-banner-img.img-cover {
    width: 100%;
}

/* About us  */

.about-us-main {
    display: flex;
    gap: 90px;
    align-items: start;
}

.about-us-main>.about-us-img {
    width: 47%;
}

.about-us-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
    justify-content: space-between;
    margin-top: 80px;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.company-desc p {
    color: var(--black-opacity);
}

.about-us-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-us-img-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: end;
    width: 70.977%;
}

/* Popular Destinations */

.destination-btm {
    aspect-ratio: 16/8.25;
	width:100%;
}

.destination-img {
    aspect-ratio: 16 / 8.25;
    width: 100%;
    height: 100%;
}

.destination-img::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: var(--black-opacity2);
    width: 100%;
    height: 100%;
}

.destination-swiper .swiper-slide {
    position: relative;
    width: 100%;
}

.destination-content {
    width: 87.5%;
    position: absolute;
    left: 6.3%;
    bottom: 9.8%;
    display: flex;
    flex-direction: column;
    gap: 163px;
}

.deg {
    display: flex;
    gap: 26px;
    align-items: center;
}

.temp {
    display: flex;
    gap: 8px;
    align-items: center;
}

.temp span {
    font-size: 20px;
    line-height: 126%;
    font-weight: 400;
    color: var(--white);
}

.place-title .title-h1-big {
    color: var(--white);
}

.place-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 582px;
}

.destination-progress-bar {
 display: grid;
  gap: 50px;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.destination-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slider-progress {
    display: flex;
    gap: 5px;
    align-items: center;
}

.slider-progress .step::before {
    content: attr(data-step);
}

.progress-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.slider-progress .step::before,
.slider-progress h4 {
    font-size: 16px;
    line-height: 126%;
    color: var(--white);
}

.progress-bar-container {
    width: 100%;
    height: 2px;
    background: var(--white-opacity2);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--white);
    transition: all 0.4s ease-in-out;
}


/* testimonial */


.testimonialSwiper {
    width: 100%;
    position: relative;
}

.testimonial-btm {
    display: flex;
    gap: 127px;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 86px;
    justify-content: space-between;
}

.testimonial-img {
    width: 38.125%;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.client-desc h4 {
    color: var(--dark-gray);
    text-indent: 200px;
}

.testimonial-progress {
    display: flex;
    justify-content: space-between;
}

.testimonial-progress-bar {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.author {
    display: flex;
    justify-content: end;
    gap: 50px;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--black-opacity2);
    position: relative;
    z-index: 0;
}

.swiper-controls {
    position: absolute;
    bottom: 4%;
    left: 45%;
    width: 8%;
    z-index: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: end;
	max-width: 70%;
    text-align: right;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: unset !important;
}

.author-title h4 {
    color: var(--light-gray);
    line-height: 167%;
}

.qoutes svg {
    width: 64px;
    height: 64px;
}

.testimonial-progress-bar .progress-bar-container {
    height: 1px;
    background: var(--black-opacity);
}

.testimonial-progress-bar .progress-bar {
    background: var(--black);
}

.stepp {
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
}

.client-desc p {
    font-size: 36px;
    line-height: 142%;
    color: var(--dark-gray);
    text-indent: 200px;
}





/* Our Service */
.service-main {
    display: flex;
    gap: 60px;
    max-width: 1920px;
    margin: 0px auto;
}

.service-img {
    width: 50%;
}

.service-content {
    padding: 50px 0px;
    width: 38.542%;
    justify-content: center;
}

.service-title h2 span {
    color: var(--orange);
}

.service-list {
    display: flex;
    gap: 40px;
    padding: 29.5px 20px;
    border-bottom: 1px solid var(--white-opacity);
}

.step-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-desc p {
    color: var(--white-opacity2);
    line-height: 126%;
}

.step {
    display: flex;
    align-items: start;
    z-index: 2;
    font-weight: 400;
    font-size: 24px;
    line-height: 125%;
}

.service-list-card,
.testimonial-section {
    counter-reset: step-counter;
}

/* .testimonial-btm .step::before {
    color: var(--black);
}

.step::before {
    counter-increment: step-counter;
    content: counter(step-counter, decimal-leading-zero);
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: var(--white);
    position: relative;
} */

.service-list:first-child {
    padding-top: 0px;
}

.service-list:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

/* contact-us-section */
.contact-us-main {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.contact-form {
    flex: 1;
}

.contact-info {
    width: 48.438%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.conatct-card:nth-child(3) {
    grid-column: 1/3;
}

.conatct-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
}
.contact-img.img-cover {
    width: 100%;
    height: 100%;
}
.contact-desc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.conatct-icon {
    width: 50px;
    height: 50px;
    padding: 12px;
    border-radius: 16px;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-desc,.qoutes {
    display: flex;
}
.card-desc a {
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
    color: var(--black);
    transition: all 0.4s ease-in-out;
    text-decoration: underline;
}

section.gallery-section {
    padding-bottom: 150px;
}

.gallery-section-main {
    align-items: center;
}

.gallery-img-cotainer {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 30px;
}

.gallery-img:nth-child(1) {
    grid-column: 1;
    grid-row: 1/3;
}

.gallery-img:nth-child(2) {
    grid-column: 2/4;
    grid-row: 1;
}

.gallery-img:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
}

.gallery-img:nth-child(4) {
    grid-column: 2/3;
    grid-row: 2;
}

.gallery-img:nth-child(5) {
    grid-column: 5/3;
    grid-row: 2;
}

/* footer section  */

/* footer.footer-section {
    padding-top: 80px;
} */

/* .footer-main {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}

.footer-patch {
    position: absolute;
    bottom: -80px;
    right: 0;
    width: 54.375%;
}

.footer-icon-content {
    width: 19.063%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-card-content {
    display: flex;
    gap: 8px;
}

.social-card a {
    padding: 8px 16px;
    background-color: var(--white-opacity);
    color: var(--white);
    font-size: 16px;
    line-height: 20px;
    display: flex;
    transition: all 0.4s ease-in-out;
}
.social-card:hover a {
    -webkit-text-stroke: 0.4px var(--orange);
    color: var(--orange);
}

.social-icon-content {
    display: flex;
    gap: 16px;
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: var(--white-opacity);
}

.social-icon a img {
    transition: all 0.4s ease-in-out;

}

.social-icon a:hover img {
    transform: scale(1.1);
}

.footer-right {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    width: 64%;
}

.footer-right>ul {
    display: flex;
    gap: 100px;
    flex: 1;
    justify-content: space-between;
}

.footer-right>ul>li>ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-right>ul>li>a {
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
    pointer-events: none;
}

.footer-right>ul>li {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-right>ul>li>ul>li>a {
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    color: var(--white-opacity2);
    transition: all 0.4s ease-in-out;
}
.footer-right>ul>li>ul>li>a:hover,
.card-desc a:hover {
    -webkit-text-stroke: 0.3px var(--orange);
    color: var(--orange);
}
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 27.344%;
}
.footer-info h5 {
    font-size: 20px;
    line-height: 24px;
}
.footer-info a {
    color: var(--white-opacity2);
    font-size: 18px;
    line-height: 24px;
}
.copyright-section {
    padding: 24px 0px;
    text-align: center;
    border-top: 1px solid var(--white-opacity);
}
.copyright-section p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
} */


.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    padding: 80px 0px;
    overflow: hidden;
}

.footer-icon-content {
    width: 19.063%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    display: flex;
    width: max-content;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-card-content {
    display: flex;
    gap: 8px;
}

.grey_btn {
    padding: 8px 16px;
    background-color: var(--white-opacity);
    color: var(--white);
    font-size: 16px;
    line-height: 126%;
    font-weight: 400;
    display: flex;
    transition: all 0.4s ease-in-out;
}

.social-icon-content {
    display: flex;
    gap: 16px;
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: var(--white-opacity);
}

.social-icon a img {
    transition: all 0.4s ease-in-out;
}

.social-icon a:hover img {
    transform: scale(1.1);
}


.footer_menu_otr {
    display: flex;
    gap: 100px;
    flex: 1;
    justify-content: end;
    flex-wrap: wrap;
}

.footer_menu ul li {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer_menu ul.menu>li>a {
    font-size: 20px;
    line-height: 120%;
    font-weight: 300;
    color: var(--white);
    pointer-events: none;
}

.footer_menu ul.menu>li>a:hover {
    color: inherit;
}

.footer-right a {
    font-size: 18px;
    line-height: 134%;
    font-weight: 300;
    color: var(--white-opacity2);
    transition: all 0.4s ease-in-out;
}

.footer-top a:hover {
    --webkit-text-stroke: 0.4px var(--orange);
    color: var(--orange);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 22.49%;
}

.contact-desc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info h3 {
    font-size: 20px;
    line-height: 120%;
}
.footer-info .contact-desc:nth-child(2) .card-desc a {
    text-decoration: none;
}
.footer-patch {
    position: absolute;
    bottom: -36px;
    right: 0;
}

.footer-patch .title-h1-big {
    background: linear-gradient(180deg, #FFFFFF 36.9%, rgba(30, 30, 30, 0) 79.37%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    font-weight: 600;
}

.copyright-section {
    padding: 24px 0px;
    text-align: center;
    border-top: 1px solid var(--white-opacity);
}

.copyright-section p {
    font-size: 16px;
    line-height: 175%;
}

.connect .btn {
    font-size: 20px;
    line-height: 126%;
    font-weight: 500;
}


.list-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-desc p {
    color: var(--white-opacity2);
    line-height: 126%;
}

.list {
    display: flex;
    justify-content: center;
    align-items: start;
    position: relative;
    z-index: 2;
}

.card-desc a:hover {
    -webkit-text-stroke: 0.3px var(--orange);
    color: var(--orange);
    text-decoration: unset;
}



/* :root { --header-offset: 100px; } */

.scroll-anchor {
  display: block;
  height: 0;
  scroll-margin-top: var(--header-offset);
}



/* Contact Form */


/* .title-h3-big {
    font-size: 30px;
    line-height: 42px;
}
 
form {
    background-color: var(--white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
 
.contact_form_otr {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
 
.contact_form_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
 
.contact_field_otr {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
 
.contact_field_double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
 
.contact_field label label {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--black);
}
 
label span {
    color: rgba(250, 40, 93, 1);
}
 
input,
textarea {
    width: 100%;
    padding: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid rgba(12, 12, 12, 0.25);
    color: var(--black-opacity2);
    background: transparent;
    outline: none;
}
 
.wpcf7-form-control-wrap {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
 
select {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--black-opacity2);
    border: 1px solid rgba(12, 12, 12, 0.25);
}
 
textarea {
    resize: none;
    height: 136px !important;
}
 
.wpcf7-list-item label span {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    color: var(--black-opacity2);
}
 
.wpcf7-list-item label {
    display: flex;
    gap: 8px;
    width: 100%;
}
 
input[type="checkbox"] {
    width: 24px;
    padding: unset;
    height: 24px;
}
 
.contact_field_btn .btn {
    width: 100%;
} */

.contact-form form {
    background-color: var(--white);
    padding: 30px;
}
 
.contact_form_otr .title-h3-big {
    font-size: 30px;
    line-height: 120%;
}
 

 
span.wpcf7-spinner {
    display: none;
}
 
.contact_form_otr {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
 
.contact_form_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact_field label {
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: var(--black);
    width: 100%;
}
.contact_field p label .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    line-height: 126%;
    font-weight: 400;
    padding-top: 8px;
}
 
.contact_field input, .contact_field textarea, .contact_field select {
    width: 100%;
    padding: 14.5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 126%;
    border: 1px solid rgba(12, 12, 12, 0.25);
    color: #0C0C0C;
    background: transparent;
    outline: none;
    position: relative;
}
.contact_field input:hover, .contact_field select:hover, .contact_field textarea:hover , .contact_field input:active , .contact_field input:focus , .contact_field input:focus-visible , .contact_field select:active , .contact_field select:focus , .contact_field select:focus-visible , .contact_field textarea:active , .contact_field textarea:focus , .contact_field textarea:focus-visible {
    border: 1px solid var(--orange);
}
.dropdown-select .contact_field select {
    appearance: none;
    cursor: pointer;
}
.contact_field textarea {
    resize: none;
    height: 136px !important;
}
 
.contact_field_btn input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 20px;
    line-height: 126%;
    text-align: center;
    padding: 11px 23px;
    border: 1px solid var(--orange);
    background-color: var(--orange);
    color: var(--white);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}
 
.contact_field_btn input:hover {
    background: transparent;
    color: var(--orange);
}
 
.contact_field_checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: var(--orange);
    cursor: pointer;
}
 
.dropdown-select .contact_field .wpcf7-form-control-wrap {
    position: relative;
}
 
.dropdown-select .contact_field .wpcf7-form-control-wrap:after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 15px;
    height: 15px;
    background: url('data:image/svg+xml,<svg width="16" height="9" viewBox="0 0 16 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.69542 6.52558L1.41813 0.248289C1.25257 0.0827332 1.05764 0.00203896 0.833338 0.00620556C0.608893 0.0105114 0.413895 0.0954409 0.248339 0.260997C0.0827837 0.426692 4.76837e-06 0.621692 4.76837e-06 0.845997C4.76837e-06 1.0703 0.0827837 1.2653 0.248339 1.431L6.62813 7.8235C6.77882 7.97419 6.94764 8.08586 7.13459 8.1585C7.32153 8.23114 7.50848 8.26746 7.69542 8.26746C7.88237 8.26746 8.06931 8.23114 8.25626 8.1585C8.4432 8.08586 8.61202 7.97419 8.76271 7.8235L15.1554 1.431C15.321 1.2653 15.4016 1.06815 15.3973 0.839539C15.393 0.610928 15.3081 0.413845 15.1425 0.248289C14.977 0.0827332 14.782 -4.3869e-05 14.5575 -4.3869e-05C14.3332 -4.3869e-05 14.1383 0.0827332 13.9727 0.248289L7.69542 6.52558Z" fill="%231F1F1F"/></svg>');
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
 
.contact_field label > span {
    color: rgba(250, 40, 93, 1);
}
 
.contact_field label .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
    position: absolute;
    top: 100%;
}
 
.wpcf7-form-control-wrap {
    font-size: 16px;
    line-height: 126%;
    font-weight: 400;
    position: relative;
    display: flex;
    padding-top: 10px;
}
 
::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 126%;
    color: var(--black-opacity2);
    font-family:'outfit'
}
 .contact_field_double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.contact_field_otr {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.iti__country {
    color: var(--black) !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #61d961;
    border: 1px solid transparent !important;
    color: white;
    font-size: 1em;
    margin: 0;
    padding: 0.2em 0.7em;
    line-height: normal;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    background: #ff0000;
    border: 1px solid #ff0000 !important;
    color: white;
    margin: 1em 0 0 0;
    padding: 0.2em 0.7em;
    font-size: 1em;
    line-height: normal;
}
.wpcf7 form .wpcf7-response-output {
    background: #ff0000;
    border: 1px solid #ff0000 !important;
    color: white;
    font-size: 1.2rem;
    padding: 0.5em 0.7em;
    line-height: normal;
    margin: 1em 0 0 0 !important;
}
.contact_field_checkbox span.wpcf7-list-item.first.last {
    display: flex;
    margin: 0;
}

.contact_field_checkbox span.wpcf7-list-item.first.last label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_field_checkbox span.wpcf7-form-control-wrap {
    padding: 0;
}
.contact_field p {
    display: flex;
    width: 100%;
}
.footer-right {
    display: flex;
    gap: 100px;
    flex: 1;
    justify-content: end;
}

/* Common Page Styles */


.privacy_content_otr {
    padding-bottom: 100px;
}
.cmn_banner_title {
    text-align: center;
}
.privacy_content_main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.cmn_banner_content h3, .cmn_banner_content h4, .cmn_banner_content h5, .cmn_banner_content h6, .cmn_banner_content h2 {
    padding: 16px 0;
}
.cmn_banner_content  p:not(:last-child)  {
    padding-bottom: 8px;
}
.cmn_banner_content a {
    color: var(--orange);
    text-decoration: underline;
    transition: all 0.2s ease-in-out;
}
.cmn_banner_content a:hover {
    text-decoration: unset;
}
.cmn_banner_content ul , .cmn_banner_content ol {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 24px;
    margin-bottom: 16px;
    margin-top: 8px;
}
.cmn_banner_content ul li, .cmn_banner_content ol li {
    list-style-type: inherit;
}
.cmn_banner_content ul + h3, .cmn_banner_content ul + h4, .cmn_banner_content ul + h5, .cmn_banner_content ul + h6, .cmn_banner_content ul + h2, .cmn_banner_content ol + h3, .cmn_banner_content ol +h4, .cmn_banner_content ol + h5, .cmn_banner_content ol + h6 {
    padding-top: 8px;
}



/* Why Choose Us Home */


.why_choose_home  .service-main {
    flex-direction: row-reverse;
}
.why_choose_home h2 span {
    display: flex;
}
.why_choose_home p {
    position: relative;
    padding-left: 34px;
}
.why_choose_home p:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(https://shreeharitourism.co.in/wp-content/uploads/2026/04/Vector.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}





/* Tabbing */

.tab-content {
    display: none;
    height: 100%;
}
.tab-content.active {
    display: flex;
}
.destination-title {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.tab_btn_container {
    display: flex;
    align-items: center;
    padding: 8px;
    background: var(--orange);
    position: relative;
    z-index: 0;
}
.tab-link {
    display: flex;
    justify-content: center;
    padding: 12px 24px;
    align-items: center;
    min-width: 127px;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    border: none;
    background: transparent;
    outline: none;
    line-height: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
.tab-link.active {
    color: var(--black);
}

 


.mobile_tabbing_otr {
    display: flex;
    align-items: center;
    background: var(--orange);
    position: relative;
    width: 100%;
    max-width: 240px;
}
 
.mobile_tabbing_otr .tab-select {
    appearance: none;
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    outline: none;
    border: none;
    color: var(--white);
    padding: 12px 44px 12px 24px;
    background-color: var(--orange);
    width: 100%;
    cursor: pointer;
}

.mobile_tabbing_otr:after{
    content: "";
    position: absolute;
    width: 15px;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    height: 10px;
    background: url('data:image/svg+xml,<svg width="16" height="9" viewBox="0 0 16 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.69542 6.52558L1.41813 0.248289C1.25257 0.0827332 1.05764 0.00203896 0.833338 0.00620556C0.608893 0.0105114 0.413895 0.0954409 0.248339 0.260997C0.0827837 0.426692 4.76837e-06 0.621692 4.76837e-06 0.845997C4.76837e-06 1.0703 0.0827837 1.2653 0.248339 1.431L6.62813 7.8235C6.77882 7.97419 6.94764 8.08586 7.13459 8.1585C7.32153 8.23114 7.50848 8.26746 7.69542 8.26746C7.88237 8.26746 8.06931 8.23114 8.25626 8.1585C8.4432 8.08586 8.61202 7.97419 8.76271 7.8235L15.1554 1.431C15.321 1.2653 15.4016 1.06815 15.3973 0.839539C15.393 0.610928 15.3081 0.413845 15.1425 0.248289C14.977 0.0827332 14.782 -4.3869e-05 14.5575 -4.3869e-05C14.3332 -4.3869e-05 14.1383 0.0827332 13.9727 0.248289L7.69542 6.52558Z" fill="%231F1F1F"/></svg>');
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(109deg) brightness(102%) contrast(102%);
}

.tab-indicator {
    position: absolute;
    top: 8px;
    left: 8px;
    height: calc(100% - 16px);
    width: 0;
    background: white;
    transition: all 0.4s ease;
}