@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: 'Inter' !important;
}

:root {
    --primary-color: #2e2963;
    --secondary-color: #f4c430;
    --text-color: rgba(0, 0, 0, 0.8);
    --border-color: #ddd;
    --background-color: #ffffff;
}


.header {
    display: flex;
    align-items: center;
    padding: 5px 40px;
    border-bottom: 2px solid var(--border-color);
    background-color: #fff;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 16px;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color) !important;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons .btn {
    padding: 8px 18px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.login {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.signup {
    background-color: var(--secondary-color) !important;
    color: white !important;
    border-radius: 30px !important;
    padding: 10px 15px !important;
}


.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color) !important;
}

.navbar-brand img {
    height: 90px;
}

/* Hover dropdown */
.hover-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.9s ease-in-out;
}

.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.9s ease-in-out;
}

.hero-section {
    background-position: center;
    background-size: cover;
    height: 70vh;
}

.banner1 {
    background-image: linear-gradient(to bottom, rgba(8, 8, 8, 0.404), rgb(8 8 8 / 53%)), url(../images/hero-1.jpg);
}

.banner2 {
    background-image: linear-gradient(to bottom, rgb(8 8 8 / 58%), rgb(8 8 8 / 53%)), url(../images/hero-2.jpg);
}

.banner3 {
    background-image: linear-gradient(to bottom, rgb(8 8 8 / 58%), rgb(8 8 8 / 53%)), url(../images/slider-2.jpg);
}

.banner4 {
    background-image: linear-gradient(to bottom, rgb(8 8 8 / 58%), rgb(8 8 8 / 53%)), url(../images/hero-3.jpg);
}

.banner5 {
    background-image: linear-gradient(to bottom, rgb(8 8 8 / 58%), rgb(8 8 8 / 53%)), url(../images/road-fr.png);
}

.hero-section .hero-content {
    padding: 160px 0 180px 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}


.hero-section .hero-content h1 {
    font-size: 45px;
    text-transform: uppercase;
}

.hero-section .hero-content p {
    width: 70%;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.5;
    color: #222;
}

.main-carousel .slide-item {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
}

.main-carousel .slide-item img {
    opacity: 0.5;
    position: relative;
}

.main-carousel .slide-text {
    position: absolute;
    left: 200px;
    top: 50%;
    z-index: 1;
    max-width: 580px;
    text-align: left;
    /* margin-top: -160px; */
    transform: translateY(-100%);
}

.owl-dots {
    position: absolute;
    z-index: 2;
    bottom: 10px;
    left: 50%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color) !important;
}

.owl-theme .owl-dots .owl-dot span {
    background: #ffffffab !important;
}

span {
    color: var(--secondary-color);
    font-weight: bold;
}

.hero-text button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 20px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.review button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 20px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.hero-text button:hover {
    background-color: #444;
}

/* 
.hero-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
} */
.text-justify {
    text-align: justify;
}

.hero-image {
    position: relative;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    height: 500px;
    display: block;
    object-fit: cover;
}

.map-button {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    opacity: 0.3;
    cursor: pointer;
}

.carousel-dots span.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 2rem;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    }
}

.carousel-indicators [data-bs-target] {
    border-radius: 50% !important;
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 15px !important;
    height: 15px !important;
    padding: 0;
    margin-right: 9px;
    margin-left: 11px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.icon-box {
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.logistics-card {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px !important;
}

.logistics-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 121, 107, 0.2);
}

.logistics-card:hover .icon-box {
    background-color: var(--primary-color);
}

.hero-btn {
    width: 100%;
}

.destination-section {
    padding: 100px 40px;
    background: #fff;
}

.destination-wrapper {
    display: flex;
    gap: 20px;
}

.destination-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    flex-shrink: 0;
    background-size: 134%;
    background-position: center;
    transition: background-size 0.5s ease;

}

.destination-card:hover {
    background-size: 170%;
    transition: background-size 0.5s ease;
}

.destination-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.destination-info h5 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.destination-info p {
    margin: 0;
    font-size: 14px;
}

.card-lg {
    width: 100%;
    min-height: 480px;
    background-position: center;
    background-size: cover;
}

.card-md {
    width: 100%;
    height: 250px;
}

.card-sm {
    width: 280px;
    height: 180px;
}

.card-wide {
    width: 400px;
    height: 200px;
}

.inner_card_img {
    display: flex;
    gap: 26px;
}

.carousel-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.card-group {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.property-card {
    width: 480px;
    height: 600px;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #000;
    transition: transform 0.2s ease-in-out;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.068) 0%,
            rgba(255, 255, 255, 0.26) 50%,
            rgba(255, 255, 255, 0.123) 100%);
    transform: skewX(-25deg);
}

.property-card:hover::before {
    animation: flashMove 0.6s ease-in-out;
}

