:root {
    --font: "Hanken Grotesk", sans-serif;
    --font2: "Hanken Grotesk", sans-serif;
    --liner: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --pri: #ed434a;
    --sec: #fff3e1;
    --text-color: #192324;
    --text-light: #8C8C8C;
    --para-color: #636363;
}

body {
    background: #fff;
    font-family: var(--font);
    color: var(--para-color);
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.5;
    min-height: 100vh;
    letter-spacing: 0.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

p {
    color: var(--para-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: var(--font2);
}

a {
    display: block;
    text-decoration: none;
}

p a {
    display: inline;
}

header {
    position: relative;
    z-index: 999;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .02);
}

.top-bar {
    background: var(--sec);
    /* font-family: var(--font2); */
    color: #000;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.top-bar .tx-bx {
    display: block;
    line-height: normal;
}


.mid-bar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding: 0;
}

.mid-bar ul li {
    position: relative;
    /* border: 1px solid red; */
    padding: 0 10px;
    line-height: 15px;
}


.mid-bar ul li:first-child:before {
    content: none;
}

.mid-bar ul li a {
    color: var(--para-color);
    display: flex;
    gap: 4px;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: normal;
}

.mid-bar ul li a svg {
    width: 17px;
    height: 17px;
    margin-top: -2px;
}

.mid-bar ul li a:hover {
    color: var(--pri);
}

.mid-bar ul li:last-child {
    padding-right: 0;
    border-right: 0;
}

.mid-bar ul li select {
    background-color: transparent;
    border: 0;
    outline: 0;
    color: #FAFAFA;
    max-width: 70px;
    font-weight: 300;
}

.mid-bar ul li select option {
    color: var(--text-color);
    font-size: 13px;
}

.mid-bar {
    padding: 10px 0;
    font-weight: 300;
    /* border-bottom: 1px solid #f3f3f3; */
}

.logo {
    max-width: 230px;
}

.search-bx {
    overflow: hidden;
    width: 100%;
    max-width: 290px;
    /* margin-left: auto; */
    background: #f5f5f5;
    border-radius: 5px;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .05);
}

.search-bx:hover {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
}

.search-bx form {
    display: flex;
    align-items: center;
}

.search-bx input {
    height: 40px;
    outline: none;
    background: #f5f5f5;
    padding: 0;
    padding-left: 20px;
    font-size: 16px;
    width: calc(100% - 45px);
    color: var(--text-color);
    /* border: 1px solid var(--pri); */
    border: 0;
}

.search-bx button {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    width: 45px;
    align-content: center;
    text-align: center;
    color: var(--text-light);
}

.search-bx button:hover {
    color: var(--text-color);
}

.mid-bar .main-btn {
    border-radius: 20px;
    font-size: 14px;
    padding: 10px 19px;
    border-color: var(--pri);
    background-color: #ffffff;
    color: var(--pri);
}

.call-now {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 6px;
}

.call-now .icon-bx {
    min-width: 36px;
    width: 36px;
    height: 36px;
    color: white;
    background: var(--pri);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-now .icon-bx svg {
    width: 16px;
    height: 16px;
}

.call-now .con-bx {
    text-align: right;
}

.call-now .con-bx span {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: var(--text-light);
    display: block;
    letter-spacing: 0.3px;
}

.call-now .con-bx span a,
.call-now .con-bx span p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 2px;
    margin-bottom: 0;
    line-height: normal;
}

.call-now .con-bx span a:hover {
    color: var(--pri);
}


.menubar {
    position: relative;
    background: #f5f5f5;
    /* border-top: 1px solid #eaeaea; */
}

.menubar .logo {
    display: none;
}

.menubar.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
    animation-name: fadeInDown;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.navigation .nav-header {
    display: none;
    padding: 12px 20px
}

.navigation .navbar button {
    width: 40px;
    height: 40px;
    background: var(--liner);
    background-color: var(--pri);
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 25px;
    border-radius: 0;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 99;
    padding: 5px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navigation .navbar button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 15%;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
    top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
    top: 18px;
}

.navigation .navbar button span:nth-child(4) {
    top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
    transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .menu {
    display: block
}

.navigation .menu ul {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    display: block;
}

.navigation .menu ul li {
    display: inline-block;
    position: relative;
}

.navigation .menu ul li a {
    padding: 12px 16px;
    display: block;
    color: var(--para-color);
    transition: all 0.3s ease;
    font-size: 16px;
    background: transparent;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: var(--pri);
    background: transparent;
}



.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: 0;
    text-align: left
}

