/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

.sec1 {
    position: relative;
    padding: 290px 0 226px;
    z-index: 22;
}

.inner-pages-mid img.vc_single_image-img.attachment-full {
    border-radius: 10px;
}


.sec1 .info-box-wrapper {
    /* width: 100%; */
    /* margin: auto; */
    /* margin-bottom: 20px; */
    display: flex;
    justify-content: center;
}

.whb-flex-row.whb-general-header-inner {
    border-radius: 110px;
    backdrop-filter: blur(40px);
    box-shadow: 0 -1px 0 0 rgba(26, 26, 23, 0.08), 0 1px 0 0 rgba(26, 26, 23, 0.04);
    background: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 50px;
}



.sec1 .info-box-inner.reset-last-child p {
    font-weight: 500;
    font-size: 20px;
    /* line-height: 280%; */
    text-transform: capitalize;
    color: #fff;
}

h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 118%;
    /* text-align: center; */
    color: #fff;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    /* text-align: center; */
   
}

a.btn.theme-btn {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #000;               /* text color */
    background: #4dbcff;       /* button background */
    border-radius: 194px;
    padding: 6px 30px 6px 6px;
    gap: 20px;
    display: inline-flex;      /* to align icon + text */
    align-items: center;
    transition: all 0.3s ease; /* smooth effect */
}

a.btn.theme-btn::before {
    content: "\f120";
    font-family: "woodmart-font";
    font-weight: 400;
    color: #fff;               /* icon color */
    background: #000;          /* icon bg */
    border-radius: 50%;        /* cleaner circle */
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease; /* smooth effect */
}

/* Hover states */
a.btn.theme-btn:hover {
    color: #4dbcff;   /* text becomes button bg color */
    background: #000; /* bg becomes text color */
}

a.btn.theme-btn:hover::before {
    color: #000;       /* icon text color invert */
    background: #4dbcff; /* icon bg invert */
}

.sec1 a.btn.theme-btn {
    margin-top: 30px;
}

.sec1 p {
    color: #fff;
}

.vc_column-inner {
    padding-top: 0 !important;
}

.sec2 {
    padding: 70px 0;
}

.sec2 p {
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    text-align: center;
    color: #000;
    padding: 20px 0;
}
.sec2 .wpb_text_column {
    margin-bottom: 0;
}

.marq1 .wd-marquee-wrapp {
    border-radius: 20px 20px 0 0;
    background: #000;
    width: 98%;
    margin: auto;
}

.wd-marquee-content {
    color: #fff;
    font-size: 35px !important;
    /* font-weight: 700; */
    font-family: Gentium Book Plus;
    font-style: italic;
}

span.wd-marquee-item {
    gap: 30px;
}

ul#menu-main-manu li a {
    font-weight: 300;
    font-size: 14px;
    line-height: 186%;
    color: #fff;
    text-transform: capitalize;
}

.wd-header-nav {
    padding-right: 80px !important;
}

.sec4 {
    position: relative;
    padding: 100px 0;
    margin-bottom: 100px;
}

