/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

:root {
    --dark-color: #3A5A40;
    --accent-color: #A3B18A;
    --gray-color: #848484;
    --font-1: 'Roboto', sans-serif;
    --font-2: 'Lato', sans-serif;
}

body {
    background-color: var(--dark-bg);
}

h1 {
    font-size: 100px;
}

h2 {
    font-size: 72px;
}

h3 {
    font-size: 50px
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

ul {
    list-style: none;
}

img {
    object-fit: cover;
}

section {
    background-size: cover;
    background-position: center;
}

button,
a[type="button"] {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
}

a:hover {
    color: var(--accent-color);
}

button:hover,
a[type="button"]:hover {
    background-color: var(--accent-color) !;
}

a {
    text-decoration: none;
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}


/* .form input,
.form textarea,
.form select {
    background-color: white;
    color: var(--accent-color);
    border-width: 1px;
    border-style: solid;
    border-color: #343434;
    border-radius: 20px;
    width: 100%;
} */

.form input:focus,
.form textarea:focus {
    background-color: white;
    color: var(--accent-color);
    border: solid 1px var(--accent-color);
    box-shadow: none;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #49494993;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: var(--accent-color);
}

/* .form .submit_form:hover {
    background-color: #3A5A40;
    color: white;
} */

.maps {
    width: 100%;
    aspect-ratio: 16/9;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

#header {
    transition: all 0.5s ease;
}

.nav-link {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
}

.nav-item {
    padding-block: 1rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link:focus {
    color: var(--accent-color) !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {
    background-color: white;
    border-radius: 0;
    border: none;
    padding: 0;
}

.dropdown-item {
    color: black;
    padding-block: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.dropdown-item.active {
    color: var(--accent-color);
    background-color: transparent;
}

.dropdown-item:hover {
    color: var(--accent-color);
    background-color: var(--secondary-dark);
}

.dropdown-item:focus {
    background-color: var(--secondary-dark);
    color: var(--accent-color);
}

.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
}

.r-container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

.button-outline-white {
    border-width: 1px;
    border-style: solid;
    border-color: white;
    color: white;
}

.button-outline-white:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.button-outline-accent {
    border-width: 1px;
    border-style: solid;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.button-outline-accent:hover {
    border-color: white;
    color: white;
}

.background-1 {
    background-color: transparent;
    background-image: linear-gradient(90deg, #e6e1e1 45%, #F2295B00 0%);
}

.background-2 {
    background-color: transparent;
    background-image: linear-gradient(270deg, #e6e1e1 58%, #F2295B00 0%);
}

.background-3 {
    background-color: transparent;
    background-image: linear-gradient(0deg, #E4BB7D00 49%, #f3f3f3 0%);
}

.background-4 {
    background-color: transparent;
    background-image: linear-gradient(90deg, #E4BB7D00 53%, #1D1D1D 0%);
}

.background-5 {
    background-color: transparent;
    background-image: linear-gradient(270deg, #E4BB7D00 88%, #f3f3f3 0%);
}

.footer-bg {
    background-color: #F3F3F3;
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
}

.bg-dark-color {
    background-color: var(--dark-color);
}

.bg-dark-hover {
    background-color: white;
    color: var(--dark-color);
    transition: all 0.5s;
}

.bg-dark-color-hover:hover {
    background-color: var(--dark-color);
}

.bg-dark-hover:hover {
    background-color: var(--dark-color);
    color: white;
}

.accent-color {
    color: var(--accent-color);
}

.border-accent-color {
    border-color: var(--accent-color) !important;
}

.border-accent-color-hover:hover {
    border-color: var(--accent-color);
}

.text-gray {
    color: var(--gray-color) !important;
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #000;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1D1D1DA3;
    background-position: center center;
    opacity: 0.8;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-overlay {
    background-color: #0000009c;
}

.logo-container {
    max-width: 200px;
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid var(--accent-color);
    max-width: 80px;
    min-width: 80px;
}

.divider-before::before {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid var(--accent-color);
    max-width: 80px;
    min-width: 80px;
}

.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {}

.animation-bg {
    animation: background_animation 10s forwards;
}

.border-dark-gray {
    border-color: #474747 !important;
}

.navbar-toggler:focus {
    background-color: transparent;
}

.card {
    border: none;
}

.card .card-body {
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: -1.5rem;
    border-radius: 15px;
}

.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: #121212;
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 3px;
    background-color: var(--secondary-progress-color);
    display: flex;
    /* border-radius: 3px; */
    /* overflow: hidden; */
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    /* border-radius: 3px; */
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%) - 1rem);
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: rgb(0, 0, 0);
    font-size: 15px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
    top: -2rem;
}

.circular-progress {
    position: relative;
    width: 8rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: conic-gradient(var(--progress-color) calc(var(--progress) * 3.6deg), var(--secondary-progress-color) 0deg);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
}

.circular-progress .progress-value {
    background-color: #ffffff;
    position: absolute;
    width: 90%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-direction: column-reverse;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
}

.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    font-size: 30px;
    font-weight: bold;
    color: var(--progress-color);
    z-index: 1;
}

.bg-attach-fixed {
    background-attachment: fixed;
}

.social-item {
    border-radius: 0;
    aspect-ratio: 1/1;
    font-size: 20px;
    width: 2em;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

.social-item:hover {
    background-color: var(--dark-color);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.breadcrumb .breadcrumb-item>a {
    color: var(--accent-color);
}

.breadcrumb .breadcrumb-item.active {
    color: white;
}

.breadcrumb .breadcrumb-item.active::before {
    color: white;
}

.swiper-pagination {
    margin-block: 1rem;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
}

.video-container {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 5rem;
    background-color: transparent;
    border: solid 2px white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.border-custom {
    border-width: 0px 1px 0px 0px;
    border-color: var(--accent-color);
    border-style: solid;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.request-loader:hover {
    color: #464646;
    background-color: var(--accent-color);
}

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: rgb(238, 238, 238);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.overlay-card {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 460px;
}

.overlay-card .overlay-body {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000 0, rgba(0, 0, 0, 0.404) 60%);
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.5s ease;
    transform-origin: bottom;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay-card:hover .overlay-body {
    opacity: 1;
    transform: scaleY(1);
}

.btn-outline-circle {
    border: solid 1px white;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.btn-outline-circle:hover {
    background-color: transparent !important;
    color: white;
}

.accordion-image {
    flex: 1;
    margin: 0;
    padding: 0;
    transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.accordion-image:hover {
    flex-basis: 10vw;
}

.outline-text {
    -webkit-text-stroke: 1px white;
}

.link {
    color: gray;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    box-shadow: none;
}

.accordion-button.accent-color:not(.collapsed) {
    color: var(--accent-color);
}

.accordion-button.accent-color.collapsed {
    color: black;
}

.accordion-item {
    border: none;
}

.team-container {
    display: flex;
    flex-direction: column;
}

.team-image {
    position: relative;
}

.team-image .team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #0000006f;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s;
}

.team-image:hover .team-overlay {
    transform: scaleY(1);
}

.team-description {
    margin-top: -1.5em;
    background-color: rgba(255, 255, 255, 0.459);
    border-radius: 2px;
    padding: 1.75rem;
    position: relative;
}

.btn-accent-dark {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent-light {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent-light:hover {
    background-color: #f3f3f3;
    color: var(--accent-color);
}

.btn-accent-dark:hover {
    background-color: var(--dark-color);
    color: white;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 1.75rem;
    background-color: white;
}

.pricing-tag {
    position: absolute;
    background-color: var(--dark-color);
    right: 0;
    height: 5rem;
    width: 85%;
    top: 8.7rem;
}

.pricing-price {
    display: flex;
    flex-direction: row;
    color: white;
    height: 5rem;
    z-index: 2;
}

.pricing-container.exclusive {
    background-color: var(--dark-color);
    color: white !important;
    margin-top: -3rem;
}

.pricing-container.exclusive .pricing-tag {
    background-color: var(--accent-color);
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 0.7;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 1px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.5, 1.5, 1);
        transform-origin: center;
        border-width: 17px;
    }
}


@media only screen and (max-width:993px) {
    h1 {
        font-size: 68px;
    }

    h2 {
        font-size: 56px;
    }

    h3 {
        font-size: 36px;
    }

    h5 {
        font-size: 24px;
    }

    h6 {
        font-size: 14px;
    }

    .section {
        padding: 6em 2em 2em 2em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }

    #header {
        background: rgba(19, 19, 19, 0.88);
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .dropdown-menu {
        background-color: var(--dark-color);
    }

    .dropdown-item {
        color: white;
    }

    .nav-item {
        padding-block: 0.3rem;
    }

    .pricing-container.exclusive {
        margin-top: 0;
    }
}

/* code pen */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


.header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.main-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #0a0a0a;
    line-height: 1.1;
}

.slider-container {
    perspective: 1500px;
    perspective-origin: 50% 50%;
    cursor: grab;
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
}

.slider-container.dragging {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform-style: preserve-3d;
}

.card {
    flex-shrink: 0;
    width: 240px;
    background: white;
    overflow: hidden;
    transform-style: preserve-3d;
    position: relative;
    cursor: pointer;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.15),
            transparent 30%,
            transparent 70%,
            rgba(0, 0, 0, 0.15));
    transform: translateZ(-8px);
    pointer-events: none;
}

.card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    transform: translateZ(-16px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.card .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.card:hover .hover-overlay {
    opacity: 1;
}

.card .hover-overlay span {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-track.blurred .card:not(.expanded) {
    filter: blur(8px);
    transition: filter 0.6s ease;
}

.card.expanded {
    z-index: 1000 !important;
}

.card-info {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    z-index: 1001;
    max-width: 600px;
    padding: 1.5rem;
    background: #ff6b35;
    box-shadow: 4px 3px 18px 4px #b7b7b721;
    min-width: 375px;
}

.card-info.visible {
    opacity: 1;
    pointer-events: all;
}

.card-info h2 {
    font-size: 36px;
    font-weight: 900;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.card-info p {
    font-size: 18px;
    color: #080808;
    line-height: 1.7;
}

.close-btn {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.close-btn.visible {
    opacity: 1;
    pointer-events: all;
}

.close-btn:hover {
    background: #ff6b35;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.close-btn svg {
    width: 24px;
    height: 24px;
}

@media only screen and (max-width:993px) {
    .card-bottom {
        margin-bottom: -80px;
    }

    .card-top {
        margin-top: -142px;

    }
}

.mt-small-ser {
    width: 620px;
    height: 384px;
}

@media(max-width:576px) {
    .mt-small-ser {
        margin-top: 30px !important;
    }
}

@media(min-width:692px) and (max-width:991px) {
    .mt-small-ser {
        width: 927px !important;
    }
}


@media(min-width:992px) and (max-width:993px) {
    .mt-small-ser {
        height: 318px !important;
    }
}

@media(min-width:994px) and (max-width:1056px) {
    .mt-small-ser {
        height: 469px !important;
    }
}

@media(min-width:1057px) {
    .mt-small-ser {
        height: 408px !important;
    }
}

@media(min-width:1138px) {
    .mt-small-ser {
        height: 408px !important;
    }
}

.vv::after {
    background: none !important;
}

/* kitchen gallary */
/*Now the styles*/


/*Time to apply widths for accordian to work
Width of image = 640px
total images = 5
so width of hovered image = 640px
width of un-hovered image = 40px - you can set this to anything
so total container width = 640 + 40*4 = 800px;
default width = 800/5 = 160px;
*/

.accordian1 {
    width: 1083px;
    height: 320px;
    overflow: hidden;

    /*Time for some styling*/
    margin: 30PX auto;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
}

/*A small hack to prevent flickering on some browsers*/
.accordian1 ul {
    width: 2000px;
    /*This will give ample space to the last item to move
	instead of falling down/flickering during hovers.*/
}

.accordian1 li {
    position: relative;
    display: block;
    width: 160px;
    float: left;

    border-left: 1px solid #888;

    box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);

    /*Transitions to give animation effect*/
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    /*If you hover on the images now you should be able to 
	see the basic accordian*/
}

/*Reduce with of un-hovered elements*/
.accordian1 ul:hover li {
    width: 40px;
}

/*Lets apply hover effects now*/
/*The LI hover style should override the UL hover style*/
.accordian1 ul li:hover {
    width: 640px;
}


.accordian1 li img {
    display: block;
}

/*Image title styles*/
.image_title {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 640px;

}

.image_title a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 20px;
    font-size: 16px;
}

@media(min-width:992px) and (max-width:993px) {
    .ser-sec-3 {
        height: 364px !important;
    }
}

@media(min-width:994px) and (max-width:1134px) {
    .ser-sec-3 {
        height: 420px !important;
    }
}

/* @media(min-width:1081px) {
    .ser-sec-3 {
        height: 42px !important;
    }
} */

@media(max-width:990px) {
    .ser-sec-3 {
        width: 923px !important;
    }
}

@media(min-width:992px) and (max-width:993px) {
    .sec-ser-last {
        height: 394px !important;
    }
}

@media(min-width:994px) and (max-width:1035px) {
    .sec-ser-last {
        height: 473px !important;

    }
}

@media(min-width:1036px) and (max-width:1039px) {
    .sec-ser-last {
        height: 452px !important;
    }
}

@media(min-width:1040px) and (max-width:1175px) {
    .sec-ser-last {
        height: 394px !important;
    }
}

@media(max-width:990px) {
    .sec-ser-last {
        width: 923px !important;
    }
}

.background-form {
    background-color: transparent;
    background-image: white;
}

.form-border {
    border: 2px solid #3A5A40;
    border-radius: 50px !important;
}

.iti {
    width: 100% !important;
}

.contact-center {
    display: flex;
    align-items: center;
}

.btn-site-secondary {
    background-color: #3A5A40 !important;
}

.btn-site-secondary:hover {
    background-color: #3A5A40;
    border-color: #3A5A40 !important;
}

.btn-site-primary {
    background-color: #A3B18A !important;
}

.btn-site-primary:hover {
    background-color: #A3B18A;
    border-color: #A3B18A !important;
}

@media(max-width:991px) {
    .form-sm {
        padding: 25px !important;
    }
}

.list {
    list-style: disc !important;
}

.logo-image {
    width: 220px !important;
}

.button-sec {
    background-color: #A3B18A;
    color: white;
}

.button-sec:hover {
    background-color: white;
    color: #A3B18A;
}

.add {
    width: 172px !important;
}

.section-top {
    padding: 1em 2em 6em 2em;
}

.section-abt {
    padding: 3em 2em 4em 2em !important;
}

.footer-top {
    margin-bottom: 6em !important;
}


@media(max-width:933px) {
    .card-top {
        margin-top: 6em !important;
    }
}

/* menu */
@media(max-width:400px) {
    .ad-menu {
        width: 200px;
    }
}

@media(max-width:1220px) {
    .abt-sec {
        /* display: none !important; */
    }
}

@media(min-width:992px) and (max-width:1125px) {
    .sec-abt-wid {
        width: auto !important;

    }

    .sec-abt-wid2 {
        justify-content: center !important;

    }
}

.alin-cont {
    align-content: center !important;
}

@media(min-width:992px) and (max-width:993px) {
    .ind-img {
        height: 520px !important;
    }
}

@media(min-width:994px) and (max-width:1025px) {
    .ind-img {
        height: 663px !important;
    }
}

@media(min-width:1026px) and (max-width:1047px) {
    .ind-img {
        height: 638px !important;
    }
}

@media(min-width:1047px) and (max-width:1103px) {
    .ind-img {
        height: 582px !important;
    }
}

@media(min-width:1103px) {
    .ind-img {
        height: 555px !important;
    }
}

@media(min-width:1200px) {
    #iti-0__country-listbox {
        width: 435px !important;
    }
}

@media(max-width:550px) {
    #iti-0__country-listbox {
        /* width: 435px !important; */
    }
}

.policy-space {
    padding: 4em 2em 4em 2em !important;
}

/*own style*/
.abt-pen {
    margin-top: -57px !important;
    margin-bottom: -81px;
}

.abt-pen-con {
    max-width: 1664px !important;
}

@media(min-width:942px) and (max-width:993px) {
    .abt-pen {
        margin-top: -8px !important;
    }
}

@media(max-width:919px) {
    .abt-pen {
        margin-bottom: -82px !important;
    }
}

@media only screen and (max-width: 993px) {
    .section {
        padding: 3em 1em 0em 1em !important;
    }
}

.form-pad {
    padding: 3rem 0 0 1rem !important;

}

@media(max-width:991px) {
    .form-pad {
        padding: 3rem 1rem 0 1rem !important;
        margin-top: 20px !important;
    }
}

@media(min-width:992px) {
    .form-pad {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
}

@media(min-width:992px) and (max-width:993px) {
    .show-1 {
        height: 384px !important;
    }

}

@media(min-width:994px) and (max-width:1124px) {
    .show-1 {
        height: 421px !important;
    }

}

@media(min-width:1125px) {
    .show-1 {
        height: 399px !important;
    }

}

@media(min-width:992px) and (max-width:993px) {
    .show-light {
        height: 385px !important;
    }
}

@media(min-width:994px) and (max-width:1022px) {
    .show-light {
        height: 468px !important;
    }
}

@media(min-width:1023px) and (max-width:1073px) {
    .show-light {
        height: 431px !important;

    }
}

@media(min-width:1074px) and (max-width:1110px) {
    .show-light {
        height: 377px !important;

    }
}

@media(min-width:992px) and (max-width:994px) {
    .sec-las {
        height: 423px !important;
    }
}

@media(min-width:995px) and (max-width:1039px) {
    .sec-las {
        height: 423px !important;
    }
}

@media(min-width:1040px) and (max-width:1119px) {
    .sec-las {
        height: 418px !important;
    }
}

@media(min-width:1119px) and (max-width:1121px) {
    .sec-las {
        height: 402px !important;
    }
}

@media(min-width:11121px) and (max-width:1230px) {
    .sec-las {
        height: 393px !important;

    }
}

@media(min-width:11121px) and (max-width:1230px) {
    .sec-las {
        height: 393px !important;

    }
}

@media(max-width:1100px) {
    .app-form {
        padding-bottom: 20px !important;
    }
}

@media(max-width:900px) {
    .spr-sec3 {
        padding: 1em 2em 0em 2em !important;
    }
}

@media(max-width:900px) {
    .ret-sec3 {
        padding: 1em 2em 2em 2em !important;
    }
}

@media(max-width:900px) {
    .res-sec3 {
        padding: 1em 2em 2em 2em !important;
    }
}

@media(max-width:991px) {
    .liv-sec3 {
       padding: 0em 1em 0em 1em !important;
    }
}

@media(max-width:900px) {
    .bed-sec3 {
        padding: 1em 2em 2em 2em !important;
    }
}

@media(max-width:700px) {
    .sm-cod-pen {
        display: none;
    }

    .mt-cod {
        padding: 0em 2em 2em 2em !important;
    }
}

@media(min-width:992px) and (max-width:1015px) {
    .in-img {
        height: 576px !important;
    }
}

@media(min-width:1016px) and (max-width:1130px) {
    .in-img {
        height: 582px !important;
    }
}

@media(min-width:1131px) {
    .in-img {
        height: 582px !important;
    }
}

/*Index*/
@media(min-width:993px) and (max-width:1199px) {
    .sat-img {
        height: 400px !important;
    }
}

@media(min-width:1400px) {
    .sat-img {
        height: 380px !important;
    }
}

.crd-im1 {
    height: 152px !important;
}

/* Limit image width on large screens */
.custom-img {
    max-width: 100%;
    height: auto;
}

/* 993px to 1130px: stacked layout (text on top, image below) */
@media (min-width: 992px) and (max-width: 1130px) {
    .content-column {
        order: 1;
    }

    .slider-column {
        order: 2;
    }

    .custom-row {
        display: flex;
        flex-direction: column;
    }
}

/* Above 1130px: side by side */
@media (min-width: 1131px) {
    .custom-row {
        display: flex;
        flex-direction: row;
    }

    .content-column,
    .slider-column {
        order: unset;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
    /* allow stacking */
    gap: 30px;
}

/* >=1131px: side-by-side layout */
@media (min-width: 1131px) {
    .content-column {
        order: 1;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .slider-column {
        order: 2;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* <=1130px: stacked layout (text on top, images below) */
@media (max-width: 1130px) {

    .content-column,
    .slider-column {
        order: unset;
        /* just stack naturally */
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.custom-img {
    width: 100%;
    height: auto;
    display: block;
}

@media(min-width:1671px) and (max-width:1881px) {
    .abt-pen-con {
        max-width: 1880px !important;

    }
}

@media(min-width:1881px) and (max-width:2023px) {
    .abt-pen-con {
        max-width: 2013px !important;
    }
}

@media(min-width:2024px) {
    .abt-pen-con {
        max-width: 2120px !important;
    }
}

.custom-row {
    display: flex;
    flex-wrap: nowrap;
    /* prevent stacking */
    gap: 30px;
    /* optional gap between columns */
}

/* Custom columns */
.custom-col {
    flex: 1 1 50%;
    /* each takes half width */
}

/* Image scaling */
.image-column img {
    width: 100%;
    height: auto;
    display: block;
}

/* Make it responsive for very small screens (<768px) */
@media (max-width: 767px) {
    .custom-row {
        flex-wrap: wrap;
        /* allow stacking on very small screens */
    }

    .custom-col {
        flex: 1 1 100%;
        /* full width */
    }
}


@media(min-width:992px) and (min-width:1126px) {
    .amb-img {
        height: 406px !important;
    }
}

@media(min-width:1127px) {
    .amb-img {
        height: 348px !important;
    }
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile & small tablet stacked layout (<=991px) */
@media (max-width: 991px) {
    .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .swiper-footer-1,
    .swiper-footer-2 {
        margin-top: 20px;
    }
}

#iti-0__country-listbox {
    width: 267px !important;
}

@media(max-width:400px) {
    #iti-0__country-listbox {
        width: 241px !important;
    }
}

@media(min-width:992px) and (max-width:1999px) {
    .wid {
        width: 100% !important;
    }
}

@media(min-width:992px) and (max-width:1150px) {}

@media(min-width:1200px) and (max-width:1399px) {
    .sat-g {
        gap: 2.5rem !important;
    }
}

@media(min-width:1400px) {
    .sat-g {
        gap: 3.5rem !important;
    }
}

@media(min-width:994px) and (max-width:1023px) {
    .img-crt {
        height: 442px !important;
    }
}


.app-in {
    width: 600px !important;
}

.l-mar-btm {
    padding: 3em 1em 2em 1em !important;
}

.dropdown-item {
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}
@media(max-width:370px){
    .sm-font{
        font-size: 14px !important;
    }
}
@media(max-width:400px){
    .ban-head{
        font-size: 40px !important;
    }
}
.in-mar-bt{
    margin-bottom: 0px !important;
}
.con-top{
    padding-top: 5em !important;
}
.sf{
    font-size: 43px !important;
}
.bg-dark-hover{
    border: 1px solid #3A5A40 !important;
}
@media(max-width:800px){
    .py-sec{
        padding-top: 0px !important;
    padding-bottom: 6em;
}}
@media(max-width:991px){
    .sec-sm{
          padding: 3em 1em 0em 1em !important;
    }
}
@media(min-width:993px){
  
}
@media(min-width:992px) and (max-width:1290px){
    .liv-rm{
        height: 337px !important;
    }
}
@media(min-width:1100px) and (max-width:1290px){
    .liv-rm{
        width: 582px !important;
    }
}

@media(min-width:711px) and (max-width:992px){
    .ph-wid{
        width: 929px !important;
    }
}
.mt-lg-cod{
    padding-top: 4em !important;
    padding-bottom:4em !important ;
}
@media(min-width:992px){
    .section-lg{
        padding-top:0px !important;
        padding-bottom: 0px !important;
    }
}
@media(min-width:992px) and (max-width:993px){
    .section-lg{
        padding-top: 3em !important;
    }
}
@media(min-width:992px){
    .high{
        height: 369px !important;
    }

}
.sec-lv-cod{
    padding: 4em 2em 4em 2em !important;
}

@media(max-width:991px){
    .sec-lv-cod{
    padding: 0em 2em 4em 2em !important;
}
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0) !important;
}
.iti--separate-dial-code .iti__selected-flag{
    
}
.ap-bt:hover{
    background-color: #3A5A40 !important;
    border: 1px solid #3A5A40;
}
@media(max-width:993px){
.abt-btn{
margin-bottom: 20px;
}
}
@media(max-width:400px){
    .f5{
        font-size: 20px !important;
    }
}
#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background-color: #1a1a1a;
  color: white;
  border: none;
  outline: none;
  padding: 12px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

#backToTop:hover {
  background-color:#A3B18A; /* Accent color */
  color: #fff;
  transform: translateY(-3px);
}
.navbar {
  position: relative;
  z-index: 1050;
}