.navigation .menu ul li ul.cs-dropdown li:last-child {
    border: 0
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown {
    left: 100%;
    margin-top: -36px
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li ul.cs-dropdown {
    left: -100%;
    margin-top: -31px
}

.navigation .menu ul li ul.cs-dropdown {
    position: absolute;
    width: 285px;
    display: none;
    z-index: 99999;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
    background: #fff;
    margin: 0;
    padding: 0;
    transition: all .3s ease
}

.navigation .menu ul li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li:hover ul.cs-dropdown li ul.cs-dropdown {
    display: none;
    transition: all .3s ease;
    width: 250px;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%
}

/* .navigation .menu ul li ul.cs-dropdown li:last-child a {
    border-bottom: 0
} */

.navigation .menu ul li ul.cs-dropdown li:last-child a:after {
    display: none
}

.navigation .menu ul li ul.cs-dropdown li a:hover {
    background: #fff;
    color: var(--pri);
}

.navigation .menu ul li ul.cs-dropdown li:hover a {
    color: var(--pri);
    background: transparent;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a {
    background: #fff;
    color: #333
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
    color: #fff;
    background: var(--pri)
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: var(--text-color);
    font-size: 14px;
    padding: 0;
    padding-bottom: 10px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: 300;
    /* background: #f8f8f8; */
    transition: all 0.3s ease;
    border-bottom: 0px solid transparent;
}

.navigation .menu ul li ul.cs-dropdown li:last-child a {
    padding-bottom: 0;
}


.navigation ul li.cs-submenu a button {
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0 0 0 3px;
    color: var(--text-color);
}

.navigation ul li.cs-submenu a button svg {
    width: 13px;
    height: 13px;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: var(--pri);
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
    color: #242424
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: #333;
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
    transform: rotateZ(-90deg);
}

.navigation ul li.cs-submenu ul.cs-dropdown li.cs-submenu:hover svg {
    color: #fff;
}

.navigation .navbar {
    display: none;
    padding: 12px 0;
    margin: 0
}

.navigation .menu ul>li:hover>ul.cs-dropdown {
    visibility: visible;
    opacity: 1;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown {
    left: 100%;
    margin-top: -36px;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown>li>ul.cs-dropdown {
    left: -100%;
    margin-top: -31px;
}


.navigation .menu ul>li>ul.cs-dropdown>li:hover>ul.cs-dropdown {
    visibility: visible;
    opacity: 1;
}

.navigation .menu ul>li ul.cs-dropdown {
    position: absolute;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    transition: all .3s ease;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
    background: #f8f8f8;
    margin: 0;
    padding: 0;
    text-align: left;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 12px 15px;
}

.navigation .menu ul>li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 0;
    width: 100%;
}


.main-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background-image: url(../images/banner/banner1.jpg);
    background-position: center;
    background-size: cover;
    align-content: center;
}

.main-section::before {
    background: linear-gradient(90deg, rgba(22, 29, 37, 1) 0%, rgba(22, 29, 37, 0.1) 100%);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.75;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}

.main-section .tx-bx .sub-tt {
    background: var(--liner);
    background-color: var(--pri);
    padding: 5px 12px;
    display: inline-block;
    margin-bottom: 10px;
    font-style: italic;
    letter-spacing: 0.5px;
    font-size: 16px;
    color: white;
}

.main-section .tx-bx p {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.main-section .tx-bx .tt {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: normal;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}


.freeConsultationBg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 350px;
    margin-left: auto;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    z-index: 2;
}

.freeConsultation {
    background: #fff;
    border-radius: 20px;
    transition: 0.5s all;
    width: 100%;
    height: auto;
    position: relative;
    padding: 30px;
}

.freeConsultation .head-sec .tt {
    font-size: 21px;
}

.main-btn {
    padding: 8px 20px;
    color: white;
    border-radius: 20px;
    border: 1px solid var(--pri);
    display: inline-flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    text-transform: capitalize;
    white-space: nowrap;
    background: var(--pri);
    outline: none;
    transition: 0.1s ease;
}

.main-btn:hover {
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
}

.main-btn.light {
    background: white;
    color: var(--pri);
}

.main-btn.light:hover {
    background: var(--pri);
    color: white;
}

.main-btn.dark {
    background-color: var(--text-color);
    border-color: var(--text-color);
}

.main-btn.dark:hover {
    background-color: var(--pri);
    border-color: var(--pri);
}

.w-btn {
    padding: 8px 20px;
    color: white;
    border-radius: 20px;
    border: 1px solid #00c966;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font);
    text-transform: capitalize;
    white-space: nowrap;
    background-color: #00c966;
    outline: none;
    transition: 0.2s ease-in-out;
}

.w-btn:hover {
    border-color: #00c966;
    background-color: #00b95d;
}

.head-sec {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 28px;
}

.head-sec.text-start {
    max-width: 100%;
}

.head-sec .tt {
    font-family: var(--font);
    color: var(--text-color);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 7px;
    position: relative;
    text-transform: capitalize;
}

.head-sec .tt span {
    color: var(--pri);
}

.head-sec.left {
    text-align: left;
}

.head-sec.left .tt::before {
    left: 0;
}

.head-sec p {
    font-size: 16px;
    color: var(--para-color);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.1px;
}

main,
main img {
    aspect-ratio: 96 / 35;
    transition: 0.5s ease-in-out;
}

main:hover img {
    transform: scale(1.01);
}

.carousel-control-next,
.carousel-control-prev {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 35px;
    height: 35px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    z-index: 99;
    opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    height: 15px;
    width: 15px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    background-color: var(--pri);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-indicators {
    margin-bottom: 6px;
    overflow: hidden;
}

.carousel-indicators [data-bs-target] {
    margin: 0;
    width: 13px;
    background-color: black;
    transition: 0.2s;
}

.carousel-indicators [data-bs-target]:first-child {
    border-top-left-radius: 10px;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--pri);
}

.carousel-item.with-text::before {
    background: linear-gradient(180deg, rgba(65, 48, 62, 0), #161d25);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-caption {
    z-index: 3;
}

.carousel-caption .subtt {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 300;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translate3d(-15%, 0, 0);
    transform: translate3d(-15%, 0, 0);
    opacity: 0;
    visibility: hidden;
    text-shadow: 0 2px 3px rgba(65, 48, 62, .3);
}

.carousel-item.active .carousel-caption .subtt {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}

.carousel-caption .tt {
    font-weight: 600;
    font-size: 35px;
    line-height: 1.1;
    letter-spacing: normal;
    margin-bottom: 10px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    text-shadow: 0 2px 3px rgba(65, 48, 62, .3);
}

.carousel-item.active .carousel-caption .tt {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}

.carousel-caption .tt span {
    display: block;
    font-weight: 200;
    font-size: 50px;
}

.carousel-caption .main-btn {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    visibility: hidden;
}

.carousel-item.active .carousel-caption .main-btn {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

@media (max-width:980px) {

    .carousel-control-next,
    .carousel-control-prev {
        width: 20px;
        height: 35px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        height: 13px;
        width: 13px;
    }

    .carousel-control-prev {
        left: 0px;
        border-radius: 0 3px 3px 0;
    }

    .carousel-control-next {
        right: 0px;
        border-radius: 3px 0px 0px 3px;
    }
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: static;
    width: 70px;
    margin: 0 auto;
    margin-top: 20px;
}

.swiper-scrollbar-drag {
    background-color: var(--pri);
}

.swiper-next,
.swiper-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-next,
.swiper-prev {
    background: #fffbf6;
    color: var(--text-color);
    width: 32px;
    height: 32px;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    text-align: center;
    align-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-next:hover,
.swiper-prev:hover {
    /* background: var(--text-color); */
    color: var(--pri);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.swiper-button-next,
.swiper-next {
    right: -17px;
    left: auto;
}

.swiper-button-prev,
.swiper-prev {
    left: -17px;
    right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 10px;
    font-weight: bold;
}

.swiper-next.swiper-button-disabled,
.swiper-prev.swiper-button-disabled {
    opacity: 0.4;
}

.swiper_wrap {
    /* height: 100%;  */
    width: 100%;
    position: relative;
    display: block;
    text-align: left;
}

.section {
    padding: 50px 0;
    overflow: hidden;
}

.bg-light {
    background-color: #fff7f7 !important;
}

.about-sec {
    position: relative;
    background: url(../images/bg/about-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
    padding: 50px 0 30px;
}

.about-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgb(245 245 245 / 85%);
}

.about-sec .content-sec h1 {
    font-size: 25px;
}

.about-sec .cmTitle,
.about-sec h1,
.about-sec p,
.about-sec li {
    text-align: center !important;
}

.about-sec ul {
    padding: 0;
    list-style: none;
}

.pr-bx {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.pr-bx .img-bx {
    aspect-ratio: 1 / 1;
}

.pr-bx .img-bx img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease;
}

.pr-bx:hover .img-bx img {
    transform: scale(1.02);
    transform-origin: 50% 50%;
}

.pr-bx .tt {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    border-radius: 10px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    z-index: 2;
    text-align: center;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    pointer-events: none;
    padding: 10px 0;
    background: linear-gradient(0deg, rgba(22, 25, 26, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.pr-bx.cat-item .img-bx,
.pr-bx.cat-item .img-bx img {
    aspect-ratio: auto;
}

.pr-bx.cat-item .tt {
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 13px;
    width: auto;
    left: 10px;
    bottom: 10px;
    font-weight: 300;
}

.pr-bx.cat-item img {
    height: 300px;
}

.cate-bx {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .1);
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    height: 100%;
    background: #f9f9f9;
    transition: 0.3s ease;
}

.cate-bx:hover {
    box-shadow: 0 2px 5px 0px rgba(0, 0, 0, .2);
}

.cate-bx .img-bx {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.cate-bx .img-bx img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cate-bx:hover .img-bx img {
    transition: 0.3s ease;
    transform: scale(1.03);
    transform-origin: 50% 50%;
}

.cate-bx .tx-bx {
    padding: 10px 15px;
}

.cate-bx .tx-bx .tt {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 3px;
    line-height: 1.3;
}

.cate-bx:hover .tx-bx .tt {
    color: var(--pri);
}

.cate-bx .tx-bx p {
    margin-bottom: 0;
    font-size: 13px;
}

.cate-bx .btn-bx {
    margin-top: 7px;
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.cate-bx .btn-bx .main-btn,
.cate-bx .btn-bx .w-btn {
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 400;
}

.cate-bx .btn-bx .main-btn svg,
.cate-bx .btn-bx .w-btn svg {
    width: 14px;
    height: 14px;
}

.cate-img {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    margin-bottom: 5px;
}

.cate-img img {
    aspect-ratio: 5 / 4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #f5f5f5;
    display: block;
}

.cate-tx .content-sec h1 {
    color: var(--pri);
    margin-bottom: 15px;
}

.cate-tx .content-sec .tt {
    font-size: 16px;
    margin-bottom: 10px;
}

.cate-tx .content-sec p,
.cate-tx .content-sec li {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.prThumbsSlider .swiper-slide img {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    margin-block: 5px;
    cursor: pointer;
    aspect-ratio: 5 / 4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #f5f5f5;
}

.prThumbsSlider .swiper-slide {
    opacity: 1;
}

.prThumbsSlider .swiper-slide-thumb-active {
    opacity: 0.5;
}

.why-row {
    display: flex;
    justify-content: center;
    gap: 77px;
}

.why-row .why-bx {
    width: 100%;
    max-width: 130px;
    text-align: center;
    position: relative;
}

.why-row .why-bx:after {
    content: url(../images/icon/pointer-1648009636-hrGLD.svg);
    position: absolute;
    left: calc(100% + 8px);
    right: 0;
    top: 42%;
    transform: translateY(-50%);
}

.why-row .why-bx:last-child:after {
    content: none;
}

.why-row .img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 100%;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, .1);
}

.why-row .img img {
    aspect-ratio: 1 / 1;
}

.why-row .tt {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 8px;
    text-transform: capitalize;
}

.why-row .count {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 22px;
    height: 22px;
    background: var(--pri);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    font-weight: 700;
}

.why-us-bx {
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    background-color: #f6f6f6;
    padding: 8px;
    text-align: center;
    border-radius: 10px;
}

.why-us-bx:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px;
}

.why-us-bx .img img {
    margin-bottom: 3px;
}

.why-us-bx .why-tt {
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.2;
    font-size: 11px;
}

.step-img {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    background-color: #f6f6f6;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

.step-tx .main-tt {
    font-size: 22px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.step-tx .step-item {
    padding-left: 20px;
    position: relative;
    border-left: 1px dashed var(--text-light);
    padding-bottom: 20px;
}

.step-tx .step-item:last-child {
    padding-bottom: 0;
}

.step-tx .step-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -6px;
    border-radius: 100%;
    height: 10px;
    width: 10px;
    background-color: var(--pri);
}

.step-tx .step-item .tt {
    position: relative;
    top: -5px;
    font-size: 16px;
    color: var(--para-color);
    font-weight: 600;
}

.step-tx .step-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.step-tx .step-item .main-btn {
    color: var(--pri);
    border-color: var(--pri);
    padding: 5px 13px;
    font-size: 13px;
    background-color: #fff;
}

.steps-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.steps-container::before {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    border-top: 1px dashed var(--para-color);
    z-index: -1;
}

.steps-container .step-box {
    text-align: center;
    width: calc(100% / 5);
}

.steps-container .step-box .count {
    width: 45px;
    height: 45px;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .05);
    background-color: #f5f5f5;
    border-radius: 100%;
    align-content: center;
    margin-inline: auto;
    margin-bottom: 10px;
    cursor: pointer;
    color: var(--text-color);

}

.steps-container .step-box.active .count {
    background-color: var(--pri);
    color: white;
}

.steps-container .step-box .tt {
    color: var(--text-color);
    font-size: 14px;
}

.steps-container .step-box.active .tt {
    color: var(--pri);
}

.stepSliderContent {
    height: 200px;
    border-radius: 10px;
    width: calc(100% - 100px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-color: white;
}

.stepSlider .swiper-slide img {
    margin-bottom: 55px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
}


.stepSlider .stepTx {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: calc(100% - 100px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    /* min-height: 100px; */
}

.stepSlider .stepTx .tt {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3px;
}

.stepSlider .stepTx p {
    margin-bottom: 12px;
    font-size: 15px;
}

.stepSlider .stepTx .progress {
    padding: 10px 0;
    align-items: center;
    line-height: 1.7;
    height: auto;
    position: relative;
    overflow: hidden;
}

.stepSlider .stepTx .progress::before {
    content: "20%";
    text-align: end;
    color: white;
    font-weight: 600;
    padding-right: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    background: linear-gradient(270deg, rgba(237, 67, 74, 1) 0%, rgba(237, 67, 74, 0.8) 100%);
    ;
    height: 100%;
}

.stepSlider .stepTx .progress.progress-40::before {
    content: "40%";
    width: 40%;
}

.stepSlider .stepTx .progress.progress-60::before {
    content: "60%";
    width: 60%;
}

.stepSlider .stepTx .progress.progress-80::before {
    content: "80%";
    width: 80%;
}

.stepSlider .stepTx .progress.progress-100::before {
    content: "100%";
    width: 100%;
}

.calculator-bar {
    padding: 8px 12px;
    border-radius: 10px;
    background-color: #f6f6f6;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: 0.3s ease;
}

.calculator-bar:hover {
    transform: translateY(-1px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px;
}

.calculator-bar .img {
    width: 60px;
}

.calculator-bar .tt {
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
}

.calculator-bar:hover .tt {
    color: var(--pri);
}

.calculator-bx {
    background: #fff;
    height: 100%;
    position: relative;
    padding: 20px;
    overflow: hidden;
    transition: 0.4s;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    border: 1px solid #f5f5f5;
}

.calculator-bx:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 6px;
}

.calculator-bx .icon-bx {
    width: 190px;
    margin-bottom: 12px;
    transition: 0.7s;
    overflow: hidden;
}

.calculator-bx .icon-bx img {
    aspect-ratio: 82 / 55;
    object-fit: contain;
}

.calculator-bx .icon2 {
    position: absolute;
    right: 18px;
    top: 20px;
    width: 55px;
    height: 55px;
    pointer-events: none;
    filter: grayscale(1);
    opacity: 0.5;
}

.calculator-bx .tt {
    font-size: 17px;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 1px;
    text-transform: capitalize;
}

.step-page {
    background-color: white;
    box-shadow: 0 2px 8px 0 rgba(39, 31, 38, 0.1);
    border-radius: 10px;
    position: relative;
}

.step-indicator {
    padding-top: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-indicator::before {
    content: "";
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    border-top: 1px dashed #ccc;
    z-index: -1;
}

.step-indicator .st {
    flex: 1;
    text-align: center;
    position: relative;
    padding-top: 30px;
    color: var(--para-color);
    font-size: 15px;
}

.step-indicator .st.done {
    color: #00b95d;
}

.step-indicator .st.active {
    color: var(--text-color);
}

.step-indicator .st::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid var(--para-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100%;
    background-color: white;
}

.step-indicator .st.active::before {
    border: 5px solid var(--para-color);
}

.step-indicator .st.done::before {
    color: white;
    border-color: #090;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23fff" viewBox="0 0 16 16"> <path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/> </svg>') center/1.2em auto no-repeat;
    background-color: #090;
    padding: 0;
}

.stepbox {
    padding: 30px;
    display: none;
}

.stepbox.active {
    display: block;
}

.stepbox-content {
    max-width: 320px;
    margin: 0 auto;
}

.stepbox-content .form-check {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 4px;
    border-radius: 5px;
    color: var(--text-color);
    background-color: #f9f9f9;
    padding-inline: 12px;
    position: relative;
}

.stepbox-content .form-check.active {
    border: 1px solid var(--pri);
    color: var(--pri);
    background-color: #fff;
}

.stepbox-content .form-check.active .drop {
    transform: rotate(180deg);
}

.stepbox-content .form-check .form-check-label {
    display: block;
    padding: 12px 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.2;
}

.stepbox-content .form-check .form-check-label small {
    color: var(--para-color);
    font-size: 13px;
    font-weight: 400;
    display: block;
}

.stepbox-content .form-check .form-check-input {
    margin-block: 15px;
    width: 0.9em;
    height: 0.9em;
    min-width: 0.9em;
}

.stepbox-content .form-check .drop {
    position: absolute;
    right: 10px;
    top: 9px;
}

.sub-options {
    display: none;
}

.bhk-option.active .sub-options {
    display: block;
    margin-top: 2px;
    margin-bottom: 12px;
}

.sub-options .radio-group {
    display: flex;
    gap: 10px;
}

.sub-options .radio-group label {
    border: 1px solid #d4d4d4;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 2px;
    border-radius: 5px;
    background: white;
    color: var(--text-color);
    line-height: 1.3;
    cursor: pointer;
    text-align: center;
}

.sub-options .radio-group small {
    color: var(--text-light);
    display: block;
    font-size: 0.8em;
}

.sub-options .radio-group input[type="radio"]:checked+label {
    border-color: #e53935;
    color: #e53935;
    font-weight: 500;
    background-color: #fef8f9;
}

.sub-options .radio-group .form-check-input {
    display: none;
}

.room-list .room-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 10px 0;
    color: var(--text-color);
    padding: 10px 15px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.room-list .room-name {
    flex-grow: 1;
    text-align: left;
    font-weight: 500;
}

.room-list .counter-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.room-list .counter-controls button {
    background: var(--pri);
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 50%;
    font-weight: 600;
    width: 30px;
    height: 30px;
    cursor: pointer;
    line-height: 1;
}

.room-list .counter-controls span {
    min-width: 20px;
    display: inline-block;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.package {
    background: #f9f9f9;
    border-radius: 8px;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.package.selected {
    border: 2px solid var(--pri);
    color: var(--pri);
    background-color: #fef9f9;
}

.package-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.package-header input[type="radio"] {
    accent-color: var(--pri);
    width: 15px;
    height: 15px;
}

.package-title {
    font-weight: 500;
    color: var(--text-color);
}

.package.selected .package-title {
    color: var(--pri);
}

.package-description {
    color: var(--para-color);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.package img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.package ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--para-color);

}

.package ul li::before {
    content: '✓';
    color: #00a676;
    margin-right: 8px;
}

.kitchen-layout {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 4px;
    cursor: pointer;
    border-radius: 8px;
}

.kitchen-layout {
    text-align: center;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.kitchen-layout.selected {
    border: 1px solid var(--pri);
    color: var(--pri);
    background-color: #fef9f9;
}

.kitchen-layout img {
    padding: 10px;
    background-color: #fff5f2;
}

.kitchen-layout .tt {
    font-size: 14px;
    padding-block: 5px;
}

.kitchen-layout input[type="radio"],
.kitchen-layout input[type="checkbox"] {
    position: absolute;
    top: 5px;
    right: 5px;
}

.field.form-group {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--text-color);
    font-weight: 500;
}

#messurement img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff5f2;
}

.step-footer {
    position: sticky;
    bottom: 0px;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-top: 1px solid #eee;
    border-end-end-radius: 10px;
    border-end-start-radius: 10px;
    overflow: hidden;
    margin-inline: 1px;
    z-index: 2;
}

.step-footer .back,
.step-footer .next {
    border: 0;
    background-color: var(--text-color);
    color: white;
    padding: 7px 20px;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    opacity: 0.93;
}

.step-footer .next {
    background-color: var(--pri);
}

.step-footer .back:hover,
.step-footer .next:hover {
    opacity: 1;
}

.step-footer button:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
}

.step-footer .pagination {
    color: var(--text-color);
}

.vidBx .imgBx {
    position: relative;
}

.vidBx .imgBx img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 1px 5px 0px rgba(0, 0, 0, .15);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0;
    outline: 0;
    transition: 0.3s;
}

.vidBx .imgBx:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.vidBx .tx-bx .tt {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 1px;
    text-transform: capitalize;
    text-align: center;
}

.vidBx:hover .tx-bx .tt {
    color: var(--pri);
}

.vidBx .tx-bx p {
    text-align: center;
}

#sticky-form {
    position: sticky;
    top: 65px;
    color: #fff;
    z-index: 2;
}

.service-bx {
    text-align: center;
}

.service-bx .img {
    max-width: 130px;
    margin: 0 auto 10px;
}

.service-bx .tt {
    color: var(--text-color);
    font-size: 14px;
}

.blog-bx {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    background: #fff;
}

.blog-bx .img-bx {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-bx .img-bx img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease;
}

.blog-bx:hover .img-bx img {
    transform: scale(1.02);
    transform-origin: 50% 50%;
}

.blog-bx .tx-bx {
    padding: 15px 20px;
}

.blog-bx .tx-bx .tt a {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 3px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog-bx .tx-bx .tt:hover a {
    color: var(--pri);
}

.blog-bx .tx-bx p {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.read-mr {
    font-size: 14px;
    color: var(--pri);
    font-weight: 500;
    display: inline-block;
}

.read-mr:hover {
    color: var(--para-color);
}

.mini-blogs,
.qut-bx {
    background-color: #f7f7f7;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    border-radius: 15px;
}

.qut-bx {
    text-align: center;
}

.qut-bx .tt {
    font-size: 25px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
}

.blog-bx.blog-card {
    display: flex;
    height: auto;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    align-items: start;
    gap: 15px;
    margin-bottom: 18px;
}

.mini-blogs .blog-bx.blog-card:last-child {
    margin-bottom: 0;
}

.blog-bx.blog-card .tx-bx {
    padding: 0;
}

.blog-bx.blog-card .tx-bx .tt a {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 3px;
    -webkit-line-clamp: 1;
}

.blog-bx.blog-card .tx-bx p {
    -webkit-line-clamp: 2;
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 0;
}

.blog-bx.blog-card .img-bx img {
    border-radius: 10px;
}

.blog-sec .main-tt {
    padding-left: 20px;
    padding-block: 5px;
    font-weight: 600;
    border-left: 5px solid var(--pri);
    font-size: 25px;
    color: var(--text-color);
    margin-bottom: 25px;
}

.blog-sec .img-bx {
    margin: 15px auto;
    max-width: 700px;
}

.blog-sec .img-bx img {
    width: 100%;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:not(:first-of-type) {
    margin-bottom: 15px;
    background: #f8f8f8;
    border: 0;
    border-radius: 10px;
    padding: 8px 17px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .07);
}

.accordion-button {
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.3px;
    outline: 0 !important;
    color: #333;
    font-size: 18px;
    padding: 5px 0;
}

.accordion-body {
    line-height: 1.5;
    font-size: 16px;
    color: var(--para-color);
    padding: 0;
    padding-bottom: 5px;
}

.accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
    background: transparent;
    border: 0;
    color: var(--pri);
}

.accordion-button:focus {
    box-shadow: none !important;
    border: 0;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ed434a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.img-breadcum {
    background-image: url(../images/about/abt-banner.jpg);
    background-position: bottom center;
    background-size: cover;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.img-breadcum .sub-tt {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 8px;
    background-color: var(--pri);
    border-radius: 20px;
    padding: 5px 15px;
    display: inline-block;
}

.img-breadcum .tt {
    font-weight: 600;
    font-size: 35px;
    line-height: 1.3;
    letter-spacing: normal;
    margin-bottom: 0px;
    color: white;
    text-shadow: 0 2px 3px rgba(65, 48, 62, .3);
}

.img-breadcum p {
    color: white;
    margin-top: 12px;
    font-size: 17px;
    margin-bottom: 0;
}

.img-breadcum.img-breadcum2 {
    text-align: left;
    padding: 60px 0;
}

.img-breadcum::before {
    background: linear-gradient(180deg, rgba(22, 29, 37, 0.2), rgb(22, 29, 37));
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}

.breadcum-sec {
    background-color: #f5f5f5;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, .1);
    padding: 4px 0;
}

.breadcum-sec ul {
    display: flex;
    gap: 0 18px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcum-sec ul li {
    color: var(--para-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: normal;
    padding: 0;
    position: relative;
}

.breadcum-sec ul li a {
    color: var(--pri);
}

.breadcum-sec ul li a::before {
    content: "/";
    position: absolute;
    top: 1px;
    right: -11px;
    font-size: 12px;
}


.abt-img-bx {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}

.abt-img-bx img {
    width: 100%;
}

.abt-tx-bx .content-sec p {
    color: var(--text-color);
}

.tm-testi-slide-1 {
    background: #fff;
    padding: 24px 21px 15px;
    margin: 5px 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
    border-radius: 18px;
    transition: all .3s ease-in-out
}

.tm-testi-logo {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.tm-trustpilot-logo {
    flex: 1
}

.tm-trustpilot-logo img {
    max-width: 91px
}

.tm-star-ratings {
    flex: 1;
    text-align: right;
    font-weight: 600
}

.tm-star-ratings img {
    max-width: 84px;
    margin-left: auto
}

.tm-slide-h4 {
    color: #373737;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    padding-top: 10px
}

.tm-testi-slide-1 p {
    font-weight: 400;
    font-size: 16px;
    padding: 15px 0;
    line-height: 1.5;
    border-bottom: 1px solid #ebeaea;
    color: #707070;
    text-align: left;
    margin: 0;
    min-height: 150px;
}

.tm-slide-h5 {
    color: var(--para-color);
    padding-top: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.tm-slide-h5 span {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: inline-block;
    overflow: hidden;
    margin-right: 7px;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
    font-size: 14px;
    color: #0a58ca;
    margin-top: 5px;
}

.qut-sec {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    background-image: url(../images/bg/bg.jpg);
    background-position: center;
    background-size: cover;
    align-content: center;
    background-attachment: fixed;
}

.qut-sec::before {
    background: linear-gradient(90deg, rgba(22, 29, 37, 1) 0%, rgba(22, 29, 37, 1) 100%);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.3;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}

.qut-banner .tt {
    color: var(--text-color);
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
}

.custom-from-row {
    padding: 30px;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .1);
    background-color: white;
    border-radius: 10px;
}

.custom-from-row p {
    color: var(--para-color);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.custom-from-row .form-control {
    background: #eee;
    border: none;
    border-radius: 5px;
    height: 50px;
    font-size: 16px;
    color: #222;
    font-weight: 400;
    line-height: 34px;
    box-shadow: none !important;
}

.custom-from-row textarea {
    padding: 12px 15px;
}

.custom-from-row .iti--allow-dropdown .iti__flag-container,
.custom-from-row .iti--separate-dial-code .iti__flag-container {
    height: 50px;
}

.custom-from-row .main-btn {
    padding-block: 12px;
}

.cal-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    gap: 10px;
}

.cal-row .cal-bx {
    text-align: center;
    width: calc(100% / 4 - 8px);
}

.cal-row .cal-bx .img {
    max-width: 200px;
    aspect-ratio: 50 / 37;
    align-content: center;
    margin: 0 auto 10px;
}

.cal-row .cal-bx .tx-bx .tt {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: capitalize;
    position: relative;
    align-content: center;
}

.cal-row .cal-bx .tx-bx p {
    color: var(--para-color);
    font-size: 15px;
}

.content-sec {
    padding: 40px 0;
}

.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec .tt,
.cmTitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cmTitle {
    color: var(--pri);
    font-size: 18px;
    margin-bottom: 0;
}

.content-sec h2,
.content-sec h3,
.content-sec .tt {
    font-size: 18px;
}

.content-sec ul {
    padding-left: 18px;
    margin: 0;
    margin-bottom: 20px;
}

.content-sec p {
    margin-bottom: 15px;
}

.content-sec p,
.content-sec ul li {
    font-size: 16px;
    line-height: 1.5;
    color: var(--para-color);
    text-align: justify;
    font-family: var(--font2);
    font-weight: 400;
}

.content-sec ul li {
    margin-bottom: 3px;
}

.content-sec ul li a {
    display: inline;
    color: var(--para-color);
}

ul.footer-menu-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 18px;
    list-style: none;
}

ul.footer-menu-list li a {
    margin-right: 15px;
    display: inline-block;
    line-height: 1.3;
    position: relative;
    color: #eee;
}

ul.footer-menu-list li a:hover {
    color: var(--pri);
}

ul.footer-menu-list li a::before {
    content: '|';
    padding: 0;
    font-size: 13px;
    position: absolute;
    right: -9px;
    top: 1px;
    color: var(--text-light);
}

ul.footer-menu-list li:last-child a::before {
    content: none;
}

.footer-banner {
    position: relative;
}

.footer-banner img {
    width: 100%;
    aspect-ratio: 200 / 39;
}

.footer-banner .tx-bx {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.footer-banner .tx-bx .tt {
    font-size: 27px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 7px;
    line-height: 1.3;
}

.footer-banner .tx-bx .tt span {
    color: var(--pri);
}

.footer-banner .tx-bx p {
    color: #333;
    line-height: 1.7;
}

.footer-banner .tx-bx p a {
    color: var(--pri);
    font-weight: 600;
}

footer {
    background: #212529;
    overflow: hidden;
    padding: 60px 0 30px;
}

footer .search-bx,
footer .search-bx input {
    background-color: white;
    height: 47px;
    border-radius: 30px;
    max-width: 340px;
}

footer .search-bx input::placeholder {
    color: var(--text-light);
}

footer .search-bx button {
    background-color: var(--pri);
    color: white;
    border-radius: 100%;
    width: 37px;
    height: 37px;
    margin-left: 2px;
}

footer .search-bx button:hover {
    color: white;
    background-color: var(--pri);
}

footer .search-bx button svg {
    width: 18px;
    height: 18px;
}

.ft-bx {
    position: relative;
    z-index: 1;
}

.ft-bx .logo {
    max-width: 260px;
}

.ft-bx .con-bx {
    display: flex;
    align-items: start;
    margin-bottom: 10px;
    gap: 10px;
}

.ft-bx .con-bx .ic-bx svg {
    min-width: 17px;
    width: 17px;
    height: 17px;
    color: var(--pri);
}

.ft-bx .con-bx a,
.ft-bx .con-bx p {
    font-family: var(--font);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #eee;
    margin-bottom: 0px;
}

.ft-bx .con-bx a {
    font-weight: 600;
}

.ft-bx .con-bx a:hover {
    color: var(--pri);
}

.ft-bx .ft-tt {
    font-family: var(--font);
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    /* border-bottom: 1px solid; */
    margin-bottom: 12px;
}

.ft-bx p {
    color: #eee;
    line-height: 1.5;
    font-size: 16px;
}

.ft-bx ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.ft-bx ul li a {
    font-weight: 400;
    font-size: 14px;
    color: #eee;
    font-family: var(--font2);
    padding: 4px 0;
    transition: 0.2s;
    display: inline-block;
}

.ft-bx ul li a:hover {
    color: var(--pri);
}

.ft-bx ul.social {
    display: flex;
    gap: 10px;
}

.ft-bx ul.social img {
    height: 33px;
    width: 33px;
    object-fit: contain;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
}

.copyright {
    padding-top: 20px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.copyright p {
    color: #fff;
    margin-bottom: 0;
    font-weight: 400;
}

.copyright p a {
    color: #ccc;
    display: inline;
}

.copyright p a:hover {
    color: var(--pri);
    /* text-decoration: underline; */
}

footer .content-sec h1,
footer .content-sec h2,
footer .content-sec h3,
footer .content-sec .tt {
    color: #fff;
    font-size: 18px;
}

footer .content-sec p,
footer .content-sec ul li {
    color: #eee;
    font-weight: 300;
    font-size: 15px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.modal-header {
    padding: 0;
    padding-inline: 20px;
    padding-top: 18px;
    border-radius: 0;
    border: 0;
    /* border-bottom: 1px solid #e3e3e3; */
}

.modal-content {
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 576px) {
    .modal-sm {
        max-width: 330px;
    }
}

.modal-body {
    padding: 13px 22px 20px;
}

.modal-content .main-tt {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.btn-close {
    float: right;
    box-shadow: none;
}

.btn-close:hover,
.btn-close:focus {
    box-shadow: none;
}

.pop-img {
    aspect-ratio: 2 / 3;
}

.pop-img img {
    aspect-ratio: 2 / 3;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.SumoSelect>.CaptionCont>span.placeholder {
    background-color: transparent;
    color: var(--text-color);
    opacity: 0.8;
    font-style: normal;
}

.SumoSelect {
    display: block;
    width: 100%;
}

.SumoSelect.open .search-txt {
    font-weight: 400;
    border-radius: 5px;
    font-size: 16px;
    padding: 8px 12px;
    color: var(--text-color);
    font-family: var(--font);
    border-color: #e3e3e3;
    height: 43px;
}

.SumoSelect.open>.CaptionCont,
.SumoSelect:focus>.CaptionCont,
.SumoSelect:hover>.CaptionCont {
    box-shadow: none;
    border-color: var(--text-light);
}

.SumoSelect.open>.optWrapper {
    top: 43px;
}

.form-check .form-check-input {
    margin-left: 0;
    margin-right: 7px;
}

.form-check-input:checked {
    background-color: var(--pri);
    border-color: var(--pri);
    box-shadow: none;
}

.form-label {
    font-size: 14px;
    color: var(--text-color);
    font-family: var(--font);
    font-weight: 500;
    margin-bottom: 4px;
}

.form-control,
.form-select,
.SumoSelect>.CaptionCont {
    font-weight: 400;
    border-radius: 5px;
    font-size: 16px;
    padding: 8px 12px;
    color: var(--text-color);
    font-family: var(--font);
    border-color: #e3e3e3;
    height: 45px;
    align-content: center;
}

textarea.form-control {
    min-height: 100px;
    resize: none;
    align-content: start;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--text-light);
    box-shadow: none;
    outline: 0;
}

.form-check-input:focus {
    border-color: transparent;
}

.contact-container {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 3px;
    overflow: hidden;
    padding: 30px 25px;
}

.contact-bx .head-sec {
    margin-bottom: 30px;
}

.contact-bx .head-sec .tt {
    font-size: 20px;
    line-height: 28px;
}

.contact-bx .head-sec .tt::before {
    top: 40px;
}

.contact-bx .con-bx {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.contact-bx .con-bx .ic-bx {
    min-width: 35px;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff4f4;
}

.contact-bx .con-bx .ic-bx svg {
    min-width: 15px;
    width: 15px;
    height: 15px;
    color: var(--pri);
}

.contact-bx .con-bx a,
.contact-bx .con-bx p {
    font-family: var(--font);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    margin-bottom: 0px;
}

.contact-bx .con-bx a {
    font-weight: 600;
}

.contact-bx .con-bx a:hover {
    color: var(--pri);
}

.map-bx {
    width: 100%;
    display: block;
}

.sitemap-sec {
    padding: 60px 0;
}


.sitemap {
    border-left: 1px solid #666;
    padding: 0;
}

.sitemap li {
    list-style: none !important;
    background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
    padding: 0px 0px 0px 15px;
    margin-bottom: 0;
    font-family: var(--font);
    color: var(--text-color);
    font-weight: 500;
}

.sitemap li ul {
    border-left: 1px solid #666;
    padding: 0;
}

.sitemap li a {
    color: #333;
    font-size: 14px;
    padding-bottom: 5px;
    display: inline-block;
}

.sitemap li a:hover {
    color: var(--pri);
}

.market-sec {
    padding: 60px 0;
    font-family: var(--font);
}

.market-sec h1,
.market-sec .main-tt,
.market-sec h2,
.market-sec h3 {
    font-size: 24px;
    color: var(--text-color);
    line-height: 26px;
    margin: 20px 0 15px;
    font-weight: 700;
}

.market-sec h2,
.market-sec h3 {
    font-size: 20px;
    font-weight: 600;
}

.market-sec .market-bx {
    padding: 10px 12px;
    background-color: #E8E8E8;
    color: var(--text-color);
    font-size: 14px;
    transition: 0.2s ease-in-out;
}

.market-sec .market-bx:hover {
    background-color: var(--pri);
    color: white;
}

.iti {
    width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    height: 45px;
}

.g-recaptcha {
    transform: scale(0.8);
    transform-origin: 0 0;
}

.business-enq {
    position: fixed;
    bottom: 32px;
    right: 20px;
    z-index: 999;
    border: 0;
    outline: 0;
    background-color: var(--pri);
    color: white;
    font-size: 14px;
    letter-spacing: 0.2px;
    padding: 5px;
    padding-right: 15px;
    border-radius: 24px;
    transition: 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.business-enq:hover {
    transform: scale(1.03);
}

.business-enq .icon {
    height: 32px;
    width: 32px;
    border-radius: 100%;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    background: #fff;
    color: var(--pri);
}

.business-enq .icon svg {
    height: 18px;
    width: 18px;
}

.whatapp_btn {
    background: #01e675;
    width: 40px;
    height: 40px;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 85px;
    cursor: pointer;
    z-index: 999;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
}

.whatapp_btn svg {
    width: 19px;
    height: 19px;
}

.whatapp_btn:hover {
    transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
    background: #01e675;
    color: #fff;
}

.error {
    font-size: 14px;
    color: red;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: #d5d5d5;
    border-style: solid;
    border-width: 1px;
    padding: 6px 10px;
    font-size: 15px;
}

/* update css */

/* tbody, td, tfoot, th, thead, tr {
    border-color: #d9d9d9;
    border-style: solid;
    border-width: 1px;
    padding: 8px;
}
div#news_response {
    position: absolute;
    font-size: 14px;
    bottom: -33px;
    left: 0px;
    background: #ffffff00;
    padding: 10px 0px;
    width: 295px;
    text-align: center;
}
.head-sec ul {
    padding: 0px;    margin-top: 10px;
}
.head-sec ul li {
    margin-left: 18px;
    margin-bottom: 5px;
    list-style: circle;
    line-height: 24px;
}


.product_listing {
    background: #fff;
    overflow: hidden;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: 0px 3px 5px 0px rgb(210 210 210 / 26%);
    transition: all 0.35s ease-in-out;
border: 1px solid #e3e2e2;
    border-radius: 10px;
}
.product_listing .product {
    width: 100%;
    position: relative;
    padding: 0;
    text-align: center;
    min-height: 200px;
    overflow: hidden;
    border-right: 1px solid #e3e2e2;
}
.product_listing .product .image1 {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: auto;
    aspect-ratio: 1;
    transition: all 0.4s ease-in-out;
}
.product_listing .product .image1 img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}
.right-content h4, .right-content .title4 {
    line-height: 24px;
    padding: 10px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: capitalize;
}
.right-content .title4 a {
    color: #383838;
}
.blue-line1 {
    width: 100%;
    display: block;
    height: 1.1px;
    background: #e3e2e2;
    position: relative;
    margin-bottom: 10px;
    padding: 0 15px;
}
.more_info {
    max-height: 335px;
    overflow-y: auto;
    margin-bottom: 10px;
}
.right-content .title4 a:hover {
  color: var(--pri);
}
a.main-btn.mx-1 {
    background: var(--text-color);transition: all 0.5s ease;
    border: 1px solid var(--text-color);
}
a.main-btn.mx-1:hover {
    background: var(--pri);
    border: 1px solid var(--pri);
} */