.sec4::before {
    content: '';
    background: linear-gradient(0deg, rgba(240, 227, 222, 1) 0%, rgba(248, 181, 146, 1) 100%);
    width: 98%;
    height: 100%;
    position: absolute;
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
    --r: 20px;
    --s: 110px;
    --a: 20deg;
    --p: 50%;
    aspect-ratio: 3/2;
    border-radius: var(--r) var(--r); /* top corners 0, bottom corners rounded */
    --_m: calc(100% - var(--r)), #000 calc(100% - 1px), #0000;
    --_d: (var(--s) + var(--r)) * cos(var(--a));
    mask:
      radial-gradient(var(--r) at calc(var(--p) + var(--_d)) var(--_m)),
      radial-gradient(var(--r) at calc(var(--p) - var(--_d)) var(--_m)),
      radial-gradient(var(--s) at var(--p) calc(100% + sin(var(--a)) * var(--s)),
        #0000 100%, #000 calc(100% + 1px)) 0 calc(var(--r) * (sin(var(--a)) - 1)) no-repeat,
      linear-gradient(90deg, #000 calc(var(--p) - var(--_d)), #0000 0 calc(var(--p) + var(--_d)), #000 0);
}

.round {
    position: absolute;
    top: -180px;
    right: 0;
    left: 0;
    margin: auto;
    width: 210px;
    height: 210px;
    background: url(/wp-content/uploads/2025/09/round.png) no-repeat center/cover;
    animation: spin 8s linear infinite;
}

.round::before {
    content: '';
    background: url(/wp-content/uploads/2025/09/new-mid.png) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: counter-spin 8s linear infinite;
}

/* Rotate parent */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Counter-rotate child */
@keyframes counter-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.sec5 {
    padding: 150px 0;
}

.sec5 {
    padding: 150px 0 100px;
}

.sec5 li::before {
    content: '';
    background: url(/wp-content/uploads/2025/09/li-bfr.png);
    position: absolute;
    width: 6px;
    height: 10px;
    left: -20px;
    top: 7px;
}

.sec5 li {
    position: relative;
    list-style: none;
    font-weight: 500;
    font-size: 14px;
    /* line-height: 214%; */
    color: #000;
}

.marq2 .wd-marquee-wrapp {
    width: 100%;
    border-radius: 0;
    margin-bottom: 110px;
}

.sec6 {
    position: relative;
    /* padding: 100px 0; */
    padding-top: 20px;
}

.sec6::before {
    content: '';
    background: linear-gradient(0deg, rgba(240, 227, 222, 1) 0%, rgba(248, 181, 146, 1) 100%);
    width: 98%;
    height: 100%;
    position: absolute;
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
    border-radius: 20px;
}

.sec6-inner::after {
    content: '';
    background-image: url(/wp-content/uploads/2026/02/sec6.png);
    width: 96%;
    height: 100%;
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
    background-size: cover;
    margin: auto;
    background-position: center;
    border-radius: 20px;
    z-index: 0;
}

.sec6-inner{
	position:relative;
}

.sec6 .wpb_text_column {
    position: relative;
    z-index: 22;
}

.testimonial-inner {
    border-radius: 10px;
    background: #fff;
    position: relative;
}

.star-rating {
    color: #F8B897 !important;
}

.testimonial-avatar img {
    position: relative;
    top: -39px;
}

.testimonials .wd-carousel {
    padding: 60px 0 100px;
    /* margin-top: 100px; */
}

.testimonial-content footer {
    position: absolute;
    top: 20px;
    font-weight: 700 !important;
    font-size: 22px !important;
    line-height: 245% !important;
    color: #000 !important;
    right: 0;
    width: 100%;
}

.testimonial-content {
    font-weight: 400;
    font-size: 16px;
    /* line-height: 162%; */
    text-transform: initial;
    text-align: center;
    color: #000;
    padding: 80px 35px 50px 35px;
    min-height: 295px;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.wd-nav-arrows.wd-pos-together {
    gap: 10px !important;
    /* background: red; */
    /* color: #fff !IMPORTANT; */
    top: -50px !IMPORTANT;
}

.wd-arrow-inner {
    color: #fff !important;
    background: #4DBCFF !important;
    border-radius: 555px !important;
    padding: 20px !important;
}

.wd-arrow-inner:hover {
    background: #000 !important;
}

.whb-general-header {
    border: 0 !important;
}

.footer {
    position: relative;
    margin-bottom: 20px;
}


body .es-form-3 form {
    max-width: 100% !IMPORTANT;
    padding: 0 !important;
    background-color: transparent !important;
    border: 0 !important;
}

body label.es-field-label {
    font-size: 0 !important;
}


input.es_required_field.es_txt_email.ig_es_form_field_email.ig-es-form-input {
    backdrop-filter: blur(40px);
    box-shadow: 0 -1px 0 0 rgba(26, 26, 23, 0.08), 0 1px 0 0 rgba(26, 26, 23, 0.04);
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    color: #ffffffb3 !important;
    height: 56px;
}

.es_form_wrapper {
    position: relative;
}

body .es-form-3 .es_subscription_form_submit {
    position: absolute;
    top: -2px;
    right: 5px;
    font-size: 0 !important;
    background-image: url(/wp-content/uploads/2025/09/ice.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border-radius: 4px !important;
    background-color: #4dbcff !important;
    width: 44px !important;
    height: 44px !important;
}

body .es-form-3 .es_subscription_form_submit:hover {
    background-color: #4dbcff !important;
    background-image: url(/wp-content/uploads/2025/09/ice.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.icegramm h2 {
    font-weight: 700 !important;
    font-size: 44px !important;
    line-height: 123% !important;
    color: #fff !important;
}

.icegramm p {
    color: #fff !important;
}

.pre-footter h2 {
    font-weight: 700;
    font-size: 88px;
    line-height: 111%;
    color: #000;
}

.pre-footter p {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #000;
    margin-bottom: 30px;
	-webkit-text-stroke: 0px #000000;
    text-shadow: 0px 1px 1px #000000;
}

.pre-footter {
    padding-top: 100px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center; /* vertical alignment */
    gap: 15px; /* optional spacing between items */
    padding-top: 15px;
    /* padding-bottom: 20px; */
}

.footer-left,
.footer-center,
.footer-right {
    font-size: 16px; /* customize as needed */
    color: #fff; /* example: white text */
}

.copy-rt::before {
    content: '';
    background: #000;
    width: 88%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 20px;
}

.copy-rt {
    position: relative;
}

.footer-right a {
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    letter-spacing: 0.03em;
    color: #fff;
}

.last-footer {
    position: relative;
    padding-top: 80px;
    padding-bottom: 20px;
}

.last-footer::before {
    content: '';
    background: #fff;
    width: 88%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 20px 20px 0 0;
    top: 0;
}

.last-footer p {
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    letter-spacing: 0.03em;
    color: #000;
}

.last-footer h4 {
    font-weight: 700;
    font-size: 26px;
    /* line-height: 208%; */
    color: #000;
}

.last-footer ul {
    list-style: none;
    padding: 0;
}

.last-footer ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 187%;
    letter-spacing: 0.03em;
    color: #000;
}

.last-footer ul li {
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wd-social-icons.wd-style-default.wd-size-default.social-follow.wd-shape-circle.text-center {
    justify-content: flex-start !important;
    gap: 10px !important;
}

.wd-social-icon {
    border-radius: 5px !important;
    padding: 12px !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 181, 192, 0.4) !important;
    color: #FFB5C0 !IMPORTANT;
}

.icegramm {
    padding-bottom: 80px;
    padding-top: 200px;
}

.sec-col {
    position: relative;
}

.social-col {
    position: absolute;
    /* top: 0; */
    bottom: 40px;
    left: 50px;
}

.social-col h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    padding-left: 50px;
    position: relative;
}

.social-col h6::before {
    content: '';
    background: #000;
    width: 40px;
    height: 2px;
    position: absolute;
    bottom: 10px;
    left: 0;
}

.social-col .wd-social-icon {
    background: #898989 !important;
    color: #fff !important;
}

.wpforms-field-medium {
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
   height:48px !important;
}

.wpforms-field {
    padding-top: 5px !important;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
   height: 180px !important;

}

button#wpforms-submit-97 {
    border-radius: 194px;
    padding: 0px 50px 0px 6px;
    border-radius: 194px;
    padding: 0px 50px 0px 6px;
    width: 173px;
    height: 56px;
    font-weight: 400;
    font-size: 16px;
    line-height: 350%;
    text-transform: capitalize;
    color: #000;
    background: #4dbcff;
    display: flex;
    gap: 20px;
}

button#wpforms-submit-97::before {
    content: "\f120";
    font-family: "woodmart-font";
    font-weight: 400;
    color: #fff;
    background: #000;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 123%;
    color: #000;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    color: #000;
}

div.wpforms-container-full input[type=date]:focus:invalid, div.wpforms-container-full input[type=datetime]:focus:invalid, div.wpforms-container-full input[type=datetime-local]:focus:invalid, div.wpforms-container-full input[type=email]:focus:invalid, div.wpforms-container-full input[type=month]:focus:invalid, div.wpforms-container-full input[type=number]:focus:invalid, div.wpforms-container-full input[type=password]:focus:invalid, div.wpforms-container-full input[type=range]:focus:invalid, div.wpforms-container-full input[type=search]:focus:invalid, div.wpforms-container-full input[type=tel]:focus:invalid, div.wpforms-container-full input[type=text]:focus:invalid, div.wpforms-container-full input[type=time]:focus:invalid, div.wpforms-container-full input[type=url]:focus:invalid, div.wpforms-container-full input[type=week]:focus:invalid, div.wpforms-container-full select:focus:invalid, div.wpforms-container-full textarea:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=date]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=datetime]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=datetime-local]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=email]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=month]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=number]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=password]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=range]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=search]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=tel]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=text]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=time]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=url]:focus:invalid, .wp-core-ui div.wpforms-container-full input[type=week]:focus:invalid, .wp-core-ui div.wpforms-container-full select:focus:invalid, .wp-core-ui div.wpforms-container-full textarea:focus:invalid {
    border-color: #4dbcff !important;
    outline: none !important;
    box-shadow: none !important;
}

