
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
    font-family: "Outfit", sans-serif;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}
body {overflow-x: hidden !important;}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #a134b3;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #171819;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #F5F6F7;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.leap-frog {
    --uib-size: 80px;
    --uib-speed: 2s;
    --uib-color: rgb(0, 194, 255);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--uib-size);
    height: var(--uib-size);
}
.leap-frog__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}
.leap-frog__dot::before {
    content: '';
    display: block;
    height: calc(var(--uib-size) * 0.22);
    width: calc(var(--uib-size) * 0.22);
    border-radius: 50%;
    background-color: var(--uib-color);
    will-change: transform;
}
.leap-frog__dot:nth-child(1) {
    animation: leapFrog var(--uib-speed) ease infinite;
}
.leap-frog__dot:nth-child(2) {
    transform: translateX(calc(var(--uib-size) * 0.4));
    animation: leapFrog var(--uib-speed) ease calc(var(--uib-speed) / -1.5) infinite;
}
.leap-frog__dot:nth-child(3) {
    transform: translateX(calc(var(--uib-size) * 0.8)) rotate(0deg);
    animation: leapFrog var(--uib-speed) ease calc(var(--uib-speed) / -3) infinite;
}
@keyframes leapFrog {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    33.333% {
        transform: translateX(0) rotate(180deg);
    }
    66.666% {
        transform: translateX(calc(var(--uib-size) * -0.4)) rotate(180deg);
    }
    99.999% {
        transform: translateX(calc(var(--uib-size) * -0.8)) rotate(180deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
    }
}
/*-----------------------[ 3.Whole Page scroll Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}
.fade_up {
    transform: translateY(-100%);
}
.fade_down {
    transform: translateY(100%);
}
.zoom_in {
    transform: scale(0.5);
}
.zoom_out {
    transform: scale(1.5);
}
.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}
.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}
.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}
.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}
.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}
.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}
.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/*-----------------------[ 4.Button CSS ]------------------------*/
.btn-quote {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    background: #ff8900;
    border-radius: 30px;
    /* padding: 18px 30px; */
    padding: 8px 19px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}
.btn-quote::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #000;
    z-index: -1;
    transition: inherit;
    transition: all 0.3s ease;
}
.btn-quote:hover::after {
    height: 100%;
    top: auto;
    bottom: 0;
}
/*-----------------------[ 5.Main Header CSS ]------------------------*/
.header {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 999;
    margin: 0 auto;
    width: calc(100% - 60px);
    padding: 10px 20px;
    background-color: #FFF;
    border-radius: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 320px;
}
.logo img {width: 100%;}
.mobile-logo {
    display: none;
}
.dsad {
    display: none;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    width: 100%;
}
.menu {
    list-style: none;
    display: flex;
    gap: 60px;
}
.menu li {
    position: relative;
}
.menu li span {
    width: 8px;
    height: 8px;
    background: #a134b3;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: -35px;
}
.menu li a {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.menu li:hover>a {
    color: #a134b3;
}
.menu>li>a.active {
    color: #a134b3;
}
.submenu li a.active {
    color: #a134b3 !important;
}
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 10px 0;
    border-radius: 0 0 15px 15px;
    border-top: 2px solid #a134b3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 210px;
}
.submenu li a {
    font-size: 16px;
}
.dropdown:hover .submenu {
    display: block;
}
.submenu li {
    padding: 8px 20px;
}
.submenu li a:hover {
    color: #a134b3;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 5px;
}
.call {
    display: flex;
    align-items: center;
    background: #ff8900;
    color: #FFF;
    padding: 6px 30px 6px 6px;
    border-radius: 40px;
    gap: 10px;
}
.call .headphone-main {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call .headphone-main img {width: 24px;}
.need-help-main p {
    color: var(--5, #FFF);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.need-help-main a {
    color: var(--5, #FFF);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}
/* Hamburger */
.hamburger {
    display: none;
}
.hamburger .close-icon {
    display: none;
}
.nav.open~.header-container .hamburger .menu-icon {
    display: none;
}
.nav.open~.header-container .hamburger .close-icon {
    display: inline;
}
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: 0.3s ease;
}
.overlay.active {
    display: block;
    opacity: 1;
}
/*-----------------------[ 6.1.Hero Section Slider CSS ]------------------------*/
.hero-slider {
    width: 100%;
    height: 955px;
}
.main-swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 100%);
    backdrop-filter: blur(4px);
    z-index: 1;
}
#hero-slider-img1 {
    background-image: url('../images/home/main-slider-img1.jpg');
}
#hero-slider-img2 {
    background-image: url('../images/home/main-slider-img2.jpg');
}
#hero-slider-img3 {
    background-image: url('../images/home/main-slider-img3.jpg');
}
.clearfix-space {
    margin-top: 100px;
}
.slide-content {
    position: absolute;
    z-index: 2;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.needs-text {
    color: var(--5, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.lets-us-do {
    color: var(--5, #FFF);
    font-size: 54px;
    font-weight: 700;
    line-height: 62px;
}
.residents {
    color: var(--5, #FFF);
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    margin-top: 20px;
    padding-left: 20px;
    margin-bottom: 60px;
    border-left: 10px solid #ff8900;
}
.home-img-clening {
    position: absolute;
    top: 72px;
}
.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cutomer-img-main-text {
    display: flex;
    align-items: center;
    gap: 120px;
    border-radius: 40px;
    background: linear-gradient(90deg, rgba(0, 194, 255, 0.30) 0%, rgba(0, 194, 255, 0.15) 100%);
    backdrop-filter: blur(6px);
    padding: 8px 30px 8px 8px;
    position: absolute;
    bottom: -200px;
    left: -100px;
}
.cutomer-img-main {
    position: relative;
}
.cutomer-img-main img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.cutomers-text-main h2 {
    color: var(--5, #FFF);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.cutomers-text-main p::before {
    content: url(../images/svg/white-star.svg);
}
.cutomers-text-main p {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cutome2 {
    position: absolute;
    left: 50px;
    top: 0;
}
.cutome3 {
    position: absolute;
    left: 100px;
    top: 0;
}
.animate-slide {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.swiper-slide-active .animate-slide {
    opacity: 1;
    transform: translateY(0);
}
/*-----------------------[ 6.2.Hero Section Solid CSS ]------------------------*/
.main-swiper-solid-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #003A4C;
    backdrop-filter: blur(4px);
    z-index: 1;
}
.bubble_area {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}
.bubble_area div[class^=bubbles-] {
    height: 1px;
    width: 1px;
    position: absolute;
    background: url(../images/home/bubble_1.png) no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}
.bubbles-1 {
    bottom: -5px;
    left: 68%;
    -webkit-animation: animate 10s infinite ease-in -6.57s;
    animation: animate 10s infinite ease-in -6.57s;
}
.bubbles-2 {
    bottom: -71px;
    left: 97%;
    -webkit-animation: animate 10s infinite ease-in -5.07s;
    animation: animate 10s infinite ease-in -5.07s;
}
.bubbles-3 {
    bottom: -71px;
    left: 43%;
    -webkit-animation: animate 10s infinite ease-in -6.73s;
    animation: animate 10s infinite ease-in -6.73s;
}
.bubbles-4 {
    bottom: -30px;
    left: 82%;
    -webkit-animation: animate 10s infinite ease-in -4.04s;
    animation: animate 10s infinite ease-in -4.04s;
}
.bubbles-5 {
    bottom: -73.4px;
    left: 29%;
    -webkit-animation: animate 10s infinite ease-in -3.11s;
    animation: animate 10s infinite ease-in -3.11s;
}
.bubbles-6 {
    bottom: -71px;
    left: 41%;
    -webkit-animation: animate 10s infinite ease-in -5.95s;
    animation: animate 10s infinite ease-in -5.95s;
}
.bubbles-7 {
    bottom: -79.4px;
    left: 14%;
    -webkit-animation: animate 10s infinite ease-in -3.68s;
    animation: animate 10s infinite ease-in -3.68s;
}
.bubbles-8 {
    bottom: -115.4px;
    left: 90%;
    -webkit-animation: animate 10s infinite ease-in -3.89s;
    animation: animate 10s infinite ease-in -3.89s;
}
.bubbles-9 {
    bottom: -44.6px;
    left: 33%;
    -webkit-animation: animate 10s infinite ease-in -1.09s;
    animation: animate 10s infinite ease-in -1.09s;
}
.bubbles-10 {
    bottom: -30px;
    left: 59%;
    -webkit-animation: animate 7s infinite ease-in -.96s;
    animation: animate 7s infinite ease-in -.96s;
}
@keyframes animate {
    0% {
        transform: translate3d(-80%, 0, 0) rotate(70deg);
        width: 35px;
        height: 35px;
    }
    100% {
        transform: translate3d(-80%, -800px, 0) rotate(360deg);
        width: 75px;
        height: 75px;
    }
}
/*-----------------------[ 6.3.Hero Section Video CSS ]------------------------*/
.main-swiper-video-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 1;
}
.video-swiper-row {
    justify-content: center;
    text-align: center;
}
.video-swiper-row .residents {
    padding-left: 0;
    border: none;
}
.video-swiper-row .cutomer-img-main-text {
    position: unset;
    width: fit-content;
    margin: 30px auto 0 auto;
}
/*-----------------------[ 7.Section Two CSS ]------------------------*/
.section-two {
    padding: 100px 0;
}
.cap-text {
    color: #902ac6;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.sec-text {
    color: var(--3, #000);
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
    padding-bottom: 30px;
}
.sec-sub-text {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.about-grid-box-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #F5F6F7;
}
.about-box-main {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.about-svg-main {
    width: 100%;
    max-width: 64px;
    height: 64px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.about-box-main:hover .about-svg-main {
    background: #a134b3;
}
.about-svg-main img {
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}
.about-box-main:hover .about-svg-main img {
    transform: rotateY(180deg);
}
.expeStaff {
    color: var(--3, #000);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    padding-bottom: 10px;
}
.fessional {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.about-sec-main {
    display: flex;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
}
.about-sec-main .call {
    background: transparent;
    border: 2px solid #a335b3;
}
.about-sec-main .call .headphone-main {
    background: #992fbc;
}
.about-sec-main .call .headphone-main img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(0%) hue-rotate(85deg) brightness(112%) contrast(101%);
}
.about-sec-main .call .need-help-main p,
.about-sec-main .call .need-help-main a {
    color: #000;
}
.about-sec-main .call .need-help-main a:hover {
    color: #a134b3;
}
.sub-img-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
.subtract-img {
    max-width: 100%;
    position: absolute;
}
.about-img1 {
    max-width: 100%;
}
.about-img2 {
    position: absolute;
    top: -60px;
    left: 130px;
    border-radius: 50%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.20);
    animation: mover 2s infinite alternate;
}
.about-img3 {
    position: absolute;
    bottom: -150px;
    right: 100px;
    border-radius: 50%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.20);
    animation: mover 2s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}
/*-----------------------[ 8.Section Three CSS ]------------------------*/
.section-three {
    background-image: url('../images/home/tutor-back.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    overflow: hidden;
}
.section-main-text-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.section-main-text-flex .ornare {
    max-width: 630px;
}
.services-slider {
    margin-right: -470px;
    margin-top: 50px;
}
.cleaning-card {
    background: #FFF;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
}
.cleaning-card-img-main {
    overflow: hidden;
    height: 220px;
}
.cleaning-card-img-main img {
    width: 100%;
    border-radius: 20px 20px 0 0;
    transition: transform 0.7s ease;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.cleaning-card:hover .cleaning-card-img-main img {
    transform: scale(1.1);
}
.services-svg-main {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    margin-top: -65px;
    position: relative;
    animation: animate-pulse 3s linear infinite;
}
.locate {margin-top: 50px;}
.specifyService {margin-top: 50px;}

@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    40% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.0), 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    80% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.0), 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.0), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}
.services-svg-main img {
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}
.cleaning-card:hover .services-svg-main img {
    transform: rotateY(180deg);
}
.card-containe {
    padding: 20px 20px 25px 20px;
    flex-grow: 1;
}
.services-name {
    color: var(--3, #000);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 10px;
}
.services-card-sub-text {
    color: var(--4, #222);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}
.card-learn-more {
    position: relative;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    color: #992fbc;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #992fbc;
    width: 170px;
    border-radius: 26px;
    margin: 0 auto 26px;
    background: #f6ebff;
}
.cleaning-card:hover .card-learn-more {
    color: #FFF;
    border-radius: 26px;
}
.cleaning-card:hover .card-learn-more::after {
    top: auto;
    height: 100%;
    bottom: 0;
}
.card-learn-more::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #992fbc;
    z-index: -1;
    transition: inherit;
}
.card-learn-more img {
    filter: brightness(9) saturate(73%) invert(12%) sepia(10%) saturate(2%) hue-rotate(14deg) brightness(73%) contrast(15%);
    rotate: 42deg;
}
.cleaning-card:hover .card-learn-more img {
    filter: none;
}
/*-----------------------[ 9.Section Four CSS ]------------------------*/
.section-four {
    padding: 100px 0;
}
.check-box-main-sub {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}
.check-box-main-sub h2 {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 5px;
}
.check-box-main-sub p {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.sec-video2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.video2 {
    width: 360px;
    height: 100%;
    object-fit: cover;
    border-radius: 180px;
}
.sadas {
    width: 420px;
    height: 100%;
    border: 2px solid #ff8900;
    border-radius: 230px;
    position: absolute;
    left: 73px;
    top: 10px;
    z-index: -1;
}
.why-choose-img3 {
    position: absolute;
    right: 0;
    bottom: 50px;
    border-radius: 50%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.20);
    animation: mover 1s infinite alternate;
}
/*-----------------------[ 10.Section Five CSS ]------------------------*/
.section-five {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.80) 100%), url('../images/home/calculator-sec-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}
.cost-cal {
    text-align: center;
}
.fami-cal {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    color: #FFFFFF;
}
.calculator-box-main {
    background: #FFF;
    padding: 60px;
    border-radius: 20px;
    position: relative;
    margin-top: 100px;
    margin-bottom: -200px;
}
.calcult-from-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.input-label-text {
    color: var(--3, #7800cf);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    padding-bottom: 5px;
}
.calcult-from-grid input,
.your-message-input input, .contac-form-main textarea, .calcult-from-grid textarea {
    border-radius: 10px;
    border: 2px solid var(--12, #F5F6F7);
    background: var(--5, #FFF);
    padding: 12px 15px;
    width: 100%;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.calcult-from-grid textarea { height: 70px;}
.calcult-from-grid input:focus,
.your-message-input input:focus, .calcult-from-grid textarea:focus {
    outline: 2px solid #a134b3;
}
.input-main {
    border-radius: 10px;
    border: 2px solid var(--12, #F5F6F7);
    background: var(--5, #FFF);
    padding: 12px 15px;
    width: 100%;
    cursor: pointer;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.formDropDown {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.formDropDown-ul-list {
    display: none;
    margin-top: -1px;
    background: #FFFFFF;
    padding-left: 0;
    position: absolute;
    top: 15px;
    width: 100%;
    z-index: 5;
    border: 1px solid #a134b3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.formDropDown-ul-list a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.formDropDown-ul-list li {
    padding: 10px 12px;
}
.formDropDown-ul-list li:hover {
    background: #a134b3;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.formDropDown-ul-list li:hover a {
    color: #FFF;
}
.arrow-icon-form {
    transition: transform 0.3s ease-in-out;
}
.arrow-icon-form.up {
    transform: rotate(180deg);
}
.get-cost-estimate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.send-info {
    max-width: 300px;
}
/*-----------------------[ 11.Section Six CSS ]------------------------*/
.section-six {
    background: var(--12, #F5F6F7);
    padding: 200px 0 100px;
}
.how-to-work-bg {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: color-burn;
}
.mazing {
    max-width: 630px;
    color: #000;
    margin: 0 auto;
    text-align: center;
}
.scetur {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}
.how-work-step-box {
    display: grid;
    grid-template-columns: 300px auto 300px auto 300px;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}
.how-work-step-box .how-work-step-box-sub {
    text-align: center;
}
.how-to-work-circle {
    text-align: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.how-to-work-circle::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #b160cc;
    z-index: -1;
    transition: inherit;
    transition: all 0.3s ease;
}
.how-work-step-box-sub:hover .how-to-work-circle::after {
    height: 100%;
    top: auto;
    bottom: 0;
}
.how-to-work-circle img {
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    max-width: 60px;
}
.how-work-step-box-sub:hover .how-to-work-circle img {
    transform: rotateY(180deg);
    filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(0%) hue-rotate(85deg) brightness(112%) contrast(101%);
}
.how-work-step-box .how-work-step-box-sub h3 {
    color: var(--3, #000);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 10px;
}
/*-----------------------[ 12.Section Seven CSS ]------------------------*/
.section-seven {
    padding: 100px 0;
}
.projectSlider {
    margin-top: 60px;
}
.single-img {
    position: relative;
}
.home-project-img {
    width: 100%;
}
.img-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgb(150 45 192 / 72%);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .6s ease;
    padding: 50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.single-img:hover .img-overlay {
    bottom: 0;
    height: 100%;
}
.img-overlay h3 {
    color: var(--5, #FFF);
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 10px;
}
.img-overlay p {
    color: var(--5, #FFF);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.view-project-btn {
    background: #FFFFFF;
    color: #902ac6;
}
.view-project-btn:hover {
    color: #FFF !important;
}
.view-project-btn img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(81%) saturate(2814%) hue-rotate(162deg) brightness(106%) contrast(105%);
}
.view-project-btn:hover.view-project-btn img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(0%) hue-rotate(85deg) brightness(112%) contrast(101%) !important;
}
.project-button-next,
.project-button-prev {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 100%);
    backdrop-filter: blur(4px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.project-button-next:hover,
.project-button-prev:hover {
    background: #a134b3;
}
.project-button-next.swiper-button-next,
.project-button-prev.swiper-button-prev {
    color: #FFFFFF;
}
.project-button-next.swiper-button-next:after,
.project-button-prev.swiper-button-prev:after {
    font-size: 20px;
}
/*-----------------------[ 13.Section Eight CSS ]------------------------*/
.section-eight {
    padding: 100px 0;
}
.team-circle-main {
    border: 2px solid #a134b3;
    padding: 20px;
    border-radius: 50%;
    position: relative;
    max-width: 300px;
    height: 300px;
    width: 100%;
    margin: 0 auto;
}
.inner-team-circle {
    width: 100%;
    max-width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--12, #F5F6F7);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.team-circle-link:hover .inner-team-circle {
    background: #000;
}
.share-icon-main {
    width: 100%;
    max-width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #a134b3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 7px;
    bottom: 23px;
    cursor: pointer;
    z-index: 2;
}
.team-circle-link h3 {
    color: var(--3, #000);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.team-circle-link:hover h3 {
    color: #a134b3;
}
.team-circle-link p {
    color: var(--4, #222);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.team-circle-link:hover .social-icons li {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.social-icons {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 3px;
}
.social-icons li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a134b3;
    border: 2px solid transparent;
    border-radius: 50%;
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}
.social-icons li:hover {
    background: #FFF;
    border: 2px solid #a134b3;
}
.social-icons li:hover img {
    filter: brightness(0) saturate(100%) invert(80%) sepia(39%) saturate(7500%) hue-rotate(155deg) brightness(99%) contrast(105%);
}
.share-icon-main:hover .social-icons {
    pointer-events: auto;
}
.share-icon-main:hover .social-icons li {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons li img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.social-icons li:nth-child(1) {
    transition-delay: 0s;
}
.social-icons li:nth-child(2) {
    transition-delay: 0.1s;
}
.social-icons li:nth-child(3) {
    transition-delay: 0.2s;
}
.social-icons li:nth-child(4) {
    transition-delay: 0.3s;
}
.exper-team-row-home {
    margin-top: 60px;
    gap: 50px 0;
}
/*-----------------------[ 14.Section Nine CSS ]------------------------*/
.testimonial-section-main {
    display: flex;
    align-items: stretch;
}
.man-cleaning-home {
    max-width: 50%;
    object-fit: cover;
}
.testimonials-col-main {
    background: var(--12, #F5F6F7);
    padding: 100px;
    width: 100%;
    overflow: hidden;
}
.tryse {
    max-width: 630px;
}
.testimonialSlider {
    max-width: 640px;
    margin-left: 0;
    margin-top: 60px;
    border-radius: 20px;
}
.testimonialSlider-swiper-slide {
    background: var(--5, #FFF);
    padding: 60px;
}
.cellent {
    color: var(--4, #222);
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    padding-top: 10px;
    padding-bottom: 40px;
}
.client-details-main {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-details h3 {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 5px;
}
.client-details p {
    color: var(--8, #A8A9AD);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.testimonial-client-img1 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.testimonial-next,
.testimonial-prev {
    width: 48px;
    height: 48px;
    border: 2px solid #F5F6F7;
    border-radius: 50%;
    background: #FFF;
}
.testimonial-next.swiper-button-next {
    position: absolute;
    right: 10px;
    top: 85%;
}
.testimonial-prev.swiper-button-prev {
    position: absolute;
    right: 10px;
    left: auto;
    top: 70%;
}
.testimonial-next.swiper-button-next,
.testimonial-prev.swiper-button-prev {
    color: #000000;
}
.testimonial-next.swiper-button-next:after,
.testimonial-prev.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 600;
}
/*-----------------------[ 15.Section Blog CSS ]------------------------*/
.blog-section {
    padding: 100px 0;
}
.home-blog-row {
    margin-top: 60px;
}
.blog-img-main {
    position: relative;
    overflow: hidden;
}
.blog-box-main {
    border-radius: 20px;
    border: 2px solid var(--12, #F5F6F7);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-box-main:hover {
    border-color: #bf36eb;
    box-shadow: 0 15px 30px rgba(74, 108, 247, 0.1);
}
.blog-box-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    transition: all 0.6s ease;
}
.blog-box-main:hover::after {
    left: 100%;
}
.blog-img {
    width: 100%;
    border-radius: 20px 20px 20px 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-box-main:hover .blog-img {
    transform: scale(1.05);
    border-radius: 20px 20px 0 0;
}
.blog-date {
    color: var(--4, #222);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 20px;
    background: #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 30px;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}
.blog-box-main:hover .blog-date {
    color: #902ac7;
}
.blog-date::before,
.blog-date::after {
    content: "";
    position: absolute;
    background-color: transparent;
    height: 60px;
    width: 30px;
    box-shadow: 0 20px 0 0 #fff;
    transition: all 0.4s ease;
}
.blog-date::before {
    bottom: 0px;
    left: -30px;
    height: 60px;
    width: 30px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.blog-date::after {
    content: "";
    bottom: 0px;
    right: -30px;
    height: 60px;
    width: 30px;
    border-bottom-left-radius: 20px;
    transition: all 0.4s ease;
}
.blog-containe-main {
    padding: 30px;
}
.blog-containe-main h2 {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    transition: color 0.3s ease;
}
.blog-box-main:hover .blog-containe-main h2 {
    color: #932cc4;
}
.blog-containe-main p {
    overflow: hidden;
    color: var(--4, #222);
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.expand-img-main {
    overflow: hidden;
}
.expand-img {
    width: 100%;
}
/*-----------------------[ 16.Section Contact Form CSS ]------------------------*/
.contact-form-section {
    padding: 0 0 100px;
}
.adres-main-home {
    display: flex;
    align-items: center;
    gap: 60px;
}
.call-support-text {
    color: #8c27cb;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 8px;
    margin-top: 30px;
}
.tel-num {
    color: var(--3, #000);
    font-size: 36px;
    font-weight: 400;
    line-height: 48px;
    transition: all 0.3s ease-in-out;
}
.tel-num:hover {
    color: #a134b3;
}
.contac-form-main {
    border-radius: 20px;
    background: #efefef;
    padding: 30px;
}
.addees {
    font-size: 22px;
    line-height: 34px;
}
.contac-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.contac-form .input-label-text {
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 8px;
    margin-left: 3px;
}
.your-message-input {
    margin-top: 30px;
}
.send-main-btn {
    justify-content: left;
    margin-top: 30px;
}
/*-----------------------[ 17.Footer CSS ]------------------------*/
.subscribe-section {
    background: #000;
    border-radius: 20px;
    padding: 60px;
    margin-top: 0;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.updat {
    font-weight: 500;
    color: #FFFFFF;
    padding-bottom: 0;
    max-width: 570px;
}
.subscribe-input-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    padding: 10px 10px 10px 40px;
    width: 100%;
    max-width: 570px;
    border-radius: 42px;
}
.subscribe-input-main input {
    width: 55%;
    outline: none;
    border: none;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.working-hours {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 20px;
}
.timing-hrw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #F5F6F7;
}
.timing-hrw p {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.footer-row-quick {
    justify-content: space-between;
}
.quicklinks-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.quicklinks-main ul li a {
    color: var(--4, #222);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    transition: all 0.4s ease-in-out;
}
.quicklinks-main ul li a:hover {
    color: #902ac7;
}
.footer-img-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.footer-img-group .footer-imgs {
    width: 100%;
}
.img-container {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: block;
}
.footer-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.57);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-instagram {
    width: 40px;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.img-container:hover .footer-img-overlay {
    opacity: 1;
}
.img-container:hover .brand-instagram {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}
.media-logo-call-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 30px;
    background: var(--3, #000);
    margin-top: 60px;
    margin-bottom: 40px;
}
.media-logo-call-footer .call-detl {
    border-radius: 50px;
    background: #a134b3;
    padding: 10px 50px 10px 10px;
}
.media-logo-call-footer .call-detl .img-main-call {
    background: var(--13, #000);
}
.media-logo-call-footer .call-detl a {
    color: #FFFFFF;
}
.footer-med-icons-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-med-icons {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.footer-med-icons:hover {
    background: #f8832b;
}
.footer-med-icons img {
    width: 32px;
}
.copyrights-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 40px;
}
.copyrights-main p,
.copyrights-main a {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
.copyrights-main a:hover {
    color: #ce1deb;
}
.call-detl {
    display: flex;
    align-items: center;
    gap: 20px;
}
.call-detl .img-main-call {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #a134b3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-detl p {
    color: var(--5, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding-bottom: 4px;
}
.call-detl a {
    color: #FFF;
    font-size: 27px;
    font-weight: 500;
    line-height: 28px;
    transition: all 0.3s ease-in-out;
}
/*-----------------------[ 18.Bottom To Top Button CSS ]------------------------*/
button.bottom-top-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    color: #FFF;
    font-size: 30px;
    background: #b4409e;
}
/*-----------------------[ 19.About Page CSS ]------------------------*/
.heroSection {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 27.86%, rgba(0, 0, 0, 0.00) 100%), url(../images/about/header-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 220px 0 100px;
}
.img-header-text {
    color: #FFF;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
}
.breadcrumb-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}
.breadcrumb-group a {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
}
.about-section-three {
    padding: 100px 0;
}
/*-----------------------[ 20.Team Details Page CSS ]------------------------*/
.team-single-box {
    background: #FFF;
    border-radius: 25px;
    border: 2px solid #F5F6F7;
    position: sticky;
    top: 150px;
    margin-bottom: 30px;
}
.rich {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 8px;
}
.clane {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.single-team-main {
    border-radius: 20px;
    background: #F5F6F7;
}
.single-team {
    width: 100%;
}
.team-contact-1 {
    padding: 30px;
}
.team-meta {
    margin-top: 30px;
}
.team-meta li {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.team-meta li img {
    width: 25px;
}
.team-meta li span {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #a134b3;
}
.team-meta li a,
.team-meta li p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
    transition: all .35s ease-in-out;
}
.team-meta li a:hover {
    color: #a134b3;
}
.single-team-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.single-team-social a {
    background: #FFF;
    border: 2px solid #FFF;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
    border-radius: 100%;
    width: 100%;
    max-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease-in-out;
}
.single-team-social a img {
    width: 25px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(94%) saturate(3410%) hue-rotate(159deg) brightness(104%) contrast(104%);
}
.single-team-social a:hover {
    background: #a134b3;
}
.single-team-social a:hover img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(0%) hue-rotate(318deg) brightness(100%) contrast(105%);
}
.personal-main h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 20px;
    color: #000;
}
.personal-main p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 400;
    text-align: justify;
}
.contact-form-1 {
    box-shadow: rgba(183, 183, 183, 0.2) 0px 8px 24px;
}
/* ------------- Progress Bar ----------- */
#first-sec {
    margin-bottom: 30px;
}
.progress-bar {
    margin: 20px 0 10px;
    overflow: hidden;
    text-align: start;
}
.progress-title-holder {
    padding-bottom: 7px;
    position: relative;
}
.progress-title {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.progress-number-wrapper,
.progress-number-mark {
    color: #a134b3;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.progress-number-mark {
    margin-bottom: 4px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.progress-content-outter {
    height: 8px;
    border-radius: 10px;
    background-color: rgba(168, 169, 173, 0.2);
}
.progress-content {
    height: 8px;
    border-radius: 10px;
    background-color: #a134b3;
    width: 0%;
}
/*-----------------------[ 21.Pricing Plan Page CSS ]------------------------*/
.pricing-row {
    margin-top: 60px;
    padding: 0 180px;
}
.pricing-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.pricing-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 50px 30px 30px;
    text-align: center;
    transition: 0.3s ease;
}
.pricing-card.enterprise {
    background-color: #a134b3;
    color: #fff;
}
.pricing-card h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}
.price-box {
    background: transparent;
    border-radius: 12px;
    padding: 1px 15px 15px;
    display: inline-flex;
    margin-bottom: 20px;
    align-items: center;
}
.price {
    font-size: 40px;
    font-weight: 700;
    color: #a134b3;
}
.splPrice {
    font-size: 25px;
    margin-right: 15px;
    color: #ff8100;
}
.enterprise .price {
    color: #fff;
}
.month {
    font-size: 18px;
    font-weight: 500;
    margin-left: 5px;
    color: #222;
}
.enterprise .month {
    color: #fff;
}
.features {
    list-style: none;
    margin-bottom: 25px;
}
.features li {
    text-align: left;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #999;
}
.enterprise .features li {
    color: #cce4ff;
}
.features li.active {
    color: #000;
}
.enterprise .features li.active {
    color: #fff;
}
.features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #a134b3;
    font-size: 16px;
}
.enterprise .features li::before {
    color: #FFF;
}
.features li:not(.active)::before {
    color: #ccc;
}
.getStarted-btn {
    width: 100%;
}
/*-----------------------[ 22.Our Client Page CSS ]------------------------*/
.clients-main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 54px;
    margin-top: 60px;
}
.clients-main img {
    max-width: 100%;
}
.testimonial-page {
    background: #F5F6F7;
}
.testimonial-page .testimonialSlider-swiper-slide {
    border-radius: 20px;
}
.testimonial-page .testimonialSlider-swiper-slide {
    padding: 30px;
}
.testimonial-page .cellent {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding-top: 10px;
    padding-bottom: 30px;
}
.testimonial-page-row {
    gap: 30px 0;
}
/*-----------------------[ 23.FAQ Page CSS ]------------------------*/
.pulm-multi-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pulm-multi {
    max-width: 100%;
}
#accordionExample {
    margin-top: 40px;
}
.accordion-item {
    background: transparent;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.accordion-item:first-of-type {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.accordion-button:focus {
    box-shadow: none;
}
#accordionExample .accordion-button {
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    background: #F5F6F7;
    margin-bottom: 15px;
}
.accordion-button:not(.collapsed) {
    color: #a134b3;
    background-color: rgba(0, 194, 255, 0.1) !important;
}
#accordionExample.accordion {
    --bs-accordion-border-color: none;
}
#accordionExample .accordion-body {
    padding: 0 0 20px 0;
    color: var(--4, #000);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.accordion-button::after {
    background-image: url('../images/svg/dropdown-arrow.svg');
    --bs-accordion-btn-icon-width: 2rem;
    filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(4323%) hue-rotate(216deg) brightness(97%) contrast(101%);
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/dropdown-arrow.svg');
    filter: brightness(0) saturate(100%) invert(60%) sepia(94%) saturate(2460%) hue-rotate(157deg) brightness(100%) contrast(107%);
}
/*-----------------------[ 24.404 Error Page CSS ]------------------------*/
.error-img {
    max-width: 100%;
}
.error-img-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
}
/*-----------------------[ 25.Services Page CSS ]------------------------*/
.services-page-row {
    gap: 40px 0;
}
.layers-img1 {
    width: 100%;
    /* margin: 30px 0; */
}
.fusce {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.ourServicesPrcoes {
    color: #222;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    padding-top: 30px;
    padding-bottom: 15px;
}
.singleServicesSlider {
    margin-top: 30px;
}
.singleServicesSlider img {
    width: 100%;
}
.all-service-text {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    color: #FFF;
    text-align: center;
    padding: 30px;
    background: #000000;
}
.roofing-services-list-main {
    padding: 30px;
    background: #F5F6F7;
    border: 2px solid #FFF;
}
.service-list-arow-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
    margin-bottom: 15px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.service-list-arow-main::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #000;
    z-index: -1;
    transition: inherit;
    transition: all 0.3s ease;
}
.service-list-arow-main:hover::after {
    height: 100%;
    top: auto;
    left: 0;
}
.service-list-arow-main p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.service-list-arow-main img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(2406%) hue-rotate(189deg) brightness(98%) contrast(101%);
}
.service-list-arow-main:hover,
.service-list-arow-main.active {
    background: #a134b3;
}
.service-list-arow-main:hover p,
.service-list-arow-main.active p {
    color: #FFF;
}
.service-list-arow-main:hover img,
.service-list-arow-main.active img {
    filter: none;
}
.card-adds-main {
    margin: 40px 0;
}
.adds-img-home {
    border-radius: 20px 20px 0 0;
}
.shape-img {
    width: 100%;
    margin-top: -130px;
}
.adds-details-main {
    background: #FFF;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: rgba(183, 183, 183, 0.2) 0px 8px 24px;
    border-radius: 30px;
}
.adds-details-main h3 {
    font-size: 35px;
    line-height: 45px;
    color: #000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}
.documents-box {
    background: #F5F6F7;
    padding: 15px;
    margin-top: 40px;
}
.brochure-main {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    margin-bottom: 20px;
}
.brochure {
    width: 60px;
    height: 60px;
    background: #a134b3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brochure-main h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
/*-----------------------[ 26.Project Page CSS ]------------------------*/
.projectSlider2 {
    margin-top: 100px;
}
.project-two-row {
    gap: 40px 0;
}
.project-box-main-img {
    position: relative;
    display: block;
    overflow: hidden;
}
.project-box-main-img img {
    transform: scale(1.0);
    transition-duration: 0.7s;
}
.project-box-main-img:hover img {
    transform: scale(1.05) rotate(1deg);
}
.project-box-main-img:hover .project-two-img-ovelry {
    opacity: 0.80;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}
.project-two-img-ovelry {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 194, 255, 0.85);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}
.project-box-main-img:hover .overlay-title {
    transform: scaleY(1.0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.overlay-title {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0 30px 30px;
    padding-right: 20px;
    transform: scaleY(0);
    transition: all 300ms ease 100ms;
    z-index: 2;
}
.overlay-title h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #FFF;
}
.overlay-title p {
    color: #FFF;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 10px;
}
/*-----------------------[ 27.Single Project Page CSS ]------------------------*/
.singleServicesSlider img {
    max-width: 100%;
}
.layers-img {
    max-width: 100%;
    border-radius: 20px;
}
.singleProject2 {
    margin: 20px 0;
}
.diamond-nextbtn-head {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid rgba(168, 169, 173, 0.2);
    border-bottom: 2px solid rgba(168, 169, 173, 0.2);
    margin-top: 50px;
}
.diamond-btn {
    background: #a134b3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.diamond-next-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
}
.diamond-next-btn h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}
.send-inquiry-form {
    padding: 30px;
    background: #FFF;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 140px;
}
.project-info-text {
    color: #000000;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 30px;
    text-align: center;
}
.project-info-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #9090903b;
    padding: 20px 0;
}
.project-info-main p:nth-child(1) {
    color: #222222;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.project-info-main p:nth-child(2) {
    color: #a134b3;
    font-size: 20px;
}
.project-details-icon .footer-med-icons img {
    width: 30px;
}
.project-details-icon {
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}
.project-details-icon .footer-med-icons {
    background: #a134b3;
    width: 50px;
    height: 50px;
}
.all-services-row3 {
    justify-content: center;
}
/*-----------------------[ 28.Blog Page CSS ]------------------------*/
.blogPage-row2 {
    gap: 30px 0;
}
.search-box-main {
    padding: 20px;
    background: rgba(168, 169, 173, 0.1);
}
.search-input {
    position: relative;
}
.search-input input {
    width: 100%;
    height: 60px;
    outline: none;
    border: none;
    padding: 18px 15px;
    color: var(--4, #222);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.search-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}
.single-services-black-box {
    margin-bottom: 20px;
    margin-top: 40px;
    background: #000000;
    padding: 30px;
}
.single-services-black-box h3 {
    color: var(--5, #FFF);
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
}
.recent-post-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.recent-post-text-main p {
    color: var(--4, #222);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.recent-post-text-main h2 {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    transition: all 0.3s ease-in-out;
}
.recent-post-main:hover h2 {
    color: #a134b3;
}
.adds-details-main {
    margin-top: 40px;
}
/*-----------------------[ 29.Blog Details CSS ]------------------------*/
.single-blog-img1 {
    width: 100%;
}
.tag-date {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0 20px;
}
.tag-date-sub {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tag-date-sub p {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.psum {
    margin-top: 20px;
}
.qoute-box {
    padding: 40px;
    background: #F5F6F7;
    margin: 35px 0;
    position: relative;
}
.qoute-box h2 {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    font-style: italic;
}
.line_client {
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.line {
    border-top: 2px solid #a134b3;
    width: 60px;
}
.jordon {
    color: #222;
    font-size: 16px;
    line-height: 20px;
    padding-left: 10px;
}
.req-form-main {
    margin-top: 30px;
}
.map-iframe {
    width: 100%;
    height: 400px;
    margin-top: 100px;
}
/*-----------------------[ 30.Get Your Quote Page CSS ]------------------------*/
.get-quote-page-section {
    background: #FFFFFF;
}
.get-quote-page-section .sec-text {
    color: #000000;
}
.get-quote-calculator {
    margin-top: 60px;
    margin-bottom: 0;
    background: #F5F6F7;
}
/*-----------------------[ 31.Setting Panel CSS ]------------------------*/
.setting-main {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 100;
}
.box-fix-setting {
    width: 50px;
    height: 50px;
    background-color: #8ade47;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: none;
}
.setting {
    animation: rotation 3s infinite linear;
    width: 28px;
}
@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
.demo-box {
    display: block;
    background: #FFF;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 15px;
}
.demo-box img {
    border-radius: 15px;
}
.demo-box p {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    padding-top: 15px;
    text-align: center;
}
.offcanvas {
    background: #F5F6F7;
}
.offcanvas-title img {
    max-width: 80%;
}
.btn-close {
    --bs-btn-close-focus-shadow: none;
}
.about-svg-main i {
    color: #ffff;
    font-size: 36px;
}
.services-svg-main img {max-width: 60px;}
.whyChoose {
    width: 400px;
    height: 100%;
    object-fit: cover;
    border-radius: 230px;
    overflow: hidden;
}
.whyChoose img {width: 100%; height: 100%;}
.check {
    max-width: 35px;
    margin-top: 8px;
}
.findTutor .cap-text {
    color: #fbc13b;
}
.findTutor h4 {
    color: #902ac6;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 37px;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 7px;
}
.meetTutor {align-items: flex-start;}
.project-slider {text-align: center;}
.project-slider h2 {color: #ffca4d; font-size: 22px;}
.project-slider h5 {color: #fff; margin-top: 20px; font-weight: 700; margin-bottom: 10px;}
footer {
    margin-top: 0;
}
.footerLogo {width: 260px; display: inline-block;}
.footerLogo img {width: 100%;}
.img-main-call img {
    width: 40px;
}
.arrow-right {max-width: 120px;}
.bannerContent {padding: 0 50px;}
.banner-form {
    background-color: #fcfcfc;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,.14);
    padding: 15px 25px 25px 25px;
    width: 600px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 50px;
    z-index: 2;
    transform: translate(0, -50%);
}

.banner-form ul {display: flex; justify-content: space-between; flex-wrap: wrap;}
.banner-form ul li {width: 30%;}
.banner-form ul li a {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 10px 0;
    background-color: #fce3cf;
    border-radius: 10px;
    padding: 15px 5px 10px;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}
.banner-form ul li a img {max-width: 100%;}
.banner-form ul li h6 {font-size: 16px; text-align: center; margin: 8px 0 0; display: block; color: #000;}
.banner-form .calcult-from-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 36px;
}
.banner-form .underGood ul li {width: 25%; padding: 0 5px;}
.banner-form .underGood ul li a {
    min-height: 1px;
    height: 100%;
}
.banner-form .underGood {display: none;}

.hero-slider-section {position: relative;}
.plotAddress {margin-top: 20px;}
.plotAddress input, .plotAddress textarea {
    border-radius: 10px;
    border: 2px solid var(--12, #F5F6F7);
    background: var(--5, #FFF);
    padding: 12px 15px;
    width: 100%;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.findTutor .houseType {
    margin-top: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}
.findTutor .houseType .nav {
    justify-content: flex-start;
}
.findTutor .houseType .nav-tabs .nav-item.show .nav-link, .findTutor .houseType .nav-tabs .nav-link.active {
    color: #f7760d;
}
.findTutor .houseType .nav-tabs .nav-item.show .nav-link .radioo:after, .findTutor .houseType .nav-tabs .nav-link.active .radioo:after {
    width: 6px;
    height: 6px;
    background-color: #f7760d;
    border-radius: 50%;
    display: inline-block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -3px 0 0 -3px;
}
.findTutor .houseType  h6 {
    margin-top: 20px;
    text-align: center;
    color: #8322d5;
}

.roomCheckArea {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 10px;
    width: 112px;
    text-align: center;
}

/* Hide the browser's default radio button */
.roomCheckArea input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: -6px;
    left: 0;
    height: 39px;
    width: 110px;
    background-color: #eee;
    border-radius: 5px;
    z-index: -1;
}

/* On mouse-over, add a grey background color */
.roomCheckArea:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.roomCheckArea input:checked ~ .checkmark {
    background-color: #e9b1ff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
/* .checkmark:after {
  content: "";
  position: absolute;
  display: none;
} */

/* Show the indicator (dot/circle) when checked */
.roomCheckArea input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.roomCheckArea .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
.PropertyType {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.check-box-main-sub ul li {
    list-style-type: disc;
    line-height: 21px;
    margin-top: 16px;
}
.for-mobile-menu img {width: 100%;}
 .hero-slider-section .prvTutor .modal-dialog {
    min-width: 700px;
}
.hero-slider-section .prvTutor h3 {
    color: #5400b5;
    margin-bottom: 10px;
}
.hero-slider-section .prvTutor .formDropDown-ul-list li {
    padding: 5px 12px;
    width: 100%;
}
.hero-slider-section .prvTutor .input-label-text {
    color: var(--3, #000);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin: 10px 0 0 3px;
}
.hero-slider-section .prvTutor .formDropDown {
    font-size: 16px;
    color: #4c4c4c;
}
.banner-form .btn-quote {
    font-size: 15px;
    padding: 10px 27px;
    min-width: 130px;
}
.hero-slider-section .prvTutor .calcult-from-grid input, .hero-slider-section .prvTutor .your-message-input input, .hero-slider-section .prvTutor .contac-form-main textarea {
    border-radius: 7px;
    padding: 10px 14px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
}
.hero-slider-section .prvTutor .input-main {
    border-radius: 7px;
    padding: 8px 14px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
}
.hero-slider-section .prvTutor .fessional {
    color: var(--4, #222);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.hero-slider-section .prvTutor .nav-tabs .nav-item.show .nav-link, .hero-slider-section .prvTutor .nav-tabs .nav-link.active {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: var(--bs-nav-tabs-link-active-border-color);
    width: 100%;
}
.hero-slider-section .prvTutor .nav-tabs .nav-item.show .nav-link, .hero-slider-section .prvTutor .nav-tabs .nav-link.active {
    color: #ff7804;
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: var(--bs-nav-tabs-link-active-border-color);
    width: 100%;
}
.hero-slider-section .prvTutor .nav {
    gap: 0;
}
.hero-slider-section .prvTutor.nav-tabs .nav-link {
    width: 100%;
}
.houseType {margin-top: 10px;}
.radioo {
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-flex;
    margin-top: 2px;
    position: relative;
}
.hero-slider-section .prvTutor .houseType .nav-tabs .nav-link.active .radioo:after, #customerr .houseType .nav-tabs .nav-link.active .radioo:after {
    width: 6px;
    height: 6px;
    background-color: #8c28cb;
    border-radius: 50%;
    display: inline-block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -3px 0 0 -3px;
}
.hero-slider-section .prvTutor .houseType .nav-tabs .nav-item.show .nav-link, .hero-slider-section .prvTutor .houseType .nav-tabs .nav-link.active,
#customerr .houseType .nav-tabs .nav-item.show .nav-link, #customerr .houseType .nav-tabs .nav-link.active {
    color: #8c28cb;
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 0;
    border: none;
}
.hero-slider-section .prvTutor .houseType ul li, #customerr .houseType ul li {width: auto;}
.hero-slider-section .prvTutor .houseType .nav, #customerr .houseType .nav {
    justify-content: flex-start;
}
.hero-slider-section .prvTutor .houseType .nav-tabs .nav-link, #customerr .houseType .nav-tabs .nav-link {padding: 5px 30px 5px 0;}
.hero-slider-section .prvTutor .houseType .nav-tabs .nav-link:focus, .hero-slider-section .prvTutor .houseType .nav-tabs .nav-link:hover,
#customerr .houseType .nav-tabs .nav-link:focus, #customerr .houseType .nav-tabs .nav-link:hover {border-color: transparent;}
.hero-slider-section .prvTutor .houseType .nav-tabs .nav-link, #customerr .houseType .nav-tabs .nav-link {
    color: #000;
}
.flatType {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    display: grid;
}
.hero-slider-section .prvTutor .houseType select, #customerr .houseType select {
    border: 2px solid var(--12, #F5F6F7);
    background: var(--5, #FFF);
    color: #000;
    font-style: normal;
    font-weight: 400;
    border-radius: 7px;
    padding: 11px 10px;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
}
.hero-slider-section ul.nav.nav-tabs {
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 20px;
}
.hero-slider-section .prvTutor {
    color: #ab00bb;
}
.hero-slider-section .prvTutor .calcult-from-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.hero-slider-section .prvTutor .get-cost-estimate .btn-quote {
    padding: 11px 30px;
}
.banner-form h3 {
    margin-bottom: 15px;
    color: #a311eb;
}
.labServ input {
    border-radius: 10px;
    border: 2px solid var(--12, #F5F6F7);
    background: var(--5, #FFF);
    padding: 12px 15px;
    width: 100%;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.labServ {margin-top: 15px;}
.header.scrolled {
    top: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.95);
    border-radius: 0;
}
.sellerByer {background-color: #fffaf5; padding: 70px 0;}
.bsRow {display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #ddd;}
.bsRowCol {
    display: inline-flex;
    justify-content: space-between;
    width: 46%;
}
.bsRowColLft {display: inline-block; width: auto;}
.bsRowColRght {
    display: inline-block;
    width: auto;
    text-align: right;
    margin-right: 50px;
    font-weight: 700;
}
.bsRow:first-child .bsRowColLft, .bsRow:first-child .bsRowColRght {font-weight: 600; font-size: 20px; color: #ff6c00;}
.bsRow:first-child .bsRowColRght {margin-right: 40px;}
.sellerByer .pricing-card {margin-top: 40px;}
.uploadPortfolio {width: 60px; height: 60px; display: inline-block; border-radius: 50%; position: absolute; right: 130px; bottom: 5px; overflow: hidden;}
.uploadPortfolio span {width: 60px; height: 60px; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; border-radius: 50%; position: absolute; background-color: #000; border: 2px solid #fff; pointer-events: none;}
.uploadPortfolio span img {
    width: 70%;
    height: auto;
    min-width: 1px;
    min-height: 1px;
}
.uploadPortfolio input[type="file"]{ width: 60px; height: 60px; display: inline-block; border-radius: 50%;}

@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

/* Keyframes to animate from 0 to value in --end */
@keyframes count-up {
  from {
    --num: 0;
  }
  to {
    --num: var(--end);
  }
}

/* Style for each counter */
.bsRowColRght {
  animation: count-up 5s forwards ease-in-out;
  counter-reset: num var(--num);
}

/* Display the counter number */
.bsRowColRght::after {
  content: counter(num);
}
.bsRow:first-child .bsRowColLft:after, .bsRow:first-child .bsRowColRght:after {display: none;}




.tableRow {display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #ddd;}
.tableCol {display: inline-block; min-width: 19%;}
.tableCol:first-child {display: inline-block; min-width: 24%; text-align: left;}
.tableCol:nth-child(2) {text-align: left;}
.tableRow:first-child .tableCol {
    color: #ff6c00;
}

@property --num {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

div.count::before {
    counter-reset: my-counter var(--num);
    content: counter(my-counter);
    animation: count 20s ease-in-out infinite alternate;
}

@keyframes count {
    to { --num: 70; }
}

div.county::before {
    counter-reset: my-counter2 var(--num);
    content: counter(my-counter2);
    animation: countt 20s ease-in-out infinite alternate;
}
@keyframes countt {
    to { --num: 45; }
}
div.countyy::before {
    counter-reset: my-counter3 var(--num);
    content: counter(my-counter3);
    animation: counttt 20s ease-in-out infinite alternate;
}
@keyframes counttt {
    to { --num: 25; }
}


div.geography::before {
    counter-reset: my-geography var(--num);
    content: counter(my-geography);
    animation: countgeo 25s ease-in-out infinite alternate;
}

@keyframes countgeo {
    to { --num: 85; }
}

div.geographyy::before {
    counter-reset: my-geography2 var(--num);
    content: counter(my-geography2);
    animation: countgeoo 25s ease-in-out infinite alternate;
}
@keyframes countgeoo {
    to { --num: 55; }
}
div.geographyyy::before {
    counter-reset: my-geography3 var(--num);
    content: counter(my-geography3);
    animation: countgeeo 25s ease-in-out infinite alternate;
}
@keyframes countgeeo {
    to { --num: 30; }
}


div.english::before {
    counter-reset: my-english var(--num);
    content: counter(my-english);
    animation: counteng 25s ease-in-out infinite alternate;
}

@keyframes counteng {
    to { --num: 115; }
}

div.englishh::before {
    counter-reset: my-english2 var(--num);
    content: counter(my-english2);
    animation: countengg 25s ease-in-out infinite alternate;
}
@keyframes countengg {
    to { --num: 155; }
}
div.englissh::before {
    counter-reset: my-english3 var(--num);
    content: counter(my-english3);
    animation: countenng 25s ease-in-out infinite alternate;
}
@keyframes countenng {
    to { --num: 40; }
}



div.rrent::before {
    counter-reset: my-rent var(--num);
    content: counter(my-rent);
    animation: countrent 20s ease-in-out infinite alternate;
}

@keyframes countrent {
    to { --num: 45; }
}

div.rrentt::before {
    counter-reset: my-rent2 var(--num);
    content: counter(my-rent2);
    animation: countrentt 20s ease-in-out infinite alternate;
}
@keyframes countrentt {
    to { --num: 25; }
}
div.rrennt::before {
    counter-reset: my-rent3 var(--num);
    content: counter(my-rent3);
    animation: countrennt 20s ease-in-out infinite alternate;
}
@keyframes countrennt {
    to { --num: 20; }
}



div.labour::before {
    counter-reset: my-labour var(--num);
    content: counter(my-labour);
    animation: countlabour 20s ease-in-out infinite alternate;
}

@keyframes countlabour {
    to { --num: 65; }
}

div.labourr::before {
    counter-reset: my-labour2 var(--num);
    content: counter(my-labour2);
    animation: countlabourr 20s ease-in-out infinite alternate;
}
@keyframes countlabourr {
    to { --num: 85; }
}
div.labouur::before {
    counter-reset: my-labour3 var(--num);
    content: counter(my-labour3);
    animation: countlabouur 20s ease-in-out infinite alternate;
}
@keyframes countlabouur {
    to { --num: 20; }
}
.aboutSecIm img {border-radius: 50%; border: 10px solid #fff; box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.20);}
.team-circle-link {text-align: center; max-width: 300px; margin: 0 auto;}
.team-circle-main img {width: 100%;}
.share-icon-main img {width: auto;}
.aboutTestimonial {padding-bottom: 100px;}
.oldPrice {
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
}
.oldPrice .price {
    font-size: 30px;
    font-weight: 500;
    color: #ff0000;
    text-decoration: line-through;
}
.loginform .calcult-from-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
.registerForm .calcult-from-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.loginform .get-cost-estimate {
    justify-content: space-between;
    margin-top: 30px;
}
.loginform .calcult-from-grid input, .loginform .your-message-input input, .loginform .contac-form-main textarea,
.registerForm .calcult-from-grid input, .registerForm .your-message-input input, .registerForm .contac-form-main textarea {
    border-radius: 7px;
    padding: 10px 14px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
}
.registerForm .enterLocation {margin-top: 25px;}
.registerForm .enterLocation textarea {
    border-radius: 7px;
    padding: 10px 14px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    border: 2px solid var(--12, #F5F6F7);
    background: var(--5, #FFF);
}
.loginform .input-label-text, .registerForm .input-label-text {
    color: var(--3, #000);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    text-transform: uppercase;
    padding-bottom: 5px;
    margin: 10px 0 0 3px;
}
.registerForm .modal-dialog, .loginform .modal-dialog {
    min-width: 1000px;
}
.loginform .modal-dialog .modal-content, .registerForm .modal-dialog .modal-content {
    display: flex;
    justify-content: space-between;
    flex-direction: inherit;
    border-radius: 18px;
    overflow: hidden;
}
.loginform .modal-dialog .modal-content .modal-content-left {
    display: inline-block;
    width: 40%;
    background: url(../images/home/login-back.png) right top no-repeat;
    background-size: auto 100%;
}
.registerForm .modal-dialog .modal-content .modal-content-left {
    display: inline-block;
    width: 40%;
    background: url(../images/home/register-back.png) right top no-repeat;
    background-size: auto 100%;
}
.loginform .modal-dialog .modal-content .modal-content-right, .registerForm .modal-dialog .modal-content .modal-content-right {
    display: inline-block;
    width: 60%;
    padding: 50px 30px 80px;
    background: #FFB935;
    background: linear-gradient(0deg,rgba(255, 185, 53, 1) 0%, rgba(255, 241, 215, 1) 100%);
}
.loginform .modal-dialog .modal-content .modal-content-right .btn-quote, .registerForm .modal-dialog .modal-content .modal-content-right .btn-quote {
    background: #7823b2;
}
.modal-header {
    border-bottom: 1px solid #fff;
}
.dashboard-body {
    margin: 150px 0;
    padding: 0 30px;
}
.dashboard-row {display: flex; justify-content: space-between;}
.dashboard-left {
    width: 350px;
    padding: 15px;
    background: #7800cf;
    border-radius: 20px;
    position: sticky;
    top: 150px;
    left: 0;
    /* height: calc(100vh - 120px); */
    min-height: 500px;
    overflow: overlay;
    height: fit-content;
}
.dashboard-right {width: calc(100% - 400px);}
.dashboard-right .calculator-box-main {
    padding: 30px;
    border-radius: 20px;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.portfolio {height: 300px; width: 300px; border-radius: 50%; overflow: hidden; position: relative; object-fit: cover;
    border: 4px solid #fff;}
.portfolio img {min-width: 100%; min-height: 100%; height: 100%;
    width: 100%;
    object-fit: cover;}
.portfolio-text {margin-top: 20px;}
.portfolio-text h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}
.portfolio-text p {
    font-size: 17px;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
}
.portfolio-text a {color: #ffe8a7; display: block; text-align: center;}
.dashboard-right h4 { color: #7800cf; margin-top: 20px; margin-bottom: 15px;}
.houseType h6 {margin-top: 10px;}
.dashboard-right .plotAddress {
    margin-bottom: 20px;
}
.roomAddress {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
.roomAddress textarea {
    border-radius: 10px;
    border: 2px solid var(--12, #F5F6F7);
    background: var(--5, #FFF);
    padding: 12px 15px;
    width: 100%;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.roomAddressCol {
    width: 66.2%;
}
.rgsterTutor h3.input-label-text {min-height: 50px;}
.registerFormNav {margin-top: 40px;}
.registerFormNav .nav {
    justify-content: flex-start;
}
.registerFormNav .nav-tabs .nav-link.active {
    color: #ff8900;
}
.registerFormNav .nav-tabs .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #0043a5;
}
.registerFormNav .nav-tabs .nav-link.active {color: #ff8900;}
.terms-section {padding: 100px 0;}
.terms-section h6 {font-size: 20px; color: #7800cf; margin-bottom: 15px; margin-top: 20px;}
.terms-section h5 {
    font-size: 17px;
    color: #ff8900;
    margin-bottom: 8px;
    margin-top: 15px;
}
.terms-section p {font-size: 16px; line-height: 22px;}
.terms-section ul {margin: 0 0 0 20px;}
.terms-section ul li {
    list-style-type: circle;
    line-height: 25px;
    padding-top: 2px;
}
.blog-containe-main {
    padding: 26px;
}
.loginform a, .registerForm a {color: #7800cf;}
.loginform a.btn-quote, .registerForm a.btn-quote {color: #fff;}
.search, .adress {
    position: relative;
    margin-left: 30px;
}
.search img, .adress img {max-width: 100%; cursor: pointer;}
.searchSec, .adressSec {width: 100%; text-align: center; margin-top: 10px; border-top: 1px solid #ccc; display: none;}
.searchSec .searchInner, .adressInner {
    max-width: 500px;
    display: flex;
    justify-content: space-between;
    margin: 15px 5px 0;
}
.searchButton, .adressButton {
    width: 90px;
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8624d3;
    color: #fff;
    margin-left: 8px;
}
.searchSec .searchInner input[type='text'], .adressInner input[type='text'] {
    width: 350px;
    display: inline-block;
    padding: 10px 14px;
    border-radius: 7px;
    border: 1px solid #ccc;
}
.detailsImage {
    height: 500px;
    overflow: hidden;
    margin-bottom: 20px;
}
.detailsImage img {max-width: 100%; min-height: 100%;}
.pvtSlidr .img-overlay {
    padding: 40px 30px;
}
.pvtSlidr .view-project-btn {
    white-space: nowrap;
    display: flex;
}
.all-service-text {
    padding: 15px 30px;
}
.serviceSec .serviceHeaderSec h3, .range-container h3 {
    color: #a311eb;
    font-size: 20px;
    margin-bottom: 22px;
    width: 100%;
}
.range-container h3 {
    margin-top: 40px;
}
.property-container h3 {
    margin-top: 30px;
    margin-bottom: 11px;
    color: #a311eb;
    font-size: 20px;
}
.searcharea {display: flex; align-items: center; justify-content: center; flex-wrap: wrap;}
.serviceBody {display: flex; justify-content: space-between; max-width: 1600px; margin: 0 auto; position: relative;}
.serviceBodyLeft {
    width: 300px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 20px;
    background: #fff;
}
.serviceBodyRight {width: calc(100% - 330px); display: inline-block; }
.serviceHeaderSec form p {margin-bottom: 10px; font-size: 17px; font-weight: 500;}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #ff8900;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.service-menu {
    position: absolute;
    top: -12px;
    left: 2px;
    display: none;
}
.card-containe h6 {text-align: center; color: #ff8900; margin-top: 15px;}
.card-containe h3.services-name span {
    display: block;
    color: #ff8900;
    font-size: 18px;
    margin-top: 4px;
    line-height: 19px;
    font-weight: 400;
}
.serviceBodyRight .cleaning-card {
    border: 1px solid #ccc;
    margin-bottom: 22px;
}
.range-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.input-group {
    display: flex;
    gap: 0;
    position: relative;
    margin-bottom: 10px;
}
.input-wrapper {
position: relative;
display: flex;
width: 50%;
}

.input-group::after {
    content: '';
    position: absolute;
    left: 40%;
    top: 13px;
    bottom: 0;
    width: 13px;
    background: #333;
    transform: translateX(-50%);
    height: 2px;
}

.range-input-text {
    width: 65px;
    height: auto;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #1D1E27;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: left;
}

.range-input-text::-webkit-outer-spin-button,
.range-input-text::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

.range-input-text::placeholder {
color: #666;
}

.unit-label {
    font-size: 14px;
    color: #666;
    font-weight: 300;
    pointer-events: none;
    padding-top: 3px;
}

.thumbs {
display: grid;
}

.range {
--range-track-top: 10px;
--min-thumb-percent: 0;
--max-thumb-percent: 75;
--range-progress-w: calc(
    (var(--max-thumb-percent) - var(--min-thumb-percent)) * 1%
);
--range-progress-left: calc(var(--min-thumb-percent) * 1%);
position: relative;
display: grid;
width: 100%;
z-index: 2;
}

.range-input {
width: 100%;
height: 25px;
grid-area: 1 / 1;
border-radius: 50%;
appearance: none;
background: none;
pointer-events: none;
}

.range-input::-webkit-slider-thumb {
-webkit-appearance: none;
width: 20px;
height: 20px;
border: none;
border-radius: 50%;
background-color: #ff8900;
transition: 300ms;
pointer-events: auto;
cursor: pointer;
}

.range-input::-moz-range-thumb {
width: 20px;
height: 20px;
border: none;
border-radius: 50%;
background-color: #ff8900;
transition: 300ms;
pointer-events: auto;
cursor: pointer;
}

.range-input:hover::-webkit-slider-thumb,
.range-input:hover::-moz-range-thumb {
transform: scale(1.1);
}

.range-input:focus-visible,
.range-input:focus-visible::-webkit-slider-thumb,
.range-input:focus-visible::-moz-range-thumb {
outline-offset: 7px;
outline: 1px solid #c56fff;
}

.track {
position: absolute;
top: var(--range-track-top);
width: 100%;
height: 8px;
border-radius: 10px;
background-color: #ababab;
z-index: -1;
}

.progress {
position: absolute;
top: var(--range-track-top);
left: var(--range-progress-left);
width: var(--range-progress-w);
height: 8px;
border-radius: 10px;
background-color: #9d32b8;
z-index: -1;
}
.priceRange {margin-top: 20px;}
.priceRange a {display: flex; margin-top: 8px; display: flex; align-items: center; color: #333;}
.priceRange a span {display: inline-block; margin: 0 10px;}
.priceRange a:hover {color: #ff8900;}
.priceText {margin-left: 10px;}
.calcult-from-grid.bookingForm {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    background: #FFF;
    padding: 0 25px 30px;
    box-shadow: rgba(183, 183, 183, 0.2) 0px 8px 24px;
    border-radius: 0 0 30px 30px;
}
.calcult-from-grid.bookingForm div {margin-top: 15px;}
.calcult-from-grid.bookingForm .input-main {
    padding: 0px 15px;
    margin-top: 0;
}
.services-list-box {
    position: relative;
    z-index: 1;
}
.calcult-from-grid.bookingForm  .btn-quote {
    background: #9c31b9;
}

.checkboxSection {
    display: block;
}
.checkboxes__item {
    margin: 10px 2px;
    display: inline-block;
}

.checkbox.style-c {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-c input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-c:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-c:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-c .checkbox__checkmark {
    position: absolute;
    top: -3px;
    left: 0;
    height: 30px;
    width: 100%;
    background-color: #eee;
    transition: background-color 0.25s ease;
    border-radius: 4px;
    display: block;
    right: 0;
    padding: 5px 0;
}
.checkbox.style-c .checkbox__checkmark:after {
    content: "";
    position: absolute;
    left: 9px;
    top: 7px;
    width: 5px;
    height: 13px;
    border: solid #333;
    border-width: 0 1px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.checkbox.style-c .checkbox__checkmark:before {
    content: "+";
    position: absolute;
    left: 8px;
    top: -1px;
    width: 5px;
    height: 10px;
    opacity: 1;
    transition: opacity 0.25s ease;
    font-size: 20px;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark:before {
  opacity: 0;
}
.checkbox.style-c .checkbox__body {
    color: #333;
    line-height: 1.4;
    font-size: 15px;
    z-index: 1;
    position: relative;
    left: 0;
    white-space: nowrap;
    padding-right: 10px;
    top: 1px;
}
.property-container p {margin-top: 10px;}

@media (max-width: 1399px) {
    .dashboard-right .input-label-text {
        color: var(--3, #000);
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 17px;
        text-transform: uppercase;
        padding-bottom: 10px;
    }
    .rgsterTutor h3.input-label-text {
        min-height: 40px;
        padding-bottom: 5px;
    }
    .dashboard-right .calculator-box-main {
        padding: 20px;
        border-radius: 16px;
    }
    .dashboard-left {
        width: 250px;
        padding: 15px;
        border-radius: 18px;
    }
    .portfolio {
        height: 220px;
        border-radius: 10px;
    }
    .dashboard-right {
        width: calc(100% - 270px);
    }
    .dashboard-right .calcult-from-grid input, .dashboard-right .your-message-input input, .dashboard-right .contac-form-main textarea, .dashboard-right textarea {
        border-radius: 7px;
        padding: 10px 15px;
        font-size: 16px;
        line-height: 22px;
    }
    .dashboard-right .calcult-from-grid {
        gap: 20px;
    }
    .dashboard-right h4 {
        margin-top: 40px;
        margin-bottom: 28px;
    }
    .services-slider {
        margin-right: 0;
    }
    .inner-team-circle {
        width: 180px;
        height: 180px;
    }
    .team-circle-main {
        max-width: 220px;
        height: 220px;
        padding: 18px;
    }
    .myaccount-row .portfolio {
        height: 200px;
        width: 200px;
        margin: 0 auto;
        border-radius: 50%;
    }
    .myaccount-row .uploadPortfolio span img {
        width: 55%;
    }
    .uploadPortfolio span {
        width: 50px;
        height: 50px;
    }
    .uploadPortfolio input[type="file"] {
        width: 50px;
        height: 50px;
    }
    .uploadPortfolio {
        width: 50px;
        height: 50px;
        right: 100px;
    }
}
@media (max-width: 1299px) {
    .dashboard-right .calcult-from-grid {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-right .calcult-from-grid {display: flex; flex-wrap: wrap;}
    .dashboard-right .calcult-from-grid div {width: 46%;}
    .dashboard-right .calcult-from-grid div div {width: 100%;}
    .dashboard-right .calcult-from-grid.property div:last-child {width: 100%;}
    .dashboard-right .calcult-from-grid div.dash-row {width: 100%}
    .myaccount-row .dashboard-right .calcult-from-grid div div {
        width: 49%;
    }
}
@media (max-width: 1230px) {
    .hero-slider-section .prvTutor .nav, #customerr .houseType .nav, .registerFormNav .nav {
        position: static;
        top: 0;
        left: 0;
        align-items: flex-start;
        background: #FFF;
        min-height: 1px;
        width: auto;
        overflow: hidden;
        padding: 0;
        gap: 0;
    }
    .search {
        position: absolute;
    }
    .for-mobile-menu img {
        width: 80%;
    }
    .search img {
        max-width: 22px;
        cursor: pointer;
    }
    .searchSec {
        position: absolute;
        min-height: 74px;
        background: #fff;
        z-index: 999;
        left: 0;
        border-radius: 48px;
        padding-bottom: 15px;
    }
}
@media(max-width: 1024px){
    .dashboard-right .calcult-from-grid.property div:first-child h3 {min-height: 46px;}
}
@media(max-width: 910px){
    .registerFormNav .nav {
        flex-wrap: nowrap;
    }
}
@media(max-width: 850px){
    .dashboard-right .calcult-from-grid.pvtTutorr div:first-child h3, .dashboard-right .calcult-from-grid.pvtTutorr div:nth-child(2) h3 {
        min-height: 40px;
        padding-bottom: 0;
    }
    .dashboard-right .calcult-from-grid.pvtTutorr div:last-child {width: 100%;}
}
@media(max-width: 767px){
    .hero-slider-section .prvTutor .modal-dialog {
        min-width: 90%;
    }
    .myaccount-row .dashboard-right .calculator-box-main {
        margin-top: 20px;
    }
    .footerLogo {
        width: 190px;
    }
    
}





/* GET OTP Wrapper */
.registerForm .modal-dialog .modal-content .modal-content-right{
    padding: 20px 30px 30px;
}

/* .loginform .modal-dialog .modal-content .modal-content-right{
     padding: 20px 30px 30px;
} */
.loginform .modal-body{
    padding: 0 !important;
}


.get-cost-estimate{
    justify-content: start;
    margin-top: 25px;
}

.get-otp-wrapper{
    display: flex;
}

.get-otp-wrapper .btn-quote{
    border-radius: 0;
    width: 30%;
}

#otpBox{
    margin-top: 0 !important;
}

.get-otp-wrapper input{
    border-radius: 0 !important;
    width: 70% !important;
}

.otp-inputs {
    display: flex;
    gap: 10px;
}

.otp-input {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ddd;
}

.otp-input:focus {
    border-color: #7b2cbf;
    box-shadow: 0 0 0 2px rgba(123,44,191,.2);
    outline: none;
}


/* Account */

   select{
   width: 100%;
   border: 2px solid #ccc ;
   border-radius: 4px;
   outline:none;
   cursor: pointer;
   }
   select option {
   padding: 4px 10px;
   }
   .tags-input {
   border: 1px solid #ccc;
   padding: 6px;
   display: flex;
   flex-wrap: wrap;
   border-radius: 4px;
   background: white;
   }
   .tags-input input {
   border: none;
   outline: none;
   flex: 1;
   padding: 6px;
   min-width: 100px;
   }
   .tag {
   background-color: #ff8900;
   color: #fff;
   padding: 5px 10px;
   margin: 3px;
   border-radius: 20px;
   display: inline-flex;
   align-items: center;
   font-size: 14px;
   }
   .tag .remove-tag {
   margin-left: 8px;
   cursor: pointer;
   font-weight: bold;
   }

   .nav.news-section-wrapper{
    justify-content: flex-start;
    gap: 0;
   }

   .news-section-wrapper .nav-link{
      background-color: #ffffff;
      border: 1px solid #ff8900;
      color: #ff8900;
      margin-right: 10px;
      padding: 6px 15px;
      border-radius: 2px;
      font-weight: 500;
   }

   .news-section-wrapper .nav-link.active{
      background-color: #ff8900;
      border: 1px solid #000000;
      color: #ffffff;
   }

   .nav-tabs.news-section-wrapper{
      border-bottom:none;
   }
       

   .form-control:focus{
    box-shadow: none;
    outline: none;
   }

   .need-help-main ul.dropdown-menu {
        top: 18px !important;
        height: 310px !important;
        right: -27px !important;
        left: auto !important;
        padding: 10px 14px 20px !important;
        min-width: 216px !important;
        border-radius: 15px;
    }
    .need-help-main ul.dropdown-menu li:first-child {margin-bottom: 20px;}
    .need-help-main ul li a {
        font-size: 15px;
        font-weight: 400;
        line-height: 16px;
        margin-top: 0;
        display: block;
        padding: 9px 5px 9px 17px;
        background: #f5f5f5;
        margin-top: 7px;
        border-radius: 50px;
        transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }
    .need-help-main ul li a span, .portfolio-text ul li a span {margin-right: 7px;}
    .portfolio-text ul li a {
        color: #ffc41e !important;
        font-weight: 600;
        font-size: 16px;
        margin-top: 0 !important;
        margin-top: 13px;
    }
    .need-help-main ul li a:hover {
        color: #fff!important;
        background-color: #ff8900;
    }
    .portfolio-text ul {margin-top: 15px !important;}
    .portfolio-text ul li {
        list-style: none;
        padding: 12px 15px;
        background: #00000033;
        margin-bottom: 5px;
        border-radius: 30px;
    }
    .need-help-main ul li small{
        color: #7800cf;
        font-weight: 600;;
    }
    .dash-row {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 20px;
    }
    .dash-row div {width: 49%;}
    .dashboard-right .calcult-from-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .post-ads {
        position: absolute;
        right: 0;
        top: 0;
    }

@media(max-width: 479px){
    .myaccount-row .dashboard-right .calcult-from-grid div div {
        width: 100%;
    }
}