/*
Theme Name: e-commerce-store
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;
}


.montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

:root {
    --primary: #690318;
    --secondary: #000;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
}

section {
    float: left;
    width: 100%;
}

.pt-70 {
    padding-top: 70px;
}

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

.pt-50 {
    padding-top: 50px;
}

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

.pt-0 {
    padding-top: 0px;
}

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

h2 {
    color: var(--secondary);
    font-size: 40px;
    font-weight: 700;
    position: relative;
}

nav,
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ml-0 {
    margin-left: 0px !important;
}

ul,
p {
    padding: 0;
    margin: 0;
}

/* 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;
}

/* 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;
}


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

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 6px 18px;
    text-decoration: none;
    color: var(--primary);
    border-radius: 11px;
    font-weight: 600;
}

.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: var(--primary);
    color: #fff;
}

.main-navigation .current-menu-item>a {
}

/* 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;
    }
}

/* 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: 9px 8px;
    width: 100%;
    font-size: 15px;
    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: var(--primary);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}
.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%;
}

ul
{
    padding: 0;
    margin: 0;
}
a{
    list-style: none;
}

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

.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-bottom: 100px;
    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;
}


/*Banner*/

.banner1 {
    background-image: url(assets/images/banner/banner1.webp);
    position: relative;
    color: #fff;
    background-position: 50% 50%;
    background-size: cover;
}

.banner-heading {
    padding: 60px 0px 70px 0px;
    width: 100%;
    color: #fff;
}

.banner-title {
    color: #fff;
    font-size: 50px;
    margin-bottom: 0px;
    font-weight: 600;
}

.breadcrumb {
    position: absolute;
    bottom: -16px;
    font-size: 16px;
    font-weight: 300;
    background: var(--primary);
    padding: 6px 15px;
}

ol.breadcrumb a {
    color: #fff;
    font-weight: 500;
}

ol.breadcrumb i {
    font-size: 12px;
    margin-left: 7px;
}

/******************Slider***********************/
.pic,
.pic img {
    width: 100%;
    height: auto;
}

#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: 40px;
    width: 40px;
    height: 40px;
    transition: all 500ms ease;
    background: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    margin: 15px;
}

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

.slider-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.slider01 {
    position: relative;
    padding-top: 10px;
    padding-bottom: 50px;
    height: 100vh;
    overflow: hidden;
}
.slider02 {
    background-image: url(assets/images/slider/slider2.webp);
    padding-bottom: 50px;
    padding-top: 10px;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.slider-content {
}

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

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

.slider-description {
    color: #000;
    font-weight: 500;
    margin: 20px 0 20px;
    line-height: 30px;
    font-size: 17px;
}

.read-more a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.read-more a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #ebebeb;
    border-radius: 50%;
    color: var(--primary);
    margin-right: 5px;
    transition: all 0.3s linear;
}

.read-more {
    margin-top: 10px;
    margin-bottom: 20px;
}

.work-process-area .work-pro-items .item:hover .read-more a i,
.sevice_effe1:hover .read-more a i,
.services__three-items:hover .two:hover .read-more a i {
    transform: rotate(90deg);
}

.sevice_effe1 {
    padding: 20px 20px 0px 20px;
}

/*******************btn*********************/

.vl-btn5 {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    display: inline-block;
    border-radius: 8px;
}

.vl-btn5 span.demo {
    display: inline-block;
    background: var(--primary);
    transition: all 0.4s;
    border-radius: 70px;
    padding: 16px 24px;
}

.vl-btn5 span.arrow {
    display: inline-block;
    background: var(--primary);
    transition: all 0.4s;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    line-height: 50px;
    font-size: 20px;
    transform: rotate(-45deg);
}

.vl-btn5:hover {
    transition: all 0.4s;
    color: #fff;
}

.vl-btn5:hover span.arrow {
    margin-left: 6px;
    transition: all 0.4s;
    transform: rotate(0deg);
    background: #000;
    color: #fff;
}

.vl-btn5:hover span.demo {
    background: #000;
    color: #fff;
}

/* Footer */
.main-footer.style-two {
    position: relative;
    background-image: url(assets/images/homepage/footer.webp);
    padding-bottom: 0;
    padding-top: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 0px;
}

.main-footer .footer-widget {
    position: relative;
    margin-bottom: 15px;
}

.main-footer .widget-title {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 30px;
    margin-top: 0;
}

.links-widget .widget-content {
    position: relative;
}

.links-widget ul li {
    position: relative;
}

.links-widget ul li a {
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    color: #fff;
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

.links-widget ul li a:before {
    position: absolute;
    content: '';
    left: -20px;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    opacity: 0;
    background-color: var(--primary);
}

.links-widget ul li a:after {
    position: absolute;
    content: '';
    left: -30px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    opacity: 0;
    background-color: var(--primary);
}

.main-footer .footer-widget {
    position: relative;
    margin-bottom: 15px;
}

.contact-widget .social-links {
    position: relative;
}

.contact-widget ul.list li {
    position: relative;
    display: flex;
    color: #fff;
}

.contact-widget .social-links li a {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 14px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    background: rgba(255, 255, 255, 0.2);
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-widget .social-links li a span {
    position: relative;
}

.contact-widget .social-links li {
    position: relative;
    margin-right: 8px;
    margin-bottom: 10px;
    display: inline-block;
}

.contact-widget .social-links li a:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background-image: -webkit-linear-gradient(0deg, rgb(17 101 110) 16%, rgb(74 172 179) 100%);
}

footer.main-footer.style-two i {
    color: #fff;
    margin-right: 15px;
    font-weight: 300;
}

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

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

.copyright {
    margin-top: 20px;
    background: var(--primary);
    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;
}

ul.list.address1 i {
    margin-top: 4px;
    margin-right: 15px;
}

.footer-widget.links-widget.pl-5 {
    padding-left: 50px;
}

.hover-content-heading a {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 2px 10px;
    float: right;
    font-size: 13px;
    border-radius: 5px;
}

.hover-content-heading h2 {
    float: left;
    font-size: 16px;
    margin-top: 6px;
}

.website-tag-part {
    float: left;
    width: 100%;
}

.website-tag-part li {
    float: left;
    box-shadow: 0px 0px 2px 0px var(--secondary);
    background: #f5f5f5;
    padding: 2px 7px;
    margin: 4px;
    color: var(--secondary);
    font-size: 13px;
}

.hover-content-heading a:hover {
    background: var(--secondary);
}

h2.portfolio_name {
    text-align: center;
    font-size: 20px;
    margin-bottom: 0px;
}

/* Testimonial Section */
.testimonial-section {
    background-position: center 0px;
    position: relative;
    background-color: #000000;
    background-image: url(assets/images/testimonials/testi-bg.webp);
    background-position: center 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-body {
    position: relative;
    background-color: #fff;
    max-width: 700px;
    margin: auto;
    padding: 30px;
    border-radius: 50px 10px 50px 10px;
    border-left: 6px solid;
    border-bottom: 6px solid;
}

.heading7 h5::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(32, 44, 211, 0.1) 1.1%, rgba(7, 120, 249, 0.1) 100%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    height: 100%;
    width: 100%;
    transition: all 0.4s;
    z-index: -1;
}

.heading7 h5 {
    background: linear-gradient(90deg, #202cd3 1.1%, #0778F9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.18px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 6px 12px;
}

.portfolio-one__shape-one {
    top: -476px;
    left: -388px;
}

.portfolio-one__shape-one,
.portfolio-one__shape-two,
.portfolio-one__shape-three {
    max-width: 100%;
    height: auto;
    position: absolute;
}

.portfolio-one__shape-two {
    right: -327px;
    bottom: -190px;
}

.portfolio-one__shape-one,
.portfolio-one__shape-two,
.portfolio-one__shape-three {
    max-width: 100%;
    height: auto;
    position: absolute;
}

.portfolio-one__shape-three {
    max-width: 100%;
    height: auto;
    position: absolute;
}

@media (max-width: 1599px) {
    .portfolio-one__shape-three {
        right: 20px;
    }
}

@media (max-width: 1799px) {
    .portfolio-one__shape-three {
        top: 100px;
    }
}

.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: #fff;
    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(--secondary);
}



.testimonial-block {
    position: relative;
}

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

.testimonial-block .inner-box .upper-box {
    position: relative;
    padding-top: 9px;
    padding-left: 110px;
    text-align: left;
}

.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: 20px;
    color: #000;
    font-size: 16px;
    line-height: 1.9em;
    font-weight: 500;
    text-align: left;
}


/* Fun fact */
.counter-area {
    background: var(--primary);
    color: #fff;
}

.tp-counter-item-icon {
    font-size: 50px;
    line-height: 50px;
}

.counter {
    font-size: 25px;
    float: left;
    /* width: 100%; */
    margin-right: 10px;
}

/*Font*/
.span3 {
    float: left;
    width: 25%;
    border: 1px solid #000;
    padding: 11px;
}

span.i-code {
    float: right;
}

a {
    list-style: none;
    text-decoration: none;
    color: var(--primary);
}

.slider-hero1 {
    padding-top: 0;
    padding-bottom: 0;
}

.elements35 {
    position: absolute;
    top: 0px;
    left: 100px;
}

.about4-section-area .about-images-area {
    position: relative;
    z-index: 1;
}

.about4-section-area .about-images-area svg {
    position: absolute;
    z-index: -1;
    left: -141px;
    transform: rotate(45deg);
    top: -140px;
}

.about4-section-area .about-images-area .img1 img {
    width: 500px;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.heading6 h5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.18px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 6px 0px;
    color: var(--primary);
}

p.m-b {
    margin-bottom: 10px;
}

.about4-section-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about4-section-area .about-bg1 {
    position: absolute;
    z-index: -2;
    left: -34px;
    top: 0;
}

.about4-section-area .elements41 {
    position: absolute;
    top: 0;
    right: 0;
}

.about4-section-area .stop-color2 {
    stop-color: #381ba7;
}

.about4-section-area .stop-color1 {
    stop-color: #6459df;
}


/* h2 scroll animation start */

h2.scroll-animate {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 0;
    font-weight: 600;
}


h2.scroll-animate.animate::after {
    transform: translateX(100%);
}

/* Spacer to ensure scrolling works */
.spacer {
    height: 100vh;
}

/* h2 scroll animation end */

/* services start */
.service1-section-area {
    position: relative;
    z-index: 1;
}

