/*
 Theme Name: Vami Healthcare and Resources
Theme URI: http://codearoma/
Author: codearoma
Author URI: https://codearoma.com/
 Description: CodeAroma Technologies mainly focuses on Website development, Application development, Software development, Online Marketing Services and Branding. 
 Version: 1.0.0
 Tested up to: 5.4
 Requires PHP: 5.6
 License: GNU General Public License v2 or later
 License URI: LICENSE
 Text Domain: codearoma
 Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 This theme, like WordPress, is licensed under the GPL.
 */
/* Start Default CSS*/
@font-face {
    font-family: 'fontello';
    src: url('assets/fonts/fontello.eot');
    src: url('assets/fonts/fontello.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/fontello.woff2') format('woff2'),
        /* Add woff2 if available */
        url('assets/fonts/fontello.woff') format('woff'),
        url('assets/fonts/fontello.ttf') format('truetype'),
        url('assets/fonts/fontello.svg#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /*  This improves CLS and fixes Lighthouse warning */
}

.demo-icon {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
}

/* ✅ Critical CSS: Header, Logo, Navigation */
:root {
    --primary: #42974f;
    --secondary: #0162af;
    --black: #000000;
    --white: #ffffff;
    --gray: #f4f4f4;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevents inline gaps */
}

/* Sticky Navbar */
#masthead {
    background-color: #fff;
    transition: .5s ease top;
    top: -105px;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    z-index: 999;
}

#masthead.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

#masthead .header h1 {
    color: white;
}

/* Menu styling */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.main-navigation ul.sub-menu {
    display: none;
    padding-left: 15px;
}

.main-navigation ul.sub-menu.depth-0 {
    padding-left: 0;
}

.menu-toggle {
    display: none;
}

.main-navigation a:hover,
.main-navigation a:focus {
    background-color: #f5f5f5;
}

.main-navigation .current-menu-item>a {
    font-weight: bold;
}

/* Mobile styles */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 4px;
        width: 40px;
        height: 40px;
        background: #000;
        border: none;
        cursor: pointer;
        padding: 0;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        z-index: 1;
        color: #fff;
    }

    .main-navigation li.has-children>a {
        padding-right: 40px;
    }

    .main-navigation ul.sub-menu {
        display: none;
        padding-left: 15px;
        background-color: #f9f9f9;
    }

    .main-navigation ul.sub-menu .sub-menu {
        padding-left: 15px;
    }

    .main-navigation ul.sub-menu li a {
        padding-left: 25px;
    }

    .main-navigation ul.sub-menu li.has-children>a {
        padding-right: 40px;
    }

    .main-navigation ul.sub-menu.active {
        display: block;
    }
}

/* Hide anchor tags with href="#" */
.social_media a[href="#"],
.social_media a[href=""],
.social_media a[href=" "],
.social_media a:not([href]) {
    display: none;
}

.social_media li:empty {
    display: none;
}

/* Desktop styles */
@media (min-width:991px) {
    .main-navigation>ul>li {
        display: inline-block;
    }

    .main-navigation ul.sub-menu {
        position: absolute;
        min-width: 200px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding-left: 0;
    }

    .main-navigation ul.sub-menu .sub-menu {
        left: 100%;
        top: 0;
    }

    /*.main-navigation li.has-children>a {*/
    /*    padding-right: 30px;*/
    /*}*/

    .main-navigation li.has-children:hover>ul.sub-menu {
        display: block;
    }
}

/*Custom Form*/
.form-group textarea,
.form-group input[type="email"],
.form-group input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    color: #000;
    line-height: 30px;
    font-weight: 600;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 11px 20px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--primary);
    -o-border-image: initial;
    border-image: initial;
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
    margin-bottom: 15px;
}

button.refresh-captcha {
    background: #f1f1f1;
    color: #000;
    padding: 13px 16px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    border-radius: 7px;
    border: 1px solid var(--primary);
}

.refresh-captcha:hover {
    background-color: #e0e0e0;
}

.custom-file-upload {
    display: inline-block;
    padding: 12px 20px;
    cursor: pointer;
    border: 1px solid var(--primary);
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #000;
    text-align: left;
    transition: all 0.3s ease;
    width: 100%;
}

.custom-file-upload:hover {
    background-color: #f0f0f0;
}

.custom-file-upload input[type="file"] {
    display: none;
}

.file-name {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    word-break: break-all;
    position: absolute;
    right: 25px;
    top: 6px;
}

.form-group {
    position: relative;
}

.captcha {
    font-weight: 700;
    font-size: 25px;
    padding: 8px 0px;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Shadows Into Light', cursive;
    font-style: normal;
    letter-spacing: 5px;
    border: 1px solid var(--primary);
    border-radius: 7px;
}

.captcha-error {
    color: red;
    display: none;
    position: absolute;
}

/*Multi Slider*/
.slider-container {
    width: 100%;
    /* padding: 20px 0; */
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    flex: 0 0 auto;
    text-align: center;
    font-size: 18px;
    box-sizing: border-box;
    /* padding: 0 10px; */
}

.slider-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.slider-button-next {
    right: 10px;
}

.slider-button-prev {
    left: 10px;
}

.slider-pagination {
    text-align: center;
    margin-top: 10px;
}

.slider-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dot.active {
    background: #333;
}

/*404 page*/
.error-area .error-content i {
    color: var(--primary);
    display: inline-block;
    font-size: 100px;
}

.error-content h2 {
    font-size: 25px;
    color: var(--primary);
    margin-bottom: 10px;
    margin-top: 25px;
}

.error-content a {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    background-color: var(--primary);
    padding: 12px 35px;
}

p.notfound {
    font-size: 65px;
    float: left;
    width: 100%;
}

.p.notfound {
    color: var(--primary);
    display: inline-block;
    font-size: 100px;
}

.error-content h1 {
    font-size: 130px;
    color: var(--secondary);
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    display: block;
}

/* End Default CSS*/
section {
    float: left;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
}

ul {
    padding: 0;
    margin: 0;
}

a {
    list-style: none;
}

.header-top {
    position: relative;
    padding: 7px 0px;
    background-color: var(--secondary);
    float: left;
    width: 100%;
}

.header-top .top-left {
    position: relative;
    float: left;
    padding-left: 15px;
}

.header-top .info-list {
    position: relative;
}

.header-top .info-list li {
    position: relative;
    color: #ffffff;
    margin-right: 15px;
    display: inline-block;
    list-style: none;
}

.header-top .info-list li a {
    text-decoration: none;
    font-size: 14px;
    position: relative;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-top .top-right {
    position: relative;
    float: right;
}

.menu_header {
    float: left;
    width: 100%;
    box-shadow: 0px 0px 1px 1px #e5e5e5;
    position: relative;
    background: #fff;
}

.header-top .info-list li .icon {
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-right: 10px;
    float: left;
}

/*Slider*/
.carousel-control i.demo-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 24px;
}

a.btn {
    padding: 10px 16px;
    font-size: 16px;
}

#slider .carousel-control.left,
#slider .carousel-control.right {
    opacity: 0;
    filter: alpha(opacity=0);
    background-image: none;
    background-repeat: no-repeat;
    text-shadow: none;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    transition: all .25s ease;
}

#slider .carousel-control .fa-angle-left {
    left: 5px;
    background: var(--primary);
}

#slider .carousel-control .fa-angle-right {
    right: 5px;
    background: var(--primary);
}

#slider .carousel-control .fa-angle-left,
#slider .carousel-control .fa-angle-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transform: translateY(-50%);
}

#slider .carousel-control i {
    color: #fff;
    line-height: 48px;
    width: 48px;
    height: 48px;
    transition: all 500ms ease;
    background: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    margin: 15px;
}

#slider .carousel-control i:hover {
    background: var(--secondary);
}

.slider01 {
    background: #f9f9f9;
    padding-bottom: 50px;
    padding-top: 10px;
}

.slider-content {
    padding-top: 70px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 15px;
    width: 100%;
    position: relative;
    z-index: 99;
}

.slide-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
}

.slide-sub-title {
    font-style: normal;
    font-size: 40px;
    color: var(--secondary);
    font-weight: 700;
    padding: 15px 0px;
}

.slider-description {
    color: #000;
    font-weight: 500;
    margin: 20px 0 20px;
}

/* Testimonial Section */
.testimonial-section {
    position: relative;
}

.testimonial-section .sec-title .text {
    margin-top: 40px;
}

.testimonial-section .owl-carousel .owl-stage-outer {
    padding: 20px 0px;
}

.testimonial-section .owl-theme .testimonial-block {
    margin: 0px 15px;
}

.testimonial-section .btn_01 {
    position: relative;
    text-align: right;
    padding-right: 15px;
}

.testimonial-section .btn_01 {
    position: relative;
    width: 10px;
    height: 5px;
    border-radius: 0px;
    margin-left: 10px;
    display: inline-block;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    opacity: 0.9;
}

.testimonial-section .btn_01.active,
.testimonial-section .btn_01:hover {
    width: 30px;
    background-color: var(--primary);
}

.testimonial-block {
    position: relative;
}

.testimonial-block .inner-box {
    position: relative;
}

.testimonial-block .inner-box .upper-box {
    position: relative;
    padding-top: 9px;
    padding-left: 115px;
    margin: auto;
    width: 350px;
    text-align: center;
}

.testimonial-block .inner-box .upper-box .icon {
    position: absolute;
    left: 0px;
    top: 0px;
}

.carousel-indicators.testi_btn {
    bottom: -60px;
}

.testimonial-block .inner-box .upper-box h4 {
    position: relative;
    color: var(--secondary);
    font-weight: 600;
}

.testimonial-block .inner-box .upper-box .designation {
    position: relative;
    color: var(--primary);
    font-size: 16px;
}

.testimonial-block .inner-box .text {
    position: relative;
    margin-top: 35px;
    color: #000;
    font-size: 16px;
    line-height: 1.9em;
    font-weight: 500;
    text-align: center;
}

/* Fun fact */
.counter-area {
    background: #000;
    color: #fff;
}

.copyright-info,
.copyright-info a {
    color: #fff;
}

.copyright-info.right {
    text-align: right;
}

.copyright {
    background: var(--secondary);
    padding: 6px 0px;
}

.footer-bottom-two .menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-widget ul.list li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    margin-left: 15px;
    line-height: 24px;
}

.widgets-section li {
    margin-bottom: 10px;
}

.contact-widget ul.list i {
    margin-right: 10px;
}

.contact-widget ul.list {
    margin-bottom: 20px;
}

.copyright-text.text-right {
    text-align: right;
}

.copyright-text a {
    text-decoration: none;
}

section.bottom_footer {
    padding: 0px;
    background: var(--secondary);
    padding-bottom: 6px;
}

/*Custome post type product button*/
.pro_left_btn {
    background: var(--secondary);
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}


:root {
    --primary: #0a787e;
    --primary-color: #56585a;
    --secondary-color: #EAEEF1;
    --text-color: #000;
    --black: #000;
    --accent-color: #56585a;
    --accent-secondary-color: #303030;
    --white-color: #FFFFFF;
    --divider-color: #F1F1F1;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "DM Sans", sans-serif;
    --accent-font: "Epilogue", sans-serif;
}


body {
    position: relative;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--white-color);
}

::-webkit-scrollbar-track {
    background-color: var(--secondary-color);
    border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-secondary-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 0.5em;
}

section {
    padding-bottom: 70px;
    padding-top: 70px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 600;
    line-height: 1.2em;
    color: #000;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: inline-flex;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

/* button */
.chy-pr-btn-3 {
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    padding: 18px 24px;
    border-radius: 31px;
    transition: 500ms cubic-bezier(0, 0, 0.2, 1);
    cursor: pointer;
    border-right: 2px solid var(--accent-secondary-color);
    border-bottom: 2px solid var(--accent-secondary-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.chy-pr-btn-3 .text {
    position: relative;
    z-index: 1;
}

.chy-pr-btn-3 i {
    position: relative;
    z-index: 1;
}

.chy-pr-btn-3 i {
    margin-left: 25px;
}

.chy-pr-btn-3::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 77%;
    height: 100%;
    background: #303132;
    border-radius: 0px 0px 25px 0px;
    transition: 500ms cubic-bezier(0, 0, 0.2, 1);
}

.chy-pr-btn-3:hover {
    color: #fff;
    letter-spacing: 0.5px;
}

.chy-pr-btn-3:hover::after {
    width: 100%;
}

/* white button */
.chy-pr-btn-4 {
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    background: #000;
    color: #000;
    padding: 18px 24px;
    border-radius: 31px;
    transition: 500ms cubic-bezier(0, 0, 0.2, 1);
    cursor: pointer;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.chy-pr-btn-4 .text {
    position: relative;
    z-index: 1;
}

.chy-pr-btn-4 i {
    position: relative;
    z-index: 1;
}

.chy-pr-btn-4 i {
    margin-left: 25px;
    color: #fff;
}

.chy-pr-btn-4::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 77%;
    height: 100%;
    background: #fff;
    border-radius: 0px 0px 25px 0px;
    transition: 500ms cubic-bezier(0, 0, 0.2, 1);
}

.chy-pr-btn-4:hover {
    color: #000;
    letter-spacing: 0.5px;
}

.chy-pr-btn-4:hover i {
    color: #000;
    letter-spacing: 0.5px;
}

.chy-pr-btn-4:hover::after {
    width: 100%;
}


.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--accent-secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent #fff transparent #ffffff;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-section {
    width: 100%;
    max-width: 1820px;
    margin: 0 auto;
    background-color: var(--secondary-color);
}

.bg-section.dark-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-bottom: 69px;
}

.how-it-work {
    position: relative;
    background: url('assets/images/homepage/work-bg1.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-bottom: 140px !important;
}

.inquiry-b {
    position: relative;
    background: url('assets/images/contact/contact-b.webp');
}

.about-b {
    position: relative;
    background: url('assets/images/about/about-b.webp');
}

.blog-b {
    position: relative;
    background: url('assets/images/homepage/blog-b.webp');
}

.service-b {
    position: relative;
    background: url('assets/images/homepage/service-b.webp');
}

.bg-section.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: radial-gradient(78.51% 74.25% at 50.45% 50.9%, rgba(1, 78, 78, 0) 2.01%, #313233 100%);
    height: 100%;
    width: 100%;
    z-index: 0;
}

.banner-know-box {
    padding: 7px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid #CBCBCB;
    background: #fff;
}

.banner-know-box .icon {
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background: var(--primary-color);
}

.banner-know-box .text {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: var(--primary-color);
}

.page-breadcrumb {
    position: relative;
    margin-top: 0;
}

.page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    padding-right: 13px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: #000;
}