h5 {
    font-family: revert-layer;
    font-weight: 400;
    font-size: 14px;
    /* line-height: 400%; */
    text-transform: capitalize;
    color: #000;
    /* border-top: 1px solid; */
    border-bottom: 1px solid #f8b897;
    border-top: 1px solid #f8b897;
    padding: 5px 10px;
    /* width: 95px; */
    /* height: 30px; */
    /* margin-bottom: 0; */
    display: inline-block;
}

.sec7 {
    padding-top: 140px;
    padding-bottom: 60px;
}

.sec6-inner h2 {
    color: #fff;
}

.sec6-inner p {
    color: #fff;
}

.sec6-inner {
    padding: 100px;
    margin-bottom: 90px;
}

.sec6 h5 {
    border-color: #000;
}

.sec4 .wpb_text_column {
    margin-bottom: 60px;
}

.sec4 h5 {
    border-color: #000;
}


.sec4 h4.info-box-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 193%;
    color: #000;
}

.sec4 .info-box-inner.reset-last-child p {
    font-weight: 400;
    font-size: 14px;
    line-height: 186%;
    color: #000;
}


.sec4 .btn.btn-style-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    text-align: center;
    color: #000;
    text-transform: capitalize;
    border-color: #000;
}

.sec4 .info-box-content {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 30px;
    padding-right: 20px;
}