.service1-section-area .service1-boxarea {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    background: #fff;
    padding: 28px;
    transition: all 0.4s;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.jobboardpadd {
    padding-bottom: 30px;
}

.service1-section-area .service1-boxarea .icons {
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    transition: all 0.4s;
    margin-bottom: 25px;
    display: inline-block;
    background: var(--primary);
}

.service1-section-area .service1-boxarea .arrow {
    position: absolute;
    right: -100px;
    top: -100px;
    transition: all 0.8s;
}

.service1-section-area .service1-boxarea a {
    color: var(--primary);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    display: block;
    transition: all 0.4s;
    margin-bottom: 20px;
}

.service1-section-area .service1-boxarea h5 {
    color: var(--primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    padding-left: 68px;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.service1-section-area .service1-boxarea h5::after {
    position: absolute;
    z-index: 1;
    content: "";
    height: 2px;
    width: 60px;
    left: 0;
    top: 6px;
    transition: all 0.4s;
    background: var(--primary)
}

.service1-section-area .service1-boxarea::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 10px;
    transition: all 0.4s;
    left: 50%;
    border-radius: 16px;
    background: var(--primary);
    visibility: hidden;
    opacity: 0;
    top: 0;
    z-index: -1;
}

.service1-section-area .service1-boxarea:hover::after {
    visibility: visible;
    opacity: 1;
    transition: all 0.4s;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.service1-section-area .service1-boxarea:hover a {
    color: #fff;
    transition: all 0.4s;
}

.service1-section-area .service1-boxarea:hover p {
    color: #fff;
    transition: all 0.4s;
    opacity: 80%;
}

.service1-section-area .service1-boxarea:hover h5 {
    color: #fff;
    transition: all 0.4s;
    padding-left: 0;
}

.service1-section-area .service1-boxarea .arrow a {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 50%;
    transition: all 0.4s;
    display: inline-block;
    background: #fff;
    color: #fff;
    line-height: 40px;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.service1-section-area .service1-boxarea:hover a {
    color: #fff;
    transition: all 0.4s;
}

.service1-section-area .service1-boxarea:hover .arrow {
    top: 16px;
    right: 16px;
    transition: all 0.6s;
}

.service1-section-area .service1-boxarea:hover .icons {
    transform: rotateY(-180deg);
    transition: all 0.4s;
    background: var(--secondary);
}

.service1-section-area .service1-boxarea:hover h5::after {
    background: #fff;
    transition: all 0.4s;
    left: 26px;
}

/* whychoose us start */
.work4-section-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.work4-section-area .elements16 {
    position: absolute;
    left: -100px;
    transform: rotateY(-180deg);
    top: 0;
}

.work4-section-area .elements1 {
    position: absolute;
    left: 140px;
    top: 0;
}

.work4-section-area .others-widget-area {
    background: #fff;
    border-radius: 16px;
    position: relative;
}

.work4-section-area .others-widget-area .card-boxarea.box1 img {
    position: relative;
    left: -75px;
    margin-bottom: 20px;
}

.work4-section-area .others-widget-area .card-boxarea img {
}

.work4-section-area .others-widget-area .card-boxarea .content-area {
    background: #F2F4FF;
    padding: 28px;
    margin: 0 30px 35px 0;
    position: relative;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 37px 0;
    text-align: left;
}

.work4-section-area .others-widget-area .card-boxarea .content-area:hover::after {
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    visibility: visible;
    opacity: 1;
}

.work4-section-area .others-widget-area .card-boxarea .content-area::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 10px;
    left: 50%;
    transition: all 0.4s;
    top: 0;
    background: var(--primary);
    z-index: -1;
    border-radius: 8px;
    visibility: hidden;
    opacity: 0;
}

.work4-section-area .others-widget-area .images {
    position: relative;
    z-index: 1;
}

.work4-section-area .others-widget-area .images .elements12 {
    position: absolute;
    top: -10px;
    left: -100px;
}

.work4-section-area .others-widget-area .images .elements13 {
    position: absolute;
    bottom: -10px;
    left: -100px;
}

.work4-section-area .others-widget-area .images .elements14 {
    position: absolute;
    top: -10px;
    right: -100px;
}

.work4-section-area .others-widget-area .images .elements15 {
    position: absolute;
    bottom: -10px;
    right: -100px;
}

.work4-section-area .others-widget-area .images .img1 {
    position: relative;
    z-index: 1;
    background: #F1F0FE;
    padding: 16px;
    border-radius: 50%;
}

.work4-section-area .others-widget-area .card-boxarea.box3 h3 {
    position: relative;
    left: 74px;
    margin-top: -33px;
    margin-bottom: 16px;
}

.work4-section-area .others-widget-area .card-boxarea img {
}

.work4-section-area .others-widget-area .card-boxarea .content-area2::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 10px;
    left: 50%;
    transition: all 0.4s;
    top: 0;
    background: var(--primary);
    z-index: -1;
    border-radius: 8px;
    visibility: hidden;
    opacity: 0;
}

.work4-section-area .others-widget-area .card-boxarea .content-area2 {
    background: #F2F4FF;
    padding: 28px;
    margin: 0 0 35px 40px;
    position: relative;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 0 37px;
    text-align: right;
}

.work4-section-area .others-widget-area .images .img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.work4-section-area .others-widget-area .images .img1 {
    position: relative;
    z-index: 1;
    background: #F1F0FE;
    padding: 16px;
    border-radius: 50%;
}

.work4-section-area .others-widget-area .card-boxarea .content-area:hover h4 {
    color: #fff;
    transition: all 0.4s;
}

.work4-section-area .others-widget-area .card-boxarea .content-area:hover p {
    color: #fff;
    transition: all 0.4s;
    opacity: 80%;
}

.work4-section-area .others-widget-area .card-boxarea:hover img {
    transform: rotateY(360deg);
    transition: all 0.4s;
}

.work4-section-area .others-widget-area .card-boxarea.box1 img {
    position: relative;
    left: -75px;
    margin-bottom: 20px;
}
.work4-section-area .others-widget-area .card-boxarea.box3 img {
    position: relative;
    margin-bottom: 20px;
    left: 74px;
}
.work4-section-area .others-widget-area .card-boxarea.box2 img {
    position: relative;
    margin-bottom: 20px;
    left: -74px;
}
.work4-section-area .others-widget-area .card-boxarea .content-area2:hover::after {
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.4s;
    visibility: visible;
    opacity: 1;
}

.work4-section-area .others-widget-area .card-boxarea .content-area2:hover h4 {
    color: #fff;
    transition: all 0.4s;
}

.work4-section-area .others-widget-area .card-boxarea .content-area2:hover p {
    color: #fff;
    transition: all 0.4s;
    opacity: 80%;
}

.work4-section-area .others-widget-area .card-boxarea.box2 h3 {
    position: relative;
    left: -73px;
    margin-top: 13px;
}

.work4-section-area .others-widget-area .card-boxarea img {
}

.work4-section-area .others-widget-area .card-boxarea.box4 img {
    position: relative;
    left: 74px;
    margin-bottom: -16px;
}

.work4-section-area .others-widget-area .card-boxarea img {
    line-height: 50px;
    letter-spacing: -0.24px;
    display: inline-block;
    transition: all 0.4s;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    text-align: center;
    background: #F2F4FF;
}

/* funfact start */
.funfact {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-image: url(assets/images/homepage/fun-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
}

.funfact--home-2 .funfact__shape-one {
    position: absolute;
    top: 60px;
    left: -45px;
}

.funfact--home-2 .funfact__shape-two {
    position: absolute;
    top: 0px;
    left: 150px;
    z-index: 1;
}

.funfact--home-2 .funfact__shape-three {
    position: absolute;
    right: -171px;
    bottom: -35px;
}

.funfact--home-2 .funfact__shape-four {
    position: absolute;
    right: 71px;
    bottom: -19px;
    z-index: 1;
}

.funfact--home-2 .funfact__shape-five {
    position: absolute;
    top: -330px;
    right: -190px;
    z-index: 1;
}

.funfact--home-2 .funfact__shape-six {
    position: absolute;
    left: -61px;
    bottom: -93px;
    animation: zumpBottom 2s linear infinite;
}

.funfact--home-2::after {
    content: "";
    width: 100%;
    height: 250px;
    position: absolute;
    left: 0;
    bottom: 0;
}

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

.vl-blog-4-area .vl-blog-1-item:hover .vl-blog-1-thumb img {
    transform: scale(1.1) rotate(-4deg);
    transition: all 0.4s;
    filter: grayscale(1);
}

.funfact--home-2 .funfact__top {
    text-align: center;
    margin: 0 auto 49px;
    padding-bottom: 18px;
    display: table;
    border-bottom: 1px solid RGBA(var(--insuba-white-rgb, 255, 255, 255), 0.25);
}

.funfact--home-2 .funfact__top__title {
    margin: 0;
    font-size: 23px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.521;
}

.funfact__item {
    position: relative;
    display: flex;
    gap: 19px;
}

.funfact--home-2 .funfact__icon-box {
    background-color: #ffffff;
}

.funfact__icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--primary);
    transition: all 500ms ease;
}

.funfact--home-2 .funfact__icon {
    color: var(--primary);
}

.funfact__icon {
    display: inline-flex;
    font-size: 35px;
    color: #ffffff;
    transition: all 500ms ease;
}

.funfact__content {
    margin-top: 6px;
}

.funfact--home-2 .funfact__count,
.funfact--home-2 .funfact__text {
    color: #ffffff;
}

.funfact__count {
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.funfact--home-2 .funfact__count,
.funfact--home-2 .funfact__text {
    color: #ffffff;
}

.funfact__item__shape {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}

/* blog start */
.vl-blog-4-area .vl-blog-1-item {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    margin-bottom: 30px;
}

.vl-blog-4-area .vl-blog-1-item .vl-blog-1-thumb {
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.4s;
    position: relative;
}

.vl-blog-4-area .vl-blog-1-item .vl-blog-1-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.4s;
}

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

.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    border-radius: 8px;
    background: #FFF;
    border: 1px solid rgba(170, 170, 170, 0.09);
    margin: -30px 16px 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content ul li {
    display: inline-block;
}

.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content ul li {
    color: var(--primary);
    font-style: normal;
    line-height: 16px;
    display: inline-block;
    transition: all 0.4s;
    border-radius: 4px;
    background: linear-gradient(0deg, rgba(32, 44, 211, 0.1) 0%, rgba(32, 44, 211, 0.1) 100%);
    padding: 6px 10px;
}

.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .readmore {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    display: inline-block;
    transition: all 0.4s;
}

.vl-blog-4-area {
    position: relative;
    z-index: 1;
}

.vl-blog-4-area .elements39 {
    position: absolute;
    right: 0;
    top: 0;
}

.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content h4 a {
    color: var(--secondary);
    font-size: 18px;
    font-style: normal;
    line-height: 26px;
    display: inline-block;
    transition: all 0.4s;
    margin-top: 15px;
}

.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .readmore:hover {
    color: var(--primary);
    transition: all 0.4s;
}

/* get in touch start */
.contact-one {
    position: relative;
    z-index: 1;
    background-image: url(assets/images/homepage/sareecta.webp);
    background-position: center;
    background-size: cover;
}

.chy-heading-2 {
    color: var(--primary);
}

.contact-one__inner {
    position: relative;
    background-color: #6903189c;
    border-radius: 50px;
    padding: 50px;
}

.contact-one__wrapper {
    position: relative;
    z-index: 1;
}

.contact-one__wrapper__shape {
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: inherit;
    z-index: 1;
}

.contact-one__shape-one {
    position: absolute;
    top: -80px;
    left: -88px;
    z-index: 1;
}

.contact-one__shape-two {
    position: absolute;
    right: -366px;
    bottom: -390px;
}

.contact-one .row {
    position: relative;
    z-index: 2;
}

.contact-one__col-image {
    position: relative;
    flex: 0 0 auto;
    width: 50%;
}

.contact-one__video {
    padding: 37px 30px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    position: absolute;
    top: -76px;
    right: 41px;
    background-color: var(--secondary);
    text-align: center;
    z-index: 1;
}

.contact-one__video__title {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    text-transform: capitalize;
    line-height: 1.47;
}

.contact-one__video::after {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ffffff;
}

.contact-one__image {
    width: 100%;
    position: relative;
    position: absolute;
    left: 26px;
    bottom: -80px;
    overflow: hidden;
}

.contact-one__image::before {
    content: "";
    width: 409px;
    height: 409px;
    position: absolute;
    left: 0;
    bottom: -164px;
    background-color: #ffffff;
    border-radius: 50%;
}

.contact-one__image__one {
    position: relative;
    max-width: 100%;
    height: auto;
    z-index: 2;
}

.contact-one__image::after {
    content: "";
    width: 383px;
    height: 383px;
    position: absolute;
    left: 14px;
    bottom: -153px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.contact-one__image__two {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 40%;
    right: 18px;
    animation: zumpBottom 2s linear infinite;
}

.contact-one__col-form {
    flex: 0 0 auto;
    width: 50%;
}

.contact__form__group {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 28px;
    margin: 0;
}

@media (min-width: 768px) {
    .contact__form__group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact__form__control--full {
    grid-column-start: 1;
    grid-column-end: -1;
}

.contact__form__control {
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    position: relative;
}

.contact__form input[type=text],
.contact__form input[type=email],
.contact__form input[type=password],
.contact__form input[type=tel],
.contact__form textarea {
    border: none;
    outline: none;
    padding: 0 26px;
    display: block;
    width: 100%;
    height: 50px;
    color: #636363;
    font-size: 16px;
    font-weight: 400;
    background-color: #ffffff;
    border: 1px solid #e8e7e7;
    border-radius: 30px;
    transition: all 400ms ease;
}

/* get in touch end */

/* cta start */
.cta4-section-area {
    position: relative;
    z-index: 1;
    background: var(--primary);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 35px;
    border-radius: 50px;
    margin-bottom: -90px;
    border-bottom: 5px solid #fff;
}

.cta4-section-area .cta-header {
    position: relative;
    z-index: 1;
    padding-left: 7%;
    margin-top: 8px;
}

.heading1 h2 {
    color: #fff;
    font-size: 27px;
    font-style: normal;
    line-height: 38px;
}

.cta4-section-area .cta-images .elements36 {
    position: absolute !important;
    z-index: -1;
    top: -164px;
    right: -45px;
}

.keyframe5 {
    position: relative;
    animation-name: animation-7;
    animation-duration: 90s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

.cta4-section-area .cta-images .img2 {
    position: absolute;
    top: -1px;
}

.img2 img {}

@keyframes animation-7 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-1000deg);
    }
}

.animated-element {
    animation: animation-7 3s linear infinite;
}

/* btn 2 */
.vl-btn2 span.demo {
    display: inline-block;
    background: linear-gradient(90deg, #999999 1.1%, #000000 100%);
    transition: all 0.4s;
    border-radius: 70px;
    padding: 18px 24px;
}

.vl-btn2 span.arrow {
    display: inline-block;
    background: linear-gradient(90deg, #999999 1.1%, #000000 100%);
    transition: all 0.4s;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    line-height: 50px;
    font-size: 20px;
    transform: rotate(-45deg);
}

.vl-btn2 {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    display: inline-block;
    border-radius: 8px;
}

.vl-btn2:hover {
    transition: all 0.4s;
    color: #fff;
}

.vl-btn2:hover span.arrow {
    margin-left: 6px;
    transition: all 0.4s;
    transform: rotate(0deg);
}

.vl-btn2:hover span.demo {
    background: #d37f20;
    color: #fff;
}

/* btn 3 */
.vl-btn3 span.demo {
    display: inline-block;
    background: linear-gradient(90deg, #e9e9e9 1.1%, #ffffff 100%);
    transition: all 0.4s;
    border-radius: 70px;
    padding: 15px 20px;
    border: 1px solid #fff;
}

.vl-btn3 span.arrow {
    display: inline-block;
    background: #fff;
    transition: all 0.4s;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    text-align: center;
    color: #000;
    line-height: 48px;
    font-size: 17px;
    transform: rotate(-45deg);
    border: 1px solid #fff;
}

.vl-btn3 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    display: inline-block;
    border-radius: 8px;
}

.vl-btn3:hover {
    transition: all 0.4s;
    color: #000;
}

.vl-btn3:hover span.demo {
    background: #000;
    color: #fff;
}

.vl-btn3:hover span.arrow {
    margin-left: 6px;
    transition: all 0.4s;
    transform: rotate(0deg);
    background: #000;
    color: #fff;
}


/* Service 2 */
.s-1icon {
    color: var(--secondary);
}

.servicebgs {
    position: absolute;
    top: 86px;
    left: -9px;
}

.features-two__card {
    position: relative;
    padding: 27px 25px 46px;
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.features-two__card__bg {
    width: 100%;
    height: 100%;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
    overflow: hidden;
}

.features-two__card__bg::before {
    content: "";
    width: 200px;
    height: 100px;
    position: absolute;
    top: -58px;
    left: -113px;
    transform: rotate(-45deg);
    background-color: var(--primary);
}

.features-two__card__bg__inner {
    width: 100%;
    height: 100%;
    position: relative;
    position: absolute;
    right: -100%;
    bottom: -100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: inherit;
    z-index: 1;
    transition: all 500ms ease;
}

.features-two__card__bg__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: RGBA(var(--insuba-base-rgb, 56, 27, 167), 0.89);
    border-radius: inherit;
}

.features-two__card__content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.features-two__card__icon-box {
    margin: 0 auto 15px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #f0f5f5;
    background: linear-gradient(192deg, transparent 39%, RGBA(var(--insuba-base-rgb, 63, -78, 324), 0.09)) 50%;
    border-radius: 50%;
    transition: all 500ms ease;
}

.features-two__card__icon {
    display: inline-flex;
    font-size: 50px;
    color: var(--primary);
    transition: all 500ms ease;
}

.features-two__card__title {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.318;
    text-transform: capitalize;
}

.features-two__card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
}

.features-two__card__text {
    margin: 0;
    transition: all 500ms ease;
}

.features-two__card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    position: absolute;
    left: 50%;
    bottom: -23px;
    transform: translateX(-50%);
    background-color: var(--primary);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    transition: all 500ms ease;
}

.features-two__card__btn__icon {
    display: inline-flex;
    font-size: 20px;
    color: #ffffff;
    transition: all 500ms ease;
}

.features-two__card:hover .features-two__card__bg__inner {
    right: 0px;
    bottom: 0px;
}

.features-two__card:hover .features-two__card__btn {
    background-color: var(--secondary);
}

section.service2-section-area.sp3 {
    background-image: url(assets/images/services/testimonial-bg.webp);
    background-position: left;
    background-repeat: no-repeat;
    background-color: #381ba708;
    position: relative;
}

.features-two__card:hover .features-two__card__icon-box {
    background: linear-gradient(180deg, transparent 50%, RGBA(var(--insuba-white-rgb, 255, 255, 255), 0.09)) 50%;
}

.features-two__card__title a:hover {
    background-size: 100% 1px;
}

.features-two__card:hover .features-two__card__title,
.features-two__card:hover .features-two__card__text {
    color: #ffffff;
}

/* slider 1 start */
.her4-images-area {
    position: relative;
    z-index: 1;
}

.her4-images-area .img1 img {
    height: 450px;
    width: 600px;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 4px;
}

.her4-images-area .bg {
    position: absolute;
    top: -90px;
    z-index: -1;
    width: 1500px;
    height: 1500px;
    left: -118px;
}

.keyframe5 {
    position: relative;
    animation-name: animation-7;
    animation-duration: 90s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

.her4-images-area .elements37 {
    position: absolute;
    top: 0;
    left: -100px;
}

.aniamtion-key-1 {
    position: relative;
    animation-name: animation-1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.her4-images-area .elements38 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.aniamtion-key-2 {
    position: relative;
    animation-name: animation-2;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.elements34 {
    position: absolute;
    top: -198px;
    right: 0;
}

/* slider 2 */
.hero-images-area .img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-images-area .image-bg1 {
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: 0;
    width: 600px;
}

.her4-images-area .bg1 {
    position: absolute;
    top: 58px;
    z-index: -1;
    width: 1500px;
    height: 1607px;
    left: 72px;
}

.her4-images-area .img11 img {
    height: 446px;
    width: 588px;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 4px;
    bottom: -49px;
    position: relative;
}

.client-sec1 {
    padding-bottom: 50px;
}

.contact-widget .social-links li .face {
    background-color: #4267b2;
    transition: none;
    transform: none;
}

.contact-widget .social-links li .twitt {
    background-color: #4ba1f2;
    transition: none;
    transform: none;
}

.contact-widget .social-links li .insta {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    background-size: 300% 300%;
    animation: gradient 5s ease infinite;
    transition: none;
    transform: none;
}

.contact-widget .social-links li .link {
    background-color: #3266c2;
    transition: none;
    transform: none;
}

.ftlink01 ul li:before,
.menu-case-studies-container ul li::before,
.menu-footer1-container ul li::before,
.menu-our-resources-container ul li::before {
    content: "\f101";
    font-family: fontello;
    position: absolute;
    left: -18px;
    color: #fff;
}

.ftlink01 ul li,
.menu-case-studies-container ul li,
.menu-footer1-container ul li,
.menu-our-resources-container ul li {
    position: relative;
    margin-left: 20px;
}

.widgets-section .ftlink01 ul li a:hover {
    transform: translateX(7px);
}

.widgets-section .ftlink01 ul li a {
    display: inline-block;
    transition: transform .3s ease, color .3s ease;
    text-decoration: none;
}

/* Add this CSS to your stylesheet */
.features-two__card:hover .features-two__card__icon-box img {
    filter: brightness(0) invert(1);
    /* Turns image white */
    transition: all 0.3s ease;
    /* Smooth transition */
}

/* Optional: Add hover effect to the entire card for better UX */
.features-two__card {
    transition: all 0.3s ease;
}

.features-two__card:hover {
    transform: translateY(-5px);
    /* Slight lift effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Add shadow */
}

.features-two__card__icon-box:hover img {
    filter: brightness(0) invert(1);
}

/* breadcrumb start */
.bg-cover2 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: -87px;
    width: 84%;
}

.breadcrumb-wrapper {
    position: relative;
    z-index: 9;
    /* margin: 0 60px; */
    border-radius: 0 0 30px 30px;
    background-size: cover;
    background-position: center 0px;
}

.breadcrumb-wrapper .left-shape {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.breadcrumb-wrapper .right-shape {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 120px 0 60px;
    z-index: 9;
    text-align: center;
}

.breadcrumb-wrapper .page-heading h1 {
    color: var(--secondary);
    font-size: 50px;
    position: relative;
    z-index: 9;
    font-weight: 800;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
    justify-content: center;
    border: 2px solid #fff;
    padding: 14px 22px;
    border-radius: 100px;
    line-height: 1;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--secondary);
    text-transform: capitalize;
    font-weight: bold;
    font-size: 16px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: #fff;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 16px;
}

.breadcrumb-wrapper .left-shape {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.bounce {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.breadcrumb-wrapper .right-shape {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.bounce {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

/* Bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bounce {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

img {
    max-width: 100%;
    height: auto;
}


.rr-service-details-info {
    border-radius: 50px;
    border-bottom: 5px solid var(--primary);
    border-top: 5px solid var(--primary);
    border-left: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    padding: 30px;
    box-shadow: rgb(178 166 221 / 46%) 0px 5px 15px;
}

.rr-services-details-list {
    padding: 35px 30px;
    background: #f2f4f9;
    padding-bottom: 25px;
}

.rr-services-details-list span {
    font-size: 22px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.rr-services-details-list ul li {
    list-style: none;
    text-decoration: none;
}

.rr-services-details-list ul li a {
    margin-bottom: 15px;
    display: block;
    font-size: 16px;
    color: var(--secondary);
    background-color: #fff;
    padding: 10px;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s;
}

.rr-services-details-list ul li a i {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background-color: var(--secondary);
    color: #fff;
    border-radius: 50px;
    margin-right: 15px;
    transition: 0.3s;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.rr-services-details-check ul li {
    list-style: none;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    margin-bottom: 9px;
}

.rr-services-details-check ul li i {
    color: var(--primary);
    /* margin-right: -13px; */
    margin-bottom: 5px;
    float: inline-start;
    font-size: 20px;
    margin-left: -23px;
}

.rr-services-details-thumb img {
    width: 100%;
    border-radius: 50px 0 50px 0;
}

.rr-service-3-item {
    border: 2px solid #ecebeb;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

h3 {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 22px;
    color: var(--primary)
}

.rr-services-details-list ul li a:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.rr-service-3-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
}

.rr-service-3-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all 0.3s ease-out 0s;
}

.rr-service-3-img-main img {
    width: 1000px;
    height: 100%;
}

.rr-service-3-content {
    padding: 30px;
}

.rr-service-3-icon {
    height: 120px;
    width: 120px;
    background: #fff;
    text-align: center;
    line-height: 120px;
    display: inline-block;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.3s ease-out 0s;
}

.rr-service-3-icon::before {
    background: #0b363466;
    content: "";
    position: absolute;
    bottom: 0;
    left: 64px;
    width: 55px;
    height: 60px;
    z-index: -1;
    transition: all 0.3s ease-out 0s;

}

.rr-service-3-icon img {
    width: 53px;
    height: auto;
}

.rr-service-3-icon img {
    transition: all 0.3s ease-out 0s;
}

.ml-40 {
    margin-left: 40px;
}

.rr-service-3-title {
    font-size: 22px;
    color: #000;
}

.rr-service-3-item:hover .rr-service-3-bg::before {
    opacity: 0.8;
    visibility: visible;
    background-color: #203240;
}

.rr-service-3-item:hover .rr-service-3-title {
    color: #fff;
}

.rr-service-3-item:hover .rr-service-3-text p {
    color: #fff;
}

.rr-service-3-item:hover .rr-service-3-icon::before {
    background-color: var(--primary);
}

.rr-service-3-item:hover .rr-service-3-icon {
    background-color: var(--primary);
}

.rr-service-3-item:hover .rr-service-3-icon img {
    filter: brightness(0) invert(1);
}




.category-list-area {
    border-radius: 8px;
    background: #EFF1FF;
    padding: 24px 28px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.service-sidebar-area .service-widget-sidebar h3 {
    color: var(--primary);
    font-size: 24px;
    font-style: normal;
    line-height: 24px;
}

.category-list-area ul li {
    margin-top: 18px;
}

.category-list-area ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--secondary);
    font-size: 18px;
    font-style: normal;
    line-height: 18px;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.category-list-area ul li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--Main-Color, linear-gradient(90deg, #2E0797 0%, #726EFC 100%));
    transition: all 0.4s;
    border-radius: 8px;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}

.category-list-area ul li a:hover {
    transition: all 0.4s;
    color: #fff;
}

.category-list-area ul li a:hover::after {
    visibility: visible;
    opacity: 1;
    transition: all 0.4s;
}

.contact-boxarea {
    border-radius: 8px;
    background: #EFF1FF;
    padding: 24px 28px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.contact-boxarea .input-area {
    margin-top: 16px;
}

.contact-boxarea .input-area input {
    width: 100%;
    color: var(--secondary);
    font-style: normal;
    line-height: 16px;
    padding: 20px;
    border-radius: 4px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.contact-boxarea .input-area textarea {
    width: 100%;
    color: var(--secondary);
    font-style: normal;
    line-height: 16px;
    padding: 20px;
    border-radius: 4px;
    background: #fff;
    height: 120px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/* faqs */
.faq-widget-area .accordion .accordion-item {
    border-radius: 8px;
    background: var(--Main-Color, linear-gradient(90deg, #2E0797 0%, #726EFC 100%));
    border: none;
    border-radius: 8px;
}

.faq-widget-area .accordion .accordion-item button {
    box-shadow: none;
    outline: none;
    border: none;
    padding: 26px 24px;
    color: var(--secondary);
    font-style: normal;
    line-height: 24px;
    text-transform: capitalize;
    border-radius: 6px;
    background: #EFF1FF;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.accordion-collapse {
    margin-bottom: 20px;
}

.faq-widget-area .accordion .accordion-item button::before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: #6D4BFB;
    right: 20px;
    top: 23px;
}

.faq-widget-area .accordion .accordion-item button::after {
    z-index: 1;
    filter: brightness(0) invert(1);
}

.service-sidebar-area .service2-widget-sidebar .faq-widget-area .accordion .accordion-item .accordion-body {
    padding: 0;
}

.faq-widget-area .accordion .accordion-item .accordion-body p {
    color: #fff;
    opacity: 90%;
}

.faq-widget-area .accordion .accordion-item button.accordion-button:not(.collapsed) {
    background: none;
    color: #fff;
    padding: 26px 24px 22px;
    font-size: 25px;
    font-weight: 600;
}

.faq-widget-area .accordion .accordion-item button.accordion-button:not(.collapsed)::before {
    background: #fff;
}

.faq-widget-area .accordion .accordion-item button.accordion-button:not(.collapsed)::after {
    z-index: 1;
    filter: brightness(0);
}

.reveal img {
    height: 100%;
    width: 100%;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: left;
    border-radius: 20px 20px 50px 50px;
}

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

/* about us page */
.consultations-one {
    background-color: #ffffff;
    counter-reset: consultationsOneNumber;
}

.consultations-one__text-box {
    margin-bottom: 24px;
}

@media (max-width: 1399px) {
    .consultations-one__image {
        left: 0px;
    }
}

.consultations-one__image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    display: table;
    position: relative;
}

.consultations-one__image__inner {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.consultations-one__image__one {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.consultations-one__image__shape-one {
    max-width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: -15px;
    z-index: 1;
    animation: moveHorizontal 2s linear infinite;
}

.consultations-one__image__shape-two {
    position: absolute;
    top: 22px;
    right: -28px;
    z-index: 2;
}

.consultations-one__image__two {
    width: 225px;
    height: 225px;
    position: absolute;
    top: 32px;
    left: -11px;
    border-radius: 50%;
    border: 12px solid #ffffff;
    z-index: 3;
    animation: zump 2s linear infinite;
}

.consultations-one__image__shape-three {
    position: absolute;
    right: 1px;
    bottom: -47px;
    z-index: 2;
}

.about-list.active,
.about-style1 .about-list:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #FFFFFF;
}

.about-list {
    padding: 15px;
    border-radius: 5px;
    transition: 0.4s;
}

.about-list:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #FFFFFF;
}


/* team start */
.team-card-three {
    position: relative;
    overflow: hidden;
}

.team-card-three__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 41px 137px;
    border: 1px solid #dddddd;
    border-radius: 25px 25px 101px 25px;
    background-color: #ffffff;
    transition: all 500ms ease;
}

.team-card-three__identity {
    position: relative;
    z-index: 2;
}

.team-card-three__name {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.318;
}

.team-card-three__name a {
    color: var(--secondary);
}

.team-card-three__designation {
    margin: 0;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.625;
    transition: all 500ms ease;
}

.team-card-three__btn {
    position: relative;
    top: -6px;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--primary);
    transition: all 500ms ease;
}

.team-card-three__btn::before {
    content: "";
    width: 2px;
    height: 17px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.team-card-three__btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.team-card-three__btn::after,
.team-card-three__btn::before {
    content: "";
    width: 2px;
    height: 17px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.team-card-three__content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0.85);
    opacity: 0;
    background-color: var(--primary);
    border-radius: inherit;
    transition: all 500ms ease;
}

.team-card-three__image {
    position: relative;
    margin-top: -122px;
    text-align: center;
    z-index: 2;
}

.team-card-three__image img {
    margin: 0 auto;
    width: auto !important;
    max-width: 100%;
    height: auto;
    border-radius: 101px 0 25px 25px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.team-card-three:hover .team-card-three__content::after {
    transform: scale(1);
    opacity: 1;
}

.team-card-three:hover .team-card-three__designation {
    color: #ffffff;
}

.team-card-three:hover .team-card-three__name a {
    color: #fff;
}

.team-card-three:hover .team-card-three__image img {
    -webkit-animation-name: wobble-horizontal;
    animation-name: wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@keyframes wobble-horizontal {
    0% {
        transform: translateX(0);
    }

    16.65% {
        transform: translateX(5px);
    }

    33.3% {
        transform: translateX(-3px);
    }

    49.95% {
        transform: translateX(4px);
    }

    66.6% {
        transform: translateX(-2px);
    }

    83.25% {
        transform: translateX(1px);
    }

    100% {
        transform: translateX(0);
    }
}

.team-card-three__name {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.318;
}

.team-three {
    position: relative;
    overflow: hidden;
}

.team-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3c20a9b8;

    /* Use image mask instead of SVG path */
    -webkit-mask-image: url('assets/images/about/download.svg');
    /* or .webp */
    mask-image: url('assets/images/about/download.svg');

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-position: center center;
    mask-position: center center;

    -webkit-mask-size: cover;
    mask-size: cover;
}

.team-three__image-left {
    max-width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.05;
    z-index: 1;
}

.team-three__shape {
    max-width: 100%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: -185px;
    opacity: 0.06;
    z-index: 1;
    animation: zump 2s linear infinite;
}

.heading1 h5 {
    /* background: linear-gradient(90deg, #202CD3 1.1%, #0778F9 100%);
        background-clip: text; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.18px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 6px 0px;
}

.team-card-three__btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.team-card-three__btn::after,
.team-card-three__btn::before {
    content: "";
    width: 2px;
    height: 17px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.team-card-three:hover .team-card-three__btn {
    background-color: #ffffff;
}

.team-card-three:hover .team-card-three__btn::before,
.team-card-three:hover .team-card-three__btn::after {
    background-color: var(--primary);
}

.team-card-three__btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* vision mission */
.ft1-service-block {
    position: relative;
    margin-bottom: 30px;
}

.ft1-service-block .inner-box {
    position: relative;
    padding: 40px 25px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.ft1-service-block .inner-box .content {
    position: relative;
    max-width: 320px;
    z-index: 1;
}

.ft1-service-block .inner-box h4 {
    text-transform: uppercase;
}

.ft1-service-block .inner-box h4 {
    position: relative;
    font-size: 25px;
    font-weight: 600;
    color: var(--primary);
}

.ft1-service-block .inner-box .text {
    position: relative;
    color: #000;
    font-size: 16px;
    margin-top: 22px;

}

.ft1-service-block .inner-box .side-icon {
    position: absolute;
    right: 0px;
    top: 61px;
    z-index: 1;
}

.owl-item img {
    display: block;
    width: 100%;
}

.ft1-service-block .inner-box .color-layer {
    position: absolute;
    right: -154px;
    top: -100px;
    width: 401px;
    height: 497px;
    border-radius: 50%;
    background-color: #d6d0ec;
}

.ft1-service-block .inner-box .color-layer:before {
    position: absolute;
    content: "";
    left: -5px;
    top: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 2px dashed #d5862c;
}

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

/* contact us start */
.chy-blog-4-item {
    position: relative;
    margin-bottom: 30px;
}

.chy-blog-4-item .main-img {
    width: 100%;
    height: 425px;
    overflow: hidden;
    border-radius: 227px;
    perspective: 70px;
    perspective-origin: 50% 50%;
}

.chy-blog-4-item .main-img img {
    transition: .5s;
}

.img-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .chy-blog-4-item .content-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.chy-blog-4-item .content-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
}

.chy-blog-4-item .subtitle {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 13px 20px;
    border-radius: 10px 10px 0 0;
    transition: .4s;
}

.chy-heading-2 {
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 0;
}

.chy-blog-4-item .content-wrap .inner-div {
    background: #fff;
    border-radius: 0 10px 0 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 50px;
}

.chy-blog-4-item .title {
    font-size: 24px;
    line-height: 1.41;
    margin-bottom: 6px;
    transition: .3s;
    margin-top: 0;
    color: var(--primary);
}

.chy-heading-2 {
    color: var(--secondary);
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 0;
}

.chy-blog-4-item .content-wrap .inner-div:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #9255ce -2.17%, #be60ff);
    z-index: -1;
    transition: .4s;
    opacity: 0;
}

.chy-blog-4-item:hover .main-img img {
    transform: scaleX(1) scaleY(1) scaleZ(.1) rotateX(8deg) rotateY(0) rotate(0) translate(0) translateY(0) translateZ(0) skew(0) skewY(0);
}

/* contact form */
.cta-box {
    background: url(assets/images/contact/contact-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.contact-form .form-control {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    /* background: #eff4fabd; */
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 16px 20px;
    box-shadow: none;
}

.form-group {
    margin-bottom: 10px;
}

.form-group textarea,
.form-group input[type="email"],
.form-group input[type="text"] {
    background: #fff;
    border: 1px solid var(--primary);
    outline: 0;
    width: 100%;
    height: 55px;
    color: #000;
    margin-bottom: 10px;
    padding: 0 19px;
    border-radius: 5px;
}
.form-group textarea
{
     height: 100px;
     margin-bottom: 0;
}
.cta-box2 {
    background: linear-gradient(rgb(0 0 0 / 71%), rgb(255 255 255)), url(assets/images/homepage/getinbg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-box .container {
    position: relative;
    z-index: 1;
}

.cta-box-content {
    position: sticky;
    top: 20px;
}

.cta-box-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.cta-box-btn .btn-default {
    border-color: #fff;
    color: #fff;
}

.cta-box-btn .btn-default:hover {
    border-color: #fff;
}

.cta-box-btn span {
    font-weight: 600;
    color: var(--secondary);
}

.cta-box-btn .cta-btn {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 25%;
    transition: all 0.3s ease-in-out;
}

.cta-form {
    background: #fff;
    border-top: 10px solid var(--secondary);
    padding: 50px;
    margin-left: 30px;
    border-radius: 30px;
}

.cta-mar {
    background: #fff;
    border-top: 10px solid var(--secondary);
    padding: 60px;
    /* margin-left: 30px; */
    border-radius: 30px;
    margin: 0px 100px;
}

.img-radius {
    border-radius: 10px 50px;
}

.cta-box-title {
    margin-bottom: 30px;
}

.cta-box-title h2 {
    font-weight: 700;
}

.contact-form .form-control {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    /* background: #eff4fabd; */
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 16px 20px;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: #000;
}

.video-two__overlay {
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.video-two__overlay::before {
    content: "";
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(56, 27, 167, 0.9), transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.video-two__overlay::after {
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 27, 167, 0.5));
    position: absolute;
    top: 0;
    right: 0;
}


/* new 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%;
    height: auto;
}

.services-details .content-side .image-slide .content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 140px;
    background-color: var(--primary);
    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 .text {
    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;
}

.services-details .content-side .list li i {
    margin-right: 8px;
    font-size: 15px;
}

.text-white {}

.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: "\f063";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    font-size: 12px;
    color: #838d9e;
    left: 20px;
    top: 16px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    content: "\e809";
    font-family: "fontello";
    font-style: normal;
    color: var(--primary);
    margin-right: 10px;
}

.widget+.widget {
    margin-top: 50px;
}

.widget_contact {
    position: relative;
    padding: 50px 30px;
    border-radius: 6px;
    background-size: cover;
    text-align: center;
}

.text-left {
}

.widget_contact img {
    margin-bottom: 20px;
}

.widget_contact .phone-number {
    position: relative;
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 11px;
}

.widget_contact .phone-number a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.widget_contact .email {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
}

.widget_contact .email a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.widget_categories_two .categories-list li a:hover {
    padding-left: 20px;
    color: #fff;
    background: var(--primary);
}

.widget_categories_two .categories-list li a:hover:before {
    opacity: 0;
}

.block-wrap {
    padding: 15px;
    background-color: #ffffff;
    box-shadow: rgb(219 2 2 / 12%) 0px 5px 15px;
    border-radius: 15px;
}

.block-title-wrap {
    border-bottom: 1px solid var(--primary);
    margin-bottom: 10px;
    padding-bottom: 0px;
}

.text-h3 {
    color: var(--primary);
}

.list-3-cols {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 2;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.property-features-wrap .block-content-wrap .list-3-cols li {
    border: none;
    display: block;
}

.block-content-wrap.feature01 ul li {
    width: 50%;
    float: left;
}

.block-content-wrap .list-3-cols li,
.block-content-wrap .list-2-cols li,
.block-content-wrap .list-1-cols li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid;
    border-color: #dce0e0;
    padding: 3px 0;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

.feature01 ul li::before {
    content: "\e809";
    font-family: "fontello";
    font-style: normal;
    color: var(--primary);
    margin-right: 10px;
}

.data-sec {
    background-image: url(assets/images/service/vision-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-info-box {
    background: #fff;
    padding: 10px 15px 10px;
    border-radius: 85px;
    display: flex;
    align-items: center;
    border: 1px solid var(--primary);
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    gap: 29px;
}

.contact-info-box:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary);
    border-radius: 5px;
    transition: 0.5s;
    z-index: -1;
}

.contact-info-box:hover:before {
    width: 100%;
}

.contact-info-box:hover .contact-info-content p {
    color: #fff;
}

.contact-info-content p:before {
    position: absolute;
    content: "\f063";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    font-size: 12px;
    color: #838d9e;
    left: 20px;
    top: 10px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    content: "\e809";
    font-family: "fontello";
    font-style: normal;
    color: var(--primary);
    margin-right: 10px;
}

.contact-info-box:hover p:before {

    color: #fff;

}

.contact-info-box {
    margin-bottom: 25px;
}

.contact-info-content {
    padding-left: 20px;
}

.career-section {
    background-image: url(assets/images/about/about-ind-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.comment-respond {
    background-image: url(assets/images/blog/about-bg-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 30px;
    padding: 32px 40px 50px;
    margin-top: 20px;
    border-bottom: 5px solid var(--primary);
    border-top: 5px solid var(--primary);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.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);
    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);
    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 {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    width: 100%;
    height: auto;
}

.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: 5px;
    font-size: 16px;
    font-weight: 500;
}

.rc-post-content .date i {
    color: var(--primary);
    font-size: 16px;
}

.blog_details h3 {
    color: var(--primary);
    font-weight: 600;
    font-size: 22px;
    margin-top: 23px;
}

button.btn.btn-custom.with-25 {
    width: 200px;
    text-transform: uppercase;
    margin: auto;
}

@media (max-width: 1057px) {
    .menu-icons {
        position: absolute;
        right: 85px;
        top: 17px;
    }

    .fl_right {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
    }

    .header-top {
        display: none;
    }

    .navbar-collapse {
        position: absolute;
        z-index: 9999999;
        background-color: #fff;
        left: 0;
        right: 0;
        border-radius: 10px;
        top: 66px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .btn-9 {
        margin-left: 27px;
    }

    .menutop ul li a {
        line-height: 27px;
        border-bottom: 2px solid;
    }
}

.rc-post-content .title {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 0;
    font-weight: 400;
}

h2.sub-h2 {
    font-size: 25px;
    color: var(--primary);
}

.post-title a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.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;
}

.card-style5 .card-body {
    position: relative;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    padding: 30px 25px;
    z-index: 1;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px dotted var(--primary);
    border-radius: .25rem;
}

.card p {
    margin: 0 0 20px;
}

.wp-block-list li a {
    color: #000;
    margin-bottom: 10px;
}

.wp-block-list {
    margin-bottom: 10px;
}

.blog-content {
    padding: 15px;
    border-top: 5px solid var(--primary);
    border-bottom: 5px solid var(--primary);
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/* job board detail */

.image-anime {
    overflow: hidden;
}

._relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-hidden {
    overflow: hidden !important;
}

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

.ml-80 {
    margin-left: 80px;
}

/* sec-2 */
.service3 .service3-box {
    margin-top: 30px;
    background-color: #fff;
    padding: 24px;
    border-radius: 7px;
    display: flex;
    align-items: start;
    transition: all 0.4s;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-top: 5px solid var(--primary);
}

.heading3 h4 a {
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #0D0E10;
    transition: all 0.4s;
}

.service3 .service3-box:hover {
    transform: translateY(-10px);
    transition: all 0.4s;
    background-color: var(--primary);
}

.service3 .service3-box:hover .heading3 h4 a {
    color: #fff;
    transition: all 0.4s;
}

.service3 .service3-box:hover .heading3 p {
    color: #fff;
}

.service3 .main-image {
    margin-top: 30px;
}

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

@media screen and (min-width: 768px) {
    .reveal {
        position: relative;
        display: inline-flex;
        visibility: hidden;
        overflow: hidden;
    }
}

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

.service3 {
    background-color: #EFF1FF;
}

/* sec-3 */
.service10-section-area {
    position: relative;
    background: #f5f5f5;
}

.service10-boxarea {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.service10-boxarea {
    background: #fff;
    padding: 32px 20px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px 40px;
}

img.elementors63 {
    position: absolute;
    bottom: 0;
    left: 0;
}

img.elementor61,
img.elementors62 {
    position: absolute;
    bottom: 0;
}

img.elementors62 {
    top: 0;
    right: 0;
}

/* sec-4 */
.faq-img img {
    width: 100%;
    height: auto;
}

/* breadcrump */
.bg-covercontact {
    background-image: url(assets/images/contact/contact-b.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-coverservice {
    background-image: url(assets/images/services/service-b.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-coverblog {
    background-image: url(assets/images/blog/blog-b.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-coverscrape {
    background-image: url(assets/images/services/scrape-b.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.team-thumb img {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/* scrape job detail start */
.about-section-two .bg {
    background-repeat: no-repeat;
    height: 687px;
    width: 843px;
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-section-two {
    position: relative;
}

/* .about-section-two:after {
    background: #5e3de3;
    content: "";
    -webkit-filter: blur(75px);
    filter: blur(75px);
    height: 530px;
    opacity: 0.1;
    position: absolute;
    right: -120px;
    top: 80px;
    width: 530px;
    z-index: -1;
} */
.about-section-two .content-column {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.about-section-two .content-column .inner-column {
    position: relative;
}

.about-section-two .content-column .btn-box {
    position: relative;
}

.about-section-two .image-column {
    margin-bottom: 50px;
    position: relative;
}

.about-section-two .image-column .inner-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
}

.about-section-two .image-column .inner-column:before {
    background-color: var(--primary);
    border-radius: 50%;
    content: "";
    height: 380px;
    left: 83px;
    position: absolute;
    top: 190px;
    width: 380px;
}

.about-section-two .image-column .image-1 {
    max-width: 460px;
    position: relative;
}

.about-section-two .image-column .image-1:before {
    -webkit-animation: zoom-one 3s infinite;
    animation: zoom-one 3s infinite;
    background-color: var(--primary);
    content: "";
    height: 110px;
    left: -50px;
    position: absolute;
    top: 0;
    width: 20px;
}

.overlay-anim:after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.about-section-two .image-column .image-2 {
    position: absolute;
    left: 20px;
    bottom: 0;
    border: 10px solid #fff;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.overlay-anim:after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.about-section-two .image-column .image-3 {
    bottom: 0;
    position: absolute;
    right: -58px;
    z-index: -1;
}

.bounce-y {
    -webkit-animation: bounce-y 10s infinite linear;
    animation: bounce-y 10s infinite linear;
}

/* scrapjob detail sec-2 */

.solution-block-one .inner-box {
    position: relative;
    display: block;
    background: #f5f5f6;
    padding: 21px 20px 23px 60px;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    /* min-height: 102px; */
}

.solution-block-one .inner-box h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 1px;
    transition: all 500ms ease;
}

.solution-block-one .inner-box p {
    position: relative;
    transition: all 500ms ease;
}

.solutions-section .inner-container .solution-block-one {
    position: relative;
    float: left;
    width: 49.333%;

}

.solution-block-one .inner-box:hover:before {
    width: 100%;
}

.solution-block-one .inner-box:before {
    background: var(--primary);
}

.solution-block-one .inner-box:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    transition: all 500ms ease;
}

.solution-block-one .inner-box:hover h4,
.solution-block-one .inner-box:hover p {
    color: #ffffff;
}

.solution-block-one .inner-box .icon-box {
    position: absolute;
    left: 30px;
    top: 34px;
    font-size: 20px;
    line-height: 8px;
    color: var(--primary);
    transition: all 500ms ease;
}

.solution-block-one .inner-box:hover .icon-box,
.solution-block-one .inner-box:hover h4,
.solution-block-one .inner-box:hover p {
    color: #ffffff;
}

.solutions-section .pattern-box .pattern-3 {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 212px;
    height: 181px;
    background-repeat: no-repeat;
}

.solutions-section {
    position: relative;
}

.solutions-section .pattern-box .pattern-2 {
    position: absolute;
    left: 10px;
    bottom: 150px;
    width: 212px;
    height: 181px;
    background-repeat: no-repeat;
}

.solutions-section .pattern-box .pattern-1 {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 157px;
    height: 323px;
    background-repeat: no-repeat;
}

.solutions-section .image-layer {
    position: absolute;
    left: 72px;
    top: 0px;
}

i.demo-icon.ok-i.icon-ok {
    font-size: 20px;
}

@media (max-width: 991px) {
    .border-radius-10.position-absolute.top-15.d-none.d-sm-block {
        max-width: 50% !important;
    }

    .about-style1 .about-list.active,
    .about-style1 .about-list:hover {
        margin-top: 20px;
    }

    .solutions-section .inner-container .solution-block-one {
        position: relative;
        float: left;
        width: 49.333%;
    }
    #slider button.carousel-control-next.carousel-control,
    #slider button.carousel-control-prev.carousel-control {
    /* display: none; */
    z-index: 99;
    }
    .mo-pt-10
    {
        padding-bottom: 10px !important;   
    }
    .pt-70
    {
        padding-top: 40px;
    }
    .pb-70{
        padding-bottom: 40px;
    }
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product
    {
        margin-bottom: 15px !important;
    }
    .none-991
    {
        display: none;
    }
    .block-991
    {
        display: block !important;
    }
    .about4-section-area .about-images-area
    {
        margin-bottom: 15px;
    }
    .cta-images,
    .cta4-section-area .cta-header {
    padding-left: 0;
    float: left !important;
    text-align: left !important;
    }
    a.cta_call {
    margin-left: 15px;
    margin-top: 12px;
    margin-bottom: 0;
    float: left !important;
    font-size: 19px !important;
    margin-left: 0;
    width: 100%;
    }
    .mo-mb-25
    {
        margin-bottom: 25px;
    }
    .filter_sidebar {
    margin-bottom: 15px;
    margin-top: 15px;
    }
    .woocommerce-page.columns-3 ul.products li.product, .woocommerce.columns-3 ul.products li.product {
        width: 31.3%;
    }
    .yith-wcan-filters.filters-modal h3, .yith-wcan-filters.filters-modal .filters-container
    {
        background-color: #fff !important;
    }
    .client_g1 {
    width: 97% !important;
    }
    .main-footer .widget-title {
    margin-bottom: 10px;
    margin-top: 19px;
    }

}

    
@media (max-width: 776px) {
    .slick-list.draggable {
    position: relative;
    z-index: -1;
    }
    div#testimonials {
    width: 86%;
    }
    #respond
    {
        margin-bottom: 30px;
    }
    .cta4-section-area {
    padding: 20px 20px;
    border-radius: 20px;
    padding-top: 10px;
    }
    #commentform {
    padding: 2px !important;
    margin-top: 0px !important;
    }
    p.comment-form-author,
    p.comment-form-email{
    width: 100% !important;
    margin-bottom: 0px !important;
    }
    .page-heading.bg-cover.bg_pro_01 ul {
    width: 100% !important;
    margin: 0 !important;
    }
    #respond
    {
        width: 100% !important;
    }
    .container.cont-9 {
        padding-top: 25px !important;
    }
    .woocommerce-page.columns-3 ul.products li.product, .woocommerce.columns-3 ul.products li.product
    {
        width: 48%;
    }
    .team-card-three {
        margin-bottom: 15px;
    }
    .solution-block-one .inner-box h4 {
        font-size: 16px;
    }

    .solution-block-one .inner-box .icon-box {
        left: 13px;
        top: 25px;
        font-size: 16px;
    }

    .solution-block-one .inner-box {
        padding: 15px 15px 15px 36px;
    }

    .col-md-12.mt-4.text_slider {
    padding: 3px 20px;
    }
    .slide-sub-title {
        font-size: 25px;
    }
    h2{
        font-size: 25px !important;
    }
    .news-block-two h4 {
    font-size: 18px !important;
    }
    .head
    {
        margin-bottom: 15px !important;
    }
    section.news-section-two.pt-70,
    section.women-sction.pt-70.pb-70 {
        padding-bottom: 10px;
    }
    h2.woocommerce-loop-product__title {
    font-size: 16px !important;
    }
    .cate_main1 {
    margin-bottom: 25px;
    }

    .ft1-service-block .inner-box .side-icon,
    .ft1-service-block .inner-box .color-layer
    {
        display: none;
    }
    .ft1-service-block .inner-box .content
    {
        width: 100%;
        max-width: 100%;
    }
    .breadcrumb-wrapper .page-heading {
    padding: 76px 0 35px !important;
    }
    .breadcrumb-wrapper .right-shape,
    .breadcrumb-wrapper .left-shape{
        width: 56px;
    }
    
    tr.woocommerce-cart-form__cart-item.cart_item .product-quantity {
    width: auto !important;
    }
    .main-footer.style-two {
    padding-top: 100px;
    }
}

@media (max-width: 576px) {
    h3.titel_pro {
    font-size: 17px;
    margin-bottom: 15px !important;
}
    .work4-section-area .others-widget-area .card-boxarea .content-area,
    .work4-section-area .others-widget-area .card-boxarea .content-area2 {
    padding: 15px;
    margin: 0px 1px 25px 0px;
    }
    input#coupon_code {
    width: 135px !important;
    }

    .copyright-info,
    .copyright-info.right
    {
        text-align: center;
    }
    .cta-header.heading1 h2 {
    font-size: 20px !important;
    line-height: normal;
    }

    .solutions-section .inner-container .solution-block-one {
        position: relative;
        float: left;
        width: 49.333%;
    }

    .solutions-section .inner-container .solution-block-one {
        position: relative;
        float: left;
        width: 100.333%;
    }

    .logo {
        width: 124px;
    }

    .menu-icons {
        top: 7px;
    }

    .navbar {
        padding: 6px 0px;
        border-radius: 6px;
    }
    .navbar-toggler 
    {
            right: 1px;
            top: 5px;
    }
    .none-576
    {
        display: none;
    }
    .block-576
    {
        display: block !important;
    }
    .slider_pic01, .slider_pic01 img {
    width: 100%;
    height: 100%;
    }
    .slider-content {
    padding-left: 0;
    background: var(--primary);
    }
    section.header_main {
        position: relative;
    }
    #slider .carousel-control i {
        width: 30px !important;
        height: 30px !important;
        line-height: 30px !important;
        font-size: 14px !important;
        margin-top: -200px;
    }
    
}

@media (max-width: 400px) {
    .solutions-section .inner-container .solution-block-one {
        position: relative;
        float: left;
        width: 100.333%;
    }
}

/* sec-3 scrapjob */
.service-area {
    background: url(assets/images/services/service-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 111px 0 102px;
    position: relative;
    z-index: 1;
}

.service-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #0E1E2A;
    opacity: 0.8;
    z-index: -1;
}

.service-area .flip-box {
    background-color: transparent;
    perspective: 1000px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

.service-area .flip-box-inner {
    position: relative;
    width: auto;
    height: 257px;
    text-align: left;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-area .flip-box-front {
    padding: 20px 22px 0;
    border-radius: 5px;
    background-color: transparent;
    display: flex;
    border: 1px solid #284961;
    gap: 25px;
}

 .flip-box-front {
    padding: 36px 25px 0;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.20);
}

 .flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.service-area .flip-box-thumb {
    margin-top: 26px;
}

.service-area .flip-box-content h4 {
    color: #fff;
}

 .flip-box-content h4 {
    font-size: 23px;
    font-weight: 700;
    margin: 26px 0 8px;
}

.service-area .flip-box-content p {
    color: #fff;
}

 .flip-box-content p {
    margin: 0 0 28px;
}

.service-area .flip-box-front {
    padding: 20px 22px 0;
    border-radius: 5px;
    background-color: transparent;
    display: flex;
    border: 1px solid #284961;
    gap: 25px;
}

.service-area .flip-box-back {
    background-color: var(--primary);
    transform: rotateY(180deg);
    padding: 19px 24px 0;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    gap: 25px;
}

 .flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box .flip-box-back::before {
    position: absolute;
    content: "";
    top: -112px;
    right: -112px;
    background: #fff;
    width: 224px;
    height: 224px;
    border-radius: 50%;
    transition: 0.4s;
    opacity: 0.1;
    z-index: -1;
}

 .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.align-center1 {
    align-items: center;
    width: 100%;
}

.row.slider_center {
    align-items: center;
    height: 100vh;
}

.fl-right {
    float: right;
}

.morethan {
    background-image: url(assets/images/homepage/slik_banner.webp);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    background-position: center;
}

.main_more {
    width: 500px;
    margin: auto;
}



.investor-section {
    background: url(assets/images/homepage/getintouch.webp);
    background-size: cover;
    background-position: center;
}

.investor-section .outer-container {
    position: relative;
    width: 100%;
    overflow: hidden;

}

.content_block_5 {}

.contact {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat
}

.investor-section .outer-container .bg-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 35px);
    height: calc(50% + 38px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.investor-section .outer-container:before {
    /* position: absolute; */
    content: '';
    /* width: calc(50% - 35px); */
    /* height: 100%; */
    /* top: 0; */
    /* right: 0; */
}

.nice-select:after {
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #1e2434;
    border-right: 1px solid #1e2434;
    right: 20px
}

.nice-select {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border: 1px solid #eae6e4 !important;
    border-radius: 0;
    padding: 0 20px;
    padding-right: 40px;
    font-size: 18px;
    font-weight: 400;
    color: #707582;
    font-family: Lato, sans-serif;
    background: 0 0
}

.content_block_5 .content-box {
    position: relative;
    display: block;
    z-index: 1
}

.content_block_5 .content-box .sec-title {
    margin-bottom: 25px
}

.content_block_5 .content-box .form-inner .form-group {
    position: relative;
    margin-bottom: 0px;
}

.content_block_5 .content-box .form-inner .form-group .select-box {
    min-height: 60px
}

.contact_img_bk {
    background-image: url(assets/images/homepage/contact-us-banner.webp);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.content_block_5 .content-box .form-inner .form-group input[type=email],
.content_block_5 .content-box .form-inner .form-group input[type=tel],
.content_block_5 .content-box .form-inner .form-group input[type=text] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid var(--primary);
    border-radius: 7px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    background-color: transparent;
    font-family: Lato, sans-serif;
    transition: all .5s ease
}

.content_block_5 .content-box .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 130px;
    border: 1px solid var(--primary);
    border-radius: 7px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    background-color: transparent;
    font-family: Lato, sans-serif;
    transition: all .5s ease
}

.content_block_5 .content-box .form-inner h6 {
    display: block;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 12px
}

.content_block_5 .content-box .form-inner .inner-box {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 25px;
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / 10%);
}

.content_block_5 .content-box .form-inner .message-btn button,
.content_block_5 .content-box .form-inner .message-btn p {
    float: left
}

.content_block_5 .content-box .form-inner .message-btn button {
    margin-right: 30px
}

.investor-section .image-layer {
    position: absolute;
    left: 0;
    bottom: 120px;
    z-index: 1
}

.investor-section .right-column {
    position: relative;
    display: block;
    margin-left: 35px
}

.investor-section .right-column .video-inner {
    position: relative;
    display: block;
    text-align: center;
    min-width: 765px;
    width: 100%;
    padding: 78px 0 70px 0;
    margin: 0 auto
}

.investor-section .right-column .video-btn {
    position: relative;
    margin-bottom: 34px
}

.investor-section .right-column .video-btn a {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 78px;
    text-align: center;
    font-size: 24px;
    background-color: #fff;
    border-radius: 50%;
    color: #1e2434
}

.investor-section .right-column .video-inner .big-text {
    position: relative;
    display: block;
    font-size: 100px;
    line-height: 100px;
    font-family: Lexend, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 1)
}

.investor-section .testimonial-inner {
    position: relative;
    display: block;
    margin-left: 35px
}

.investor-section .testimonial-content {
    position: relative;
    display: block
}

.investor-section .testimonial-content .testimonial-thumb {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #fff;
    padding: 4px;
    margin-bottom: 26px
}

.investor-section .testimonial-content .testimonial-thumb img {
    width: 100%
}

.investor-section .testimonial-content .text {
    position: relative;
    display: block;
    margin-bottom: 26px
}

.investor-section .testimonial-content .text p {
    font-size: 22px;
    line-height: 32px;
    color: #fff
}

.investor-section .testimonial-content .author-box .rating {
    position: relative;
    display: block;
    margin-bottom: 12px
}

.investor-section .testimonial-content .author-box .rating li {
    display: inline-block;
    font-size: 14px;
    float: left;
    margin-right: 4px;
    color: #fff
}

.investor-section .testimonial-content .author-box .rating li:last-child {
    margin: 0 !important
}

.investor-section .testimonial-content .author-box h5 {
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase
}

.investor-section .testimonial-content .author-box .designation {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 18px;
    font-family: Lexend, sans-serif;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase
}

.investor-section .testimonial-inner .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0
}

.investor-section .testimonial-inner .owl-nav button {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 54px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 20px;
    text-align: center;
    background: 0 0;
    cursor: pointer;
    transition: all .5s ease
}

.investor-section .testimonial-inner .owl-nav button.owl-prev {
    margin-right: 10px
}

.investor-section .testimonial-inner .owl-nav button:hover {
    background-color: #fff
}

.investor-section .quote-icon {
    position: absolute;
    right: 0;
    bottom: 0
}

/*Category*/
.women-sction {
    background-image: -webkit-linear-gradient(-90deg, rgb(244, 247, 249) 0%, rgb(239, 243, 245) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(244, 247, 249) 0%, rgb(239, 243, 245) 100%);
}

.women-box {
    transition: all 0.3s ease;
    background-color: #f1f1f1;
    border-radius: 15px;
    margin-bottom: 25px;
    min-height: 550px;
    position: relative;
    box-shadow: 1px 1px 5px 0px #000000;
}
.women-box-img img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 15px 15px 0px 0px;
}

.women-box-content {
    padding: 10px;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
}

.women-box:hover .women-box-img img {
    transition: all 0.3s ease;
    transform: scale(0.99);
    border-radius: 15px 15px 0 0;
}


.women-box-content h3 {
    font-size: 1em;
    line-height: normal;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.women-box:hover a h3 {
    color: #fff;
}


/* News Section Two */

.news-section-two {
    position: relative;
    padding-bottom: 50px;
}

.news-block-two .image img {
    border-radius: 6px;
    width: 100%;
}

.news-block-two .lower-content {
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    margin-left: 11px;
    margin-right: 11px;
    margin-top: -50px;
    padding: 0 23px 25px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.news-block-two .lower-content:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: var(--primary);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-90deg);
    -ms-transform: perspective(400px) rotateX(-90deg);
    transform: perspective(400px) rotateX(-90deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    border-radius: 6px;
}

.news-block-two .inner-box1:hover .lower-content:before {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
}

.news-block-two .category {
    position: relative;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 12px;
    padding: 3px 21px;
    -webkit-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    transform: translateY(-12px);
    margin-bottom: 10px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background: #292f43;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    line-height: 18px;
}

.news-block-two .post-meta {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.news-block-two .post-meta li {
    font-size: 15px;
    font-weight: 500;
    color: #808080;
    margin-right: 5px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.news-block-two .inner-box1:hover .post-meta li {
    color: #d2ccda;
}

.news-block-two h4 {
    position: relative;
    color: var(--primary);
    transition: .5s;
    padding-top: 20px;
    font-weight: 600;
    font-size: 25px;
}

.news-block-two h4 a {
    color: #202020;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.news-block-two .inner-box1:hover a {
    color: #fff;
    border: 1px solid #fff;
}

.news-block-two .inner-box1:hover h4 {
    color: #fff;
}

.news-block-two .read-more-link {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    transition: .5s;
}

.news-block-two .read-more-link:hover {
    padding-left: 42px;
}

.news-block-two .read-more-link:before {
    position: absolute;
    content: '';
    left: 0;
    top: 11px;
    height: 1px;
    width: 21px;
}

.news-block-two .read-more-link i {
    position: absolute;
    left: 21px;
    top: -1px;
    font-size: 14px;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.news-block-two .read-more-link:hover i {
    opacity: 1;
}

.news-block-two {
    position: relative;
}

.news-block-two .inner-box1 {
    position: relative;
    margin-bottom: 30px;
}

.btn-style-three {
    position: relative;
    font-weight: 600;
    overflow: hidden;
    text-align: center;
    border-radius: 2px;
    font-size: 16px;
    display: inline-block;
    padding: 10px 15px 0px 23px;
    color: var(--primary);
    text-transform: uppercase;
    border: 1px solid #000;
}

.theme-btn {
    cursor: pointer;
    display: inline-block;
    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;
}

.btn-style-three:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 7px;
    content: "";
    top: 5px;
    left: 0px;
    bottom: 5px;
    z-index: 1;
    background-color: #000;
}

.btn-style-three .btn-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}

.btn-style-three .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: #000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-three:hover:before {
    width: 100%;
    background-color: #fff;
}

.b-w:hover::before {
    background-color: #fff;
}

.b-w .btn-wrap .text-two {
    color: #000;
}

.btn-style-three:hover .btn-wrap .text-two {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header_button-box {
    margin-top: 15px;
}

.cate_main1 {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.cate_main1 img {
    border-radius: 0px 15px 15px 0px;
    width: 100%;
    height: auto;
}

.cate_title001 {
    position: absolute;
    top: 70px;
    padding-left: 40px;
    width: 250px;
}

.women-box a {
    color: #000;
}

.women-box:hover a {
    color: #fff;
}

.cate_title001 h2 {
    margin-bottom: 20px;
}

a.catebtn {
    background: var(--primary);
    color: #fff;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
}

a.catebtn:hover {
    background-color: #000;
}

.menu-icons {
    float: right;
    margin-top: 3px;
}

.menu-icons a {
    float: left;
}

.navbar .menu-icons a i {
    font-size: 22px;
    margin-left: 0;
    color: var(--primary);
}

.fl_right {
    float: right;
}

.cta-images {
    float: right;
    text-align: right;
    padding-right: 10%;
}

a.cta_call {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    float: right;
}

.vl-blog-4-area .vl-blog-1-item .vl-blog-1-content .readmore i {
    margin-left: 8px;
    float: right;
}

/*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;
}
.women-box h2, h2.woocommerce-loop-product__title {
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    margin: 0;
    color: #000;
    padding: 10px 10px 5px 10px !important;
}
.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
    float: left;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: #f1f1f1;
    border-radius: 15px;
    margin: 0 1% 3% 1%;
    width: 23%;
    padding-bottom: 15px;
    min-height: 550px;
}


.woocommerce ul.products li.product:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product:hover .price,
.woocommerce ul.products li.product:hover .price del {
    color: #fff;
}

.add_to_cart_button i {
    font-size: 19px;
    color: #fff;
    background-color: var(--primary);
    padding: 10px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.add_to_cart_button:hover i {
    background-color: #fff;
    color: var(--primary);
}

.woocommerce ul.products li.product .price {}

.woocommerce ul.products li.product .button {
    margin: 0;
    background: transparent;
    padding: 0;
}

a.button.add_to_cart_button.ajax_add_to_cart.added {
    background: transparent;
    color: #000;
}

span.wishlist_products_counter_number {
    position: absolute;
    top: -13px;
    left: 14px;
}

a.wishlist_products_counter.top_wishlist-heart.top_wishlist-.no-txt {
    position: relative;
    margin-left: 15px;
    color: var(--primary);
    margin-right: 10px;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
.woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
.woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
a.wishlist_products_counter.top_wishlist-heart:before,
span.wishlist_products_counter.top_wishlist-heart:before,
a.sidr-class-wishlist_products_counter.sidr-class-top_wishlist-heart:before {
    font-size: 22px;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
    background: #fff;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 5px;
    margin: 0;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before,
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before {
    top: 36%;
    left: 39%;
}

.woocommerce ul.products li.product a img {}

.tinv-wraper.tinv-wishlist {
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.added::after {
    display: none;
}

a.added_to_cart.wc-forward {
    font-size: 13px;
    background: var(--primary);
    color: #fff;
    margin-left: -3px;
    display: inline;
    padding: 11px 14px 8px 9px;
    border-radius: 0px 5px 0px 0px;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    background-color: var(--primary);
}

.woocommerce ul.products li.product:hover .add_to_cart_button i,
.woocommerce ul.products li.product:hover .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
    background: #fff;
    color: var(--primary);
}

a.button.product_type_simple {
    background: var(--primary) !important;
    color: #fff;
    padding: 11px 9px !important;
    font-size: 15px;
    font-weight: 500;
}

.woocommerce ul.products li.product .button {
    /* color: #fff; */
}

i.demo-icon.icon-heart-empty.right_icon_1 {
    position: absolute;
    right: -12px;
    font-size: 18px;
    color: #fff;
    background-color: var(--primary);
    padding: 4px 13px;
    border-radius: 4px;
    transition: 0.3s ease;
}

i.demo-icon.icon-cart-plus.left_icon_1 {
    position: absolute;
    left: -12px;
    font-size: 18px;
    color: #fff;
    background-color: var(--primary);
    padding: 4px 13px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.women-box:hover i.demo-icon.icon-cart-plus.left_icon_1,
.women-box:hover i.demo-icon.icon-heart-empty.right_icon_1 {
    background: #fff;
    color: var(--primary);
}

.cart_wish {
    font-size: 17px;
    position: relative;
    margin-top: 5px;
    font-weight: 400;
}

.woocommerce-product-details__short-description ul li,
.woocommerce-product-details__short-description p {
    border-bottom: 1px solid #d1d1d1;
    padding: 5px 0px;
    margin: 0;
}

.woocommerce-product-details__short-description {}

.woocommerce-product-details__short-description ul li {}

.yith-par-message {
    position: absolute;
    bottom: 10px;
    left: 70px;
}

div#aws-search-result-1 {}

.yith-wcan-filters.filters-modal h3,
.yith-wcan-filters.filters-modal .filters-container {
    background-color: #000;
}

button.btn.btn-primary.yith-wcan-filters-opener.enhanced {
    color: #fff;
    display: none;
}

.yith-wcan-filters.filters-modal .main-modal-button {
    color: #fff;
}

div#multislider06 {
    width: 80%;
}

.contact_what {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #000;
    box-shadow: 0px 0px 5px 0px #ccc;
    left: 0;
    padding: 5px 0px;
    bottom: 0;
}

.contact_what a {
    float: left;
    width: 25%;
    text-align: center;
    font-size: 12px;
}

.contact_what i {
    font-size: 16px;
    color: #fff;
}

.contact_what p {
    float: left;
    width: 100%;
    line-height: 11px;
    color: #fff;
    margin: 5px 0px;
    font-size: 15px;
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images {}

.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
    width: 50%;
}

.select2-results {
    display: block;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[data-selected=true] {
    background-color: var(--primary);
}

span.xoo-wsc-pname,
span.xoo-wsc-pname a {

    font-size: 15px;
    line-height: 22px;
}

a.showlogin {
    color: #000;
}

.woocommerce-info {
    border-top-color: var(--secondary);
}

.woocommerce-info::before {
    color: var(--secondary);
}

a.woocommerce-privacy-policy-link {
    color: #000;
}

/* Scrollbar track */
::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
    height: 12px;
    /* Height of the scrollbar for horizontal scrollbar */
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: #888;
    /* Set thumb color */
    border-radius: 10px;
    /* Round the corners of the thumb */
    border: 3px solid #fff;
    /* Optional: adds spacing around the thumb */
}

/* Hover effect for scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Change color on hover */
}

/* Scrollbar track (background of the scrollbar) */
::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    /* Light background color for the track */
    border-radius: 10px;
    /* Round the corners of the track */
}

/* Scrollbar corner (when both horizontal and vertical scrollbars are visible) */
::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
}

/* Firefox Scrollbar Styles */
scrollbar {
    width: 12px;
    height: 12px;
}

scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.col-md-10.p-all {
    padding: 0px 48px;
}

.yith-wcqv-button.inside-thumb {}

.woocommerce div.product div.images .flex-control-thumbs li img {
    opacity: 10;
}

a.yith-wcqv-button.qvicon {
    right: 11px !important;
    position: absolute;
    transition: transform 0.3s ease;
}


img.custom-add-to-cart-image {
    margin: 0 !important;
}

a.yith-wcqv-button.qvicon img {
    width: 35px !important;
    transition: transform 0.3s ease;
}

a.yith-wcqv-button.qvicon img:hover,
img.custom-add-to-cart-image:hover {
    transform: scale(1.2);
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.added::after {
    right: -20px;
    position: absolute;
    color: var(--secondary);
    top: 8px;
}

.woocommerce ul.products li.product .price ins {
    font-weight: 500;
}

img.title_shape1 {
    width: 250px;
    margin-bottom: 40px;
}

.section-title:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100px;
    background: #ffffff;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 25%;
}

.section-title1:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100px;
    background: #000;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 25%;
}

.section-title_left:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100px;
    background: #000;
    bottom: -20px;
    left: 0;
    border-radius: 25%;
}

.section-title2:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100px;
    background: #fff;
    bottom: -20px;
    left: 0;
    border-radius: 25%;
}

a.wpgis-popup {
    color: #000;
    background: #fff;
    opacity: 10;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
}


.woocommerce-product-details__short-description {}

.woocommerce-product-details__short-description ul {}

/* .woocommerce-product-details__short-description ul > li:nth-child(even) {
    background-color: #f2f2f2; 
    color: black; 
    
  }
.woocommerce-product-details__short-description ul > li:nth-child(odd) {
     color: #000; 
     background-color: #f2f2f2;
     
  } */
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item>a,
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item>label>a {}

.product-content .title a {}

span.addto_Cart01 a {
    float: right;
    background: var(--secondary);
    color: #fff;
    padding: 7px 11px;
    border-radius: 7px;
}

section.related.products ul.products.columns-4 li {
    /* width: 23%; */
}

.container.pl-0 {
    padding-left: 0;
}

.text-black {
    color: #000 !important;
}

button.custom-btn.btn-10.fadeInRight.bg_white:hover a {
    color: #fff;
}


.is-large .wp-block-woocommerce-checkout-order-summary-block {
    border: 1px solid #fff;
    border-radius: 5px;
    color: #000;
    background: #fff;
}

.yith-quick-view-content.woocommerce div.entry-summary a,
.yith-quick-view-content.woocommerce div.entry-summary h3.title_pro,
.yith-quick-view-content.woocommerce div.summary-content li,
.product-content .title a {
    color: #000;
}

.wpzoom-secondary-image-container.show-secondary-image img {}

a.yith-wcqv-button.button {
    float: right;
}

section.client.pt-70.pb-50 {
    background: #fff;
}

.yith-wcan-filters {
    margin-bottom: 0;
}

.pt-170 {
    padding-top: 170px;
}

.tinv-wraper.tinv-wishlist.tinvwl-above_thumb-add-to-cart a.tinvwl_add_to_wishlist_button,
a.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-position-after.tinvwl-loop {
    color: var(--secondary);
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
.woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
.woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
a.wishlist_products_counter.top_wishlist-heart:before,
span.wishlist_products_counter.top_wishlist-heart:before,
a.sidr-class-wishlist_products_counter.sidr-class-top_wishlist-heart:before {
    font-size: 28px;
}

.tinv-wraper.tinv-wishlist.tinvwl-above_thumb-add-to-cart {top: 0;right: 0;}

th {}

.tinv-wishlist .product-action {
    width: 188px;
}

span.wishlist_products_counter_number {
    position: absolute;
    right: -3px;
    top: -16px;
}

a.wishlist_products_counter.top_wishlist-heart.top_wishlist-.no-txt.wishlist-counter-with-products {
    position: relative;
}

.wc-block-components-quantity-selector {
    background: #fff;
    color: #000;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 65px;
    box-shadow: none;
}

tr.woocommerce-cart-form__cart-item.cart_item .product-quantity {
    width: 80px;
}

input#coupon_code {
    width: auto;
    height: 45px;
    border-radius: 6px;
}

.wc-block-components-address-card {
    border: 1px solid #fff !important;
}

.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=password],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=password],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=url] {
    color: #000 !important;

}

.wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
    padding: 0 !important;
}

.wc-block-components-form .wc-block-checkout__order-notes.wc-block-components-checkout-step {
    margin-bottom: 15px !important;
}

.wc-block-checkout__terms,
.wc-block-components-form .wc-block-components-checkout-step {
    margin: 0 0 25px !important;
}

a.showcoupon {
    color: #000;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: #fff;
    border-radius: 5px;
    color: #000;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {

    color: #000;
}

th.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-number a {
    color: #000;
}

.woocommerce table.shop_table {
    border-collapse: collapse;
}

.u-columns.woocommerce-Addresses.col2-set.addresses address {
    background: #fff;
    color: #000;
    padding: 12px 14px;
}

.yith-quick-view-content.woocommerce.single-product button.plus,
.yith-quick-view-content.woocommerce.single-product button.minus {
    display: none;
}

.yith-quick-view-content.woocommerce.single-product .quantity .qty {
    border: 1px solid #b7b7b7;
    border-radius: 6px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    font-size: 25px;
    color: #000;
    margin-bottom: 15px;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    width: 50%;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
    width: 45%;
}

.pro_pic1 img {
    width: 100%;
    height: auto;
}

.variable-item-contents:hover {
    background: var(--secondary);
    color: #fff;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected:hover {
    box-shadow: none;
    color: #FFE !important;
    background: var(--secondary) !important;
}

a.reset_variations {
    position: absolute;
    border: 1px solid;
    padding: 0px 16px;
    border-radius: 5px;
    display: none !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: var(--secondary);
    color: #fff;
}

.woocommerce ul.products li.product a img {
    margin-bottom: 0;
}

a.added_to_cart.wc-forward {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    top: 7px;
    text-align: center;
}


.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
    width: 100%;
    float: left
}

.woocommerce-product-details__short-description p {
    color: #888;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--secondary) !important;
    color: #fff
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: var(--primary) !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 0 17px
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    display: none
}

.woocommerce div.product .woocommerce-tabs .panel h2,
div#tab-attrib_desc_tab h2,
div#tab-description h2 {
    font-size: 25px;
}

span.wc-block-components-button__text {
    padding: 8px 16px
}


.cart_totals h2 {
    font-size: 24px;
    margin-bottom: 18px
}

.woocommerce div.product form.cart {
    margin-bottom: 7px !important;
    margin-top: 0
}

.woocommerce-message a {
    position: absolute !important;
    right: 0
}

nav.woocommerce-breadcrumb,
nav.woocommerce-breadcrumb a {
    color: #000 !important
}

nav.woocommerce-breadcrumb {
    /* margin: 2px 0px 30px 13px !important; */
    background: #f1f1f1;
    padding: 2px 6px !important;
    border-radius: 10px;
}

.woocommerce-tabs.wc-tabs-wrapper h5 {
    color: var(--primary);
    font-weight: 600
}

.woocommerce div.product .woocommerce-tabs .panel iframe {
    width: 46%;
    float: left;
    margin-top: 0 !important;
    margin: 2%
}

.woocommerce span.onsale {
    background-color: #000;
    margin: 0 !important;
    border-radius: 0px 10px 0px 5px;
    padding: 6px 12px !important;
    min-height: auto;
    line-height: normal
}

.woocommerce ul.products li.product .price del {
    display: inline-block;
    color: var(--primary);
    margin-right: 20px;
    opacity: inherit;   
}

.woocommerce div.product form.cart .variations tr {
    width: 100%;
    float: left
}

.pofw-product-options-wrapper .field .control select,
.woocommerce div.product form.cart .variations select {
    width: 100%;
    height: 45px;
    border: 1px solid #443f3f;
    border-radius: 8px;
    padding-left: 7px;
    background: #f0f0f0
}


.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #fff
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover {
    background-color: var(--secondary)
}

.usp-item {
    width: 50%;
    padding: 10px 0 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    float: left
}

.usp-item .usp-text .content {
    font-size: 15px
}

.usp-item .usp-img {
    width: 72px
}

.usp-item .usp-text {
    margin-left: 15px
}

.woocommerce-product-details__short-description p {
    color: #000
}

.woocommerce-product-details__short-description b,
.woocommerce-product-details__short-description strong {
    color: var(--primary);
    margin-right: 15px
}

.pro_page span.woocommerce-Price-amount.amount {
    color: var(--primary);
    margin: 5px 0;
    float: left;
    font-weight: 700
}

.woocommerce-page div.product div.images {}

.woocommerce-page div.product div.summary {
    padding-right: 5%;
}

.usp-wrapper {
    margin-top: 25px
}

h3.quantity_pro {
    margin: 0;
    padding: 0;
    font-size: 17px;
    text-transform: capitalize;
    margin-top: 0;

    margin-bottom: 15px
}

button.single_add_to_cart_button.button.alt {
    padding: 15px 30px !important;
    border-radius: 5px !important;
    font-weight: 500;
    font-size: 14px;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {}

.woocommerce ul.order_details {
    display: flex;
    justify-content: center
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 23%;
    border-left: 5px solid #fff;
    /* float: left; */
}

nav.woocommerce-MyAccount-navigation ul {
    padding: 0;
    margin: 0
}

nav.woocommerce-MyAccount-navigation ul li.is-active,
nav.woocommerce-MyAccount-navigation ul li:hover {}

nav.woocommerce-MyAccount-navigation ul li.is-active,
nav.woocommerce-MyAccount-navigation ul li:hover {}

nav.woocommerce-MyAccount-navigation ul li {
    padding: 8px 17px;
    float: left;
    width: 100%;
    border-bottom: 1px solid var(--primary);
    list-style: none
}

nav.woocommerce-MyAccount-navigation ul li a {
    color: var(--primary);
}

nav.woocommerce-MyAccount-navigation ul li.is-active,
nav.woocommerce-MyAccount-navigation ul li:hover {
    background: var(--primary);
}

nav.woocommerce-MyAccount-navigation ul li.is-active a,
nav.woocommerce-MyAccount-navigation ul li:hover a {
    color: #fff
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%
}

.woocommerce table.shop_table thead,
table.shop_table.woocommerce-checkout-review-order-table thead {
    background: var(--primary);
    color: #fff
}

.woocommerce-account .addresses .title h3 {
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 14px;
    font-weight: 600
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    padding-left: 15px
}

span.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
    font-size: 15px !important
}

p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 24px;
    margin-bottom: 25px;

    text-align: center
}