@keyframes flashMove {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}



.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 15px;
    width: 100%;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cta {
    background-image: linear-gradient(#ffffff, #ffffffdb), url(../images/bg-cta.jpg);
    background-size: contain;

}

.footer {
    background-color: #f8f8f8;
    color: #fff;
    padding-top: 40px;
}

.footer .logo img {
    max-width: 150px;
}

.footer .description {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
}

.footer .social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    background-color: #fff;
    color: #1c1c1c;
    text-align: center;
    line-height: 36px;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.footer h5 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: #373737;
    color: #000 !important;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.list-unstyled li {
    margin-bottom: 5px !important;
}

.footer-bottom h6 {
    color: #ffffff4d;
    font-size: 12px;
}



.contact-section {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    padding: 15px;
}

.contact-form {
    padding: 40px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
    width: 100%;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(243, 124, 56, 0.25);
}

.contact-form h3 {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 8px;
    width: 100%;
}

.contact-btn i {
    margin-right: 5px;
}

.contact-image {
    background: url('your-image-path.jpg') center center/cover no-repeat;
    color: white;
    padding: 40px;
    position: relative;
}

.contact-image .overlay {
    background-image: url(../images/hero-1.jpg);
    background-size: cover;

    padding: 20px;
    height: 100%;
    border-radius: 20px;
}

.contact-image i {
    margin-right: 10px;
}

.contact-image .social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 18px;
}

.contact_inner {
    background-color: #0000000d;
    padding: 31px;
    backdrop-filter: blur(3px);
    border-radius: 17px;
}

.contact_inner i {
    font-size: 22px;
    color: #f87c42;
    margin-right: 5px;
}

.contact_inner p {
    font-size: 17px;
}



/* button */
.playbtn {
    position: relative;
    display: inline-block;

    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    font-weight: 600;
    padding: 14px 26px;
    overflow: hidden;
}

/* 
.playbtn:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 5px #fff, 0 0 25px #fff, 0 0 50px #fff, 0 0 200px #fff;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
} */

.playbtn span {
    position: absolute;
    display: block;
}

.playbtn span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #f87c42);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.playbtn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #f87c42);
    animation: animate2 2s linear infinite;
    animation-delay: 0.5s;
}

@keyframes animate2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

.playbtn span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(270deg, transparent, #f87c42);
    animation: animate3 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

.playbtn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #f87c42);
    animation: animate4 2s linear infinite;
    animation-delay: 1.5s;
}

@keyframes animate4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}

.carousel-indicators {
    position: absolute;
    right: 0 !important;
    top: 50% !important;
    left: auto !important;
    z-index: 2;
    display: flex;
    gap: 0px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
    margin-right: 0 !important;
    margin-bottom: 1rem;
    margin-left: 0 !important;
    transform: translateY(-50%);
}

.carousel-indicators [data-bs-target] {
    background-color: #262e66 !important;
}