.sec4 .wd-info-box {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px;
    transition: background-color 0.3s ease; /* smooth hover effect */
}

.sec4 .wd-info-box:hover {
    background-color: #fff;
}

a.btn.theme-btn.btn2 {
    background: #fff;
    margin-top: 40px;
}

a.btn.theme-btn.btn2::before {
    background: #4dbcff;
}

.sec3-col {
    position: relative;
}

.sec3-col::before {
    content: '';
    background: #000;
    position: absolute;
    width: 1px;
    height: 260px;
    /* left: 0; */
    right: -30px;
    opacity: 0.2;
    /* bottom: 0; */
    top: 30px;
}

.sec3 a.btn.theme-btn {
    margin-top: 10px;
}

.counter-label {
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 186% !important;
    color: #000 !important;
}

.woodmart-counter .counter-value {
    font-weight: 700 !important;
    font-size: 44px !important;
    line-height: 123% !important;
    color: #f8b897 !important;
}

.counter-value::after {
    content: '%';
}

.counter-value::before {
    content: '+';
}

a.btn.theme-btn.btn2:hover {
    background: #000;
}

.sec3 {
    padding: 50px 0 100px;
}

.last-footer::after {
    content: '';
    background: url(/wp-content/uploads/2025/09/fotr-bffr.png);
    position: absolute;
    width: 101px;
    height: 188px;
    right: 140px;
    bottom: 0;
}

.wd-page-title {
    position: relative;
}

.wd-page-title::before {
    content: '';
    background: url(/wp-content/uploads/2025/09/inner-bnner.png);
    position: absolute;
    width: 98%;
    height: 100%;
    top: 22px;
    background-repeat: no-repeat;
    background-color: #fff;
    /* z-index: 1; */
    background-size: cover;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 20px;
}

.wd-page-title .container {
    position: relative;
    z-index: 22;
}

.wd-page-title .container {
    padding: 100px 0 50px;
}

nav.wd-breadcrumbs {
    background: #000;
    padding: 10px 20px;
    border-radius: 555px;
}

.inner-barq {
    padding: 0 !important;
}

.wd-content-layout {
    padding-top: 0;
    margin-top: -9px;
}

.inner-barq .wd-marquee-wrapp {
    border-radius: 0 0 20px 20px !IMPORTANT;
    margin-top: 29px;
}

.abt-bg {
    padding-top: 100px;
    padding-bottom: 50px;
}

.ser-bg {
    margin-top: 100px;
    /* border-radius: 20px !important; */
}

.ser-bg::before {
    border-radius: 20px;
}

.page-id-17 .sec6 {
    margin-top: 100px;
}

.social-col .wd-social-icon:hover {
    background: #4dbcff !important;
}


.last-footer .wd-social-icon:hover {
    background: #5ac9d1 !important;
    color: #fff !IMPORTANT;
}

.sec1 .wpb_column {
    position: relative;
    z-index: 3;
}