.woocommerce table.shop_table th {}

section.woocommerce-order-details h2 {
    font-size: 20px
}

.woocommerce-column address {
    padding: 22px 22px !important;
    border: 1px solid var(--primary) !important;
    border-radius: 0px 0px 5px 5px !important;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header th,
table.wc-block-cart-items .wc-block-cart-items__header th {
    font-size: 16px
}

a.wc-block-components-product-name {
    font-weight: 600
}

tr.wc-block-cart-items__row {
    box-shadow: 0 1px 3px 1px #ccc
}

ul.wc-block-components-product-details {
    border-top: 1px solid #d6d5d5;
    border-bottom: 1px solid #d6d5d5;
    float: left;
    width: 100%
}

.wc-block-components-quantity-selector {
    float: left;
    margin-right: 15px;
    margin-top: 0
}

.wc-block-cart-item__quantity {
    float: left;
    width: 100%;
    margin-top: 15px
}

ul.wc-block-components-product-details li {
    float: left;
    font-size: 15px
}

.is-large.wc-block-cart .wc-block-cart-items td {
    padding: 24px 0 12px 16px !important
}

.wc-block-components-quantity-selector,
span.price.wc-block-components-product-price {
    margin-right: 15px !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    color: #000;
}

.woocommerce-message {
    border-top-color: var(--secondary);
}

.woocommerce-message::before {
    color: var(--secondary);
}

.woocommerce-product-details__short-description {
    margin-bottom: 5px;
    float: left;
}

.wc-block-components-checkout-step__description {
    font-size: 16px;
    line-height: normal;
    margin: 0 0 16px;
}

h2.woocommerce-column__title {
    font-size: 25px;
    margin-bottom: 15px;
}

header.woocommerce-Address-title.title h2 {
    font-size: 25px;
}

.woocommerce form .form-row input.input-text {
    height: 40px;
}


.price001,
.woocommerce ul.products li.product .price {
    float: left;
    font-size: 17px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    color: var(--primary);
}
.woocommerce ul.products li.product .button {
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    padding: 12px 14px;
    text-transform: capitalize;
    background: var(--primary);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    display: flow-root;
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
}

button.btn.btn-primary.yith-wcan-reset-filters.reset-filters.enhanced {
    background: var(--secondary);
    padding: 6px 18px;
    text-transform: capitalize;
}

button.btn.btn-primary.yith-wcan-reset-filters.reset-filters.enhanced:hover {
    background-color: var(--primary);
}

.yith-wcan-filters .yith-wcan-filter {
    border-bottom: 1px solid #c1baba;
    margin: 0;
    padding-top: 15px;
    padding-bottom: 5px;
}

h4.filter-title {
    font-size: 16px !important;
}

.filter_sidebar h3 {
    /* background: var(--secondary); */
    font-size: 19px;
    /* padding: 10px 15px; */
    /* color: #fff; */
    letter-spacing: 1px;
    margin-top: 0 !important;
}

form.woocommerce-ordering,
p.woocommerce-result-count {
    display: none;
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown {
    border: none;
    padding: 0;
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown.open {
    border: none;
    box-shadow: none;
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-label {
    /* display: none; */
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    background: var(--secondary);
    color: #fff;
    text-transform: uppercase;
}

.wc-block-components-totals-item__label {}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.wc-block-components-checkout-place-order-button--full-width.contained {
    background: var(--secondary);
    color: #fff;
    width: 260px;
    text-transform: uppercase;

    letter-spacing: 1px;
    padding: 3px 0px;
    border: none;
}

.woocommerce div.product .woocommerce-tabs .panel tr,
.woocommerce-product-details__short-description tr {
    border-bottom: 1px solid #d1d1d1;
    padding: 2px 9px;
}

.woocommerce div.product .woocommerce-tabs .panel td,
.woocommerce-product-details__short-description td {
    padding: 3px 0px;
}

.woocommerce-page div.product div.images {
    padding-left: 5%;
}

.woocommerce-product-gallery__image {
    box-shadow: 0px 0px 4px 1px var(--secondary);
    border-radius: 10px;
    background: #fff;
}

.woocommerce ul.products li.first,
.woocommerce-page ul.products li.first {
    clear: none;
}

.service-text h3 {
    margin: 0;
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown:after {
    right: 5px;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
.xoo-wsc-markup .xoo-wsc-btn,
.xoo-wsc-markup .woocommerce-shipping-calculator button[type="submit"] {
    background: var(--secondary);
    text-transform: uppercase;
    font-size: 17px;
    border: none;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover,
.xoo-wsc-markup .xoo-wsc-btn:hover,
.xoo-wsc-markup .woocommerce-shipping-calculator button[type="submit"]:hover {
    background-color: var(--primary);
    color: #fff;
    text-transform: uppercase;
    border: none;
}

.xoo-wsc-footer,
.xoo-wsc-footer a,
.xoo-wsc-footer .amount {
    font-size: 17px;
}

.xoo-wsc-ft-totals {
    width: 100%;
    padding: 0;
}

/* Style the labels */
#commentform label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Adjust spacing for comment form fields */
#commentform p {
    margin-bottom: 15px;
}

p.comment-form-email {
    float: right;
    width: 47%;
}

p.comment-form-author {
    width: 47%;
    float: left;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
    background: #b76e79;
    color: #fff;
    padding: 14px 20px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
    background-color: var(--primary);
    color: #fff;
}

#respond {
    float: left;
    padding: 25px;
    width: 100%;    
}

div#tab-description {
    width: 100%;
    margin: auto;
    /* border: 1px double #ccc; */
    /* padding: 30px 35px 10px 35px; */
    /* box-shadow: 0 0 2px 1px #ccc; */
    float: left;
    margin-bottom: 25px;
}

#tab-description h2 {}

#tab-description p {}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    display: none;
}

.privacy_policy ul li {
    display: flex;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
    background-color: #000 !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
    background-color: var(--primary) !important;
    text-transform: capitalize;
}

.breadcrumb-section {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #f1f1f1;
    color: #000;
}

nav.woocommerce-breadcrumb {
    margin: 0 !important;
}

nav.woocommerce-breadcrumb,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
    color: #000;

}

h3.title_pro {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}

.product_page span.woocommerce-Price-amount.amount {

    font-size: 33px;

    padding: 10px 0px;

    display: block;

    font-weight: 500;
}

.flex-viewport {
    box-shadow: 0px 0px 4px 1px var(--secondary);
    border-radius: 10px;
}

ol.flex-control-nav.flex-control-thumbs li {
    box-shadow: 0px 0px 4px 1px var(--secondary);
    margin: 11px 4px 0px 4px !important;
    width: 23% !important;
    border-radius: 2px;
}

.woocommerce-product-details__short-description p {
    width: 100%;
    float: left;
    border: none;
    margin: 0;
    padding: 0;
}
.woocommerce-product-details__short-description ul li
{
    border-bottom: 1px solid #d1d1d1;
    padding: 5px 0px;
    margin: 0;
    width: 100%;
    float: left;
    padding: 7px 10px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #fff;
}

/* Style the comment form wrapper */
#commentform {
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

/* Style the input fields (Name, Email, Website) */
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Style the comment textarea */
#commentform textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    height: 150px;
    margin-bottom: 10px;
}

/* Style the submit button */
#commentform input[type="submit"] {
    background-color: var(--secondary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#commentform input[type="submit"]:hover {
    background-color: var(--secondary);
}

/*Custom Filed*/
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--secondary) !important;
    color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #fff;
    color: #515151;
    z-index: 2;
    border-bottom-color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: var(--primary) !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 0 17px;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