.about_us {
    background-image: linear-gradient(#ffffffaf, #ffffffa6), url(../images/dot_map.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about_us img {
    mix-blend-mode: multiply;
}

.why-choose {
    margin-top: 50px;
    padding: 50px 0px;
    background-color: #f4f4f4;
}

.why-choose .why-choose-box {
    padding: 40px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px 7px rgb(0 0 0 / 3%);
}

.why-choose .why-choose-box .why-icon {
    display: flex;
    align-items: center;
}

.why-choose .why-choose-box .why-icon img {
    background-color: var(--secondary-color);
    padding: 8px;
    width: 50px;
    border-radius: 5px;
}

.why-choose .why-choose-box .why-icon h5 {
    margin-left: 20px;
}

.why-choose .why-choose-box p {
    margin-top: 15px;
    margin-bottom: 0px;

}

.breadcrumb-section {
    position: relative;
    background-image: linear-gradient(#00000080, #00000077), url(../images/breadcrum-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 0px;
    text-align: center;
    z-index: 1;
}

.custom_img,
.custom_img img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.custom_img img {
    object-fit: cover;
    transition: .4s ease;
}

.custom_img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.director_member h5 {
    color: var(--secondary-color);
    font-size: 18px;
}

.vision {
    padding: 70px 0;
}


.carousel-track {
    overflow: hidden;
    width: 100%;
}

.carousel-wrapper {
    background: #fff;
    padding: 40px 0;
    --dot-bg: white;
    --dot-color: black;
    --dot-size: 1px;
    --dot-space: 22px;
    background: linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), var(--dot-color);
}

.partner-logo-carousel-track {
    display: flex;
    width: fit-content;
    gap: 20px;
}

.partner-logo-carousel {
    display: flex;
    gap: 50px;
    animation: scroll 40s linear infinite;
    align-items: center;
}

.partner-logo-carousel img {
    max-height: 60px;
    opacity: 0.8;
    transition: 0.3s;
}

.partner-logo-carousel img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.contact-us .card i {
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
}

.form-control:focus {
    color: #212529;
    border: 1px solid;
    border-color: var(--red) !important;
    box-shadow: unset !important;
}

.contact_inner a {
    color: #000;
    text-decoration: none;
}

a.phone-btn {
    margin-right: 10px;
    color: #000;
    text-decoration: none;
    background-color: #f8f8f8;
    border-radius: 30px;
    padding: 12px 15px;
}

a.phone-btn i {
    background: #f3c443;
    color: #fff;
    padding: 6px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
}

.call-btn-section {
    position: fixed;
    bottom: 60px;
    left: 25px;
    background: #2e2961;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-btn-section a {
    color: #fff;
}

.footer-contact p {
    color: #000;
    margin-top: 10px;
}

.terms-section li {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 0px !important;
}


h6 a{
    text-decoration: none;
    color: #000;
}
.roman li{
    list-style-type: disc;
}

.terms-section li span {
    color: #000;
    font-size: 20px;
}

.terms-section ul {
    padding-left: 0px !important;
}

.terms-section h2 {
    font-size: 36px;
}

/* ===============================================
Testimonials
------------------------*/
section.testimonials {
    padding: 60px 0px;
    background-image: url('../../images/testimonial-bg.jpg');
    background-size: cover;
}

.testimonial-block-one .inner-box {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 5px;
    padding: 50px;
    transition: all .5s ease
}

.testimonial-block-one .inner-box:hover {
    box-shadow: 0 5px 45px 0 rgba(0, 0, 0, .1)
}

.testimonial-block-one .inner-box .icon-box {
    position: relative;
    display: inline-block;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
    background-color: transparent;
}

.testimonial-block-one .inner-box .rating {
    position: absolute;
    display: flex;
    align-items: center;
    top: 55px;
    right: 52px
}

.testimonial-block-one .inner-box .rating li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    margin-right: 5px
}

.testimonial-block-one .inner-box .rating li i {
    color: var(--secondary-color);
    line-height: 42px;
}

.testimonial-block-one .inner-box .rating li:last-child {
    margin: 0 !important
}

.testimonial-block-one .inner-box p {
    display: block;
    margin-bottom: 40px
}

.testimonial-block-one .inner-box .author-box {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-block-one .inner-box .author-box .thumb-box {
    display: inline-block;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    margin: 0;
    margin-right: 10px;
}

.testimonial-block-one .inner-box .author-box .thumb-box img {
    width: 100%;
    border-radius: 50%
}

.testimonial-block-one .inner-box .author-box h5 {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 2px
}

.testimonial-carousel {
    margin-top: 80px;
}

.testimonial-carousel .item {
    margin: 0px 20px;
}

/* ------- Locations Section ---------- */
.locations-section {
    padding: 60px 0px;
    background-color: #f8f8f8;
}

.locations-section h2 {
    font-size: 42px;
    font-weight: 700;
}

.list-single {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 2px #f2f2f2;
}

.list-single h3 {
    font-size: 20px;
    font-weight: 600;
}

.list-single h4 {
    font-size: 20px;
    font-weight: 600;
}

.team-member {
    padding: 60px 0px;
}

.single-team {
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 20px;
    margin-bottom: 20px;
}

.single-team img {
    border-radius: 50%;
    box-shadow: 0px 0px 6px #00000013;
}

.single-team h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 15px;
}

.single-team h5 {
    font-size: 14px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.service-why .why-icon h5 {
    margin-left: 0 !important;
}

.terms-color {
    color: var(--primary-color) !important;
}

.rjl-section {
    text-align: center;
    padding: 60px 20px;
    background: #011843;
}

.rjl-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
}

.rjl-section h2 span {
    color: var(--secondary-color);
}

.rjl-section p.subtext {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1rem;
    line-height: 1.6;
}

.rjl-section .features {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.rjl-section .feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.3s ease;
}

.rjl-section .feature-box:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
}

.rjl-section .feature-box i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.rjl-section .feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
}

.rjl-section .feature-box p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
}


.booking_form {
    width: 60%;
    height: auto;
    background-color: #f8f8f8;
    padding: 2rem 2rem;
}

.headings {
    color: #2e2961;
    font-size: 1.5rem;
    font-weight: normal;
}

.submit_button {
    background-color: #2e295f;
    padding: 0.6rem 2.3rem;
    border-radius: 5px;
    color: #fff;
    font-size: 1.2rem;
    border: 0;
    font-weight: 700;

}

.booking_form .iti.iti--allow-dropdown {
    width: 100% !important;
    max-width: 332px !important;
    position: relative;
}

.intl-tel-input,
.iti {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .booking_form {
        width: 100%;
    }
}