.wd-page-title::after {
    content: '';
    mix-blend-mode: overlay;
    opacity: 0.3;
    border: 10px solid #fff;
    border-radius: 20px;
    width: 90%;
    height: 60%px;
    position: absolute;
    top: 157px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

h1.entry-title.title {
    font-size: 56px !important;
}

div.wpforms-container-full input[type=date]:focus, div.wpforms-container-full input[type=datetime]:focus, div.wpforms-container-full input[type=datetime-local]:focus, div.wpforms-container-full input[type=email]:focus, div.wpforms-container-full input[type=month]:focus, div.wpforms-container-full input[type=number]:focus, div.wpforms-container-full input[type=password]:focus, div.wpforms-container-full input[type=range]:focus, div.wpforms-container-full input[type=search]:focus, div.wpforms-container-full input[type=tel]:focus, div.wpforms-container-full input[type=text]:focus, div.wpforms-container-full input[type=time]:focus, div.wpforms-container-full input[type=url]:focus, div.wpforms-container-full input[type=week]:focus, div.wpforms-container-full select:focus, div.wpforms-container-full textarea:focus, .wp-core-ui div.wpforms-container-full input[type=date]:focus, .wp-core-ui div.wpforms-container-full input[type=datetime]:focus, .wp-core-ui div.wpforms-container-full input[type=datetime-local]:focus, .wp-core-ui div.wpforms-container-full input[type=email]:focus, .wp-core-ui div.wpforms-container-full input[type=month]:focus, .wp-core-ui div.wpforms-container-full input[type=number]:focus, .wp-core-ui div.wpforms-container-full input[type=password]:focus, .wp-core-ui div.wpforms-container-full input[type=range]:focus, .wp-core-ui div.wpforms-container-full input[type=search]:focus, .wp-core-ui div.wpforms-container-full input[type=tel]:focus, .wp-core-ui div.wpforms-container-full input[type=text]:focus, .wp-core-ui div.wpforms-container-full input[type=time]:focus, .wp-core-ui div.wpforms-container-full input[type=url]:focus, .wp-core-ui div.wpforms-container-full input[type=week]:focus, .wp-core-ui div.wpforms-container-full select:focus, .wp-core-ui div.wpforms-container-full textarea:focus {
    border-color: #4dbcff !important;
    outline: none !important;
    box-shadow: none !important;
}

.sec6-inner a.btn.theme-btn {
    color: #fff;
}

.appointment-testimonial {
    padding-top: 100px;
}

.appointment {
    margin-top: 60px;
}

.inner-pages {
    /* padding-top: 100px; */
    /* padding-bottom: 30px; */
}

.wd-nav[class*="wd-style-"]>li:is(.wd-has-children,.menu-item-has-children)>a:after {
    font-size: 12px;
    color: #fff;
    font-weight: 800;
}

.wd-sub-menu li>a {
    color: #000 !important;
}

.wd-dropdown-menu.wd-design-default {
    border-radius: 10px;
}

.wd-sub-menu li>a:hover{
	color:#4dbcff !important;
}

.upcoming .wd-info-box {
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 10px;
    box-shadow: 0 2px 0 0 #4dbcff;
    background: #fff;
    padding: 40px 50px 36px;
    position: relative;
}

.main-box h6 {
    font-weight: 400;
    font-size: 14px;
    line-height: 186%;
    text-align: center;
    color: #fff;
    font-family: 'Inter';
    border-radius: 100%;
    background: #000;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    top: -60px;
    position: absolute;
    left: 0;
    right: 0;
}

.main-box h4 {
    font-weight: 600;
    font-size: 22px;
    /* line-height: 255%; */
    text-transform: capitalize;
    color: #000;
    font-family: 'Inter';
    margin-bottom: 25px;
    margin-top: 10px;
}

.box1 {
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    text-align: center;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.box1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  border-radius: 8px;
}

.box1 img {
  width: 18px;
  height: auto;
  vertical-align: middle;
}

.box1 span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.boxtwo {
    margin-top: 20px;
}

.main-box-row {
    padding-top: 70px;
    border-top: 1px solid #000;
    margin-top: 30px;
    padding-bottom: 40px;
    /* margin-bottom: 100px; */
}

.boxone h6 {
    /* position: relative; */
}

.boxone h6::after {
    content: '';
    background-image: url(/wp-content/uploads/2025/10/longarrow.png);
    width: 100%;
    height: 40px;
    top: -52px;
    position: absolute;
    background-repeat: no-repeat;
    /* left: 0; */
    /* right: 0; */
    background-position: top center;
    bottom: 0;
}

.boxtwo h6::after {
    content: '';
    background-image: url(/wp-content/uploads/2025/10/longesrarrow.png);
    width: 100%;
    height: 62px;
    top: -72px;
    position: absolute;
    background-repeat: no-repeat;
    /* left: 0; */
    /* right: 0; */
    background-position: top center;
    bottom: 0;
}

.upcoming .wd-info-box {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.upcoming .wd-info-box:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(0px);
}

.wd-dropdown-menu.wd-design-default {
  transition: box-shadow 0.3s ease;
}

.wd-dropdown-menu.wd-design-default:hover {
  box-shadow: 0 4px 15px rgba(77, 188, 255, 0.6);
}

.upcoming {
    padding-bottom: 50px;
}

span.divider {
    margin-left: 5px;
}

.inner-pages-mid::before {
    mask: none;
}

.inner-pages-mid {
    padding-bottom: 30px;
	margin-bottom: 0;
}

.inner-pages-mid .wpb_text_column {
    margin-bottom: 40px;
}
.inner-pages-last {
    padding-top: 0;
    /* padding-bottom: 80px; */
}
/* -------------------------------------------------------------media-1700px----------------------------------------------- */

@media (max-width: 1700px) {
	.whb-flex-row.whb-general-header-inner {
    /* padding-left: 40px; */
    margin-left: 30px;
    margin-right: 30px;
	}

	.sec1::before {
		width: 99%;
	}

	.sec4::before {
		width: 99%;
	}

	.sec6::before {
		width: 99%;
	}

	.marq1 .wd-marquee-wrapp {
		width: 99%;
	}

	.last-footer::before {
		width: 97%;
	}

	.copy-rt::before {
		width: 97%;
	}

		.vc_row {
		padding-left: 30px;
		padding-right: 30px;
	}

	.marq1 {
		padding-left: 0;
		padding-right: 0;
	}

	.footer-wrapper {
		padding-left: 30px;
		padding-right: 30px;
	}
		.wd-page-title::before {
		width: 99%;
	}
		.sec1::after {background-size: contain;width: 95%;margin: auto;
		}

		.vc_section[class*="wd-section-stretch"]>.vc_row {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.upcoming .wd-info-box {
		padding: 30px 50px 36px;
	}

	.main-box h4 {
		margin-bottom: 15px;
		font-size: 19px;
	}

	.box1 {
		font-size: 13px;
	}

}




/* -------------------------------------------------------------media-1440px----------------------------------------------- */

@media (max-width: 1440px) {
	.whb-flex-row.whb-general-header-inner {
    /* padding-left: 40px; */
    margin-left: 30px;
    margin-right: 30px;
	}

	.sec1::before {
		width: 99%;
	}

	.pre-footter p br {
    display: none;

	}
	.sec4::before {
		width: 99%;
	}

	.sec6::before {
		width: 99%;
	}
	
		.upcoming .wd-info-box {
		padding: 40px 0px 36px;
	}

	.marq1 .wd-marquee-wrapp {
		width: 99%;
	}

	.last-footer::before {
		width: 97%;
	}

	.copy-rt::before {
		width: 97%;
	}

		.vc_row {
		padding-left: 30px;
		padding-right: 30px;
	}

	.marq1 {
		padding-left: 0;
		padding-right: 0;
	}

	.footer-wrapper {
		padding-left: 30px;
		padding-right: 30px;
	}
		.wd-page-title::before {
		width: 99%;
	}
		.sec1::after {background-size: contain;width: 95%;margin: auto;
		}

		.vc_section[class*="wd-section-stretch"]>.vc_row {
		padding-left: 30px;
		padding-right: 30px;
	}
	.sec4 .wd-info-box {
/*     	min-height: 655px; */
	}
}

/* -------------------------------------------------------------media-1280px----------------------------------------------- */

@media (max-width: 1280px) {
	
	.social-col {
    bottom: 95px;
	}

		.pre-footter h2 {
		font-size: 56px;
	}

}

/* -------------------------------------------------------------media-1180px----------------------------------------------- */

@media (max-width: 1180px) {
	
	.social-col {
    bottom: 20px;
    left: 20px;
	}

	.social-col h6 {
		color: #000;
	}

	.social-col h6::before {
		background: #000 !important;
	}
			h1 {
		font-size: 44px;
	}

	h2 {
		font-size: 36px;
	}

	.sec4 p br {
		display: none;
	}

	.sec4 h4.info-box-title {
		font-size: 22px;
	}

	.testimonial-content {
		font-size: 14px;
	}

	.pre-footter p br {
		display: none;
	}
		.sec6-inner p br {
		display: none;
	}
}

/* -------------------------------------------------------------media-1024px----------------------------------------------- */

@media (max-width: 1024px) {
	
	h1 {
    font-size: 44px;
	}

	h2 {
		font-size: 36px;
	}

	.sec4 p br {
		display: none;
	}

	.sec4 h4.info-box-title {
		font-size: 22px;
	}

	.testimonial-content {
		font-size: 14px;
	}

	.pre-footter p br {
		display: none;
	}

	.social-col {
		bottom: 20px;
		left: 20px;
	}
	
	.main-box h4 {
    font-size: 17px;
	}

	.box1 {
		font-size: 14px;
		gap: 5px;
	}

	.social-col h6 {
		color: #000;
	}

	.social-col h6::before {
		background: #000 !important;
	}
		.sec6-inner p br {
		display: none;
	}
	
	.wd-toolbar{
		display:none !important;
	}
	
	.sticky-toolbar-on{
		margin-bottom:0 !important;
	}

}

.sec2 {
    display: none;
}

body .wd-page-title.page-title .container{
	z-index:99;
}

/* -------------------------------------------------------------media-767px----------------------------------------------- */

@media (max-width: 767px) {
		.whb-flex-row.whb-general-header-inner {
		margin-left: 0;
		margin-right: 0;
		margin-top: 20px;
	}

	.sec1 {
		padding: 40px 0 40px;
		margin-top: 20px;
		border-radius: 20px;
	}

	h1 {
		font-size: 28px;
		margin-bottom:10px;
	}

	.sec1 p {
		font-size: 14px;
		line-height: 1.3;
	}

	.sec1 .wd-info-box {
/* 		margin-top: 80px; */
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: 10px;
		margin-bottom:10px;
	}


.sec2 {
    display: none;
}

.my-card {
    justify-content: center;
    align-items: center;
}

h2.my-title {
    width: 100%;
    text-align: left;
}

.my-card p {
    width: 100%;
}

.pe2-card {
    align-items: center;
}

.pe2-card p {
    width: 100%;
}



.vc_custom_1770703087222 {
    background-color: #00000047 !important;
    margin-top: 70px !important;
    padding-top: 30px;
    margin: 0;
    border-radius: 10px;
}


	.sec1 .info-box-inner.reset-last-child p {
		font-size: 14px !important;
	}

	a.btn.theme-btn {
		font-size: 12px;
		padding: 4px 20px 4px 4px;
		gap: 5px;
	}

		.round {
		width: 100px;
		height: 100px;
			top:-50px;
	}

	.round::before {
		width: 70px;
		/* height: 50px; */
	}
		.sec4::before{
			--s:60px;
		}

		.vc_row {
		padding-left: 0;
		padding-right: 0;
	}
		h1 br {
		display: none;
	}

	a.btn.theme-btn::before {
		width: 34px;
		height: 34px;
	}

		p {
		font-size: 14px;
		margin-bottom: 10px;
	}

	h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}

	h5 {
		margin-bottom: 10px;
	}

	.woodmart-counter {
		/* display: flex; */
		/* font-size: 22px !important; */
		align-items: center;
		gap: 10px;
		margin-bottom: 10px;
	}

	.woodmart-counter .counter-value {
		font-size: 32px !important;
	}

	.counter-label {
		line-height: 1.3 !important;
		/* margin-top: 0 !IMPORTANT; */
		/* max-width: 70%; */
	}

	.sec2 {
		padding: 20px 0;

	}

	  .sec2 .vc_row.vc_inner .vc_col-sm-3 {
		width: 50% !important; /* show 2 columns per row */
		float: left !important;
	  }
	.sec2 p {
		font-size: 14px;
	}

	.sec2 .wpb_text_column {
		background-size: 80% !IMPORTANT;
	}

	.sec2 .vc_column-inner {
		background-size: 60% !important;
	}

		.sec3 {
		padding: 0px 0 30px;
	}

	.wd-marquee {
		height: 30px;
	}

	.wd-marquee-content {
		font-size: 16px !important;
	}

	.sec4 {
		padding: 40px 0 50px;
		margin-bottom: 0;
	}

	a.btn.theme-btn.btn2 {
		margin-top: 0px;
	}

	.sec4 .wpb_text_column {
		margin-bottom: 20px;
	}

	.sec4 .info-box-inner.reset-last-child p {
		line-height: 140%;
	}

	.sec4 .wd-info-box {
		padding-bottom: 0;
		gap: 10px;
	}

	.sec5 {
		padding: 80px 0 0px;
	}

	.sec5 .vc_col-sm-1 {
		display: none !important;
	}
	.marq2 .wd-marquee-wrapp {
		margin-bottom: 30px;
	}

	.vc_section[class*="wd-section-stretch"]>.vc_row {
		padding-left: 0;
		padding-right: 0;
	}

	.sec6-inner {
		padding: 40px 0 40px;
		margin-bottom: 40px;
	}

	.wd-nav-arrows.wd-pos-together {
		top: 40px ! IMPORTANT;
		right: 10px !important;
	}

	.sec6 .wpb_text_column {
		margin-bottom: 0;
	}

	.testimonials .wd-carousel {
		padding: 100px 0 40px;
	}
	.social-col h6 {
		color: #fff;
	}

	.social-col h6::before {
		background: #fff !important;
	}

	.testimonial-content footer {
		margin-top: 10px;
		top: -5px;
	}

	.testimonial-content {
		padding: 50px 15px 30px 15px;
		min-height: auto;
	}
	.sec7 {
		padding-top: 30px;
		padding-bottom: 0px;
	}

	button#wpforms-submit-97 {
		gap: 10px;
		font-size: 12px;
		padding: 0px 20px 0px 4px;
		/* width: 100%; */
		width: unset;
		height: unset;
	}

	button#wpforms-submit-97::before {
		width: 34px;
		height: 34px;
	}

	div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
		height: 100px !important;
	}

	.pre-footter h2 {
		font-size: 28px;
	}

	.pre-footter p {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.pre-footter {
		padding-top: 40px;
	}
	.last-footer .wpb_single_image  {
		margin-bottom: 10px !important;
		width: 40%;
	}


	.last-footer p {
		font-size: 14px;
	}

	.last-footer .wpb_text_column {
		margin-bottom: 20px;
	}

	.last-footer h4 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.last-footer ul li {
		/* margin-bottom: 0; */
	}

	.last-footer .vc_col-sm-2 {
		width: 45%;
		/* display: flex; */
		float: left;
	}

	.last-footer .vc_col-sm-3 {
		width: 55%;
		/* display: inline-table; */
		float: left;
	}

	.last-footer .vc_col-sm-1 {
		display: none !important;
	}

	.footer-wrapper {
		display: flex;
		flex-direction: column-reverse;
		/* align-items: center; */
		/* justify-content: center; */
		text-align: center;
		gap: 5px;
		padding-left: 0;
		padding-right: 0;
	}

	.footer-center {
		display: none;
	}

	.footer-left, .footer-center, .footer-right {
		font-size: 14px;
	}

	.footer-right a {
		font-size: 14px;
	}
		.last-footer {
		padding-top: 30px;
	}

	.icegramm {
		padding-bottom: 0px;
		padding-top: 20px;
	}

	.icegramm h2 {
		font-size: 28px !IMPORTANT;
		line-height: 1.1 !important;
	}

	.footer::before {
		background-position: right;
	}

	body .wd-content-layout {
		padding-bottom: 0px !important;
	}

	.sticky-toolbar-on {
		padding-bottom: 0 !important;
	}
	.sec1::before {
		width: 100%;

	}
		.copy-rt::before {
		margin-bottom: 0;
	}

	.copy-rt {
		height: 80px;
	}

	.pre-footter h2 br {
		display: none;
	}

		p br {
		display: none;
	}
		.last-footer li:nth-child(2) a {
		word-break: break-all;
	}
		.last-footer ul li img {
		display: none;
	}
		h1.entry-title.title {
		font-size: 25px !important;
	}

	.wd-page-title .container {
		/* padding: 30px 0 20px; */
	}

	nav.wd-breadcrumbs {
		padding: 5px 10px;
	}

	nav.wd-breadcrumbs a {
		font-size: 12px;
	}

	span.wd-last {
		font-size: 12px;
	}
		.wd-page-title::before {

		top: 10px;

	}
	.wd-page-title .container {
		gap: 5px !important;
		padding: 30px 0 10px;
	}

	.wd-page-title::after {
		height: 60%;
		top: 80px;
	}

	.inner-barq .wd-marquee-wrapp {
		margin-top: 15px;
	}
	.wd-logo img {
    width: 100px !important;
	}

	.whb-flex-row.whb-general-header-inner {
		padding-right: 10px;
	}

	.abt-bg {
		padding-top: 50px;
	}

	.page-id-15 .sec6, .page-id-17 .sec6 {
		margin-bottom: 30px !important;
	}
	
	.ser-bg {
    margin-top: 40px;
	}

	.page-id-17 .sec6 {
		margin-top: 70px;
	}
	
	.wd-header-nav, .site-logo {
  	  padding-inline: 0 !important;
	}
	
	.appointment-testimonial {
		padding-top: 40px;
		margin-bottom: 30px;
	}
.sec1 .wpb_text_column p br {
    display: unset;
}
    .boxone h6::after {
    display: none;
}

.boxtwo h6::after {
    display: none;
}

.main-box-row {
    margin-top: 0;
}

.upcoming .wd-info-box {
    margin-bottom: 40px;
}

.boxtwo {
    margin-top: 0;
}

.main-box-row {
    padding-top: 40px;
	padding-bottom:0;
}

.upcoming {
    padding-bottom: 10px;
}
.sec6 {
    padding-top: 7px;
}
.abt-bg .wpb_text_column {
    margin-bottom: 20px;
}
	.pre-footter p {
    text-shadow: none;
}
	.contact-pg {
    padding-top: 50px;
}
.contact-pg .wpb_single_image {
    margin-bottom: 20px;
}
	.inner-pages {
    padding-top: 40px;
    /* padding-bottom: 0; */
}

.inner-pages-mid {
    padding-bottom: 10px;
    /* margin-bottom: 0; */
}

.inner-pages-last {
    padding-top: 0;
}
	.inner-pages-last .vc_row {
    flex-direction: column-reverse;
}
}