div#tab-attrib_desc_tab h2,
div#tab-description h2 {
    margin-bottom: 21px;
    display: none;
}

.container.cont-9 {
    padding-top: 50px;
    padding-bottom: 50px;
}

section.related.products h2 {
    text-align: center;
    font-size: 25px;
    margin-bottom: 25px;
}



.woocommerce .quantity .qty {
    text-align: center;
    color: #000 !important;
    width: 55px;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    height: 45px;
    padding: 0 !important;
    margin: 0 0;
    outline: 0;
    border-right: 0;
    border-left: 0;
    background: #fff;
}

button.minus {
    border-radius: 0;
    padding: 5px 15px;
    float: left;
    color: var(--primary);
    border: 1px solid var(--primary);
    height: 45px;
    font-size: 20px;
    border-radius: 5px 0 0 5px;
    background: #fff;
}

button.plus {
    border-radius: 0;
    padding: 5px 15px;
    float: left;
    color: var(--primary);
    border: 1px solid var(--primary);
    height: 45px;
    font-size: 20px;
    border-radius: 0 5px 5px 0;
    background: #fff;
    margin-left: -20px;
}

.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: left;
    margin-left: 5px;
    margin-right: 5px
}




@media (max-width:576px) {

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
        margin-bottom: 25px;
    }

    .woocommerce ul.products[class*=columns-] li.product,
    .woocommerce-page ul.products[class*=columns-] li.product {
        width: 100% !important;
        margin-bottom: 20px;
    }
}