.page-breadcrumb li a {
    color: #000;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.page-breadcrumb li a::before {
    position: absolute;
    content: "\f101";
    right: -6px;
    font-size: 14px !important;
    top: -1px;
    font-size: 17px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.page-header-box {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

ul.page-breadcrumb {
    padding-left: 0;
    margin-bottom: 0;
}

.bg-section.dark-section .container {
    position: relative;
    z-index: 1;
}

.section-row {
    margin-bottom: 35px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 25px;
}


.h2h2 {
    position: relative;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--black);
    background-position: left top;
    background-size: 22px auto;
    display: inline-block;
    margin-bottom: 10px !important;
}

.section-title h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 0;
    cursor: none;
}

.text-anime-style-3 {
    font-size: 46px;
    margin-bottom: 0;
    /* cursor: none; */
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.bg-section.dark-section .section-title-content p,
.bg-section.dark-section .section-title p,
.bg-section.dark-section .section-title h3,
.bg-section.dark-section .section-title h2,
.bg-section.dark-section .section-title h1 {
    color: var(--white-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/
header.main-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-bottom: 1px solid var(--dark-divider-color);
    background: transparent;
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

.main-header.bg-section {
    border-radius: 0;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--accent-secondary-color);
    border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
    padding: 5px 0;
    align-items: center;
}

/* .navbar-brand{
	padding: 0;
	margin: 0;
	background-color: #ffffff;
    padding: 2px 10px;
    border-radius: 13px;
} */
.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 15px 15px !important;
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: #ffffff;
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 261px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: #000;
    padding: 8px 8px 8px 35px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

/* Submenu Base Style */
.submenu ul li a {
    position: relative;
    display: block;
    padding: 10px 15px 10px 45px;
    color: var(--black);
    font-size: 15px;
    transition: all 0.4s ease;
}

/* Icon Before Each <a> */
.submenu ul li a:before {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    color: var(--black);
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

.submenu ul li a:hover {
    padding: 8px 8px 8px 15px !important;
    background: var(--primary-color);
    color: #fff;
}

.submenu ul li a:hover:before {
    display: none;
}

.header-contact-btn {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--accent-secondary-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
    background-color: var(--accent-secondary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
    background-color: var(--accent-secondary-color);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: #fff;
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--primary-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--accent-secondary-color);
}

.slicknav_menu ul ul li a {
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--primary-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--accent-secondary-color);
}

/* slider */
.hero {
    position: relative;
    padding: 155px 0 0;
    /* margin-top: 50px; */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('assets/images/hero-bg-leaf.webp') no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
}

.hero.hero-bg-image {
    background: url('assets/images/hero-bg.webp') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 285px 0 180px;
    /* overflow: hidden; */
}

.hero.hero-bg-image.bg-section.dark-section::before {
    opacity: 70%;
    border-radius: 0;
    z-index: 1;
}

.hero.hero-bg-image::after {
    display: none;
}

.hero.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero-slide {
    position: relative;
    background: url('assets/images/hero-bg.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 80px 0 80px 0;
	height: 100vh;
}

.hero-slide.slide-2 {
    background: url('assets/images/hero-bg-2.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-slide.slide-3 {
    background: url('assets/images/slider/slider-3.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-slide.slide-4 {
    background: url('assets/images/slider/slider-4.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

a.navbar-brand img {
    max-width: 170px;
    height: auto;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    text-align: center;
    z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.hero.hero-bg-image .hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero.hero-bg-image .hero-content .section-title p {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 10px;
}

.hero-content-body {
    display: flex;
    align-items: center;
    gap: 20px 30px;
    justify-content: center;
}

.contact-now-box {
    display: inline-flex;
    align-items: center;
    text-align: left;
}

.contact-now-box .icon-box {
    position: relative;
    background: var(--dark-divider-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box {
    background-color: var(--accent-color);
}

.contact-now-box .icon-box img {
    max-width: 24px;
    transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.contact-now-box-content p {
    color: var(--white-color);
    margin-bottom: 5px;
}

.contact-now-box-content h3 {
    font-size: 20px;
    color: var(--white-color);
}

.contact-now-box-content h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover {
    color: var(--accent-color);
}

.hero-content-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.trusted-client-images {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.client-image {
    position: relative;
    border: 1px solid var(--accent-secondary-color);
    border-radius: 50%;
    margin-left: -10px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    z-index: 1;
}

.client-image:first-child {
    margin: 0;
}

.client-image figure {
    display: block;
}

.client-image img {
    width: 100%;
    border-radius: 50%;
}

.client-image.add-more {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.client-image.add-more h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.trusted-client-review p {
    color: var(--white-color);
    margin-bottom: 0;
}

.trusted-client-review p i {
    color: var(--accent-color);
    margin: 0 6px;
}

.hero-image {
    position: relative;
}

.hero-image figure {
    display: block;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 1 / 1.375;
    object-fit: cover;
}

.hero-experience-box {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    max-width: 200px;
    background-color: var(--accent-color);
    box-shadow: 0px 0px 11.8px 0px #0000001F;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    animation: experienceobject 3s infinite linear alternate;
    overflow: hidden;
}

@keyframes experienceobject {
    50% {
        right: 40px;
    }
}

.hero-experience-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.hero-experience-box:hover::before {
    top: auto;
    height: 100%;
}

.hero-experience-box h2,
.hero-experience-box p {
    position: relative;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.hero-experience-box h2 {
    font-size: 40px;
    font-weight: 700;
    width: calc(35% - 10px);
}

.hero-experience-box p {
    width: calc(65% - 10px);
    color: var(--primary-color);
    margin-bottom: 0;
}

.hero-experience-box:hover h2,
.hero-experience-box:hover p {
    color: var(--accent-secondary-color);
}

/* about us start */
.about-us {
    position: relative;
}

.about-us:before {
    position: absolute;
    content: "";
    background-image: url(assets/images/homepage/about-side.webp);
    height: 181px;
    width: 192px;
    right: 4%;
    animation-name: zoomInOut;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background-size: contain;
    bottom: 0;
}

@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.list-style-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
}

.list-style-two li {
    position: relative;
    font-size: 16px;
    color: #000000;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-left: 28px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 10px;
    list-style: none;
}

.list-style-two li i {
    position: absolute;
    left: 0px;
    top: 0px;
    color: var(--black);
    font-size: 18px;
    line-height: 24px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.about-section .image-column .image-box {
    position: relative;
}

.about-section .image-column {
    position: relative;
}

.about-section .image-column .image-box .icon-shpaes {
    position: absolute;
    left: -80px;
    top: 15px;
    height: 556px;
    width: 247px;
    background-image: url(assets/images/about/shape-17.webp);
}

.about-section .image-column .image {
    margin: 0;
}

.image-block-three .image-box {
    position: relative;
    display: block;
    margin-right: 30px;
    padding-right: 160px;
    padding-top: 160px;
}

.image-block-three .image-box .image {
    overflow: hidden;
}

.image-block-three .image-box .image {
    overflow: hidden;
    border-radius: 15px;
}

.image-block-three .image-box .image-2 {
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 15px;
}

.image-block-three .image-box img {
    width: 100%;
    transition: all 500ms ease;
    top: -34px;
    position: relative;
    border-radius: 15px;
}

.image-block-three .image-box .text {
    position: absolute;
    right: 64px;
    bottom: 150px;
}

.image-block-three .image-box .text .text-shape {
    position: absolute;
    left: -45px;
    top: -34px;
    width: 204px;
    height: 105px;
    background-repeat: no-repeat;
}

.image-block-three .image-box .text span {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 500;
    transform: rotate(-18deg);
    letter-spacing: 1px;
}

.image-block-three .image-box .image-shape {
    position: absolute;
    left: 60px;
    top: 0px;
    width: 61px;
    height: 290px;
    background-repeat: no-repeat;
    z-index: 1;
}


/* services start */
/* .service-style1 {
    background-color: #fff;
    margin-bottom: 30px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px 15px 0 0;
}
.service-style1 .service-img {
    overflow: hidden;
}
.service-style1 .service-img img {
    width: 100%;
    transform: scale(1.001) rotate(0);
    transition: all ease .4s;
    border-radius: 15px 15px 0 0;
}
.slick-slide img {
    display: inline-block;
}
.service-style1 .service-content {
    padding: .1px 20px 20px 20px;
}
.service-style1 .service-body {
    background-color: #565859;
    padding: .1px 20px 20px 20px;
    position: relative;
    margin-top: -50px;
    z-index: 1;
}
.service-style1 .service-shape {
    position: absolute;
    right: 0;
    top: 0;
}
.service-title.h5 a {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
}
.slick-slide img {
    display: inline-block;
}
.service-style1 .service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #fff;
    margin-top: -25px;
    margin-bottom: 15px;
	
}
.service-style1 .service-text {
    margin-bottom: 22px;
	color: #fff;
}
.service-style1:hover .service-img img {
    transform: scale(1.1) rotate(5deg);
}

.page-cta-box{
	position: relative;
	background: url('assets/images/page-cta-box-bg.webp') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
	align-content: center;
    height: calc(100% - 30px);
	margin-bottom: 30px;
    padding: 40px;
	overflow: hidden;
}
.page-cta-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.page-cta-box-info,
.page-cta-box .contact-now-box{
	position: relative;
	z-index: 1;
}
.page-cta-box-info{
	margin-bottom: 30px;
}
.page-cta-box-info h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}
.page-cta-box-info h2{
	font-size: 30px;
	color: var(--white-color);
}
.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	margin-bottom: 0;
}

.section-footer-text span{
	font-family: var(--accent-font);
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	background: var(--accent-color);
	padding: 4px 10px;
	border-radius: 100px;
	margin-right: 10px;
}

.section-footer-text p a{
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-secondary-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--accent-color);
} */

.service-one {
    position: relative;
}

.watermark2-bg {
    position: absolute;
    right: -80px;
    top: 0;
    z-index: -1;
    max-width: 100%;
}

.service-one__item {
    position: relative;
    border-radius: 70px 70px 0 0;
    z-index: 2;
    overflow: hidden;
    counter-increment: count;
    transition: all .5s ease;
    background-color: #fff;
}

.service-one__item__image {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-one__item__image img {
    width: 100%;
    height: auto;
}

.service-one__item__image:after {
    background: linear-gradient(90deg, rgba(var(--tolak-white-rgb, 255, 255, 255), .13) 0, rgba(var(--tolak-white-rgb, 255, 255, 255), .13) 77%, rgba(var(--tolak-white-rgb, 255, 255, 255), .5) 92%, rgba(var(--tolak-white-rgb, 255, 255, 255), 0));
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    position: absolute;
    top: -50%;
    transition: all .7s ease 0s;
    width: 200%;
}

.service-one__item__content {
    position: relative;
    padding: 0 20px 25px;
    border: 1px solid var(--black);
    border-top: none;
}

.service-one__item__icon {
    width: 90px;
    height: 90px;
    background-color: var(--black);
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    line-height: 1;
    position: relative;
    z-index: 1;
    color: #fff;
    margin: -46px auto 15px;
    overflow: hidden;
    transition: .1s ease;
}

.service-one__item__icon span {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: all .5s linear;
    transition-delay: 0s;
    transition-delay: .1s;
    transform: scale(1);
}

.service-one__item__icon:after {
    position: absolute;
    content: "";
    background-color: var(--primary-color);
    width: 100%;
    height: 0;
    left: 50%;
    top: 50%;
    border-radius: 25px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all .5s ease;
}

.service-one__item__title {
    font-size: 22px;
    margin: 0 0 8px;
}

.service-one__item__title a {
    color: inherit;
    background: linear-gradient(90deg, currentcolor 0, currentcolor) 0 95% / 0 1px no-repeat;
    transition: all .5s ease;
}

.service-one__item__text {
    line-height: 28px;
    margin: 0;
}

.service-one__item__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--black);
    border-top: none;
    padding: 12px 31px 10px 31px;
    overflow: hidden;
    transition: all .5s linear;
    background-color: #000;

}

.service-one__item__bottom__number {
    position: relative;
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #b7b7b7;
}

.service-one__item__bottom__number:before {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-one__item__bottom__rm {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
    line-height: 1;
    letter-spacing: .24px;
    background: linear-gradient(90deg, currentcolor 0, currentcolor) 0 95% / 0 1px no-repeat;
    transition: all .5s ease;
}

.service-one__item__bottom__rm span {
    line-height: inherit;
    margin-left: 6px;
}

.service-one__item__bottom:after {
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    width: 0;
    opacity: 0;
    height: calc(100% + 20px);
    content: "";
    background-color: var(--primary-color);
    transition: all .5s linear;
    transform: rotate(32deg);
    margin: 0 auto;
}

.service-one__item:hover .service-one__item__image:after {
    left: -30%;
    opacity: 1;
    top: -20%;
    transition-duration: .7s, .7s, .15s;
    transition-property: left, top, opacity;
    transition-timing-function: linear;
}

.service-one__item:hover .service-one__item__icon:after {
    height: 100%;
}

.service-one__item.service-one__item__bottom {
    border-color: var(--black);
    background-color: var(--black);
}

.service-one__item:hover .service-one__item__bottom:after {
    width: 8px;
    opacity: 1;
}

.service-one__item:hover .service-one__item__bottom__rm {
    color: #fff;
}

.blog-one {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ns-blog-bg-shape-1.ns-blog-shape-bg {
    left: 0;
    bottom: 0;
}

.ns-blog-shape-bg {
    position: absolute;
    z-index: -1;
}

.ns-blog-bg-shape-2.ns-blog-shape-bg {
    bottom: 0;
    right: 0;
}

.ns-blog-shape-bg {
    position: absolute;
    z-index: -1;
}

.ns-blog-bg-shape-3.ns-blog-shape-bg {
    top: -420px;
    left: 0;
}

.ns-blog-shape-bg {
    position: absolute;
    z-index: -1;
}

.ns-blog-bg-shape-4.ns-blog-shape-bg {
    top: 100px;
    right: 0;
}

.ns-blog-shape-bg {
    position: absolute;
    z-index: -1;
}

/************************************/
/***      07. What We Do css      ***/
/************************************/
.what-we-do-image-1 figure,
.what-we-do-image-2 figure {
    display: block;
    border-radius: 20px;
}

.what-we-do-image-1 img,
.what-we-do-image-2 img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.what-we-do-image-1 img {
    aspect-ratio: 1 / 1.455;
}

.what-we-do-content .section-row {
    margin-bottom: 40px;
}

.what-we-list-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.what-we-list-item:last-child {
    margin-bottom: 0;
}

.what-we-list-item .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-secondary-color);
    border-radius: 50%;
    margin-right: 20px;
}

.what-we-list-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-secondary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.what-we-list-item:hover .icon-box::before {
    transform: scale(1);
}

.what-we-list-item .icon-box img {
    width: 100%;
    max-width: 30px;
    transition: all 0.3s ease-in-out;
    filter: brightness(0) invert(0);
}

.what-we-list-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.what-we-do-list-content {
    width: calc(100% - 80px);
}

.what-we-do-list-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.what-we-do-list-content p {
    margin-bottom: 0;
}

.what-we-do-image-2 img {
    aspect-ratio: 1 / 0.975;
}


/* why choose us start */
.expertise-image {
    margin-right: -130px;
}

.expertise-image figure {
    display: block;
    border-radius: 20px;
}

.expertise-image img {
    width: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
    border-radius: 20px;
}

.expertise-box-list {
    position: relative;
    z-index: 1;
}

.expertise-box {
    position: relative;
    background: var(--white-color);
    box-shadow: 0px 0px 30px 0px #0000000D;
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.expertise-box::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.expertise-box:hover::after {
    height: 100%;
}

.expertise-box:last-child {
    margin-bottom: 0;
}

.expertise-box-content {
    position: relative;
    z-index: 1;
}

.expertise-box-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.expertise-box-content p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.expertise-box:hover .expertise-box-content p {
    color: var(--primary-color);
}

.expertise-box-btn {
    position: relative;
    z-index: 1;
}

/* how it works */
.how-it-work-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.how-work-step-item {
    width: calc(25% - 22.5px);
}

.how-work-step-item .icon-box {
    position: relative;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    margin-right: 15px;
    margin-bottom: 30px;
}

.how-work-step-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.how-work-step-item:hover .icon-box::before {
    transform: scale(1);
}

.how-work-step-item .icon-box img {
    width: 100%;
    max-width: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease-in-out;
}

.how-work-step-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.how-work-no {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    height: 30px;
    width: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.how-work-no h3 {
    font-size: 18px;
}

.how-work-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 5px;
}

.how-work-content p {
    color: var(--white-color);
    margin: 0;
}


/* get in touch */
.book-appointment {
    position: relative;
    margin-top: -150px;
    z-index: 2;
}

.book-appointment-box {
    border: 1px solid var(--divider-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-image: url(assets/images/homepage/getin-bg.webp);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    padding: 50px;
}

.book-appointment-content {
    width: calc(48% - 30px);
}

.book-appointment-image figure {
    display: block;
    border-radius: 20px;
}

.book-appointment-image img {
    width: 100%;
    aspect-ratio: 1 / 0.555;
    object-fit: cover;
    border-radius: 20px;
}

.book-appointment-form {
    width: calc(52% - 30px);
}

.book-appointment-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    padding: 17px 20px;
    box-shadow: none;
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.book-appointment-form .form-control::placeholder {
    color: var(--text-color);
}

.book-appointment-form .form-control.form-select {
    padding: 17px 35px 17px 20px;
}

.book-appointment-form .form-control.form-select option {
    font-weight: 500;
    color: var(--accent-secondary-color);
}

/* faq start */
.our-faqs {
    position: relative;
}

.faq-images {
    position: relative;
    background: url('assets/images/homepage/faq-image-star.webp') no-repeat;
    background-size: 55px auto;
    background-position: bottom 205px left 100px;
    padding: 0 190px 270px 0;
    margin-right: 20px;
}

.our-faqs:before {
    position: absolute;
    content: "";
    background-image: url(assets/images/homepage/faq-shape.webp);
    height: 150px;
    width: 111px;
    left: 4%;
    animation-name: zoomInOut;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background-size: contain;
    bottom: 32px;
}

.faq-image-1 {
    position: relative;
}

.faq-image-1::before {
    content: '';
    position: absolute;
    top: 110px;
    right: -130px;
    background: url('assets/images/homepage/faq-image-circle.webp') no-repeat;
    background-size: cover;
    height: 85px;
    width: 85px;
    animation: infiniterotate 20s infinite linear;
}

.faq-image-1 figure {
    display: block;
    border-radius: 30px;
}

.faq-image-1 img,
.faq-image-2 img {
    width: 100%;
    object-fit: cover;
}

.faq-image-1 img {
    aspect-ratio: 1 / 0.912;
    border-radius: 30px;
}

.faq-image-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 428px;
    border: 7px solid var(--white-color);
    border-radius: 30px;
}

.faq-image-2 figure {
    display: block;
    border-radius: 22px;
}

.faq-image-2 img {
    aspect-ratio: 1 / 0.916;
    border-radius: 22px;
}

.faq-accordion .accordion-item {
    margin-bottom: 30px;
    padding: 0;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    background: #d1d1d1;
    color: #000;
    padding: 17px 60px 17px 20px;
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
    background: transparent;
    margin-bottom: 0;
}

.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-radius: 10px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f068';
    font-family: "FontAwesome";
    position: absolute;
    right: 15px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    width: 30px;
    height: 30px;
    color: #b0b4b9;
    background-color: var(--white-color);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    background-color: #000;
}

.faq-accordion .accordion-item .accordion-body {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.faq-accordion .accordion-item .accordion-body p {
    margin: 0;
}

/* pricing start new */
.chy-services-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.chy-services-1-item {
    text-align: center;
    background: var(--black);
    border-radius: 190px 190px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.chy-services-1-item .header {
    padding-top: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--primary-color);
    padding-left: 55px;
    padding-right: 55px;
}

.chy-services-1-item .icon {
    width: 70px;
    margin: auto;
    margin-bottom: 25px;
}

.chy-services-1-item .title {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.chy-services-1-item .disc {
    color: #fff;
}

.chy-services-1-counter-item .disc {
    font-size: 25px;
    line-height: 1.2;
}

.chy-para-1 {
    color: #504e4e;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.556;
    margin-bottom: 0;
}

.chy-services-1-item .body {
    position: relative;
    padding-top: 24px;
    padding-bottom: 35px;
    padding-left: 25px;
    padding-right: 25px;
}

.chy-services-1-item-list {
    text-align: left;
}

.chy-services-1-item-list li:not(:last-child) {
    margin-bottom: 8px;
}

.chy-services-1-item-list li {
    font-size: 20px;
    color: #fff;
    font-weight: 800;
    text-transform: capitalize;
}

.chy-services-1-item-list li i {
    font-size: 13px;
    margin-right: 5px;
    position: relative;
    z-index: 1;
}

.chy-services-1-item .s1-btn {
    display: flex;
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    border-radius: 50%;
    flex-direction: column;
    line-height: 50px;
    font-size: 25px;
    color: #fff;
    position: absolute;
    right: 25px;
    bottom: 40px;
    transition: 400ms ease;
    line-height: 50px;
    font-size: 25px;
    justify-content: center;
}

.chy-services-1-item::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #141515;
    z-index: -1;
    border-radius: 190px 190px 0 0;
    top: 430px;
    opacity: 0;
    transition: 400ms ease;
}

.chy-services-1-item-list li:not(:last-child) {
    margin-bottom: 20px;
}

.chy-services-1-item-list li {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    line-height: 22px;
    text-transform: capitalize;
}

.chy-services-1-counter {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 2px solid #000;
    border-top: none;
    padding: 55px 65px;
}

.chy-services-1-counter-item .number {
    font-size: 65px;
    line-height: 1;
    font-weight: 800;
}

.chy-services-1-counter-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 2px solid #141515;
}

.chy-services-1-counter-item:nth-child(2) {
    justify-content: center;
}

.chy-services-1-counter-item:nth-child(3) {
    justify-self: end;
    border-right: none;
}

.chy-services-1-counter-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 2px solid #141515;
}

.chy-services-1-item:hover .header {
    border-color: #303132;
}

.chy-services-1-item:hover::after {
    top: 0;
    opacity: 1;
}

.chy-services-1-item:hover .s1-btn:hover {
    background: #000;
    color: #fff;
    border-color: transparent;
    rotate: 45deg;
}

.chy-services-1-item {
    text-align: center;
}

/************************************/
/***       16. Our Blog css	      ***/
/************************************/

.pb-10 {
    padding-bottom: 10px;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 20px;
}

.post-featured-image a {
    cursor: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-featured-image figure {
    display: block;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    margin-bottom: 25px;
}

.post-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h3 a {
    display: inline-block;
    color: inherit;
}

/************************************/
/***     18. About Us Page css    ***/
/************************************/
.page-header {
    position: relative;
    padding: 75px 0 75px 0;
}

.page-header:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('assets/images/page-header-bg.webp') no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 100%;
    height: 100%;
}

.page-header-box {
    text-align: center;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 50px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #000;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

/* what we do vision and mission */
.our-approach-image {
    margin-right: 20px;
}

.our-approach-image figure {
    display: block;
    border-radius: 30px;
}

.our-approach-image img {
    width: 100%;
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    border-radius: 30px;
}

.our-approach-body {
    margin-bottom: 40px;
}

.our-approach-body ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.our-approach-body ul li {
    position: relative;
    width: calc(50% - 10px);
    line-height: 1.5em;
    padding-left: 30px;
}

.our-approach-body ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-secondary-color);
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.our-approach-footer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-left: -175px;
    z-index: 2;
}

.mission-vision-item,
.mission-vision-image {
    width: calc(33.33% - 20px);
}

.mission-vision-item {
    position: relative;
    background-color: var(--white-color);
    border-radius: 16px;
    padding: 18px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.mission-vision-item:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #d9d9d8;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover:before {
    top: auto;
    height: 100%;
}

.mission-vision-item .icon-box {
    position: relative;
    height: 40px;
    width: 40px;
    border: 1px solid var(--accent-secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 1;
}

.mission-vision-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 20px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    filter: brightness(0) invert(0);
}

.mission-vision-item:hover .icon-box img {
    transform: rotateY(180deg);
}

.mission-vision-content {
    position: relative;
    z-index: 1;
}

.mission-vision-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.mission-vision-content p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .mission-vision-content p {
    color: #000000;
}

.mission-vision-image figure {
    height: 100%;
    display: block;
    border-radius: 16px;
}

.mission-vision-image img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.93;
    object-fit: cover;
}

.how-it-work.about-how-it-work {
    padding: 100px 0;
}

.about-how-it-work .how-work-step-item .icon-box {
    border-color: var(--accent-secondary-color);
    transition: all 0.4s ease-in-out;
}

.about-how-it-work .how-work-step-item:hover .icon-box {
    border-color: var(--accent-color);
}

.about-how-it-work .how-work-step-item .icon-box:before {
    background-color: var(--accent-color);
}

.about-how-it-work .how-work-step-item .icon-box img {
    filter: none;
}

.about-how-it-work .how-work-step-item .how-work-no {
    background: var(--accent-secondary-color);
}

.about-how-it-work .how-work-step-item .how-work-no h3 {
    color: var(--white-color);
}

.about-how-it-work .how-work-content h3 {
    color: var(--primary-color);
}

.about-how-it-work .how-work-content p {
    color: var(--text-color);
}

.how-work-counter-list {
    display: flex;
    gap: 30px 60px;
    flex-wrap: wrap;
    border-top: 1px solid var(--divider-color);
    margin-top: 80px;
    padding-top: 80px;
}

.how-work-counter-item {
    position: relative;
    width: calc(20% - 48px);
}

.how-work-counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    background: var(--divider-color);
    height: 100%;
    width: 1px;
}

.how-work-counter-item:nth-child(5n + 5)::before {
    display: none;
}

.how-work-counter-item h2 {
    font-size: 46px;
    margin-bottom: 5px;
}

.how-work-counter-item p {
    margin-bottom: 0;
}

/* about us page whychoose us */
.our-health-image {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-left: 68px;
}

.our-health-img-box {
    width: calc(50% - 10px);
}

.our-health-img-1 figure,
.our-health-img-2 figure,
.our-health-img-3 figure {
    display: block;
    border-radius: 30px;
}

.our-health-img-1 img,
.our-health-img-2 img,
.our-health-img-3 img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.our-health-img-1 {
    margin-bottom: 20px;
}

.our-health-img-1 img,
.our-health-img-2 img {
    aspect-ratio: 1 / 1.065;
}

.our-health-img-3 img {
    aspect-ratio: 1 / 2.2;
}

.contact-us-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
}

.contact-us-circle a {
    display: block;
    border-radius: 50%;
}

.contact-us-circle img {
    width: 100%;
    max-width: 164px;
    border: 8px solid var(--secondary-color);
    border-radius: 50%;
    animation: infiniterotate 25s infinite linear;
}

/* team start */
.team-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image a {
    display: block;
    cursor: none;
    border-radius: 20px;
    overflow: hidden;
}

.team-image figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent 65.69%, rgba(0, 0, 0, 0.8) 98.29%);
    z-index: 1;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.19;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
    transform: scale(1.1);
}

.team-social-icon {
    position: absolute;
    top: 40px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-icon {
    top: 20px;
    opacity: 1;
    visibility: visible;
}

.team-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-icon ul li {
    margin-bottom: 10px;
}

.team-social-icon ul li:last-child {
    margin-bottom: 0;
}

.team-social-icon ul li a {
    width: 34px;
    height: 34px;
    color: var(--white-color);
    background: var(--accent-secondary-color);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a i {
    color: inherit;
    font-size: 16px;
}

.team-social-icon ul li a:hover {
    color: var(--primary-color);
    background: var(--white-color);
}

.team-content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.team-content h3 {
    color: var(--white-color);
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-content h3 a {
    color: inherit;
}

.team-content p {
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0;
}

/* team detail */
.team-single-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}

.team-sidebar-box {
    background-color: var(--accent-secondary-color);
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 30px;
}

.team-sidebar-image {
    margin-bottom: 30px;
}

.team-sidebar-image figure {
    display: block;
    border-radius: 20px;
}

.team-sidebar-image img {
    width: 100%;
    aspect-ratio: 1 / 1.027;
    object-fit: cover;
    border-radius: 20px;
}

.team-sidebar-body-content {
    margin-bottom: 30px;
}

.team-sidebar-body-content h3 {
    color: var(--white-color);
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.team-sidebar-body-content p {
    color: var(--white-color);
    margin: 0;
}

.team-sidebar-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-sidebar-body ul li {
    width: 100%;
    color: var(--white-color);
    display: inline-flex;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.team-sidebar-body ul li span {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    width: 32%;
}

.team-sidebar-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-sidebar-footer span {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
}

.team-sidebar-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-sidebar-footer ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.team-sidebar-footer ul li:last-child {
    margin-right: 0;
}

.team-sidebar-footer ul li a {
    background-color: var(--white-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a {
    background-color: #fff;
}

.team-sidebar-footer ul li a i {
    color: var(--accent-secondary-color);
    font-size: 18px;
}

.team-member-info {
    margin-bottom: 60px;
}

.team-member-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-member-info ul li {
    position: relative;
    line-height: 1.5em;
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 15px;
}

.team-member-info ul li:last-child {
    margin-bottom: 0;
}

.team-member-info ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    left: 0;
    top: 0;
    font-size: 20px;
    color: var(--accent-secondary-color);
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1560px) {
    .intro-video.bg-section.dark-section::before {
        border-radius: 30px;
    }
}

@media only screen and (max-width: 991px) {

    .btn-default {
        padding: 15px 20px;
    }

    .readmore-btn {
        padding-right: 26px;
    }

    .readmore-btn:after {
        width: 16px;
        height: 12px;
    }

    header.main-header {
        margin: 0;
    }

    .navbar {
        padding: 15px 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .bg-section {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        border-radius: 0;
    }

    .bg-section.dark-section::before {
        border-radius: 0;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-content-btn .section-btn {
        margin-top: 20px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        background-size: 18px auto;
        padding-left: 25px;
    }

    .section-title h1 {
        font-size: 52px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .section-btn {
        text-align: left;
        margin-top: 10px;
    }

    .hero {
        padding: 130px 0 0;
        margin: 0;
    }

    .hero.hero-bg-image {
        padding: 180px 0 100px;
    }

    .hero.hero-bg-image.hero-slider-layout .hero-slide {
        padding: 200px 0 120px;
    }

    .hero.hero-bg-image.hero-slider-layout .hero-pagination {
        bottom: 30px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-content-footer {
        margin-top: 30px;
    }

    .hero-image {
        width: 100%;
        margin: 0 auto;
        max-width: 55%;
    }

    .hero-experience-box {
        max-width: 170px;
        border-radius: 10px;
        gap: 10px;
        padding: 10px;
    }

    .hero-experience-box h2 {
        font-size: 32px;
        width: calc(32% - 5px);
    }

    .hero-experience-box p {
        width: calc(68% - 5px);
    }

    .about-us-images {
        width: 100%;
        max-width: 80%;
        margin: 0 auto 30px;
    }

    .about-us-img-1,
    .about-us-img-2,
    .about-us-img-1 figure,
    .about-us-img-1 img {
        border-radius: 20px;
    }

    .about-us-img-2 figure {
        border-radius: 16px;
    }

    .about-us-img-2 img {
        aspect-ratio: 1 / 1.25;
        border-radius: 16px;
    }

    .about-us-body {
        padding: 30px 20px;
    }

    .about-us-body ul {
        gap: 20px 30px;
    }

    .about-us-body ul li {
        padding-left: 25px;
    }

    .about-us-body ul li::before {
        font-size: 18px;
    }

    .about-us-footer {
        margin-top: 30px;
    }

    .our-services {
        padding: 50px 0;
    }

    .service-item,
    .page-cta-box {
        padding: 30px;
    }

    .service-item .icon-box {
        height: 50px;
        width: 50px;
        margin-bottom: 30px;
    }

    .service-item .icon-box img {
        max-width: 26px;
    }

    .service-item-content {
        margin-bottom: 20px;
    }

    .service-item-content h3 {
        margin-bottom: 10px;
    }

    .page-cta-box-info {
        margin-bottom: 20px;
    }

    .page-cta-box-info h2 {
        font-size: 26px;
    }

    .section-footer-text {
        margin-top: 10px;
    }

    .what-we-do {
        padding: 50px 0;
    }

    .what-we-do-image-1 {
        margin-bottom: 30px;
    }

    .what-we-do-image-1 img {
        aspect-ratio: 1 / 0.8;
    }

    .what-we-do-content .section-row {
        margin-bottom: 30px;
    }

    .what-we-list-item .icon-box {
        height: 50px;
        width: 50px;
        margin-right: 10px;
    }

    .what-we-list-item .icon-box img {
        max-width: 26px;
    }

    .what-we-do-list-content {
        width: calc(100% - 60px);
    }

    .why-choose-us {
        padding: 50px 0 0;
    }

    .why-choose-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .why-choose-item .icon-box {
        height: 50px;
        width: 50px;
        margin-bottom: 20px;
    }

    .why-choose-item .icon-box img {
        max-width: 26px;
    }

    .why-choose-image {
        width: 100%;
        max-width: 55%;
        margin: 30px auto 0;
    }

    .our-expertise {
        padding: 50px 0;
    }

    .expertise-image {
        margin: 0 0 30px 0;
    }

    .expertise-image img {
        aspect-ratio: 1 / 0.62;
    }

    .expertise-box {
        padding: 30px;
    }

    .expertise-box-content {
        margin-bottom: 20px;
    }

    .intro-video.bg-section.dark-section::before {
        border-radius: 0;
    }

    .intro-video.bg-section.dark-section {
        padding: 100px 0 50px;
    }

    .intro-video-circle a figure img {
        max-width: 140px;
    }

    .into-video-play-icon {
        width: 60px;
        height: 60px;
    }

    .into-video-play-icon i {
        font-size: 24px;
    }

    .intro-video-counter-list {
        gap: 25px 20px;
        margin-top: 100px;
        padding-top: 30px;
    }

    .intro-video-counter-item {
        width: calc(20% - 16px);
    }

    .intro-video-counter-item h2 {
        font-size: 36px;
    }

    .our-programs {
        padding: 50px 0 20px;
    }

    .program-image img {
        aspect-ratio: 1 / 1.10;
    }

    .program-body {
        left: 30px;
        bottom: 30px;
        right: 50px;
    }

    .how-it-work {
        padding: 50px 0 150px;
    }

    .how-work-step-item {
        width: calc(50% - 15px);
    }

    .how-work-step-item .icon-box {
        height: 80px;
        width: 80px;
        margin-bottom: 20px;
    }

    .how-work-step-item .icon-box img {
        max-width: 36px;
    }

    .how-work-no {
        height: 25px;
        width: 25px;
    }

    .how-work-no h3 {
        font-size: 14px;
    }

    .book-appointment {
        margin-top: -100px;
    }

    .book-appointment-box {
        padding: 50px;
    }

    .book-appointment-content,
    .book-appointment-form {
        width: 100%;
    }

    .book-appointment-image img {
        aspect-ratio: 1 / 0.48;
    }

    .book-appointment-form .form-control {
        padding: 14px 15px;
    }

    .book-appointment-form .form-control.form-select {
        padding: 14px 35px 14px 15px;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .faq-images {
        width: 100%;
        max-width: 75%;
        background-size: 45px auto;
        background-position: bottom 108px left 118px;
        padding: 0 180px 160px 0;
        margin: 0 auto 30px;
    }

    .faq-image-1::before {
        top: 50px;
        right: -105px;
        height: 70px;
        width: 70px;
    }

    .faq-image-1 figure,
    .faq-image-1 img {
        border-radius: 20px;
    }

    .faq-image-1 img,
    .faq-image-2 img {
        aspect-ratio: 1 / 0.81;
    }

    .faq-image-2 {
        max-width: 385px;
        border: 4px solid var(--white-color);
        border-radius: 20px;
    }

    .faq-image-2 figure,
    .faq-image-2 img {
        border-radius: 14px;
    }

    .faq-accordion .accordion-header .accordion-button {
        padding: 13px 50px 13px 15px;
        margin-bottom: 10px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        font-size: 14px;
        width: 24px;
        height: 24px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 15px;
    }

    .our-testimonial {
        padding: 50px 0;
    }

    .testimonial-content {
        margin-bottom: 30px;
    }

    .testimonial-item {
        padding: 20px;
    }

    .testimonial-item-content {
        margin-bottom: 20px;
    }

    .testimonial-author-content h3 {
        font-size: 18px;
    }

    .testimonial-images {
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
    }

    .testimonial-img-1 img {
        aspect-ratio: 1 / 1.3;
    }

    .testimonial-img-1,
    .testimonial-img-2,
    .testimonial-img-3 {
        border-radius: 20px;
    }

    .testimonial-img-2 figure,
    .testimonial-img-3 figure {
        border-radius: 14px;
    }

    .testimonial-img-2 {
        max-width: 220px;
    }

    .testimonial-img-3 {
        max-width: 330px;
    }

    .testimonial-img-2::before {
        height: 95px;
        width: 70px;
    }

    .hero-content-footer.client-review-box {
        bottom: 30px;
        max-width: 180px;
        padding: 15px;
    }

    .hero-content-footer.client-review-box .trusted-client-review p i {
        margin: 0 2px;
    }

    .post-featured-image {
        margin-bottom: 15px;
    }

    .post-item-content {
        margin-bottom: 15px;
    }

    .main-footer {
        padding: 40px 0 0 0;
        margin-bottom: 0;
    }

    .footer-about,
    .footer-links-box {
        width: 100%;
    }

    .footer-logo,
    .about-footer-content {
        margin-bottom: 20px;
    }

    .footer-contact-list {
        margin-bottom: 30px;
    }

    .footer-contact-list ul {
        gap: 20px;
    }

    .footer-contact-list ul li {
        font-size: 18px;
        padding: 9px 15px;
    }

    .footer-menu ul {
        gap: 20px 30px;
    }

    .footer-menu ul li {
        font-size: 18px;
    }

    .footer-links-box {
        gap: 30px 60px;
    }

    .footer-links h3 {
        margin-bottom: 20px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-copyright {
        padding: 30px 0;
        margin-top: 30px;
    }

    .page-header {
        padding: 160px 0 80px;
        margin-top: 0px;
    }

    .page-header-box h1 {
        font-size: 40px;
        margin-bottom: 5px;
    }

    .our-approach-image {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .our-approach-image figure,
    .our-approach-image img {
        border-radius: 20px;
    }

    .our-approach-image img {
        aspect-ratio: 1 / 0.8;
    }

    .our-approach-body {
        margin-bottom: 30px;
    }

    .our-approach-body ul li {
        padding-left: 25px;
    }

    .our-approach-body ul li::before {
        font-size: 18px;
    }

    .our-approach-footer {
        margin-left: 0;
    }

    .mission-vision-item {
        padding: 15px;
    }

    .mission-vision-image figure,
    .mission-vision-image img {
        height: auto;
    }

    .how-it-work.about-how-it-work {
        padding: 50px 0;
    }

    .how-work-counter-list {
        margin-top: 50px;
        padding-top: 50px;
        gap: 20px;
    }

    .how-work-counter-item {
        width: calc(20% - 16px);
    }

    .how-work-counter-item::before {
        right: -10px;
    }

    .how-work-counter-item h2 {
        font-size: 36px;
    }

    .expert-coaching {
        padding: 50px 0;
    }

    .expert-coaching-image {
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .expert-coaching-body {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .expert-coaching-body-item h3 {
        padding-left: 30px;
    }

    .expert-coaching-body-item h3:before {
        width: 20px;
        height: 20px;
    }

    .expert-coaching-list {
        margin-bottom: 30px;
    }

    .expert-coaching-list ul li {
        padding-left: 25px;
    }

    .expert-coaching-list ul li::before {
        font-size: 18px;
    }

    .our-health-content {
        margin-bottom: 30px;
    }

    .our-health-image {
        max-width: 85%;
        margin: 0 auto;
    }

    .our-health-img-1 figure,
    .our-health-img-2 figure,
    .our-health-img-3 figure,
    .our-health-img-1 img,
    .our-health-img-2 img,
    .our-health-img-3 img {
        border-radius: 20px;
    }

    .contact-us-circle img {
        max-width: 134px;
    }

    .our-journey {
        padding: 50px 0 20px;
    }

    .our-journey-item {
        padding: 20px;
        border-radius: 20px;
    }

    .our-journey-item .icon-box {
        margin-bottom: 20px;
    }

    .team-image img {
        aspect-ratio: 1 / 1.03;
    }

    .team-content {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .page-single-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .page-catagery-list {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .page-catagery-list h3 {
        margin-bottom: 20px;
    }

    .page-catagery-list ul li a {
        border-radius: 10px;
        padding: 12px 40px 12px 15px;
    }

    .page-catagery-list ul li a::before {
        right: 15px;
    }

    .page-cta-box.sidebar-cta-box {
        padding: 60px 20px;
    }

    .service-featured-image {
        margin-bottom: 30px;
    }

    .service-featured-image figure {
        border-radius: 20px;
    }

    .service-featured-image img {
        aspect-ratio: 1 / 0.48;
        border-radius: 20px;
    }

    .service-entry {
        margin-bottom: 40px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-entry ul li {
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .service-entry ul li::before {
        font-size: 18px;
    }

    .service-solutions-box,
    .service-personalized-box,
    .service-entry-image-content {
        margin-top: 40px;
    }

    .what-we-do-list.service-solutions-list {
        gap: 30px 20px;
        margin-top: 30px;
    }

    .what-we-do-list.service-solutions-list .what-we-list-item {
        width: calc(50% - 10px);
    }

    .service-personalized-image-conetnt {
        gap: 20px;
        margin-top: 30px;
    }

    .service-personalized-conetnt {
        width: calc(62% - 10px);
    }

    .service-personalized-conetnt ul {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .service-personalized-image {
        width: calc(38% - 10px);
    }

    .service-personalized-image figure,
    .service-personalized-image img {
        border-radius: 20px;
    }

    .service-entry-image figure,
    .service-entry-image img {
        border-radius: 20px;
    }

    .service-entry-content-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .service-entry-content-item h3 {
        margin-bottom: 10px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-blog .post-item {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-image figure,
    .post-image img {
        border-radius: 20px;
    }

    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        margin: 0 0 0.417em;
    }

    .post-entry h2 {
        font-size: 36px;
    }

    .post-entry p {
        margin-bottom: 15px;
    }

    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .page-programs {
        padding: 50px 0 20px;
    }

    .page-program-single {
        padding: 50px 0;
    }

    .program-detail-box {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .program-detail-item {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .program-featured-image {
        margin-bottom: 30px;
    }

    .program-featured-image figure {
        border-radius: 20px;
    }

    .program-featured-image img {
        aspect-ratio: 1 / 0.47;
        border-radius: 20px;
    }

    .program-entry {
        margin-bottom: 30px;
    }

    .program-entry p {
        margin-bottom: 15px;
    }

    .program-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .program-entry ul {
        gap: 15px 30px;
        margin-bottom: 15px;
    }

    .program-entry ul li {
        padding-left: 25px;
    }

    .program-entry ul li::before {
        font-size: 18px;
    }

    .program-entry-image-video {
        margin-top: 30px;
    }

    .program-entry-image figure {
        border-radius: 20px;
    }

    .program-entry-image img {
        aspect-ratio: 1 / 0.4;
        border-radius: 20px;
    }

    .video-play-button a {
        width: 65px;
        height: 65px;
    }

    .video-play-button a i {
        font-size: 24px;
        margin-left: 2px;
    }

    .program-entry-practices {
        margin-top: 40px;
    }

    .program-image-content-box {
        margin-top: 30px;
    }

    .what-we-do-list.program-content-list .what-we-list-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .team-sidebar-box {
        padding: 20px;
    }

    .team-single-sidebar {
        position: static;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .team-sidebar-image img {
        aspect-ratio: 1 / 0.8;
    }

    .team-sidebar-body-content {
        margin-bottom: 25px;
    }

    .team-sidebar-body-content h3 {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .team-sidebar-body ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .team-member-info,
    .team-skills-box,
    .team-awards-box {
        margin-bottom: 30px;
    }

    .team-member-info ul li {
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .team-member-info ul li::before {
        font-size: 18px;
    }

    .team-skills-item .circle {
        margin-bottom: 10px;
    }

    .team-skills-item .circle canvas {
        aspect-ratio: auto 120 / 120 !important;
        height: 120px !important;
        width: 120px !important;
    }

    .circle .progress_value {
        font-size: 32px;
        width: 80px;
        height: 80px;
    }

    .team-awards-list ul li {
        padding: 15px;
        margin-bottom: 20px;
    }

    .member-contact-form.contact-form {
        margin-bottom: 0;
    }

    .page-testimonials {
        padding: 50px 0;
    }

    .page-testimonials .testimonial-boxes .testimonial-item {
        width: calc(50% - 15px);
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .page-faqs-catagery .page-faq-accordion {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 50px 0 25px;
    }

    .contact-now-circle img {
        max-width: 114px;
    }

    .contact-form {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .contact-form .form-control {
        padding: 12px 15px;
    }

    .contact-us-content {
        border-radius: 20px;
    }

    .contact-info-list {
        padding: 30px;
    }

    .contact-info-item {
        padding: 20px 20px 20px 0;
    }

    .contact-info-item:nth-of-type(2n + 2) {
        padding: 20px 0 20px 20px;
    }

    .contact-info-item:nth-last-child(-n + 2) {
        padding-bottom: 0;
    }

    .contact-info-item:nth-child(-n + 2) {
        padding-top: 0;
    }

    .contact-social-list {
        padding: 20px 30px;
    }

    .google-map {
        padding: 25px 0 50px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 400px;
        border-radius: 20px;
    }

    .page-book-appointment {
        padding: 50px 0;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image {
        margin-bottom: 20px;
    }

    .error-page-image img {
        max-width: 60%;
    }

    .error-page-content-body p,
    .error-page-content .section-title {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .hero-content-body {
        gap: 20px;
    }

    .contact-now-box-content h3 {
        font-size: 18px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-experience-box {
        max-width: 155px;
    }

    .hero-experience-box h2 {
        font-size: 24px;
    }

    .about-us-images {
        max-width: 100%;
        padding: 10px 135px 50px 15px;
    }

    .about-us-img-2 {
        top: 10px;
        right: 15px;
        max-width: 160px;
    }

    .about-us-img-2::before {
        right: 10px;
        height: 70px;
        width: 55px;
    }

    .about-us-body {
        padding: 15px;
    }

    .about-us-body ul {
        gap: 10px;
    }

    .about-us-body ul li {
        width: 100%;
    }

    .about-us-body ul li::before {
        font-size: 16px;
    }

    .about-author-box .author-info h3 {
        font-size: 18px;
    }

    .service-item {
        padding: 20px;
    }

    .service-item .icon-box {
        margin-bottom: 20px;
    }

    .service-item-content h3 {
        font-size: 18px;
    }

    .page-cta-box {
        padding: 40px 20px;
    }

    .page-cta-box-info h3 {
        font-size: 18px;
    }

    .page-cta-box-info h2 {
        font-size: 24px;
    }

    .what-we-do-image-1 img {
        aspect-ratio: 1 / 0.95;
    }

    .what-we-do-list {
        margin-bottom: 30px;
    }

    .what-we-do-list-content h3 {
        font-size: 18px;
    }

    .why-choose-item,
    .why-choose-item:last-child {
        border-bottom: 1px solid var(--dark-divider-color);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .why-choose-us .col-lg-3.col-md-6:last-child .why-choose-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .why-choose-image {
        max-width: 100%;
    }

    .expertise-image img {
        aspect-ratio: 1 / 0.8;
    }

    .expertise-box {
        padding: 20px;
    }

    .expertise-box-content h3 {
        font-size: 18px;
    }

    .intro-video.bg-section.dark-section {
        padding: 50px 0;
    }

    .intro-video-content {
        margin-bottom: 30px;
    }

    .intro-video-circle a figure img {
        max-width: 120px;
    }

    .into-video-play-icon {
        width: 50px;
        height: 50px;
    }

    .into-video-play-icon i {
        font-size: 22px;
    }

    .intro-video-counter-list {
        margin-top: 50px;
    }

    .intro-video-counter-item {
        width: calc(50% - 10px);
    }

    .intro-video-counter-item h2 {
        font-size: 26px;
    }

    .program-image img {
        aspect-ratio: 1 / 0.98;
    }

    .program-body {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }

    .program-content h3 {
        font-size: 18px;
    }

    .how-work-step-item {
        width: 100%;
        display: flex;
    }

    .how-work-step-item .icon-box {
        height: 65px;
        width: 65px;
        margin: 0 25px 0 0;
    }

    .how-work-step-item .icon-box img {
        max-width: 28px;
    }

    .how-work-content {
        width: calc(100% - 90px);
    }

    .how-work-content h3 {
        font-size: 18px;
    }

    .book-appointment-box {
        padding: 20px;
    }

    .book-appointment-image img {
        aspect-ratio: 1 / 0.7;
    }

    .faq-images {
        width: 100%;
        max-width: 100%;
        background-size: 38px auto;
        background-position: bottom 75px left 60px;
        padding: 0 90px 120px 0;
    }

    .faq-image-1::before {
        top: 35px;
        right: -80px;
        height: 55px;
        width: 55px;
    }

    .faq-image-2 {
        max-width: 240px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
    }

    .testimonial-boxes {
        gap: 20px;
    }

    .testimonial-item {
        width: 100%;
    }

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

    .testimonial-author-content h3 {
        font-size: 18px;
    }

    .testimonial-images {
        min-width: 100%;
        padding: 10px 140px 95px 10px;
    }

    .testimonial-img-1 img {
        aspect-ratio: 1 / 1.54;
    }

    .testimonial-img-2 {
        right: 15px;
        max-width: 150px;
    }

    .testimonial-img-2::before {
        height: 70px;
        width: 60px;
    }

    .testimonial-img-3 {
        bottom: 10px;
        max-width: 195px;
    }

    .hero-content-footer.client-review-box {
        max-width: 160px;
        gap: 10px;
        bottom: 0;
        padding: 10px;
    }

    .hero-content-footer.client-review-box .trusted-client-review p {
        font-size: 14px;
    }

    .post-item-content h3 {
        font-size: 18px;
    }

    .main-footer-box {
        gap: 40px;
    }

    .footer-contact-list {
        margin-bottom: 20px;
    }

    .footer-contact-list ul {
        gap: 15px;
    }

    .footer-contact-list ul li {
        font-size: 16px;
    }

    .footer-menu ul li {
        font-size: 16px;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-social-links span {
        font-size: 18px;
    }

    .footer-copyright {
        text-align: center;
        padding: 15px 0;
    }

    .footer-privacy-policy {
        text-align: center;
        margin-top: 10px;
    }

    .footer-privacy-policy ul li {
        margin-right: 3px;
        padding-right: 15px;
    }

    .footer-privacy-policy ul li::before {
        font-size: 16px;
    }

    .page-header-box h1 {
        font-size: 28px;
    }

    .our-approach-image img {
        aspect-ratio: 1 / 0.9;
    }

    .our-approach-body ul li {
        width: 100%;
    }

    .mission-vision-item,
    .mission-vision-image {
        width: 100%;
    }

    .mission-vision-item .icon-box {
        margin-bottom: 15px;
    }

    .mission-vision-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .how-work-counter-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .how-work-counter-item:nth-child(5n + 5):before {
        display: block;
    }

    .how-work-counter-item:last-child:before,
    .how-work-counter-item:nth-child(2n + 2):before {
        display: none;
    }

    .how-work-counter-item {
        width: calc(50% - 10px);
    }

    .how-work-counter-item h2 {
        font-size: 26px;
    }

    .expert-coaching-image {
        max-width: 100%;
        padding: 25px 140px 175px 18px;
    }

    .expert-coaching-image:before {
        border-width: 10px;
        width: 120px;
        height: 120px;
        right: 30px;
        transform: translateY(-50%);
    }

    .expert-coaching-img-1,
    .expert-coaching-img-2,
    .expert-coaching-img-3 {
        border-width: 5px;
    }

    .expert-coaching-img-2 {
        max-width: 140px;
        top: 10px;
        right: 10px;
    }

    .expert-coaching-img-3 {
        left: 100px;
        max-width: 180px;
    }

    .expert-coaching-body-item {
        width: 100%;
    }

    .expert-coaching-body-item h3 {
        font-size: 18px;
    }

    .expert-coaching-list ul {
        gap: 15px;
    }

    .expert-coaching-list ul li {
        width: 100%;
    }

    .our-health-image {
        max-width: 100%;
        padding-left: 40px;
    }

    .contact-us-circle img {
        max-width: 100px;
        border-width: 4px;
    }

    .our-journey-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .team-content h3 {
        font-size: 18px;
    }

    .page-catagery-list h3 {
        font-size: 18px;
    }

    .service-featured-image {
        margin-bottom: 20px;
    }

    .service-featured-image img {
        aspect-ratio: 1 / 0.7;
    }

    .service-entry h2 {
        font-size: 26px;
    }

    .service-solutions-box,
    .service-personalized-box,
    .service-entry-image-content {
        margin-top: 30px;
    }

    .what-we-do-list.service-solutions-list .what-we-list-item {
        width: 100%;
    }

    .service-personalized-conetnt,
    .service-personalized-image {
        width: 100%;
    }

    .service-personalized-conetnt .what-we-do-list {
        margin-bottom: 0;
    }

    .service-personalized-image img {
        aspect-ratio: 1 / 0.78;
    }

    .service-entry-image-content {
        gap: 20px;
    }

    .service-entry-image,
    .service-entry-content {
        width: 100%;
    }

    .service-entry-image img {
        aspect-ratio: 1 / 0.9;
    }

    .service-entry-content-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .service-entry-content-item h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .post-single-meta ol li {
        font-size: 16px;
    }

    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }

    .post-entry blockquote p {
        font-size: 16px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 18px;
    }

    .program-detail-item h3 {
        font-size: 18px;
    }

    .program-featured-image {
        margin-bottom: 20px;
    }

    .program-featured-image img {
        aspect-ratio: 1 / 0.7;
    }

    .program-entry h2 {
        font-size: 26px;
    }

    .program-entry ul li {
        width: 100%;
    }

    .program-entry-image img {
        aspect-ratio: 1 / 0.56;
    }

    .what-we-do-list.program-content-list,
    .program-practice-image {
        width: 100%;
    }

    .what-we-do-list.program-content-list {
        margin-bottom: 0;
    }

    .what-we-do-list.program-content-list .what-we-list-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .program-practice-image img {
        aspect-ratio: 1 / 0.82;
    }

    .team-sidebar-image img {
        aspect-ratio: 1 / 1.027;
    }

    .team-sidebar-body-content h3 {
        font-size: 18px;
    }

    .team-sidebar-body ul li span {
        font-size: 18px;
    }

    .team-sidebar-footer span {
        font-size: 18px;
    }

    .team-skills-list {
        gap: 30px;
    }

    .team-skills-item {
        width: calc(50% - 15px);
    }

    .circle .progress_value {
        font-size: 24px;
    }

    .page-testimonials .testimonial-boxes .testimonial-item {
        width: 100%;
    }

    .contact-now-circle {
        margin-top: 20px;
        text-align: left;
        display: none;
    }

    .contact-now-circle img {
        max-width: 84px;
    }

    .contact-info-list {
        padding: 20px;
    }

    .contact-info-item {
        width: 100%;
        border-bottom: 1px solid var(--dark-divider-color);
        border-right: none;
        margin-bottom: 20px;
        padding: 0 0 20px 0;
    }

    .contact-info-item:nth-of-type(2n + 2) {
        padding: 0 0 20px 0;
    }

    .contact-info-item:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--dark-divider-color);
        padding-bottom: 20px;
    }

    .contact-info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .contact-info-item .icon-box {
        margin-bottom: 10px;
    }

    .contact-info-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .contact-social-list {
        padding: 20px;
    }

    .contact-social-list h3 {
        font-size: 18px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    .error-page-image img {
        max-width: 80%;
    }
}

/* fun fact start */
.counter-inner1 {
    padding: 70px 70px 40px 70px;
}

.bg-theme {
    background-color: var(--primary-color);
}

.counter-style1 {
    text-align: center;
    position: relative;
    padding: 24px 15px 24px 15px;
    width: 220px;
    max-width: 100%;
    margin-bottom: 30px;
}

.counter-style1:after,
.counter-style1::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: calc(50% - 23px);
    border-width: 2px 2px 0 2px;
    border-style: solid;
    border-color: #fff;
    transition: all ease .4s;
}

@media (max-width: 1500px) {
    .counter-style1 .counter-icon {
        margin-bottom: 13px;
    }
}

.counter-style1 .counter-icon {
    margin-bottom: 18px;
}

@media (max-width: 1500px) {
    .counter-style1 .counter-number {
        font-size: 30px;
    }
}

.counter-style1 .counter-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-bottom: 13px;
}

.counter-style1 .counter-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    line-height: 1;
}

.counter-style1:after {
    top: auto;
    bottom: 0;
    border-width: 0 2px 2px 2px;
}

.counter-style1:after,
.counter-style1::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: calc(50% - 23px);
    border-width: 2px 2px 0 2px;
    border-style: solid;
    border-color: #fff;
    transition: all ease .4s;
}

.counter-style1:Hover::before,
.counter-style1:Hover:after {
    height: 50%;
}

.counter-style1:after {
    top: auto;
    bottom: 0;
    border-width: 0 2px 2px 2px;
}

.bg-section1 {
    width: 100%;
    max-width: 1820px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    border-radius: 50px 50px 0 0;
}


/* .hero.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.hero.hero-video .hero-bg-video::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #0000;
    opacity: 50%;
    width: 100%;
    height: 100%;
}
.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */


/* video section */
/* :root{
  --hero-height: 100vh;
  --text-max-width: 900px;
}

.video-hero{
  position: relative;
  width: 100%;
  min-height: var(--hero-height);
  height: var(--hero-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}


.video-hero__media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.video-hero__content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-hero__title{
  margin: 0 0 14px 0;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  font-weight: 700;
}

.video-hero__text{
  margin: 0 0 20px 0;
  font-size: clamp(14px, 1.6vw, 18px);
  color: #f3f3f3;
  line-height: 1.6;
}

.video-hero__ctas{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

.video-hero__controls{
  margin-top: 14px;
  display:flex;
  gap:10px;
  align-items:center;
}

.video-toggle{
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight:600;
}

@media (max-width: 720px){
  .video-hero__inner{ padding: 20px; border-radius:10px; }
  .video-hero__text{ font-size:14px; }
  .video-hero__ctas{ gap:8px; }
}

@media (prefers-reduced-motion: reduce){
  .video-hero__media{ animation: none; }
  .btn{ transition: none; transform: none; }
} */

/* working Process start */
.how-work-wrapper {
    position: relative;
}

.how-work-wrapper::before {
    position: absolute;
    content: "";
    top: 16px;
    left: 30px;
    width: calc(100% - 60px);
    height: 170px;
    background-color: transparent;
    border: 1.5px dashed #D7CDCD;
}

.how-work-item {
    position: relative;
    padding: 1.875rem 1.5625rem;
    background-color: #fff;
    border-radius: 0 0 25px 25px;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    -ms-border-radius: 0 0 25px 25px;
    -o-border-radius: 0 0 25px 25px;
    box-shadow: 0 4px 23px rgba(0, 0, 0, 0.07);
    margin-top: 57px;
}

.how-work-item-count {
    position: absolute;
    left: 50%;
    top: -57px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background-color: #fff;
    border: 2px solid var(--accent-secondary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #000;
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.how-work-item-icon {
    width: 95px;
    height: 103px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-work-item-icon .icon-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}

.how-work-item-icon .icon-bg-shape.back-shape {
    opacity: 0;
}

.how-work-item-icon .icon-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}

.how-work-item-content {
    text-align: center;
    margin-top: 1.25rem;
}

.how-work-item-title {
    font-weight: 600;
    font-size: 22px;
}

.how-work-item-content p {
    margin-top: 0.625rem;
}

.how-work-item:hover .how-work-item-icon .icon-bg-shape.back-shape {
    opacity: 1;
}

.how-work-section {
    background-image: url(assets/images/homepage/work-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 
.no-scroll {
  overflow: hidden;
}


.video-hero,
.hero {
 
  width: 100%;
  position: relative;
}


.hero {
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: top 0.9s ease, opacity 0.6s ease;
  opacity: 0;
}

.hero.active {
  top: 0;
  opacity: 1;
}

.video-hero.hide {
  display: none !important; 
}


@media (max-width: 768px) {
  .hero {
    transition: top 0.7s ease, opacity 0.5s ease;
  }
}
.no-scroll {
  overflow: hidden;
}

.split-line {
  overflow: hidden;
} */



/* whychoose us 2 */
.chy-solutions-2-area {
    padding-top: 130px;
    padding-bottom: 100px;
}

.bg-default {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.chy-solutions-2-wrap {
    position: relative;
}

.chy-solutions-2-content {
    max-width: 530px;
}

.chy-para-2 {
    color: #fff;
}

.chy-solutions-2-content .inner-div {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.solutions-2-list li:not(:last-child) {
    margin-bottom: 10px;
}

.solutions-2-list li {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    list-style: none;
    text-transform: capitalize;
    display: flex;
    align-items: flex-start;
    line-height: 22px;
}

ul.solutions-2-list {
    padding-left: 0;
}

.solutions-2-list li i {
    color: #fff;
    margin-right: 5px;
}

.chy-solutions-2-counter-wrap {
    max-width: 215px;
    position: absolute;
    right: 0;
    top: 0;
}

.chy-solutions-2-counter:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 2px solid #fff;
    margin-bottom: 30px;
}

.chy-solutions-2-counter .number {
    font-size: 60px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 5px;
}

.chy-heading-1 {
    color: #141515;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

.chy-solutions-2-counter .disc {
    font-size: 17px;
    line-height: 25px;
    color: #fff;
    letter-spacing: 0.3px;
}

.chy-solutions-2-wrap .chy-plybtn-2 {
    background: transparent;
    color: #fff;
    position: absolute;
    right: -4px;
    bottom: 9px;
    z-index: 2;
}

.chy-plybtn-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 150px;
    height: 150px;
    background: var(--chy-gd-1);
    border-radius: 50%;
    font-size: 25px;
    color: #fff;
}

.chy-plybtn-2 .text-img {
    position: absolute;
    left: 15px;
    top: 15px;
    animation: chy-plybtn-2 4s infinite ease-in-out;
    height: unset;
    width: unset;
}

.chy-solutions-2-wrap .hand-img {
    position: absolute;
    bottom: -100px;
    right: -20px;
    z-index: 1;
}

.chy-solutions-2-wrap .all-icon {
    position: absolute;
    top: -130px;
    right: 230px;
    width: 40%;
    z-index: 1;
}

.chy-solutions-2-wrap::after {
    content: "";
    width: 380px;
    height: 670px;
    background: #b6c2c6;
    position: absolute;
    top: -190px;
    left: 46%;
    border-radius: 190px 190px 0 0;
}

/* cta */
.call-to-action {
    position: relative;
    z-index: 2;
}

.call-to-action.pull-down .outer-box {
    margin-bottom: -70px;
    display: inline-block;
    width: 100%;
}

.call-to-action .outer-box {
    position: relative;
    background-color: var(--primary-color);
    padding: 75px 60px;
    padding-left: 320px;
    margin-top: 60px;
}

.bg-pattern-3 {
    background-image: url(assets/images/homepage/pattern-3.webp);
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.call-to-action .outer-box .title-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.call-to-action .outer-box .title-box .title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.05em;
    margin-bottom: 0;
    padding-right: 30px;
}

.call-to-action .outer-box .image-box {
    position: absolute;
    left: 50px;
    bottom: 0;
}

.call-to-action .outer-box .image-box .image {
    margin-bottom: 0;
}

section.client-sec.pt-0 {
    position: relative;
    bottom: -45px;
}

/* footer start */
footer {
    position: relative;
    padding-top: 128px;
}

.footer-sec {
    position: relative;
    background-repeat: repeat;
    background-position: center;
    padding: 100px 0 0px;
}

.footer-sec:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #222222;
    opacity: .50;
    content: "";
}

.footer-sec {
    /* overflow: hidden; */
    clip-path: var(--slope-clip-top-right-base);
}

ul.footer-contact {
    padding-left: 0;
}

ul.footer-contact li {
    color: #fff;
    line-height: 30px;
}

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: start;
    color: var(--footer-text-color);
    font-size: 16px;
    margin-bottom: 9px;
}

.footer-contact li i {
    line-height: 30px;
    font-size: 16px;
    margin-right: 15px;
    border-radius: 50px;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
}

.footer-contact li a {
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer-sec {
    background: #26282e;
}

footer:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: .92;
    top: 0;
    left: 0;
}

/* 27. footer widget title */
.widget-title {
    position: relative;
}

.widget-title h3 {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    padding-bottom: 30px;
}

.widget-title h5 a {
    font-size: 23px;
    color: #fff;
    text-decoration: none;
}

.widget-title>a {
    color: #fff;
    padding-top: 25px;
    display: block;
    font-size: 16px;
    text-decoration: none;
}

.widget-title ul.social-media {
    justify-content: flex-start;
    margin-top: 30px;
    margin-bottom: 40px;
}

.widget-title ul.social-media a {
    border: 0;
    color: #fff;
}

/* 28. footer-location */
.footer-location {
    display: flex;
}

.footer-location h4 {
    font-size: 16px;

    color: #fff;
    padding-left: 15px;
    line-height: 28px;
    font-weight: 400;
}

.footer-location {
    display: flex;
}

.footer-location svg {
    width: 31px;
    height: auto;
}

.widget-title>ul.links li {
    color: #fff;
    list-style: none;
}

.widget-title>ul {
    padding-left: 0;
}

.widget-title>ul.links li:not(:last-child) {
    padding-bottom: 18px;
}

.widget-title>ul.links li i {
    padding-right: 10px;
    color: #fff;
    font-size: 16px;
}

.widget-title>ul.links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.widget-title>ul.links li a:hover {
    color: var(--primary-color);
}

.widget-title p {
    color: #fff;
    width: 90%;
}

.widget-title>ul.links li:not(:last-child) {
    padding-bottom: 18px;
}

/* 30. footer-bottom */
.footer-bottom {
    background-color: var(--primary-color);
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 30px;
}

.footer-bottom-text p {
    color: #fff;
    margin-bottom: 0;
}

.footer-bottom-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-text ul {
    display: flex;
    align-items: center;
}

.footer-bottom-text ul li:not(:last-child) {
    padding-right: 40px;
}

.footer-bottom-text ul li {
    position: relative;
    list-style: none;
}

.footer-bottom-text ul li:not(:last-child):before {
    content: "";
    position: absolute;
    width: 1px;
    height: 17px;
    background-color: #000;
    right: 20px;
}

.footer-bottom-text ul li a:hover {
    color: var(--primary-color);
}

img.extra-images-one {
    width: 100px;
    position: absolute;
    z-index: 1;
    left: -60px;
    top: 12px;
}

.reviews li {
    list-style: none;
    margin-right: 3px;
}

footer img.extra-images-two {
    width: 110px;
    right: 4%;
    top: 55%;
}

footer img.dots {
    top: 29%;
    right: 5%;
    width: 92px;
}

.widget-title ul.social-media {
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 30px;
}

.widget-title ul.social-media a {
    border: 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

ul.social-media {
    display: flex;
}

ul.social-media li {
    position: relative;
    list-style: none;
}

ul.social-media a {
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 5px;
    color: #fff;
}

footer img.dots {
    top: 29%;
    right: 2%;
    width: 92px;
}

img.dots {
    top: 0;
    position: absolute;
    z-index: -0;
    right: -5%;
    animation: 8s bounceY infinite;
}

img.extra-images-two {
    position: absolute;
    top: 43%;
    right: 0;
    z-index: 1;
    animation: floatY 2s ease-in-out infinite;
}

@media (max-width: 1400px) {
    footer img.extra-images-two {
        width: 110px;
        right: -4%;
        top: 55%;
    }
}

.footer-bottom-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@keyframes bounceY {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.footer-bottom-text ul li a {
    color: #fff !important;
    transition: .4s all;
    text-decoration: none;
}

.footer-bottom-text ul li {
    color: #fff !important;
    transition: .4s all;
    text-decoration: none;
    font-size: 16px;
}

.footer-bottom-text ul {
    margin-bottom: 0;
}

.social-media .face {
    background-color: #4267b2;
    transition: none;
    transform: none;
}

.twitt {
    background-color: #4ba1f2;
    transition: none;
    transform: none;
}

.insta {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    background-size: 300% 300%;
    animation: gradient 5s ease infinite;
    transition: none;
    transform: none;
}

.link {
    background-color: #3266c2;
    transition: none;
    transform: none;
}


/* testimonials */
.testimonial-two {
    position: relative;
    background-image: url(assets/images/homepage/testimonial-shadow.webp);
    background-color: rgb(245, 245, 245);
    background-position: left bottom;
    background-repeat: no-repeat;
}

.testimonial-two_rate-column {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-two_rate-outer {
    position: relative;
    padding: 55px 50px;
    text-align: center;
    border-radius: 40px;
    background-image: url(assets/images/homepage/getin-bg.webp);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-two_rate {
    position: relative;
    font-size: 96px;
    font-weight: 700;
    line-height: 1em;
    color: #fff;
}

.testimonial-two_rating {
    position: relative;
    font-size: 16px;
    margin-top: 15px;
    color: rgb(255, 149, 0);
}

.testimonial-two_text {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 35px;
    color: #fff;
}

/* Testimonial Block Two */
.testimonial-block_two {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-block_two-inner {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 30px 32px 30px;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    height: 100%;
    text-align: left;
}

.testimonial-block_two-author {
    position: relative;
    margin-left: 50px;
}

.testimonial-block_two-author:before {
    position: absolute;
    content: '';
    right: -6px;
    top: -6px;
    bottom: -6px;
    left: -150px;
    border-radius: 0px 100px 100px 0px;
    background-color: var(--black);
}

.testimonial-block_two-author img {
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 100px !important;
    border: 5px solid #fff;
}

.testimonial-block_two-rating {
    position: relative;
    padding: 14px 25px;
    margin-right: -32px;
    color: #fff;
    border-radius: 50px 0px 0px 50px;
    background-color: var(--black);
}

.testimonial-block_two-text {
    font-size: 18px;
    margin-top: 45px;
    line-height: 32px;
    margin-bottom: 45px;
    color: #000;
}

.testimonial-block_two-designation {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.testimonial-block_two-designation span {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    color: #000;
}

.testimonial-block_two-icon {
    position: absolute;
    right: 0px;
    bottom: -10px;
    opacity: 0.10;
    line-height: 1em;
    font-size: 120px;
    color: #000;
    font-family: "flaticon_moxes";
}

/* Swiper Styles */
.testimonial-swiper {
    width: 100%;
    height: 100%;
    padding: 20px 0 0 0;
}

.testimonial-swiper .swiper-slide {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Pagination */
.testimonial-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1199px) {
    .testimonial-two_rate-outer {
        padding: 40px 30px;
    }

    .testimonial-two_rate {
        font-size: 72px;
    }
}

@media (max-width: 991px) {
    .testimonial-two_rate-column {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {

    .testimonial-block_two-inner {
        padding: 20px;
    }

    .testimonial-block_two-author {
        margin-left: 30px;
    }

    .testimonial-block_two-author img {
        width: 80px;
        height: 80px;
    }
}

/* gallery */
.gallery-item {
    cursor: pointer;
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay + icon */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    font-weight: bold;
    font-size: 3rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay span {
    transform: scale(1);
}

/* Custom modal styles */
.modal-content {
    background: transparent;
    border: none;
}

.modal-body {
    padding: 0;
    text-align: center;
}

.modal-body img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.masonry-container {
    column-count: 4;
    column-gap: 1.5rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .masonry-container {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry-container {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry-container {
        column-count: 1;
    }
}

/* contact us start*/
.btn-text .text-one {
    color: #fff;
}

.contact-info-box {
    background: var(--black) !important;
    padding: 35px 24px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin: 30px 0;
    transition: all .3s;
    min-height: 280px;
}

.contact-style-img {
    position: absolute;
    top: -50px;
    right: -50px;
    z-index: 1;
}

.contact-info-icon {
    display: inline-block;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    line-height: 100px;
    position: relative;
    z-index: 1;
    transition: all .3s;
    top: 16px;
}

.contact-info-icon i {
    font-size: 50px;
    line-height: 90px;
}

.contact-info-icon:after {
    content: '';
    position: absolute;
    left: -15px;
    bottom: -15px;
    right: -15px;
    top: -15px;
    border-radius: 50%;
    border: 1px solid #fff;
    z-index: -1;
    transition: all .3s;
}

ul.contact-info {
    margin-top: 40px;
    padding: 0px;
}

.contact-info-box:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #fff;
    margin: 0 auto;
}

ul.contact-info li,
ul.contact-info li a {
    color: #fff;
    font-weight: 500;
    list-style: none;
    font-size: 18px;
    margin-top: 57px;
    line-height: 1.4;
}

.contact-info-box:hover {
    background: var(--black) !important;
}

.contact-info-box:hover .contact-info-icon {
    background: var(--primary-color);
}

.contact-info-box:hover i {
    color: #fff;
}

/* .single-food-items {
  padding: 24px 25px 30px;
  margin-top: 100px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, #FFF 63.33%);
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.single-food-items .item-thumb {
  position: relative;
  margin-top: -120px;
}
.single-food-items .item-thumb img {
  position: relative;
  z-index: 2;
}
.single-food-items .item-thumb .circle-shape {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.item-content a {
    font-size: 18px;
    color: #000;
}

.single-food-items .item-content {
    margin-top: 38px;
}
.single-food-items .item-content h3 {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.single-food-items .item-content .text {
  color: var(--black);
	font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.single-food-items .item-content h6 {
  color: var(--primary-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
} */
.rotate-360 {
    animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-boxx {
    background-image: url(assets/images/contact/bg-testimonial.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: cover;
}

/* form section */
.message-wrapper-two {
    padding: 2.75rem;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 6px double black;
    background-color: #ffffff87;
}

.form-control::placeholder {
    color: #000;
    opacity: 1;
    /* Important for Firefox */
}

.message-wrapper-two .message-form {
    margin-top: 2.5rem;
}

.form-control {
    padding: 1rem 1.25rem;
    border: 1px solid #000000;
    width: 100%;
    background-color: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    height: 3.625rem;
}

.form-control:focus {
    border-color: #767676;
    box-shadow: none;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #D0D0D0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

textarea {
    min-height: 8.125rem !important;
    resize: none;
    width: 100%;
}

.faq-four-two {
    overflow: hidden;
    border-radius: 999px 999px 0 0;
}

.faq-four-one {
    overflow: hidden;
    border-radius: 0 0 999px 999px;
}

.align-self-end {
    align-self: flex-end !important;
}

.contact-form-sec {
    background-image: url(assets/images/contact/body-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.ser-dl {
    background-image: url(assets/images/homepage/ser-dl.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* blog detail */
section.services-details {
    overflow: initial;
    position: relative;
}

.services-details .content-side .image-slide {
    position: relative;
    margin-bottom: 35px;
}

.services-details .content-side .image-slide img {
    border-radius: 6px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.services-details .content-side .image-slide .content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 140px;
    background-color: var(--primary-color);
    padding: 20px 30px;
    border-top-right-radius: 6px;
}

.services-details .content-side .image-slide .content h4 {
    color: #fff;
    font-weight: 700;
}

.services-details .content-side .textb {
    position: relative;
    margin-bottom: 25px;
    font-size: 16px;
}

.services-details .content-side .list {
    position: relative;
}

.services-details .content-side .list li {
    position: relative;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
}

.widget_contact {
    position: relative;
    padding: 50px 30px;
    border-radius: 6px;
    background-size: cover;
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.widget_contact img {
    margin-bottom: 20px;
}

.widget_contact .phone-number {
    position: relative;
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}

.widget_contact .phone-number a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.email {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
}

.widget_contact .email a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.widget_categories_two .categories-list li a:hover {
    padding-left: 20px;
    color: #fff;
    background: var(--primary-color);
}

.widget_categories_two .categories-list li a:hover:before {
    opacity: 0;
}

.services-details .content-side .list li i {
    margin-right: 8px;
    font-size: 15px;
}

.text-white {
    font-weight: 500;
}

.widget_categories_two {
    margin-bottom: 45px;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 6px;
}

.widget_categories_two .categories-list li {
    position: relative;
    display: block;
    border: 1px solid #e1e5e9;
    margin-bottom: 10px;
    border-radius: 6px;
}

.widget_categories_two .categories-list li a {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 28px;
    font-weight: 600;
    color: #1e1e2a;
    padding: 14px 0px 13px 42px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border-radius: 6px;
}

.widget_categories_two .categories-list li a:before {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 17px;
    color: var(--black);
    left: 20px;
    transition: all 500ms ease;
    margin-right: 10px;
}

.contact-sh4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 20px;
}

.phone-number a {
    color: #fff;
}

.widget+.widget {
    margin-top: 50px;
}

.comment-respond {
    background-image: url(assets/images/contact/getin-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
    padding: 32px 40px 32px;
    margin-top: 20px;
    border-bottom: 3px solid var(--primary-color);
    border-top: 3px solid var(--primary-color);
}

.comment-notes {
    margin-bottom: 15px;
}

.comment-field {
    margin-bottom: 15px;
}

.comment-field textarea {
    width: 100%;
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    font-size: 16px;
    padding: 15px 15px;
    line-height: 1.2;
    height: 50px;
}

.comment-field textarea {
    min-height: 130px;
    max-height: 130px;
}

.comment-field {
    margin-bottom: 15px;
}

.comment-field input,
.comment-field textarea {
    width: 100%;
    display: block;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    font-size: 16px;
    padding: 15px 15px;
    line-height: 1.2;
    height: 50px;
}


.blog-widget {
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 30px 30px;
    margin-bottom: 30px;
    border: 1px solid #E5E7E8;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.widget-title {
    position: relative;
}

.rc-post-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.rc-post-thumb {
    width: 100px;
    flex: 0 0 auto;
}

.rc-post-thumb img {
    border-radius: 50px;
    width: 100%;
    height: 100px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.rc-post-content .date {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 16px;
}

.rc-post-content .date i {
    color: var(--primary-color);
    font-size: 16px;
}

.blog_details h3 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 22px;
    margin-top: 23px;
}

button.btn.btn-custom.with-25 {
    width: 200px;
    text-transform: uppercase;
    margin: auto;
}

.rc-post-content .title {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
    font-weight: 400;
}

h2.sub-h22 {
    font-size: 25px;
    margin-bottom: 20px;
    background-color: #57595b;
    padding: 15px;
    border-radius: 15px;
    color: #fff;
}

h2.sub-h22:before {
    content: '//';
    font-size: 25px;
    font-weight: 700;
    margin-right: 10px;
    color: #fff;
}

.post-title a {
    color: #000;
}

.cp-news4-item {
    transition: background-color 0.5s ease, transform 0.5s ease;
}

.cp-news4-item:hover {
    transform: translateY(-10px);
}

.box-shadow1 {
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
}

.p-1-9 {
    padding: 1.9rem;
}

.form-group01 input {
    border: 1px solid #ff644b;
    border-radius: 10px;
    width: 100%;
    padding: 11px 14px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 15px;
}

.wp-block-list li a {
    color: #000;
    margin-bottom: 10px;
}

.wp-block-list {
    margin-bottom: 10px;
}

.sub-h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #000;
}

/* Services Details */
.services-details {
    position: relative;
}

.services-details .content-side .image-slide {
    position: relative;
    margin-bottom: 35px;
}

.services-details .content-side .image-slide img {
    border-radius: 6px;
    width: 100%;
    height: auto;
}

.services-details .content-side .image-slide .content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 140px;
    background-color: var(--primary-color);
    padding: 20px 30px;
    border-top-right-radius: 6px;
}

.categories-list.clearfix {
    padding-left: 0;
    margin-bottom: 0;
}

.services-details .content-side .image-slide .content h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}

.services-details .content-side h2 {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--black);
}

.services-details .content-side .icon {
    position: relative;
    font-size: 200px;
    line-height: 210px;
    color: #e5ebf4;
}

.services-details .content-side .text {
    position: relative;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 500;
}

.services-details .content-side .text p {
    font-size: 16px;
    font-weight: 500;
}

.services-details .content-side .list {
    position: relative;
}

.services-details .content-side .list li {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
}

.services-details .content-side .list li i {
    margin-right: 8px;
    font-size: 15px;
}

.service-block-seven {
    position: relative;
}

.service-block-seven .inner-box {
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
    -webkit-box-shadow: 0 0 10px #00000014;
    box-shadow: 0 0 10px #00000014;
}

.service-block-seven .icon {
    position: relative;
    padding: 30px 0 15px;
    min-height: 110px;
}

.service-block-seven .icon img {
    width: auto;
    margin: 0 auto;
}

.service-block-seven h4 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-block-seven .text {
    position: relative;
    padding: 20px 20px;
    background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 10%, #f1f5f8 100%);
    font-size: 18px;
    font-weight: 500;
}

.services-details .tab-btn-style-one {
    position: relative;
    border: 0px;
    margin-bottom: 30px;
}

.services-details .tab-btn-style-one li {
    margin-bottom: 10px;
    width: 100%;
}

.services-details .tab-btn-style-one li a {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    padding: 13px 20px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 6px;
    width: 100%;
    border: 0;
    color: #0c2957;
    transition: .5s;
}

.services-details .tab-btn-style-one li a.active,
.services-details .tab-btn-style-one li a:hover {
    color: #fff;
}

.services-details .tab-btn-style-one li a:before {
    position: absolute;
    content: "\f100";
    font-family: Flaticon;
    font-size: 16px;
    right: 20px;
    top: 13px;
    color: #fff;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.services-details .tab-btn-style-one li a.active:before,
.services-details .tab-btn-style-one li a:hover:before {
    opacity: 1;
}

.services-details .tab-content {
    position: relative;
    margin-bottom: 30px;
}

.services-details .tab-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.services-details .tab-content .text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.services-details .tab-content img {
    border-radius: 6px;
}


/* service-detail */
.services-section-three {
    position: relative;
}

.services-section-three .bg {
    max-height: 490px;
}

.services-section-three .sec-title {
    margin-bottom: 50px;
}

.services-section-three .sec-title .text-box {
    position: relative;
    padding-right: 300px;
}

@media (max-width: 1199.98px) {
    .services-section-three .sec-title .text-box {
        padding-right: 0;
        margin-top: 20px;
    }
}

.services-section-three .sec-title .text-box .theme-btn {
    position: absolute;
    right: 0;
    top: 20px;
}

@media (max-width: 1199.98px) {
    .services-section-three .sec-title .text-box .theme-btn {
        position: relative;
        top: 0;
        margin-top: 20px;
    }
}

.services-section-three .sec-title .text-box .text {
    margin-top: 0;
    color: #000;
}

.services-section-three .sponsors-outer {
    border-top: 1px solid #e6e6e6;
    padding: 85px 0;
}

.service-block-three {
    margin-bottom: 70px;
}

.service-block-three .inner-box {
    position: relative;
    background: #fff;
    transition: all 300ms ease;
    padding: 50px 50px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199.98px) {
    .service-block-three .inner-box {
        padding: 40px 40px 50px;
    }
}

.service-block-three .inner-box:hover {
    background-color: var(--primary-color);
}

.service-block-three .inner-box:hover:before {
    opacity: 0.2;
    transition: all 100ms ease;
}

.service-block-three .inner-box:hover .text,
.service-block-three .inner-box:hover .ser-d-text,
.service-block-three .inner-box:hover .title,
.service-block-three .inner-box:hover .icon {
    color: #fff;
}

.service-block-three .inner-box:hover .icon {
    transform: scale(-1) rotate(180deg);
}

.service-block-three .inner-box:hover .read-more {
    background-color: #000;
}

.service-block-three .inner-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(assets/images/service/shape6.webp);
    background-position: right top;
    background-repeat: no-repeat;
    content: "";
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.service-block-three .inner-box .icon {
    position: relative;
    display: inline-block;
    color: var(--black);
    font-size: 62px;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 20px;
}

.service-block-three .inner-box .text {
    font-weight: 500;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-three .inner-box .read-more {
    position: absolute;
    right: 40px;
    bottom: -26px;
    height: 52px;
    width: 52px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-three .inner-box .read-more:hover {
    background-color: var(--primary-color);
}

.service-block-three .inner-box:hover:before {
    opacity: 0.2;
    transition: all 100ms ease;
}

.ser-d-text {
    margin-bottom: 20px;
}

/* about page about us start */
.about-section-two {
    position: relative;
    z-index: 1;
    background-image: url(assets/images/about/about-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-two-item {
    padding-top: 2.1875rem;
    position: relative;
}

.about-two-item .icon {
    position: absolute;
    top: 0;
    inset-inline-start: 1.875rem;
    width: 3.75rem;
    height: 3.75rem;
    background-color: var(--black);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-two-item .content {
    padding: 2.8125rem 1.875rem 1.875rem 1.875rem;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* inquiry start */
.support-one {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.support-one::before {
    position: absolute;
    top: 41px;
    left: 0;
    bottom: 113px;
    right: 0;
    clip-path: polygon(0 0, 100% 48%, 100% 100%, 0% 100%);
    content: "";
    z-index: -1;
}

.support-one .shape4 {
    position: absolute;
    top: -37px;
    left: 0;
    z-index: -1;
}

.support-one__img {
    position: relative;
    display: block;
    margin-right: -15px;
    z-index: 2;
}

.support-one__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.support-one__img .inner img {
    width: 100%;
}

.support-one__img .shape1 {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
}

.support-one__img .shape1 img {
    width: auto;
}

.support-one__content {
    position: relative;
    display: block;
    margin-left: 32px;
    margin-right: 0px;
    padding-top: 66px;
    padding-bottom: 70px;
    z-index: 1;
}

.support-one__content::after {
    content: "";
    position: absolute;
    left: -130px;
    bottom: -45px;
    width: 45px;
    border-left: 45px solid transparent;
    border-bottom: 45px solid transparent;
    z-index: 3;
    border-top: 45px solid var(--primary-color);
}

.support-one__content .shape2 {
    position: absolute;
    top: 0;
    right: -340px;
    z-index: -1;
}

.support-one__content .shape3 {
    position: absolute;
    left: -85px;
    bottom: 0;
    z-index: -1;
}

.support-one__content::before {
    position: absolute;
    top: 0px;
    left: -85px;
    bottom: 0;
    right: -999999px;
    background: var(--primary-color);
    content: "";
    z-index: -1;
}

.support-one__content .sec-title {
    padding-bottom: 27px;
}

.support-one__content .sec-title__tagline .text p {
    color: #ffffff;
}

.support-one__content .sec-title__title {
    color: #ffffff;
}

.support-one__content-text1 {
    position: relative;
    display: block;
}

.support-one__content-text1 p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 34px;
}

.support-one__content-text2 {
    position: relative;
    display: block;
    margin-top: 41px;
}

.support-one__content-text2-single {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 42px;
}

.support-one__content-text2-single.mb0 {
    margin-bottom: 0;
}

.support-one__content-text2-single .icon-box {
    position: relative;
    display: block;
}

.support-one__content-text2-single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: var(--secondary);
    font-size: 65px;
    top: 7px;
}

.support-one__content-text2-single .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.support-one__content-text2-single .text-box h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.support-one__content-text2-single .text-box p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* whatsapp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 8px;
    z-index: 100;
    text-align: center;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
}

.video-hero {
    position: relative;
}

.video-hero__content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: auto;
    z-index: 5;
}

.wow {
    visibility: hidden;
}

.d-no {
    display: none;
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    src: url("../webfonts/fa-solid-900.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    src: url("../webfonts/fa-regular-400.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    src: url("../webfonts/fa-brands-400.woff2") format("woff2");
    font-display: swap;
}

h2.first-1 {
    font-size: 20px;
}

.desktop992 {
    display: block;
}

.mobile992 {
    display: none;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 1200px) {
    .main-menu ul li a {
        padding: 15px 10px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .chy-services-1-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .chy-services-1-counter {
        padding: 55px 25px;
        border-top: 2px solid #000;
    }
}

@media (max-width: 767px) {
    .chy-services-1-wrap {
        grid-template-columns: 1fr;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .chy-services-1-counter {
        padding: 55px 25px;
        border-top: 2px solid var(--chy-h1-color);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .chy-services-1-counter-item .number {
        font-size: 45px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .chy-services-1-counter-item .disc {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .chy-services-1-counter-item {
        border-right: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .chy-services-1-counter-item .number {
        font-size: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .chy-services-1-counter {
        padding: 55px 25px;
        border-top: 2px solid #000;
        grid-template-columns: 1fr 1fr;
        gap: 20px 0;
    }
}


@media (max-width: 992px) {
    .call-to-action .outer-box .title-box .title {
        font-size: 30px;
    }

    .call-to-action .outer-box .title-box {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        flex-direction: column;
        align-content: center;
        align-items: flex-start;
    }

    .call-to-action .outer-box {
        padding: 30px 25px;
        padding-left: 300px;
    }

    .title-box .chy-pr-btn-4 {
        margin-top: 15px;
    }

    h2.first-1 {
        font-size: 20px;
    }

    .text-anime-style-3 {
        font-size: 30px;
    }

    section {
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .service-one__item {
        margin-bottom: 20px;
    }

    .desktop992 {
        display: none;
    }

    .mobile992 {
        display: block;
    }

    .testimonial-block_two-text {
        margin-bottom: 15px;
    }

    .testimonial-two_rate-outer {
        padding: 20px;
    }

    .banner-know-box .icon {
        width: 30px;
        height: 30px;
        line-height: 32px;
        font-size: 12px;
    }

    .bg-section.dark-section {
        padding-bottom: 36px;
    }

    .service-block-three {
        margin-bottom: 25px;
    }

    .services-details .content-side .image-slide .content h2 {
        font-size: 16px;
    }

    .services-details .content-side .image-slide .content {
        padding: 10px;
    }

    .comment-respond {
        padding: 20px;
        margin-bottom: 20px;
    }

    .support-one__content {
        margin-left: 0;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact-info-box {
        padding: 25px 15px;
        margin: 0 0 25px 0;
    }

    .message-wrapper-two {
        padding: 20px;
    }

    .message-wrapper-two .message-form {
        margin-top: 19px;
    }

    .empty-sec {
        display: none;
    }

    .chy-solutions-2-area {
        padding-top: 50px;
    }
}


@media (max-width: 776px) {
    .contact-info-icon {
        width: 75px;
        height: 76px;
        line-height: 70px;
    }

    .contact-info-icon i {
        font-size: 30px;
        line-height: 77px;
    }

    .footer-bottom-text {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .footer-bottom-text ul {
        padding-left: 0;
        margin-top: 10px;
    }

    .footer-bottom {
        margin-top: 5px;
    }

    .widget-title h3 {
        padding-bottom: 10px;
    }

    .mar-b35 {
        margin-bottom: 25px;
    }

    .about-us:before {
        height: 95px;
        width: 102px;
    }

    .how-work-item-title {
        font-size: 18px;
    }

    .our-faqs:before {
        height: 74px;
        width: 54px;
        left: 3%;
        bottom: 5px;
    }

    .chy-solutions-2-wrap::after {
        display: none;
    }

    .chy-solutions-2-counter .number {
        font-size: 40px;
    }

    .chy-services-1-counter-item:nth-child(3) {
        justify-self: left;
    }

    .chy-services-1-counter {
        padding: 15px 15px;
        border-top: 2px solid #000;
        grid-template-columns: 1fr;
        gap: 20px 0;
    }

    .chy-services-1-counter-item .number {
        font-size: 25px;
    }

    .chy-services-1-counter-item:nth-child(2) {
        justify-content: left;
    }

    .chy-services-1-counter-item .disc {
        font-size: 16px;
    }

    .chy-services-1-item-list li {
        font-size: 18px;
        font-weight: 500;
    }

    .chy-services-1-item .body {
        padding: 15px;
    }

    .chy-services-1-item .header {
        padding-top: 25px;
        padding-bottom: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    a.navbar-brand img {
        max-width: 140px;
    }

    .service-block-three .inner-box {
        padding: 20px;
    }

    .ser-d-text {
        margin-bottom: 10px;
    }

    .faq-four-one img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .faq-four-two img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}



@media (max-width: 576px) {
    .chy-solutions-2-wrap .hand-img {
        bottom: -38px;
    }

    .services-details .content-side h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .support-one__content {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .services-details .content-side .image-slide {
        margin-bottom: 25px;
    }

    .call-to-action .outer-box .image-box {
        position: absolute;
        left: 0;
        bottom: -49px;
        height: 152px;
        width: 75px;
    }

    .call-to-action .outer-box {
        padding: 25px 10px;
        padding-left: 115px;
    }

    .call-to-action .outer-box .title-box .title {
        font-size: 25px;
    }

    .chy-pr-btn-4 {
        padding: 14px 15px;
    }

    .footer-bottom-text ul li {
        text-align: center;
    }

    .footer-bottom-text p {
        text-align: center;
    }

    .footer-bottom-text ul {
        padding-left: 0;
        margin-top: 10px;
    }

    h2.first-1 {
        font-size: 17px;
    }

    section {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .chy-solutions-2-area {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .about-two-item .content {
        padding: 34px 15px 9px 15px;
    }

    .bg-section.dark-section {
        padding-bottom: 24px;
    }

    a.navbar-brand img {
        max-width: 100px;
    }

    .page-header {
        padding: 124px 0 80px;
    }

    section.client-sec.pt-0 {
        bottom: 0;
    }

    .footer-sec {
        padding: 71px 0 0px;
    }

    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }

    .whatsapp-float {
        right: 2px;
    }
}

@media (max-width: 400px) {
    .call-to-action .outer-box .image-box {
        left: 20px;
        bottom: 143px;
    }

    .call-to-action .outer-box {
        padding-left: 20px;
    }

    .chy-solutions-2-wrap .hand-img {
        display: none;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .chy-solutions-2-wrap::after {
        height: 510px;
        top: unset;
        bottom: -100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .chy-solutions-2-wrap .hand-img {
        width: 40%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .chy-solutions-2-counter-wrap {
        margin-top: 32px;
        position: unset;
    }
}








/*Menu*/
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
}

.main-navigation ul.sub-menu {
    display: none;
    padding-left: 15px;
}

.logo img {
    /* max-width: 125px; */
    height: auto;
}

.main-navigation ul.sub-menu.depth-0 {
    padding-left: 0;
}

.menu-toggle {
    display: none;
}

.main-navigation a:hover,
.main-navigation a:focus {
    background-color: #f5f5f5;
}

.main-navigation .current-menu-item>a {
    font-weight: bold;
}

/* Mobile styles */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 35px;
        height: 35px;
        background: #000;
        border: none;
        cursor: pointer;
        padding: 0;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        z-index: 1;
        color: #fff;
    }

    .main-navigation li.has-children>a {
        padding-right: 40px;
    }

    .main-navigation ul.sub-menu {
        display: none;
        padding-left: 15px;
        background-color: #f9f9f9;
    }

    .main-navigation ul.sub-menu .sub-menu {
        padding-left: 15px;
    }

    .main-navigation ul.sub-menu li a {
        padding-left: 25px;
    }

    .main-navigation ul.sub-menu li.has-children>a {
        padding-right: 40px;
    }

    .main-navigation ul.sub-menu.active {
        display: block;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .main-navigation>ul>li {
        display: inline-block;
    }

    .main-navigation ul.sub-menu {
        position: absolute;
        min-width: 235px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding-left: 0;
    }

    .main-navigation ul.sub-menu .sub-menu {
        left: 100%;
        top: 0;
    }

    /*.main-navigation li.has-children>a {*/
    /*    padding-right: 30px;*/
    /*}*/

    /* Show submenu on hover (desktop only) */
    .main-navigation li.has-children:hover>ul.sub-menu {
        display: block;
    }
}

/* Navbar styles */
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: flex-end;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
}

button.navbar-toggler {
    background: var(--primary);
    color: #fff
}

/*Menu End*/

/* Sticky Navbar */
#masthead {
    background-color: #fff;
    transition: .5s ease top;
    top: -105px;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);

    &.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }

    .header {
        justify-content: center;

        h1 {
            color: white;
        }
    }

    z-index: 999;
}


/*Multi Slider*/
.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    flex: 0 0 auto;
    text-align: center;
    font-size: 18px;
    box-sizing: border-box;
}

.slider-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-content {
    text-align: left;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.slider-button-next {
    right: 10px;
}

.slider-button-prev {
    left: 10px;
}

.slider-pagination {
    text-align: center;
    margin-top: 10px;
}

.slider-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dot.active {
    background: #333;
}

nav.main-navigation {
    /*display: flex;*/
    align-items: center;
}

.logo {
    width: 195px;
}




/* Export page css */
/* General Styles */
.export-section {
    background-color: var(--white);
}

.section-title-custom {
    font-weight: 800;
    text-transform: uppercase;
    border-left: 5px solid var(--black);
    padding-left: 20px;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* Section 1: Product Cards (Updated: No Buttons) */
.export-card {
    border: 4px solid var(--black);
    background: var(--white);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.export-card:hover {
    box-shadow: 15px 15px 0px var(--black);
    transform: translate(-8px, -8px);
}

.export-img-wrapper {
    overflow: hidden;
    border-bottom: 1px solid var(--black);
}

.export-img-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.export-card:hover .export-img-wrapper img {
    transform: scale(1.05);
}

.export-body {
    padding: 30px;
}

.export-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 12px;
    display: block;
}

.export-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Section 2: Alternating Features */
.feature-row {
    margin-bottom: 80px;
    align-items: center;
}

.feature-img-container {
    border: 1px solid var(--black);
    padding: 10px;
    background: var(--white);
    transition: 0.4s;
}

.feature-img-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.feature-text-box {
    padding: 40px;
}

.feature-number {
    font-size: 60px;
    font-weight: 900;
    -webkit-text-stroke: 1px var(--black);
    color: transparent;
    line-height: 1;
    margin-bottom: 20px;
}

.feature-row:hover .feature-img-container {
    box-shadow: -15px 15px 0px var(--black);
}

.feature-row:nth-child(even):hover .feature-img-container {
    box-shadow: 15px 15px 0px var(--black);
}

.highlight-grid h4 {
    color: white;
}

/* Section 3: High-End Highlight Grid */
.highlight-grid {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
}

.highlight-box {
    border: 1px solid #444;
    padding: 40px;
    transition: 0.3s;
    height: 100%;
}

.highlight-box:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--black);
}

.highlight-box i {
    font-size: 40px;
    margin-bottom: 20px;
}

.highlight-box:hover h4 {
    color: var(--black);
}

/* Section 4: Visual Mosaic */

.mosaic-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-top: 50px;
}

.mosaic-item {
    position: relative;
    border: 1px solid var(--black);
    overflow: hidden;
    height: 350px;
}

.mosaic-item.wide {
    grid-column: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.mosaic-item:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: grayscale(100%);
}
input.mybtn {
    width: 200px;
    padding: 14px;
    border-radius: 19px;
    border: 1px solid black;
    background-color: black;
    color: white;
}
ul.chy-services-1-item-list {
    list-style-type: none;
}
 .d-a-992{
        display: block;
    }
    .d-b-992{
        display:none;
    }
    @media (max-width: 992px) {
        .d-a-992 {
            display: none;
        }
        .d-b-992 {
            display: block;
        }
    }
    
    .visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

   @media (max-width: 1200px) {

        .main-navigation a {
            padding: 10px 8px;
        }
    }
    
    
    
    
/* CAPTCHA Container Styling */
.captcha-wrapper {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* The Black Box containing the Code */
.captcha-box {
    background: #222; /* Dark professional look */
    color: #00d1b2;   /* Neon or bright text for readability */
    padding: 8px 15px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 6px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 4px;
    user-select: none; /* Prevents users from copying/pasting the code */
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    display: inline-block;
    width: 100%;
}

/* Refresh Button Styling */
.refresh-captcha {
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.3s;
}

.refresh-captcha:hover {
    color: #ff3860; /* Changes color on hover */
}

/* Input Field Styling */
.captcha-input {
    border: 2px solid #ddd !important;
    font-weight: bold;
    text-align: center;
    height: 45px;
}

.captcha-input:focus {
    border-color: #007bff !important;
}

/* Error Message */
.captcha-error {
    color: #ff3860;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}
button.refresh-captcha {
    border: 1px solid black !important;
    color: white !important;
    text-decoration: none;
}
.form-btn-sm{
    padding: 12px;
    border: none;
    border-radius: 12px;
}