.service-last-row .pe-services .pe-card {
    width: 30.5%;
}
.sec1 h1 {
    text-shadow: 3px 4px 2px #000000c4;
}

.sec1 p {
    font-size: 21px !IMPORTANT;
    text-shadow: 2px 1px 1px #000000c4;
}

/* BANNERS */
/* .page-id-19 .wd-page-title::before {
    content: '';
    background: url(/wp-content/uploads/2026/02/Whisk_51170c1085b0a559fdc4ae2cb2f3a9dcdr.png);
    position: absolute;
    width: 98%;
    height: 100%;
    top: 22px;
    background-repeat: no-repeat;
    background-color: #fff;
    /* z-index: 1; */
    background-size: cover;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 20px;
    background-size: 100% 100% !important;
} */

.page-id-326 .wd-page-title::before {
    content: '';
    background: url(/wp-content/uploads/2026/02/Whisk_a08bd98d8a406a5a0e84d472cf6eca68dr.png);
    position: absolute;
    width: 98%;
    height: 100%;
    top: 22px;
    background-repeat: no-repeat;
    background-color: #fff;
    /* z-index: 1; */
    background-size: cover;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 20px;
}

/* .page-id-307 .wd-page-title::before {
    content: '';
    background: url(/wp-content/uploads/2026/02/Whisk_e111a20a1db218fbe31458288738c15cdr.png);
    position: absolute;
    width: 98%;
    height: 100%;
    top: 22px;
    background-repeat: no-repeat;
    background-color: #fff;
    /* z-index: 1; */
    background-size: cover;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 20px;
} */
div#home-contact {
    padding-top: 50px !important;
}

/* .footer::before {
    content: '';
    background: url(/wp-content/uploads/2026/02/Whisk_937a91940be8014851a4d75d1669af68dr.png) no-repeat;
    width: 98%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    background-position: center;
    background-size: cover;
    margin: auto;
    border-radius: 20px;
    /* margin-bottom: 40px !important; */
    opacity:0.9;
    background-attachment:fixed;
} */

.page-id-292 .wpb_single_image .vc_figure {
    padding-top: 0 !important;
}