@media (max-width:768px) {
    .vertical-img-left.wpgis-slider-for {
    width: 100%;
    }
    .pay_more ul li {
        width: 100%;
        display: block;
    }

    .woocommerce-page div.product div.images,
    .woocommerce-page div.product div.summary {
        width: 100% !important;
        padding-right: 0;
        padding-left: 0;
        float: left;
        margin-bottom: 0;
    }

    p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received,
    .woocommerce-Address-title.title h2 {
        font-size: 20px !important;
    }

    .woocommerce ul.order_details li {
        margin-bottom: 16px !important;
        width: 100%;
    }

    .woocommerce ul.order_details {
        display: inline !important;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        float: right;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        float: left;
    }
}

.woocommerce-product-details__short-description ul li:nth-child(odd) {
    font-weight: 600;
    width: 50%;
}

.woocommerce-product-details__short-description ul li {
    position: relative;
}

.woocommerce-product-details__short-description ul li::before {
    content: "\f101";
    font-family: fontello;
    position: absolute;
    left: -18px;
    color: #fff;
}

.page-heading.bg-cover.bg_pro_01 {
    padding: 0;
}

.page-heading.bg-cover.bg_pro_01 ul li {
    float: left;
    margin-right: 11px;
}

.page-heading.bg-cover.bg_pro_01 ul {
    background: #f1f1f1;
    float: left;
    width: 90%;
    padding: 9px 20px;
    border-radius: 10px;
    margin-left: 5%;
}

h3.titel_pro {
    margin-bottom: 25px;
    color: var(--primary);
}

#tab-description p {
    margin-top: 15px;
}

a.men-icon-btn.cart_icon01 span {
    font-size: 17px;
    margin-top: 5px;
    float: left;
    color: var(--primary);
}

.tinv-wraper.woocommerce.tinv-wishlist.tinvwl-thumbnails-add-to-cart.tinvwl-woocommerce_product_thumbnails {
    display: none;
}

.yith-quick-view-content.woocommerce div.summary h1 {
    display: none;
}

tr.woocommerce-cart-form__cart-item.cart_item .quantity .qty {
    border: 1px solid var(--primary);
    border-radius: 4px;
}

.woocommerce table.shop_table td {
    border-top: 1px solid var(--primary);
    padding: 7px 12px;
}

.woocommerce table.shop_table {
    border: 1px solid var(--primary);
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
    font-weight: 500;
    padding: 13px 22px;
    float: left;
    margin-bottom: 0;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
    border-top: 1px solid var(--primary);
    font-weight: 600;
}

.woocommerce h2 {
    font-size: 25px;
}

.woocommerce .woocommerce-customer-details .woocommerce-column__title {
    margin-top: 0;
    background: var(--primary);
    color: #fff;
    padding: 9px 18px;
    font-size: 20px;
    margin-bottom: 0;
}

.woocommerce ul.order_details li strong {
    font-weight: 600;
}

.breadcrumb-sub-title h2 {
    font-weight: 600;
    font-size: 30px;
}

.head {
    margin-bottom: 30px;
}

.filter_sidebar {
    /* border: 1px solid #ccc; */
    /* padding: 15px; */
    /* border-radius: 5px; */
}

.yith-wcan-filters .yith-wcan-filter .filter-title {
    color: #000;
}

.vkpage h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 25px;
}

button.btn.btn-primary.yith-wcan-reset-filters.reset-filters.enhanced {
    background: var(--primary);
    padding: 6px 18px;
    text-transform: capitalize;
    border: none;
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 10px;
}

button.btn.btn-primary.yith-wcan-reset-filters.reset-filters.enhanced:hover {
    background-color: #000;
}

.page-heading.page_01 {
    padding: 60px 0 60px;
}

.axom_page h3 {
    margin-bottom: 7px;
    margin-top: 15px;
    display: block;
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

.axom_page {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 0px 3px 0px #6f6464;
}

.client_g1 img {
    width: 120px;
}

.client_g1 {
    width: 80%;
    border: 1px solid var(--primary);
    box-shadow: 0px 0px 3px 1px #7c7878;
    padding: 15px;
    border-radius: 5px;
}

i.demo-icon.icon-left-open.client_btn.client_btn1 {
    margin-left: -27px;
}

i.demo-icon.icon-right-open.client_btn.client_btn2 {
    margin-right: -23px;
}

.yith-wcqv-main .tinv-wraper.tinv-wishlist {
    display: none;
}
.block-991
{
    display: none;
}
.tinv-header h2 {
    display: none;
}
table.tinvwl-table-manage-list tr {
    border: 1px solid var(--primary);
}
.tinv-wishlist table td, .tinv-wishlist table th {
    padding: 10px !important;
}
.blog-content h2 {
    font-size: 25px;
    margin-top: 25px;
    color: var(--primary);
}
h2.comments-title {
    font-size: 25px;
    margin-top: 25px;
}
.block-576
{
    display: none;
}
.wpgis-slider-for .btn-prev, .wpgis-slider-for .btn-next {
    opacity: 0.9;
    margin: 0;
}


/*Custome post type product button*/
.pro_left_btn {
    background: var(--secondary);
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}
input.mybtn {
    background: var(--primary);
    border: none;
    color: #fff;
    text-transform: uppercase;
    padding: 7px 30px;
    border-radius: 5px;
}
input.mybtn:hover
{
    background-color: #000;
}

.shopy_by h2 {
    text-align: center;
    margin-top: 25px;
    font-size: 22px;
}

.category-item .category-img img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--primary);
}
.category-item .category-content {
    width: 150px;
    margin-top: -30px;
    margin-left: auto;
    margin-right: auto;
}
.category-item:after {
    position: absolute;
    top: 18px;
    right: -13px;
    display: inline-block;
    content: "";
    width: 6px;
    height: 80%;
    background: url(./assets/images/category/line.webp) no-repeat center;
    background-size: contain;
}

.category-item .category-content h2 {
    font-size: 16px;
    padding: 17px 32px;
    border-radius: 100px;
    border: 1px solid #aeb0b6;
    line-height: 16px;
    background-color: #fff;
    color: #000;
    font-weight: 600;
}
.category-item {
    position: relative;
    padding: 0px 10px;
}
/* Offer Deal Wrapper */
.offer-deal-wrapper {
  position: relative;
  background-color: white;
  padding: 90px 95px;
  border-radius: 20px;
  border: 2px solid var(--primary);
}
@media (max-width: 1199px) {
  .offer-deal-wrapper {
    padding: 40px 55px;
  }
}
@media (max-width: 767px) {
  .offer-deal-wrapper {
    padding: 30px 25px;
  }
  #tab-specification_tab table
  {
    width: 100% !important;
  }
}
.offer-deal-wrapper .deal-img {
  position: absolute;
  bottom: 0;
  right: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .offer-deal-wrapper .deal-img {
    width: 50%;
  }
  .offer-deal-wrapper .deal-img img {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .offer-deal-wrapper .deal-img {
    display: none;
  }
}
@media (max-width: 1199px) {
  .offer-deal-wrapper .deal-content {
    text-align: center;
  }
}
.offer-deal-wrapper .deal-content .sub-heading {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 700;
}
.offer-deal-wrapper .deal-content .sub-heading i {
  margin-right: 10px;
  font-size: 20px;
}
.offer-deal-wrapper .deal-content h2 {
  font-size: 36px;
  line-height: 150%;
  margin-bottom: 63px;
}
.offer-deal-wrapper .deal-content h2 span {
  display: block;
  line-height: 150%;
}
@media (max-width: 991px) {
  .offer-deal-wrapper .deal-content h2 {
    margin-bottom: 33px;
  }
}
.offer-deal-wrapper .deal-content .theme-btn {
  padding: 16px 32px;
  line-height: 16px;
}
.offer-deal-wrapper .deal-content .simply-countdown {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 450px;
}
 .offer-deal-wrapper .deal-content .simply-countdown .simply-section
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.offer-deal-wrapper .deal-content .simply-countdown .simply-section {
    text-align: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid #aeb0b6;
}
.offer-deal-wrapper .deal-content .simply-countdown .simply-section span {
  display: block;
  font-weight: 600;
}
.offer-deal-wrapper .deal-content .simply-countdown .simply-section span.simply-amount {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 2px;
}

/* adv-area */
.adv-area {
    background-image: url(assets/images/homepage/product1.webp);
    background-attachment: fixed;
    padding: 70px 70px;
    background-position: center 80px;
    background-size: cover;
}
.product-box
{
    background-image: url(assets/images/homepage/shap01.webp);
    width: 350px;
    height: 350px;
    background-size: contain;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
h2.sale-name span {
    font-size: 50px;
}
.deal_of {
    margin-bottom: 10px;
    color: var(--primary);
}
.wedding h2 {
    position: absolute;
    bottom: 12px;
    width: 90%;
    background: #fff;
    margin: auto;
    left: 0;
    right: 0;
    color: var(--primary);
    font-size: 20px;
    text-align: center;
    padding: 8px 0px;
    border-radius: 5px;
}
.wedding {
    position: relative;
}
.woocommerce-product-details__short-description ul li:nth-child(even) {
    width: 50%;
}
.variation-buttons,
.color-swatches {
    margin-top: 0;
    margin-bottom: 10px;
}

.variation-button,
.color-swatch {
    display: inline-block;
    margin: 0px 5px 0 0;
    cursor: pointer;
    transition: 0.3s;
}

.variation-button {
    background: #fff;
    border: 1px solid var(--primary);
    padding: 3px 15px;
    border-radius: 7px;
}

.variation-button.selected {
    background: #222;
    color: #fff;
    border-color: #222;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ccc;
}

.color-swatch.selected {
    border: 3px solid #000;
}

a.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt.tinvwl-position-before
{
    display: none;
}
.woocommerce div.product form.cart .variations
{
    margin-bottom: 0;
}
.woocommerce div.quantity {
    display: flex;
    align-items: center;
    gap: 5px;
}

.woocommerce .quantity-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: -7px;
}

.woocommerce div.product form.cart .variations label
{
        font-weight: 600 !important; 
}
#tab-specification_tab table{
    width: 600px;
}
#tab-specification_tabtable th
{
    width: 50%;
}

.yith-wcan-active-filters.enhanced h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
}
.yith-wcan-active-filters {
    margin-bottom: 10px !important;
}
.category-item:hover h2 {
    background-color: var(--primary);
    color: #fff;
}
.woocommerce ul.products li.product:hover .button {
    background: #fff;
    color: var(--primary);
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--primary) !important;
    color: #fff !important;
}
.tinv-wraper.tinv-wishlist.tinvwl-above_thumb-add-to-cart {
    top: 4px !important;
    right: 4px !important;
    left: auto;
}
.woocommerce ul.products li.product .onsale {
    left: 0;
    right: auto;
    border-radius: 0;
    background: var(--primary);
}
.sale-box a {
    background: var(--primary);
    color: #fff;
}
.sale-box a:hover {
    background-color: #000;
    color: #fff;
}
.addtocart1 {
    float: left;
    width: 100%;
    position: absolute;
    bottom: 10px;
}
.addtocart1 a {
    font-size: 15px;
    text-align: center;
    padding: 5px 10px;
    text-transform: capitalize;
    background: var(--primary);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    display: flow-root;
    color: #fff;
}

.women-box h2 {
    padding-bottom: 0px !important;
}
.price001 {
    margin-top: 4px;
}
.women-box:hover
{
    color: #fff;
    background-color: var(--primary);
}
.women-box:hover .price001,
.women-box:hover h2,
.women-box:hover .women-box-content
{
    color: #fff;
}
.women-box:hover .addtocart1 a
{
    background:#fff;
    color:var(--primary);
    font-weight: 600;
}
.slider_first {
    position: absolute;
    bottom: 64px;
    margin: auto;
    left: 0;
    right: 0;
}
.client_btn {
    background: var(--primary);
    width: 24px;
}
.logo img {
    width: 180px;
}
.single-product .woocommerce span.onsale {
    left: 13.4%;
    top: 0px;
}
.testimonial-block .inner-box .upper-box .icon img {
    width: 77px;
    border-radius: 50%;
}
/* .process01. */
.yith-quick-view-content.woocommerce div.summary .single_variation,
.yith-quick-view-content.woocommerce div.summary table.variations td {
    margin: 0px !important;
}
.header-top .info-list i {
    margin-right: 5px;
}
.cta-header.heading1 h2 {
    font-weight: 600;
}

.single-contact-info {
    background: #ffffff;
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.11);
    padding: 50px;
    border-radius: 10px;
    margin-top: 70px;
    border: 1px solid var(--primary);
    padding-left: 8px;
    padding-right: 7px;
    height: 219px;
}
.single-contact-info:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    background: #720019a6;
    width: 100%;
    height: 70%;
    z-index: -1;
    transform: scaleY(1.1) scaleX(0.85);
    border-radius: 5px;
}
.info-icon {
    width: 100px;
    height: 100px;
    line-height: 103px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: -115px;
}
 .info-icon i {
    font-size: 40px;
}
.single-contact-info:after {
    content: "";
    position: absolute;
    left: 1px;
    top: 75px;
    background: var(--primary);
    width: 100%;
    height: 217px;
    z-index: -1;
    transform: scaleY(1.05) scaleX(0.92);
    border-radius: 5px;
}
.single-contact-info:hover {
    box-shadow: 4px 4px 5px 4px var(--primary);
    transition: 1s;
}
.relative
{
    position: relative;
}
.info-content .title {
    font-size: 18px;
    line-height: 36px;
    color: var(--primary);
    margin-top: 15px;
    font-weight: 800;
}
.info-content p {
    font-size: 18px;
    line-height: 36px;    
    font-weight: 700;
    color: #000;
    -webkit-text-decoration-color: #7faeef;
    text-decoration-color: #7faeef;
}