:root {
    --vs-theme-color1: #70167e;
    --vs-theme-color1-rgb: 112, 22, 126;
    --vs-theme-color2: #D18109;
    --vs-theme-color2-rgb: 209, 129, 9;
    --vs-theme-color3: #a60c56;
    --vs-theme-color4: #4f830e;
    --vs-theme-color5: #f8931f;
    --vs-theme-color6: #F6F1E4;
    --vs-theme-color7: #FFEFE4;
    --vs-theme-color8: #FFEFE4;
    --vs-title-color: #25283e;
    --vs-title-color-rgb: 37, 40, 62;
    --vs-text-color: #e1e1e1;
    --vs-body-color: #5b5a7b;
    --vs-body-color-rgb: 91, 90, 123;
    --vs-smoke-color: #eff1f5;
    --vs-black-color: #000000;
    --vs-white-color: #ffffff;
    --vs-white-color-rgb: 255, 255, 255;
    --vs-yellow-color: #fec624;
    --vs-success-color: #28a745;
    --vs-error-color: #dc3545;
    --vs-border-color: #e0e0e0;
    --vs-title-font: "Baloo 2", sans-serif;
    --vs-body-font: "Roboto", sans-sreif;
    --vs-special-font: "Amatic SC", sans-serif;
    --vs-icon-font: "Font Awesome 6 Pro";
    --vs-main-container: 1220px;
    --vs-container-gutters: 30px;
    --vs-section-space: 120px;
    --vs-section-space-mobile: 80px;
    --vs-section-title-space: 80px;
    --ripple-ani-duration: 5s;
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    30% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(50px) translateX(100px) rotate(45deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        transform-origin: center center;
    }
}

@keyframes shapeMover {
    0%, 100% {
        transform: perspective(400px) translateY(0px) rotate(0deg) translateZ(0px) translateX(0px);
    }

    50% {
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes banner3Shake {
    0% {
        transform: rotate3d(0, 1, 0, 0deg);
    }

    30% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    60% {
        transform: rotate3d(1, 0, 0, 0deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

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

@keyframes squareMover {
    0%, 100% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20%, 60% {
        transform: translate(20px, 40px) rotate(180deg);
    }

    30%, 80% {
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes treeMove {
    0%, 100% {
        transform: rotate(0deg) translateX(0px);
    }

    25%, 75% {
        transform: rotate(5deg) translateX(15px);
    }

    50% {
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes leafMove {
    0%, 100% {
        transform: rotate(0deg) translateX(0px);
    }

    25%, 75% {
        transform: rotate(-2deg) translateX(5px);
    }

    50% {
        transform: rotate(-4deg) translateX(10px);
    }
}

@keyframes arrowMove {
    0%, 100% {
        transform: rotate(0deg) translateY(0px);
    }

    25%, 75% {
        transform: rotate(-2deg) translateY(10px);
    }

    50% {
        transform: rotate(-4deg) translateY(15px);
    }
}

@keyframes carMove {
    0%, 100% {
        transform: rotate(0deg) translateX(0px);
    }

    25%, 75% {
        transform: rotate(-3deg) translateX(20px);
    }

    50% {
        transform: rotate(-6deg) translateX(40px);
    }
}

@keyframes messageMove {
    0%, 100% {
        transform: translateX(0px);
    }

    25%, 75% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(10px);
    }
}

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

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

@keyframes flowerRotate {
    0%, 100% {
        transform: rotate(0deg);
    }

    25%, 75% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

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

    100% {
        transform: translateX(-30px);
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

html, body {
    scroll-behavior: auto !important;
}

body {
    font-size: 17px;
    font-weight: 400;
    color: var(--vs-body-color);
    font-family: var(--vs-body-font);
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 24px;
    }
}

.bubblegum-sans-regular {
    font-family: "Bubblegum Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

iframe {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    width: 100%;
}

.slick-slide:focus, button:focus, a:focus, a:active, input, input:hover, input:focus, input:active, textarea, textarea:hover, textarea:focus, textarea:active {
    outline: none;
}

input:focus {
    outline: none;
    box-shadow: none;
}

img:not([draggable]), embed, object, video {
    max-width: 100%;
}

ul {
    list-style-type: disc;
    line-height: 28px;
    margin-left: 20px;
}

ol {
    list-style-type: decimal;
}

table {
    margin: 0px 0px 1.5em;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
    border: 1px solid var(--vs-border-color);
}

th {
    font-weight: 700;
    font-family: var(--vs-title-font);
    color: var(--vs-title-color);
}

td, th {
    border: 1px solid var(--vs-border-color);
    padding: 9px 12px;
}

a {
    color: var(--vs-theme-color1);
    text-decoration: none;
    outline: 0px;
    transition: 0.4s;
}

a:hover {
    color: var(--vs-title-color);
}

a:active, a:focus, a:hover, a:visited {
    text-decoration: none;
    outline: 0px;
}

button {
    transition: 0.4s;
}

img {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    max-width: 100%;
}

ins {
    text-decoration: none;
}

pre {
    background: rgb(245, 245, 245);
    color: rgb(102, 102, 102);
    font-size: 14px;
    margin: 20px 0px;
    overflow: auto;
    padding: 20px;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

span.ajax-loader:empty, p:empty {
    display: none;
}

p {
    color: var(--vs-body-color);
    line-height: 1.64;
}

@media (max-width: 767px) {
    p {
        line-height: 1.73;
    }
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, p a, span a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
    font-family: var(--vs-title-font);
    color: var(--vs-title-color);
    text-transform: none;
    font-weight: 900;
    line-height: 1.4;
}

h1, .h1 {
    font-size: clamp(2.5rem, 1rem + 5vw, 5rem);
    line-height: 1.2;
}

h2, .h2 {
    font-size: clamp(2rem, 0.5rem + 4vw, 4.5rem);
    line-height: 1.25;
}

h3, .h3 {
    font-size: clamp(1.8rem, 0.5rem + 3vw, 3.6rem);
    line-height: 1.3;
}

h4, .h4 {
    font-size: clamp(1.75rem, 0.5rem + 3vw, 3rem);
    line-height: 1.4;
}

h5, .h5 {
    font-size: clamp(1.3rem, 0.3rem + 2vw, 2.3rem);
    line-height: 1.5;
}

h6, .h6 {
    font-size: clamp(1.125rem, 0.25rem + 1.5vw, 1.843rem);
    line-height: 1.6;
}

p.has-drop-cap {
    margin-bottom: 20px;
}

.page--item p:last-child .alignright {
    clear: right;
}

.blog-title, .pagi-title, .breadcumb-title {
    word-break: break-word;
}

.blocks-gallery-caption, .wp-block-embed figcaption, .wp-block-image figcaption {
    color: var(--vs-body-color);
}

.bypostauthor, .gallery-caption {
    display: block;
}

.page-links, .clearfix {
    clear: both;
}

.page--item {
    margin-bottom: 30px;
}

.page--item p {
    line-height: 1.8;
}

.content-none-search {
    margin-top: 30px;
}

.wp-block-button.aligncenter {
    text-align: center;
}

.alignleft {
    display: inline;
    float: left;
    margin-bottom: 10px;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-bottom: 10px;
    margin-left: 1.5em;
    margin-right: 1em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.gallery {
    margin-bottom: 1.5em;
    width: 100%;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    padding: 0px 5px;
}

.wp-block-columns {
    margin-bottom: 1em;
}

figure.gallery-item {
    margin-bottom: 10px;
    display: inline-block;
}

figure.wp-block-gallery {
    margin-bottom: 14px;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
    font-size: 12px;
    color: var(--vs-body-color);
    line-height: 1.5;
    padding: 0.5em 0px;
}

.wp-block-cover p:not(.has-text-color), .wp-block-cover-image-text, .wp-block-cover-text {
    color: var(--vs-white-color);
}

.wp-block-cover {
    margin-bottom: 15px;
}

.wp-caption-text {
    text-align: center;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption .wp-caption-text {
    margin: 0.5em 0px;
    font-size: 14px;
}

.wp-block-media-text, .wp-block-media-text.alignwide, figure.wp-block-gallery {
    margin-bottom: 30px;
}

.wp-block-media-text.alignwide {
    background-color: var(--vs-smoke-color);
}

.editor-styles-wrapper .has-large-font-size, .has-large-font-size {
    line-height: 1.4;
}

.wp-block-latest-comments a {
    color: inherit;
}

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

.wp-block-button:last-child {
    margin-bottom: 0px;
}

.wp-block-button .wp-block-button__link {
    color: rgb(255, 255, 255);
}

.wp-block-button .wp-block-button__link:hover {
    color: rgb(255, 255, 255);
    background-color: var(--vs-theme-color1);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background-color: transparent;
    border-color: var(--vs-title-color);
    color: var(--vs-title-color);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: rgb(255, 255, 255);
    background-color: var(--vs-theme-color1);
    border-color: var(--vs-theme-color1);
}

.wp-block-button.is-style-squared .wp-block-button__link {
    border-radius: 0px;
}

ol.wp-block-latest-comments li {
    margin: 15px 0px;
}

ul.wp-block-latest-posts {
    padding: 0px;
    margin: 0px 0px 15px;
}

ul.wp-block-latest-posts a {
    color: inherit;
}

ul.wp-block-latest-posts a:hover {
    color: var(--vs-theme-color1);
}

ul.wp-block-latest-posts li {
    margin: 15px 0px;
}

.wp-block-search {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.wp-block-search .wp-block-search__input {
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.1);
    height: 65px;
    padding-left: 24px;
    flex: 1 1 0%;
    min-width: 0px;
    border-radius: 12px 0px 0px 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--vs-body-font), serif;
    color: var(--vs-title-color);
}

.wp-block-search .wp-block-search__input::placeholder {
    color: var(--vs-title-color);
}

.wp-block-search .wp-block-search__button {
    margin: 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    height: 65px;
    width: 59px;
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 0px 12px 12px 0px;
}

.wp-block-search .wp-block-search__button:hover {
    background-color: var(--vs-theme-color1);
    opacity: 0.8;
}

ul.wp-block-rss a {
    color: inherit;
}

.wp-block-group.has-background {
    padding: 15px 15px 1px;
    margin-bottom: 30px;
}

.wp-block-table td, .wp-block-table th {
    border-color: rgba(0, 0, 0, 0.1);
}

.wp-block-table.is-style-stripes {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.logged-in .will-sticky .sticky-active.active, .logged-in .preloader .vs-btn {
    top: 32px;
}

@media (max-width: 782px) {
    .logged-in .will-sticky .sticky-active.active, .logged-in .preloader .vs-btn {
        top: 46px;
    }
}

@media (max-width: 600px) {
    .logged-in .will-sticky .sticky-active.active, .logged-in .preloader .vs-btn {
        top: 0px;
    }
}

.post-password-form .theme-input-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 20px;
}

.post-password-form .theme-input-group .theme-input-style {
    width: 100%;
    max-width: calc(100% - 120px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 50px;
    padding-left: 20px;
}

.post-password-form .theme-input-group .submit-btn {
    margin: 0px;
    width: 120px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    height: 50px;
    color: rgb(255, 255, 255);
    background-color: var(--vs-theme-color1);
}

.post-password-form .theme-input-group .submit-btn:hover {
    background-color: var(--vs-title-color);
    opacity: 0.8;
}

.page-links {
    clear: both;
    margin: 0px 0px 1.5em;
    padding-top: 1em;
}

.page-links > .page-links-title {
    margin-right: 10px;
}

.page-links > span:not(.page-links-title):not(.screen-reader-text), .page-links > a {
    display: inline-block;
    padding: 5px 13px;
    background-color: var(--vs-white-color);
    color: var(--vs-title-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-right: 10px;
}

.page-links > span:not(.page-links-title):not(.screen-reader-text):hover, .page-links > a:hover {
    opacity: 0.8;
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color1);
    border-color: transparent;
}

.page-links > span:not(.page-links-title):not(.screen-reader-text).current, .page-links > a.current {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    border-color: transparent;
}

.page-links span.screen-reader-text {
    display: none;
}

.blog-single .wp-block-archives-dropdown {
    margin-bottom: 30px;
}

.blog-single.format-quote, .blog-single.format-link, .blog-single.tag-sticky-2, .blog-single.sticky {
    border-color: transparent;
    position: relative;
}

.blog-single.format-quote .blog-content, .blog-single.format-link .blog-content, .blog-single.tag-sticky-2 .blog-content, .blog-single.sticky .blog-content {
    background-color: var(--vs-smoke-color);
    padding: 40px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.blog-single.format-quote .blog-content::before, .blog-single.format-link .blog-content::before, .blog-single.tag-sticky-2 .blog-content::before, .blog-single.sticky .blog-content::before {
    display: none;
}

.blog-single.format-quote::before, .blog-single.format-link::before, .blog-single.tag-sticky-2::before, .blog-single.sticky::before {
    content: "";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-size: 5rem;
    opacity: 0.3;
    right: 15px;
    line-height: 1;
    top: 15px;
    color: var(--vs-theme-color1);
    z-index: 1;
}

.blog-single.tag-sticky-2::before, .blog-single.sticky::before {
    content: "Featured";
    right: 0px;
    top: 0px;
    font-size: 18px;
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color1);
    font-family: var(--vs-title-font);
    opacity: 1;
    text-transform: capitalize;
    padding: 10px 23px;
    font-weight: 400;
}

.blog-single.format-quote::before {
    content: "";
}

.blog-single .blog-content .wp-block-categories-dropdown.wp-block-categories, .blog-single .blog-content .wp-block-archives-dropdown {
    display: block;
    margin-bottom: 30px;
}

.blog-details .blog-single::before {
    display: none;
}

.blog-details .blog-single .blog-content {
    background-color: transparent;
    overflow: hidden;
}

.blog-details .blog-single.format-chat .blog-meta {
    margin-bottom: 20px;
}

.blog-details .blog-single.format-chat .blog-content > p:nth-child(2n) {
    background: var(--vs-smoke-color);
    padding: 5px 20px;
}

.blog-details .blog-single.tag-sticky-2, .blog-details .blog-single.sticky, .blog-details .blog-single.format-quote, .blog-details .blog-single.format-link {
    box-shadow: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background-color: transparent;
}

.blog-details .blog-single.tag-sticky-2::before, .blog-details .blog-single.sticky::before, .blog-details .blog-single.format-quote::before, .blog-details .blog-single.format-link::before {
    display: none;
}

.vs-search {
    background-color: rgb(243, 243, 243);
    margin-bottom: 30px;
    border: 1px solid rgb(243, 243, 243);
}

.vs-search .search-grid-content {
    padding: 30px;
}

@media (max-width: 767px) {
    .vs-search .search-grid-content {
        padding: 20px;
    }
}

.vs-search .search-grid-title {
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: -0.2em;
}

.vs-search .search-grid-title a {
    color: inherit;
}

.vs-search .search-grid-title a:hover {
    color: var(--vs-theme-color1);
}

.vs-search .search-grid-meta > * {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
}

.vs-search .search-grid-meta > :last-child {
    margin-right: 0px;
}

.vs-search .search-grid-meta a, .vs-search .search-grid-meta span {
    color: var(--vs-body-color);
}

@media (max-width: 1199px) {
    .blog-single.format-quote::before, .blog-single.format-link::before, .blog-single.tag-sticky-2::before, .blog-single.sticky::before {
        font-size: 14px;
        padding: 8px 16px;
    }

    .blog-single.format-quote .blog-content, .blog-single.format-link .blog-content, .blog-single.tag-sticky-2 .blog-content, .blog-single.sticky .blog-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .blog-single.format-quote::before, .blog-single.format-link::before, .blog-single.tag-sticky-2::before, .blog-single.sticky::before {
        font-size: 14px;
        padding: 8px 16px;
    }

    .blog-single.format-quote .blog-content, .blog-single.format-link .blog-content, .blog-single.tag-sticky-2 .blog-content, .blog-single.sticky .blog-content {
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .wp-block-search .wp-block-search__input {
        max-width: 100%;
        margin-bottom: 0px;
    }

    .wp-block-latest-comments {
        padding-left: 10px;
    }

    .page--content.clearfix + .vs-comment-form {
        margin-top: 24px;
    }
}

@media only screen and (min-width: 1300px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: calc(var(--vs-main-container) + var(--vs-container-gutters));
        padding-left: calc(var(--vs-container-gutters) / 2);
        padding-right: calc(var(--vs-container-gutters) / 2);
    }
}

@media only screen and (max-width: 1600px) {
    .container-fluid.px-0 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .container-fluid.px-0 .row {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
}

@media (min-width: 1399px) {
    .container-style2 {
        max-width: 1920px;
        overflow: hidden;
        padding-left: 0px;
        padding-right: 0px;
    }
}

.container-style3 {
    --vs-main-container: 1445px;
}

@media (min-width: 1500px) and (max-width: 1921px) {
    .container-style1 {
        max-width: 1576px;
        overflow: hidden;
        margin-right: 0px;
        padding-right: 0px;
    }
}

.container--custom {
    --vs-main-container: 1450px;
}

.slick-track > [class*="col"] {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

@media (min-width: 767px) {
    .row:not([class*="gx-"]) {
        --bs-gutter-x: 30px;
    }
}

.gy-gx {
    --bs-gutter-y: var(--bs-gutter-x);
}

.gy-30 {
    --bs-gutter-y: 30px;
}

.gy-20 {
    --bs-gutter-y: 20px;
}

.gx-15 {
    --bs-gutter-x: 15px;
}

@media (min-width: 1199px) {
    .gx-45 {
        --bs-gutter-x: 45px;
    }

    .gx-60 {
        --bs-gutter-x: 60px;
    }

    .gx-50 {
        --bs-gutter-x: 50px;
    }

    .gx-70 {
        --bs-gutter-x: 70px;
    }

    .gx-80 {
        --bs-gutter-x: 80px;
    }
}

@media (min-width: 1399px) {
    .gx-20 {
        --bs-gutter-x: 20px;
    }

    .gx-30 {
        --bs-gutter-x: 30px;
    }

    .gx-40 {
        --bs-gutter-x: 40px;
    }
}

input[type="email"] {
    text-transform: lowercase;
}

input[type="email"]::placeholder {
    text-transform: capitalize;
}

.slick-track > [class*="col"] {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.slick-track {
    min-width: 100%;
}

.slick-slide img {
    display: inline-block;
}

.slick-dots {
    list-style-type: none;
    padding: 2px 0px;
    margin: 38px 0px;
    line-height: 0;
    text-align: center;
    height: max-content;
}

.slick-dots li {
    display: inline-block;
    margin-right: 25px;
}

.slick-dots li:last-child {
    margin-right: 0px;
}

.slick-dots button {
    font-size: 0px;
    padding: 0px;
    width: 8px;
    height: 8px;
    line-height: 0;
    border-radius: 9999px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background-color: var(--dots-bg, #d8d8d8);
    transition: 0.4s;
    position: relative;
}

.slick-dots button:hover {
    border-color: var(--vs-theme-color1);
}

.slick-dots button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0px 0px -15px;
    border: 2px solid var(--vs-theme-color1);
    border-radius: 50%;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.slick-dots .slick-active button {
    background-color: var(--vs-theme-color1);
}

.slick-dots .slick-active button::before {
    opacity: 1;
    visibility: visible;
}

.slick-arrow {
    display: inline-block;
    padding: 0px;
    background-color: var(--vs-white-color);
    position: absolute;
    top: 50%;
    border: 1px solid var(--vs-smoke-color);
    left: var(--pos-x, -100px);
    width: var(--icon-size, 50px);
    height: var(--icon-size, 50px);
    font-size: var(--vs-icon-font-size, 18px);
    margin-top: calc(var(--icon-size, 50px) / -2);
    z-index: 2;
    border-radius: 50%;
}

.slick-arrow.default {
    position: relative;
    --pos-x: 0;
    margin-top: 0px;
}

.slick-arrow.slick-next {
    right: var(--pos-x, -100px);
    left: auto;
}

.slick-arrow:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    border-color: transparent;
}

.arrow-margin .slick-arrow {
    top: calc(50% - 30px);
}

.arrow-wrap .slick-arrow {
    opacity: 0;
    visibility: hidden;
}

.arrow-wrap:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.dot-style2 .slick-dots {
    margin-top: 10px;
    margin-bottom: 30px;
}

.dot-style2 .slick-dots button {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background-color: var(--vs-theme-color1);
}

.dot-style2 .slick-dots button::before {
    display: none;
}

.dot-style2 .slick-dots button:hover {
    background-color: var(--vs-title-color);
}

.dot-style2 .slick-dots li {
    margin: 0px 5px;
}

.dot-style2 .slick-dots li.slick-active button {
    width: 40px;
}

@media (max-width: 1500px) {
    .slick-arrow {
        --arrow-horizontal: -20px;
    }
}

@media (max-width: 1399px) {
    .slick-arrow {
        --arrow-horizontal: 40px;
    }
}

@media (max-width: 991px) {
    .slick-arrow {
        --icon-size: 40px;
        margin-right: 40px;
    }

    .slick-arrow.slick-next {
        margin-right: 0px;
        margin-left: 40px;
    }

    .slick-dots {
        margin: 8px 0px 38px;
    }
}

.nav-prev-1, .nav-next-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: auto;
}

.nav-prev-1::after, .nav-next-2::after {
    display: none;
}

.nav-prev-1, .nav-next-2 {
}

@media (max-width: 767px) {
    .nav-prev-1, .nav-next-2 {
        display: none;
    }
}

.nav-prev-1 svg, .nav-prev-1 img, .nav-next-2 svg, .nav-next-2 img {
    transition: 0.3s ease-in-out;
    transform-origin: center center;
    transform: scale(1);
    color: var(--vs-title-color);
}

.nav-prev-1:hover svg, .nav-prev-1:hover img, .nav-next-2:hover svg, .nav-next-2:hover img {
    transform: scale(1.1);
    color: var(--vs-theme-color1);
    opacity: 1;
}

.nav-prev-1 {
    left: -118px;
}

@media (max-width: 1500px) {
    .nav-prev-1 {
        display: none;
    }
}

.nav-next-2 {
    right: -118px;
}

@media (max-width: 1500px) {
    .nav-next-2 {
        display: none;
    }
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity 300ms;
    transform: translate3d(0px, 0px, 0px);
    z-index: 10;
    bottom: 10px;
    left: 0px;
    width: 100%;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgb(0, 0, 0);
    opacity: 0.3;
    margin: 0px 4px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--vs-theme-color2);
}

.vs-swiper--navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vs-swiper--button {
    --circle-size: 55px;
    backdrop-filter: blur(2px);
    width: var(--circle-size);
    height: var(--circle-size);
    min-width: var(--circle-size);
    min-height: var(--circle-size);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vs-title-color);
    position: relative;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    transition: 0.4s ease-in-out;
}

.vs-swiper--button::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 3px dashed var(--vs-title-color);
    border-radius: 50%;
    transition: 0.4s ease-in-out;
}

.vs-swiper--button:hover {
    background: var(--vs-theme-color2);
    color: var(--vs-white-color);
}

.vs-swiper--button:hover::before {
    transform: rotate(360deg);
}

.vs-carousel {
    display: flex;
    justify-content: center;
}

.vs-carousel--class {
    padding-right: 7px;
    padding-left: 2px;
}

.vs-menu-wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 100%;
    height: 100%;
    transition: 0.8s;
    opacity: 0;
    visibility: hidden;
}

.vs-menu-wrapper .vs-header__right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 20px;
    border-bottom: 1px solid rgb(253, 237, 241);
}

.vs-menu-wrapper .mobile-logo {
    padding-bottom: 30px;
    padding-top: 40px;
    display: block;
    text-align: center;
    background-color: rgba(173, 136, 88, 0.1);
}

.vs-menu-wrapper .mobile-logo svg {
    max-width: 185px;
}

.vs-menu-wrapper .vs-menu-toggle {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0px;
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 18px;
    z-index: 1;
    border-radius: 50%;
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
}

.vs-menu-wrapper .vs-menu-toggle:hover {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
}

.vs-menu-wrapper .vs-menu-area {
    width: 70%;
    background-color: rgb(255, 255, 255);
    border-right: 3px solid var(--vs-theme-color1);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    z-index: 1;
}

.vs-menu-wrapper.vs-body-visible {
    opacity: 1;
    visibility: visible;
}

.vs-menu-wrapper.vs-body-visible .vs-menu-area {
    left: 0px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

.vs-mobile-menu {
    overflow-y: scroll;
    max-height: calc(-70px + 100vh);
    padding-bottom: 0px;
    margin-top: 33px;
    text-align: left;
}

.vs-mobile-menu .vs-svg-assets svg {
    display: none;
}

.vs-mobile-menu .new-label {
    margin-left: 5px;
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.vs-mobile-menu ul {
    margin: 0px;
    padding: 0px;
}

.vs-mobile-menu ul li {
    border-bottom: 1px solid rgb(253, 237, 241);
    list-style-type: none;
}

.vs-mobile-menu ul li li:first-child {
    border-top: 1px solid rgb(253, 237, 241);
}

.vs-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0px;
    line-height: 1;
    font-size: 17px;
    text-transform: capitalize;
    color: var(--vs-title-color);
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.vs-mobile-menu ul li a::before {
    content: "";
    font-family: var(--vs-icon-font);
    position: relative;
    left: 0px;
    top: 0px;
    margin-right: 10px;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.vs-mobile-menu ul li.vs-active > a {
    color: var(--vs-theme-color1);
}

.vs-mobile-menu ul li.vs-active > a::before {
    transform: rotate(90deg);
}

.vs-mobile-menu ul li ul li {
    padding-left: 10px;
}

.vs-mobile-menu ul li ul li:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand {
    position: absolute;
    right: 0px;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    box-shadow: rgba(112, 22, 126, 0.5) 0px 0px 20px -8px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand::before {
    content: "";
    font-family: var(--vs-icon-font);
}

.vs-mobile-menu ul .vs-item-has-children.vs-active > a {
    color: var(--vs-theme-color2);
}

.vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand {
    background-color: var(--vs-theme-color2);
}

.vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand::before {
    content: "";
}

.vs-mobile-menu > ul {
    padding: 0px 20px;
}

.vs-mobile-menu > ul > li:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.vs-menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0px;
    font-size: 24px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    display: inline-block;
    background-color: rgb(242, 246, 255);
    color: var(--vs-theme-color1);
    border-radius: 5px;
}

.vs-menu-toggle.style2 {
    background-color: var(--vs-theme-color1);
    border-radius: 50%;
    color: var(--vs-white-color);
    width: 55px;
    height: 55px;
}

@media (max-width: 400px) {
    .vs-menu-wrapper .vs-menu-area {
        width: 100%;
        max-width: 270px;
    }

    .vs-mobile-menu > ul {
        padding: 0px 20px;
    }
}

.email-subscription__form {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0px auto 30px;
    background-color: rgb(217, 217, 217);
    border-radius: 50px;
    padding: 8px 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px;
    overflow: hidden;
}

.email-subscription__input {
    flex: 1 1 0%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
    background-color: transparent;
    outline: none;
    color: rgb(51, 51, 51);
}

.email-subscription__input::placeholder {
    color: rgb(153, 153, 153);
    font-size: 15px;
}

.email-subscription__right {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.email-subscription__btn {
    background-color: var(--vs-theme-color1);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-subscription__btn:hover {
    background-color: rgb(140, 198, 15);
    transform: scale(1.05);
}

.email-subscription__btn svg {
    display: block;
    fill: rgb(255, 255, 255);
    transition: fill 0.3s;
}

@media (max-width: 576px) {
    .email-subscription__form {
        flex-direction: column;
        border-radius: 20px;
        padding: 12px;
    }

    .email-subscription__input {
        width: 100%;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .email-subscription__right {
        width: 100%;
        justify-content: center;
        margin-left: 0px;
    }

    .email-subscription__btn {
        border-radius: 12px;
        width: 100%;
    }
}

.preloader {
    position: fixed;
    inset: 0px;
    z-index: 999;
    background-color: var(--vs-white-color);
}

.preloader .vs-btn {
    padding: 15px 20px;
    border-radius: 0px;
    font-size: 14px;
}

.preloader-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.preloader-inner img {
    display: block;
    margin: 0px auto 10px;
}

.loader {
    animation: 1.5s ease 0s infinite normal none running loaderspin;
    height: 50px;
    width: 50px;
    display: block;
    margin: 0px auto;
}

.loader::before, .loader::after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}

.loader::before {
    animation: 1.5s ease 0s infinite normal none running ball1;
    background-color: var(--vs-title-color);
    box-shadow: 30px 0 0 var(--vs-theme-color1);
    margin-bottom: 10px;
}

.loader::after {
    animation: 1.5s ease 0s infinite normal none running ball2;
    background-color: var(--vs-theme-color1);
    box-shadow: 30px 0 0 var(--vs-title-color);
}

@keyframes loaderspin {
    0% {
        transform: rotate(0deg) scale(0.8);
    }

    50% {
        transform: rotate(360deg) scale(1);
    }

    100% {
        transform: rotate(720deg) scale(0.8);
    }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 var(--vs-theme-color1);
    }

    50% {
        box-shadow: 0 0 0 var(--vs-theme-color1);
        margin-bottom: 0px;
        transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 var(--vs-theme-color1);
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 var(--vs-title-color);
    }

    50% {
        box-shadow: 0 0 0 var(--vs-title-color);
        margin-top: -20px;
        transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 var(--vs-title-color);
        margin-top: 0px;
    }
}

.vs-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    font-family: var(--vs-title-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 12.5px 24px;
    z-index: 1;
    overflow: hidden;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

@media (max-width: 991px) {
    .vs-btn {
        padding: 18px 20px;
    }
}

.vs-btn__border {
    position: absolute;
    inset: 4px 5px;
    border-radius: inherit;
    background-color: transparent;
    border: 2px dashed var(--vs-white-color);
    z-index: 1;
    opacity: 0.4;
    transition: 0.4s;
}

.vs-btn::after, .vs-btn::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--vs-theme-color1);
    transition: 0.5s;
    z-index: -1;
    border-radius: inherit;
}

.vs-btn::before {
    transform: rotateX(90deg);
}

.vs-btn::after {
    transform: rotateY(90deg);
}

.vs-btn > i {
    margin-left: 8px;
}

.vs-btn.style2 {
    background-color: var(--vs-white-color);
    color: var(--vs-theme-color1);
}

.vs-btn.style4, .vs-btn.style3 {
    background-color: var(--vs-theme-color2);
    color: var(--vs-theme-color1);
}

.vs-btn.style3 {
    padding: 14px 23.5px;
}

.vs-btn.style4 {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
}

.vs-btn.style4::before, .vs-btn.style4::after {
    background-color: var(--vs-theme-color2);
}

.vs-btn:hover {
    color: var(--vs-white-color);
}

.vs-btn:hover::before {
    transform: rotateX(0deg);
}

.vs-btn:hover::after {
    transform: rotateY(0deg);
}

.icon-btn {
    display: inline-block;
    width: var(--btn-size, 67px);
    height: var(--btn-size, 67px);
    line-height: var(--btn-size, 67px);
    font-size: var(--btn-font-size, 20px);
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    text-align: center;
    border-radius: 50%;
    padding: 0px;
}

.icon-btn.style2 {
    border: 2px solid var(--vs-white-color);
    color: var(--vs-white-color);
    background-color: transparent;
}

.icon-btn.style2:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
}

.icon-btn.style4, .icon-btn.style3 {
    --btn-size: 55px;
    background-color: rgb(242, 246, 255);
    color: var(--vs-theme-color1);
    border-radius: 5px;
}

.icon-btn.style4 {
    background-color: var(--vs-white-color);
}

.icon-btn.style5 {
    background-color: var(--vs-white-color);
    color: var(--vs-title-color);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 24px;
}

.icon-btn.style5:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    box-shadow: none;
}

.icon-btn.style6 {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    --btn-size: 55px;
    --btn-font-size: 17px;
}

.icon-btn:hover {
    background-color: var(--vs-title-color);
    color: var(--vs-white-color);
    border-color: transparent;
}

.play-btn {
    --icon-size: 85px;
    display: inline-block;
    position: relative;
    z-index: 1;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background-color: transparent;
    padding: 0px;
}

.play-btn > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size, 124px);
    height: var(--icon-size, 124px);
    line-height: var(--icon-size, 124px);
    font-size: var(--vs-icon-font-size, 1.5em);
    text-align: center;
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: 0.4s;
}

.play-btn::after, .play-btn::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: var(--vs-theme-color2);
    z-index: -1;
    border-radius: 50%;
    transition: 0.4s;
}

.play-btn::after {
    animation-delay: 2s;
}

.play-btn:hover::after, .play-btn:hover::before, .play-btn:hover i {
    background-color: var(--vs-title-color);
    color: var(--vs-white-color);
}

.link-btn {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 2px;
    margin-bottom: -2px;
    text-transform: uppercase;
}

.link-btn i {
    margin-left: 7px;
    font-size: 0.9rem;
}

.link-btn::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0px;
    height: 1px;
    background-color: var(--vs-theme-color1);
    transition: 0.4s;
}

.link-btn:hover {
    color: var(--vs-theme-color1);
}

.link-btn:hover::before {
    width: 100%;
}

.scroll-btn {
    position: fixed;
    bottom: 300px;
    right: 30px;
    z-index: 94;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    border-radius: 50%;
}

.scroll-btn i {
    display: inline-block;
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    text-align: center;
    font-size: 16px;
    width: var(--btn-size, 50px);
    height: var(--btn-size, 50px);
    line-height: var(--btn-size, 50px);
    z-index: 2;
    border-radius: inherit;
    position: relative;
    transition: 0.8s;
}

.scroll-btn::before {
    content: "";
    position: absolute;
    left: var(--extra-shape, -6px);
    top: var(--extra-shape, -6px);
    right: var(--extra-shape, -6px);
    bottom: var(--extra-shape, -6px);
    background-color: transparent;
    border-radius: inherit;
    z-index: 1;
    border: 2px dashed var(--vs-theme-color1);
    animation: 13s linear 0s infinite normal none running spin;
}

.scroll-btn:focus i, .scroll-btn:hover i {
    background-color: var(--vs-title-color);
    color: var(--vs-white-color);
}

.scroll-btn.show {
    bottom: 120px;
    opacity: 1;
    visibility: visible;
}

.scroll-btn {
}

@media (max-width: 767px) {
    .scroll-btn {
        --btn-size: 40px;
        --extra-shape: -4px;
        right: 15px;
        bottom: 50px;
    }

    .scroll-btn.show {
        bottom: 15px;
    }
}

.scrollToTop {
    position: fixed;
    right: 60px;
    bottom: 500px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 96;
}

.scrollToTop.show {
    bottom: 60px;
    opacity: 1;
    visibility: visible;
}

.sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: var(--vs-white-color);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 10px 0px;
}

@media (max-width: 1199px) {
    .play-btn.style4 {
        --icon-size: 80px;
        --vs-icon-font-size: 20px;
    }
}

@media (max-width: 767px) {
    .play-btn {
        --icon-size: 60px;
    }

    .scrollToTop {
        right: 20px;
    }

    .scrollToTop.show {
        bottom: 20px;
    }
}

.vs-title {
    margin-bottom: calc(var(--vs-section-title-space) - 45px);
}

.vs-title__main {
    font-size: 3rem;
    line-height: 2.5rem;
    font-weight: 700;
    transform: translateZ(0px);
}

.vs-title__main .char {
    display: inline-block;
    will-change: transform, opacity;
}

.vs-title__main span {
    color: var(--vs-theme-color2);
}

.vs-title__main2 span {
    display: block;
    color: var(--vs-white-color);
}

.vs-title__sub {
    font-size: 23px;
    font-weight: 600;
    font-family: var(--vs-special-font);
    color: var(--vs-theme-color2);
    letter-spacing: 0.48px;
    line-height: 1;
    display: inline-block;
    margin: -4px 0px 13px;
}

.vs-title--style2 .vs-title__sub, .vs-title--style2 .vs-title__main {
    color: var(--vs-white-color);
}

.vs-title--right-text {
    padding-left: 16px;
    position: relative;
    max-width: 80%;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0px;
    margin-left: auto;
}

@media (max-width: 1199px) {
    .vs-title--right-text {
        max-width: 100%;
    }
}

.vs-title--right-text::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    width: 2px;
    height: 60px;
    background-color: var(--vs-theme-color2);
    z-index: -1;
}

.vs-middle-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 31px;
    margin-bottom: 40px;
}

.vs-middle-title span {
    height: 1px;
    width: 100%;
    background-color: rgba(var(--vs-title-color-rgb), 0.3);
}

.vs-middle-title__text {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 0px;
    flex: 0 0 auto;
}

.section-heading--no1 {
    font-size: 24px;
}

.image-scale-hover {
    overflow: hidden;
}

.image-scale-hover img {
    transition: 0.4s;
    transform: scale(1.001);
}

.image-scale-hover:hover img {
    transform: scale(1.2);
}

.alert-dismissible .btn-close {
    font-size: 18px;
    line-height: 1;
}

.z-index-step1 {
    position: relative;
    z-index: 4 !important;
}

.z-index-common {
    position: relative;
    z-index: 3;
}

.z-index-n1 {
    z-index: -1;
}

.z-index-n2 {
    z-index: 2;
}

.media-body {
    flex: 1 1 0%;
}

.fs-40 {
    font-size: 40px;
}

.badge {
    position: absolute;
    width: fit-content;
    display: inline-block;
    text-align: center;
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    padding: 0.35em 0.55em;
    border-radius: 50%;
}

.hr-style1 {
    background-color: var(--vs-white-color);
    margin: 20px 0px 30px;
}

.new-label {
    font-size: 12px;
    background-color: var(--vs-error-color);
    color: var(--vs-white-color);
    line-height: 1;
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: capitalize;
    position: relative;
    top: -1px;
}

.big-name {
    font-size: 450px;
    color: var(--vs-white-color);
    -webkit-text-stroke: 2px rgb(238, 240, 255);
    line-height: 1;
    letter-spacing: -0.08em;
    font-weight: 400;
    position: relative;
    z-index: 31;
    text-align: right;
    margin: -234px 30px -59px 0px;
}

.vs-text-bolder {
    font-weight: 900;
    font-size: 18px;
    color: var(--vs-title-color);
    text-transform: capitalize;
}

.vs-text {
    font-weight: 500;
    letter-spacing: 0.48px;
}

.vs-list {
    list-style: none;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0px;
}

.vs-list li {
    position: relative;
    text-transform: capitalize;
    padding-left: 39px;
}

.vs-list li::before {
    position: absolute;
    content: "";
    font-family: var(--vs-icon-font);
    left: 0px;
    color: var(--vs-theme-color2);
    font-size: 20px;
    top: 5px;
    line-height: 1;
}

.vs-list.style2 li {
    font-weight: 500;
    font-size: 16px;
    color: rgb(37, 40, 62);
    padding-left: 30px;
    font-family: var(--vs-body-font);
}

.vs-list.style2 li::before {
    content: "";
    font-size: 18px;
    color: var(--vs-theme-color2);
    font-weight: 700;
}

.vs-custom-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 0px 25px;
}

.vs-custom-checkbox input[type="checkbox"] {
    display: none;
}

.vs-custom-checkbox input[type="checkbox"]:checked + label::before {
    background-color: var(--vs-theme-color2);
    border-color: var(--vs-theme-color2);
    content: "Ã¢Å“â€";
    color: var(--vs-white-color);
    text-align: center;
    line-height: 24px;
    font-size: 16px;
}

.vs-custom-checkbox label {
    position: relative;
    padding-left: 36px;
    cursor: pointer;
    user-select: none;
    font-size: 18px;
    font-weight: 800;
    font-family: var(--vs-title-font);
    color: var(--vs-white-color);
    text-transform: capitalize;
}

.vs-custom-checkbox label::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid rgba(var(--vs-white-color-rgb), 0.2);
    border-radius: 4px;
    background-color: transparent;
    transition: 0.4s;
}

.column-count-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 991px) {
    .column-count-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.vs-image-effect {
    transform-style: preserve-3d;
}

.vs-image-effect__image {
    backface-visibility: hidden;
    will-change: transform;
}

.vs-image-effect__overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transform: scale(1);
    border-radius: 16px;
    mix-blend-mode: screen;
    will-change: opacity, transform, filter, background-position;
    background: linear-gradient(120deg, rgba(209, 129, 9, 0.6) 0%, rgba(112, 22, 126, 0.6) 50%, rgba(209, 129, 9, 0.6) 90%) 0% 0% / 200% 200%;
    animation: 3s linear 0s infinite normal none running shimmer;
    filter: blur(3px);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0px;
    }

    100% {
        background-position: -200% 0px;
    }
}

.font-icon {
    font-family: var(--vs-icon-font);
}

.font-title {
    font-family: var(--vs-title-font);
}

.font-body {
    font-family: var(--vs-body-font);
}

.fw-light {
    font-weight: 300;
}

.fw-normal {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-extrabold {
    font-weight: 800;
}

.fs-md {
    font-size: 18px;
}

.fs-xs {
    font-size: 14px;
}

.bg-theme {
    background-color: var(--vs-theme-color1) !important;
}

.bg-smoke {
    background-color: var(--vs-smoke-color) !important;
}

.bg-white {
    background-color: var(--vs-white-color) !important;
}

.bg-black {
    background-color: var(--vs-black-color) !important;
}

.bg-title {
    background-color: var(--vs-title-color) !important;
}

.bg-gray {
    background-color: rgb(229, 229, 229);
}

.bg-title {
    background-color: var(--vs-title-color);
}

.bg-theme-color-1 {
    background-color: var(--vs-theme-color1);
}

.background-image, [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg-fluid {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}

.bg-auto {
    background-size: auto;
}

.bg-color1 {
    background-color: var(--vs-theme-color1);
}

.bg-color2 {
    background-color: var(--vs-theme-color2);
}

.bg-color3 {
    background-color: var(--vs-theme-color3);
}

.bg-color4 {
    background-color: var(--vs-theme-color4);
}

.bg-color5 {
    background-color: var(--vs-theme-color5);
}

.bg-color6 {
    background-color: var(--vs-theme-color6);
}

.text-theme {
    color: var(--vs-theme-color1) !important;
}

.text-title {
    color: var(--vs-title-color) !important;
}

.text-body {
    color: var(--vs-body-color) !important;
}

.text-white {
    color: var(--vs-white-color) !important;
}

.text-yellow {
    color: var(--vs-yellow-color) !important;
}

.text-success {
    color: var(--vs-success-color) !important;
}

.text-error {
    color: var(--vs-error-color) !important;
}

.text-inherit, .footer-info-list .info a {
    color: inherit;
}

.text-inherit:hover, .footer-info-list .info a:hover {
    color: var(--vs-theme-color1);
}

a.text-theme:hover, .text-reset:hover {
    text-decoration: underline;
}

.vs-text-light {
    color: var(--vs-text-color);
}

.text-theme-color1 {
    color: var(--vs-theme-color1);
}

.text-theme-color2 {
    color: var(--vs-theme-color2);
}

.text-theme-color3 {
    color: var(--vs-theme-color3);
}

.text-theme-color4 {
    color: var(--vs-theme-color4);
}

.text-theme-color5 {
    color: var(--vs-theme-color5);
}

.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.position-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

[data-overlay] {
    position: relative;
}

[data-overlay] [class^="col-"], [data-overlay] [class*="col-"] {
    z-index: 1;
}

[data-overlay]::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: 1;
}

[data-overlay="theme"]::before {
    background-color: var(--vs-theme-color1);
}

[data-overlay="title"]::before {
    background-color: var(--vs-title-color);
}

[data-overlay="white"]::before {
    background-color: var(--vs-white-color);
}

[data-overlay="black"]::before {
    background-color: var(--vs-black-color);
}

[data-opacity="1"]::before {
    opacity: 0.1;
}

[data-opacity="2"]::before {
    opacity: 0.2;
}

[data-opacity="3"]::before {
    opacity: 0.3;
}

[data-opacity="4"]::before {
    opacity: 0.4;
}

[data-opacity="5"]::before {
    opacity: 0.5;
}

[data-opacity="6"]::before {
    opacity: 0.6;
}

[data-opacity="7"]::before {
    opacity: 0.7;
}

[data-opacity="8"]::before {
    opacity: 0.8;
}

[data-opacity="9"]::before {
    opacity: 0.9;
}

[data-opacity="10"]::before {
    opacity: 1;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.wow-animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadein {
    --animation-name: fadein-custom;
}

.slideinup {
    --animation-name: slideinup;
}

.slideindown {
    --animation-name: slideindown;
}

.slideinleft {
    --animation-name: slideinleft;
}

.slideinright {
    --animation-name: slideinright;
}

.spin {
    --animation-name: spin;
}

.animated {
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-name: var(--animation-name);
}

.ripple-animation, .vs-videoh7__button2.play-btn::after, .vs-videoh7__button2.play-btn::before, .vs-video__button2.play-btn::after, .vs-video__button2.play-btn::before, .play-btn::after, .play-btn::before {
    animation-duration: var(--ripple-ani-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    30% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes slideinup {
    0% {
        opacity: 0;
        transform: translateY(70px);
    }

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

@keyframes slideindown {
    0% {
        opacity: 0;
        transform: translateY(-70px);
    }

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

@keyframes slideinleft {
    0% {
        opacity: 0;
        transform: translateX(-70px);
    }

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

@keyframes slideinright {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }

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

@keyframes fadein-custom {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

    50% {
        transform: rotate(90deg);
    }

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

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

.vs-fade-animation {
    opacity: 0;
    transform: translateY(30px);
}

.vs-x-anim {
    animation-name: vs-x-anim;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes vs-x-anim {
    0% {
        transform: translateX(-100px);
    }

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

    100% {
        transform: translateX(-100px);
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

.sideMenuToggler {
    background-color: transparent;
    border: 0px;
    padding: 0px;
    color: var(--vs-title-color);
    margin-left: 10px;
}

.sideMenuToggler:hover {
    color: var(--vs-theme-color2);
}

.searchBoxTggler {
    --icon-size: 52px;
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    border-radius: 50%;
    position: relative;
    border: 0px;
    background-color: var(--vs-title-color);
    color: var(--vs-white-color);
}

.searchBoxTggler:hover {
    background-color: var(--vs-theme-color1);
}

.searchBoxTggler::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    border-radius: inherit;
    background-color: transparent;
    border: 3px dashed var(--vs-white-color);
    z-index: 1;
    opacity: 0.4;
    transition: 0.4s;
    width: 45px;
    height: 45px;
    transform: translate(-50%, -50%);
    transform-origin: center center;
}

.social-style {
    color: var(--vs-white-color);
    display: inline-flex;
    align-items: center;
}

.social-style__label {
    font-weight: 700;
    text-transform: capitalize;
    margin-right: 12px;
    font-family: var(--vs-title-font);
}

.social-style a {
    --icon-size: 30px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px dashed rgba(255, 255, 255, 0.4);
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--vs-white-color);
    font-size: 13px;
    margin-right: 7px;
    transition: 0.4s;
}

.social-style a:last-child {
    margin-right: 0px;
}

.social-style a:hover {
    background-color: var(--vs-theme-color2);
}

.social-style--version2 a {
    --icon-size: 36px !important;
}

.social-style.style2 {
    display: inline-block;
    padding-top: 15px;
}

.social-style.style2 .social-style__label {
    color: var(--vs-title-color);
    text-transform: uppercase;
}

.social-style.style2 a {
    background-color: transparent;
    border: 0px;
    color: var(--vs-body-color);
    min-width: auto;
    min-height: auto;
    font-size: 15px;
}

.social-style.style2 a:hover {
    color: var(--vs-theme-color2);
}

.will-sticky .sticky-active {
    position: fixed;
    top: -100%;
    right: 0px;
    left: 0px;
    background-color: var(--vs-white-color);
    transition: 0.8s;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 10px 0px;
}

.will-sticky .sticky-active.active {
    top: 0px;
}

.back-to-top {
    --back-to-top-size: 57px;
    position: fixed;
    right: 6px;
    width: var(--back-to-top-size);
    height: var(--back-to-top-size);
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    z-index: 1000;
    bottom: -50px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s;
}

.back-to-top .progress-circle {
    display: inline-block;
    width: var(--back-to-top-size);
    height: var(--back-to-top-size);
    transform: rotate(-90deg);
    background: var(--vs-theme-color1);
    border-radius: 50%;
}

.back-to-top .progress-circle svg {
    width: 100%;
    height: 100%;
}

.back-to-top .progress-circle circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.back-to-top .progress-circle .bg {
    stroke: rgba(255, 255, 36, 0.1);
    fill: var(--vs-theme-color1);
}

.back-to-top .progress-circle .progress {
    stroke: var(--vs-theme-color2);
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 0.2s linear;
}

.back-to-top .progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    color: var(--vs-white-color);
    pointer-events: none;
    font-size: 14px;
    font-weight: 900;
    font-family: var(--vs-title-font);
    padding: 5px;
    transition: color 0.2s linear;
}

.back-to-top:hover .progress-percentage {
    color: var(--vs-theme-color2);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    bottom: 115px;
    visibility: visible;
    transition: 0.4s;
}

.widget_nav_menu ul, .widget_meta ul, .widget_pages ul, .widget_archive ul, .widget_categories ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.widget_nav_menu > ul, .widget_meta > ul, .widget_pages > ul, .widget_archive > ul, .widget_categories > ul {
    margin: 0px 0px -38px;
}

.widget_nav_menu a, .widget_meta a, .widget_pages a, .widget_archive a, .widget_categories a {
    display: block;
    background-color: transparent;
    color: var(--vs-body-color);
    margin: 0px 0px 18px;
    padding: 0px 0px 17px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.15);
    text-transform: capitalize;
    letter-spacing: 0.48px;
}

.widget_nav_menu a::before, .widget_meta a::before, .widget_pages a::before, .widget_archive a::before, .widget_categories a::before {
    content: "";
    font-weight: 400;
    position: absolute;
    right: 0px;
    top: 0px;
    font-family: var(--vs-icon-font);
    color: var(--vs-body-color);
    font-size: 15px;
}

.widget_nav_menu a:hover, .widget_meta a:hover, .widget_pages a:hover, .widget_archive a:hover, .widget_categories a:hover {
    color: var(--vs-theme-color2);
}

.widget_nav_menu a:hover::before, .widget_meta a:hover::before, .widget_pages a:hover::before, .widget_archive a:hover::before, .widget_categories a:hover::before {
    color: var(--vs-theme-color2);
}

.widget_nav_menu li, .widget_meta li, .widget_pages li, .widget_archive li, .widget_categories li {
    display: block;
    position: relative;
}

.widget_nav_menu li:last-child a, .widget_meta li:last-child a, .widget_pages li:last-child a, .widget_archive li:last-child a, .widget_categories li:last-child a {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.widget_nav_menu li > span, .widget_meta li > span, .widget_pages li > span, .widget_archive li > span, .widget_categories li > span {
    text-align: center;
    position: absolute;
    right: 0px;
    top: -4.5px;
    font-size: 16px;
    transition: 0.4s;
}

.widget_nav_menu li:hover > span, .widget_meta li:hover > span, .widget_pages li:hover > span, .widget_archive li:hover > span, .widget_categories li:hover > span {
    color: var(--vs-theme-color1);
}

.widget_nav_menu .children, .widget_meta .children, .widget_pages .children, .widget_archive .children, .widget_categories .children {
    margin-left: 10px;
}

.widget_nav_menu a, .widget_meta a, .widget_pages a {
    padding-right: 20px;
}

.widget_nav_menu .sub-menu {
    margin-left: 10px;
}

.wp-block-archives {
    list-style: none;
    margin: 0px 0px 20px;
    padding: 0px;
}

.wp-block-archives a:not(:hover) {
    color: inherit;
}

.vs-blog ul.wp-block-archives li {
    margin: 5px 0px;
}

@media (max-width: 767px) {
    .widget_nav_menu a, .widget_meta a, .widget_pages a, .widget_archive a, .widget_categories a {
        font-size: 14px;
    }
}

.widget {
    padding: var(--widget-padding-y, 35px) var(--widget-padding-x, 27px);
    background-color: var(--vs-theme-color6);
    position: relative;
    margin-bottom: 30px;
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
    border-radius: 20px;
}

.widget .wp-block-heading, .widget h2, .widget .wp-block-search__label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 24px;
    font-weight: 900;
    font-family: var(--vs-title-font), serif;
    color: var(--vs-title-color);
    margin: -5px 0px 17px;
    text-transform: capitalize;
    line-height: 1.2;
}

.widget .wp-block-heading img, .widget h2 img, .widget .wp-block-search__label img {
    margin-top: -0.3em;
}

.wp-block-tag-cloud a, .tagcloud a {
    display: inline-block;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 14px 23px;
    margin-right: 5px;
    margin-bottom: 10px;
    color: var(--vs-title-color);
    background-color: var(--vs-smoke-color);
    border-radius: 40px;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .wp-block-tag-cloud a, .tagcloud a {
        padding: 10px 12px;
    }
}

.wp-block-tag-cloud a:hover, .tagcloud a:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color) !important;
}

.tagcloud {
    margin-right: -5px;
    margin-bottom: -10px;
}

.tagcloud a {
    background-color: var(--vs-white-color);
    color: var(--vs-title-color);
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.15);
}

.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.15);
}

.recent-post:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
    padding-bottom: 0px;
}

.recent-post .media-img {
    margin-right: 18px;
    width: 90px;
    overflow: hidden;
    border-radius: 15px;
}

.recent-post .media-img img {
    width: 100%;
    border-radius: 15px;
    transition: 0.4s;
}

.recent-post .post-title {
    font-weight: 900;
    font-size: 20px;
    line-height: 24px;
    margin: 0px;
    text-transform: capitalize;
}

.recent-post .post-title a {
    color: var(--vs-title-color);
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 22px;
    margin-top: 10px;
}

.recent-post .post-title a:hover {
    color: var(--vs-theme-color2);
}

.recent-post .post-title + .recent-post-meta {
    padding-top: 7px;
}

.recent-post .post-title + .recent-post-meta a {
    font-weight: 600;
    font-size: 16px;
}

.recent-post .post-title + .recent-post-meta a i {
    transition: 0.3s ease-in-out;
}

.recent-post .post-title + .recent-post-meta a:hover {
    color: var(--vs-theme-color2);
}

.recent-post .post-title + .recent-post-meta a:hover i {
    color: var(--vs-theme-color2);
}

.recent-post .recent-post-meta a {
    font-size: 14px;
    font-weight: 500;
    color: var(--vs-body-color);
    text-transform: uppercase;
    font-family: var(--vs-body-font);
}

.recent-post .recent-post-meta a i {
    margin-right: 5px;
    color: var(--vs-body-color);
}

.recent-post .recent-post-meta a:hover {
    color: var(--vs-theme-color1);
}

.recent-post:hover .media-img img {
    transform: scale(1.1);
}

.wp-block-calendar, .calendar_wrap {
    position: relative;
    background-color: rgb(255, 255, 255);
    padding-bottom: 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.wp-block-calendar span[class*="wp-calendar-nav"], .calendar_wrap span[class*="wp-calendar-nav"] {
    position: absolute;
    top: 8px;
    left: 20px;
    font-size: 14px;
    color: var(--vs-title-color);
    font-weight: 500;
    z-index: 1;
}

.wp-block-calendar span[class*="wp-calendar-nav"] a, .calendar_wrap span[class*="wp-calendar-nav"] a {
    color: inherit;
}

.wp-block-calendar span.wp-calendar-nav-next, .calendar_wrap span.wp-calendar-nav-next {
    left: auto;
    right: 20px;
}

.wp-block-calendar caption, .calendar_wrap caption {
    caption-side: top;
    text-align: center;
    color: var(--vs-title-color);
    background-color: rgb(241, 219, 190);
}

.wp-block-calendar th, .calendar_wrap th {
    font-size: 14px;
    padding: 5px;
    border-width: medium 1px medium medium;
    border-style: none solid none none;
    border-color: currentcolor rgb(255, 255, 255) currentcolor currentcolor;
    border-image: initial;
    text-align: center;
    color: rgb(1, 19, 60);
    font-weight: 500;
}

.wp-block-calendar th a, .calendar_wrap th a {
    color: inherit;
}

.wp-block-calendar td, .calendar_wrap td {
    font-size: 14px;
    padding: 5px;
    color: rgb(1, 19, 60);
    border: 1px solid rgb(237, 237, 237);
    text-align: center;
    background-color: transparent;
    transition: 0.4s;
}

.wp-block-calendar #today, .calendar_wrap #today {
    color: var(--vs-theme-color1);
    background-color: var(--vs-white-color);
    border-color: rgb(237, 237, 237);
}

.wp-block-calendar thead, .calendar_wrap thead {
    background-color: rgb(246, 246, 246);
}

.wp-block-calendar .wp-calendar-table, .calendar_wrap .wp-calendar-table {
    margin-bottom: 0px;
}

.wp-block-calendar .wp-calendar-nav .pad, .calendar_wrap .wp-calendar-nav .pad {
    display: none;
}

.sidebar-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sidebar-gallery .gallery-thumb {
    overflow: hidden;
    border-radius: 5px;
}

.sidebar-gallery .gallery-thumb img {
    width: 100%;
    transform: scale(1);
    transition: 0.4s;
}

.sidebar-gallery .gallery-thumb:hover img {
    transform: scale(1.2);
}

.widget_shopping_cart {
    text-align: left;
}

.widget_shopping_cart ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.widget_shopping_cart .mini_cart_item {
    position: relative;
    border-bottom: 1px solid var(--vs-border-color);
    padding: 0px 0px 32px 110px;
    margin: 0px 0px 27px;
    min-height: 90px;
}

.widget_shopping_cart .remove {
    position: absolute;
    right: 0px;
    top: 0px;
    color: var(--vs-title-color);
    line-height: 1;
    font-size: 18px;
}

.widget_shopping_cart .remove:hover {
    color: var(--vs-theme-color1);
}

.widget_shopping_cart .img {
    position: absolute;
    left: 0px;
    top: 3px;
    width: 90px;
    height: 90px;
    display: inline-block;
    border: 1px solid var(--vs-border-color);
}

.widget_shopping_cart .product-title {
    font-size: 14px;
    color: var(--vs-title-color);
    font-weight: 400;
    margin-bottom: 0px;
    display: inline-block;
}

.widget_shopping_cart .amount {
    display: block;
    font-weight: 600;
    color: var(--vs-title-color);
    font-size: 16px;
}

.widget_shopping_cart .quantity {
    display: inline-flex;
    margin-top: 12px;
}

.widget_shopping_cart .qut-btn {
    border: 1px solid var(--vs-border-color);
    background-color: transparent;
    display: inline-block;
    width: 25px;
    height: 25px;
    padding: 0px;
    font-size: 12px;
    z-index: 1;
    position: relative;
}

.widget_shopping_cart .qut-btn:hover {
    background-color: var(--vs-title-color);
    border-color: transparent;
    color: var(--vs-white-color);
}

.widget_shopping_cart .qty-input {
    border: 1px solid var(--vs-border-color);
    text-align: center;
    width: max-content;
    min-width: 40px;
    font-size: 12px;
    padding: 0px;
    height: 25px;
    margin: 0px -1px;
}

.widget_shopping_cart .subtotal {
    float: right;
    text-align: right;
    font-size: 12px;
    margin-top: 19px;
}

.widget_shopping_cart .subtotal > span:not(.amount) {
    color: var(--vs-body-color);
    font-weight: 300;
}

.widget_shopping_cart .subtotal .amount {
    font-size: 12px;
    display: inline-block;
}

.widget_shopping_cart .total {
    color: var(--vs-title-color);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 25px;
    font-size: 18px;
}

.widget_shopping_cart .total .amount {
    font-size: inherit;
    display: inline-block;
    color: var(--vs-theme-color1);
}

.widget_shopping_cart .vs-btn {
    border: 1px solid var(--vs-title-color);
    margin-right: 10px;
    text-transform: capitalize;
    height: 50px;
    line-height: 47px;
    padding: 0px 35px;
    background-color: var(--vs-title-color);
    color: var(--vs-white-color);
    font-weight: 400;
}

.widget_shopping_cart .vs-btn:hover {
    background-color: transparent;
    color: var(--vs-title-color);
}

.widget_shopping_cart .buttons {
    margin: 0px;
}

.sidebar-area ul.wp-block-latest-posts {
    margin-bottom: 0px;
}

.sidebar-area ul.wp-block-latest-posts li:last-child {
    margin-bottom: 0px;
}

.sidebar-area .newsletter-form button {
    width: 100%;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    height: 60px;
    margin-top: 10px;
}

.sidebar-area .widget .wp-block-search {
    margin-bottom: 0px;
}

.sidebar-area .widget .wp-block-search__inside-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.sidebar-area .wp-block-group__inner-container h2 {
    font-size: 20px;
    line-height: 1em;
    margin-bottom: 20px;
    margin-top: -0.07em;
}

.sidebar-area ol.wp-block-latest-comments {
    padding: 0px;
    margin: 0px;
}

.sidebar-area ol.wp-block-latest-comments li {
    line-height: 1.5;
    margin: 0px 0px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.sidebar-area ol.wp-block-latest-comments li:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.recent-product {
    display: flex;
}

.recent-product .product-title {
    font-size: 16px;
}

.widget-workhours ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.widget-workhours li {
    background-color: var(--vs-white-color);
    padding: 14.5px 20px;
    margin: 0px 0px 15px;
    font-family: var(--vs-title-font);
    font-weight: 500;
}

.widget-workhours li:last-child {
    margin-bottom: 0px;
}

.widget-workhours li i {
    margin-right: 10px;
}

.quote-box {
    position: relative;
    text-align: center;
    padding: 80px 30px;
    margin: 0px 0px 30px;
}

.quote-box::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 26, 62, 0.7);
}

.quote-box__title {
    color: var(--vs-white-color);
    position: relative;
    z-index: 1;
    max-width: 200px;
    margin: -0.3em auto 25px;
}

@media (max-width: 1199px) {
    .widget {
        --widget-padding-y: 30px;
        --widget-padding-x: 30px;
    }

    .widget_title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .recent-post .post-title {
        font-size: 14px;
        line-height: 22px;
    }

    .recent-post .recent-post-meta a {
        font-size: 12px;
    }

    .widget-workhours li {
        padding: 14.5px 20px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .sidebar-area {
        padding-top: 30px;
    }

    .wp-block-tag-cloud a, .tagcloud a {
        padding: 10.5px 18px;
    }
}

@media (max-width: 767px) {
    .contact-widget .icon {
        --icon-size: 30px;
        --vs-icon-font-size: 12px;
        top: 5px;
    }

    .contact-widget .contact {
        padding: 0px 0px 0px 45px;
        margin: 0px 0px 20px;
        border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
    }

    .sidebar-gallery {
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .widget {
        padding: 30px 20px;
    }
}

.sidebar-banner {
    text-align: center;
    background-color: var(--vs-theme-color1);
    padding: 45px 27px;
    border-radius: 20px;
    overflow: hidden;
}

.sidebar-banner__icon {
    --icon-size: 90px;
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    max-width: var(--icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--vs-theme-color2);
    font-size: 30px;
    color: var(--vs-white-color);
    border-radius: 50%;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.3);
    margin: 0px 0px 13px;
}

.sidebar-banner__title--sub {
    display: block;
    font-size: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
    font-weight: 700;
    font-family: var(--vs-special-font);
    color: var(--vs-white-color);
    line-height: 1.2;
    margin: 0px 0px 3px;
}

.sidebar-banner__title--main {
    font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
    color: var(--vs-white-color);
    text-transform: uppercase;
    margin: 0px 0px 15px;
}

.sidebar-banner__field {
    width: 100%;
    height: 64px;
    font-family: var(--vs-body-font);
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    border-radius: 10px;
    outline: none;
    border: 0px;
    letter-spacing: 0.48px;
    margin: 0px 0px 11px;
}

.sidebar-banner__btn {
    border-radius: 10px;
}

.sidebar-banner__btn > span {
    inset: 1px;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.2);
}

.sidebar-banner__btn::before, .sidebar-banner__btn::after {
    background-color: var(--vs-theme-color3);
}

.vs-side-form__group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 6px;
    padding: 0px 10px;
    background-color: rgb(255, 255, 255);
}

.vs-side-form__group--inline {
    display: flex;
    gap: 10px;
}

@media (max-width: 991px) {
    .vs-side-form__group--inline {
        flex-wrap: wrap;
    }
}

.vs-side-form__group--checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 0px;
    background: none;
}

.vs-side-form__plan {
    width: 100%;
    border: 0px;
    min-height: 56px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--vs-title-color);
    padding: 0px 20px;
    outline: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 26px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    appearance: none;
    cursor: pointer;
}

.vs-side-form__plan option {
    padding: 10px;
}

.vs-side-form__pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0px 24px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
}

.vs-side-form__pricing--amount {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    color: var(--vs-title-color);
}

.vs-side-form__pricing--name {
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.48px;
    color: var(--vs-body-color);
}

.vs-side-form__total {
    margin-bottom: 25px;
    display: grid;
    gap: 10px;
}

.vs-side-form__total--text, .vs-side-form__total--amount {
    display: block;
    font-weight: 700;
    color: var(--vs-title-color);
}

.vs-side-form__total--text span, .vs-side-form__total--amount span {
    color: rgb(37, 40, 62);
}

.vs-side-form__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding-right: 10px;
    border-right: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
    color: rgba(var(--vs-body-color-rgb), 0.8);
    font-size: 16px;
}

.vs-side-form__input {
    flex: 1 1 0%;
    padding: 16px 10px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    outline: none;
    font-size: 16px;
    background-color: transparent;
    letter-spacing: 0.48px;
    font-weight: 500;
    text-transform: capitalize;
}

.vs-side-form__input::placeholder {
    color: var(--vs-body-color);
}

.vs-side-form__input--half {
    width: 100%;
}

.vs-side-form__group--checkbox {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: none;
    padding: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.vs-side-form__checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.48px;
    position: relative;
    gap: 10px;
    user-select: none;
    font-weight: 500;
    text-transform: capitalize;
    flex-wrap: wrap;
}

.vs-side-form__checkbox {
    display: none;
}

.vs-side-form__checkbox:checked + .vs-side-form__custom-box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0px;
    width: 6px;
    height: 12px;
    border-top-color: ;
    border-top-style: ;
    border-right-color: ;
    border-right-style: ;
    border-bottom-color: ;
    border-bottom-style: ;
    border-left-color: ;
    border-left-style: ;
    border-image-source: ;
    border-image-slice: ;
    border-image-width: ;
    border-image-outset: ;
    border-image-repeat: ;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
}

.vs-side-form__checkbox:checked + .vs-side-form__custom-box {
    background-color: var(--vs-theme-color2);
}

.vs-side-form__custom-box {
    min-width: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--vs-white-color);
    border: 2px solid var(--vs-theme-color2);
    border-radius: 4px;
    position: relative;
    transition: 0.3s;
    margin-top: -3px;
}

.vs-side-form__submit {
    width: 100%;
    padding: 14px 15px;
    font-family: var(--vs-title-font);
    background-color: var(--vs-theme-color2);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: var(--vs-white-color);
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: capitalize;
    font-size: 20px;
}

.vs-side-form__submit:hover {
    background-color: var(--vs-theme-color1);
}

.author-sidebar__content {
    padding: 30px 30px 40px;
}

.author-sidebar__title {
    font-size: 24px;
    text-transform: capitalize;
    text-align: left;
}

.author-sidebar__schedule {
    margin-bottom: 20px;
}

.author-sidebar__schedule--list {
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.author-sidebar__schedule--list li {
    padding: 5px 0px;
    font-weight: 700;
}

.author-sidebar__schedule--list li:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.author-sidebar__timing {
    color: var(--vs-title-color);
}

.author-sidebar .icon-call {
    margin-bottom: 14px;
}

.author-sidebar .icon-call:last-child {
    margin-bottom: 0px;
}

.author-sidebar .icon-call__number {
    color: var(--vs-body-color);
    font-size: 18px;
}

.author-sidebar .icon-call__icon {
    --icon-size: 45px;
    font-size: 14px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget, .footer-widget .widget {
    padding: 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background-color: transparent;
}

.footer-widget .widget_title {
    margin: 0px 0px 27px;
}

.footer-widget.widget_meta, .footer-widget.widget_pages, .footer-widget.widget_archive, .footer-widget.widget_categories, .footer-widget.widget_nav_menu {
    margin-bottom: 40px;
}

.footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
    width: max-content;
    display: block;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    max-width: 100%;
    padding: 0px;
}

.footer-widget.widget_meta a:hover, .footer-widget.widget_pages a:hover, .footer-widget.widget_archive a:hover, .footer-widget.widget_categories a:hover, .footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: var(--vs-theme-color1);
}

.footer-widget.widget_meta a::before, .footer-widget.widget_pages a::before, .footer-widget.widget_archive a::before, .footer-widget.widget_categories a::before, .footer-widget.widget_nav_menu a::before {
    display: none;
}

.footer-widget.widget_meta li > span, .footer-widget.widget_pages li > span, .footer-widget.widget_archive li > span, .footer-widget.widget_categories li > span, .footer-widget.widget_nav_menu li > span {
    width: auto;
    height: auto;
    position: relative;
    background-color: transparent;
    color: var(--vs-body-color);
    line-height: 1;
}

.footer-widget.widget_meta li:last-child a, .footer-widget.widget_pages li:last-child a, .footer-widget.widget_archive li:last-child a, .footer-widget.widget_categories li:last-child a, .footer-widget.widget_nav_menu li:last-child a {
    margin-bottom: 0px;
}

.footer-widget .footer-links > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-widget .footer-links a {
    margin-bottom: 21px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-text {
    margin: -0.3em 0px 25px;
    max-width: 285px;
}

.footer-info {
    display: flex;
}

.footer-info_group {
    display: flex;
    justify-content: center;
    border-right: 1px solid rgb(21, 43, 84);
    padding: 60px 0px;
}

.footer-info_group:last-child {
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
}

.footer-info_group.style2 {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.footer-info_group.style2 .footer-info_icon {
    background-color: transparent;
    border: 1px solid rgb(53, 73, 111);
}

.footer-info_icon {
    width: 85px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    background-color: rgb(21, 43, 84);
    color: var(--vs-white-color);
    font-size: 30px;
    margin: 0px 25px 0px 0px;
    display: inline-block;
    border-radius: 5px;
}

.footer-info_label {
    color: var(--vs-white-color);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--vs-title-font);
    text-transform: uppercase;
    display: block;
    margin: 0px 0px 5px;
}

.footer-info_link {
    max-width: 190px;
    color: rgb(138, 153, 180);
    margin: 0px 0px -0.15em;
}

.footer-info_link a {
    color: inherit;
}

.footer-info_link a:hover {
    color: var(--vs-theme-color1);
}

.footer-number {
    border-top: 1px solid rgb(20, 40, 79);
    padding: 43px 0px 0px;
    margin: 34px 0px 0px;
    position: relative;
}

.footer-number::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -60px;
    width: 9999px;
    height: 1px;
    border: inherit;
}

.footer-number .info {
    color: var(--vs-body-color);
    margin: 0px;
    line-height: 1;
    display: inline-block;
}

.footer-number .info:hover {
    color: var(--vs-theme-color1);
}

.footer-number .title {
    margin: 0px 0px 7px;
}

.footer-map {
    max-width: 400px;
    width: 100%;
}

.footer-map frame {
    max-width: 100%;
}

.footer-social .social-title {
    font-family: var(--vs-title-font);
    color: var(--vs-title-color);
    font-size: 20px;
    display: inline-block;
    margin-right: 20px;
    font-weight: 700;
}

.footer-social a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    margin: 0px 5px 0px 0px;
    color: var(--vs-white-color);
    background-color: rgb(21, 40, 76);
    text-align: center;
    border-radius: 5px;
}

.footer-social a:last-child {
    margin-right: 0px;
}

.footer-social a:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
}

.footer-social.style2 a {
    background-color: var(--vs-white-color);
    outline: rgb(231, 232, 236) solid 2px;
    outline-offset: -2px;
    color: var(--vs-body-color);
    box-shadow: rgba(132, 137, 154, 0.1) 8px 13.856px 30px 0px;
}

.footer-social.style2 a:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    outline-color: transparent;
}

.footer-newsletter {
    display: flex;
}

.footer-newsletter input {
    background-color: transparent;
    border-radius: 5px 0px 0px 5px;
    border: 1px solid rgb(20, 40, 79);
    height: 55px;
    color: var(--vs-white-color);
    flex: 1 1 0%;
}

.footer-newsletter input::-webkit-input-placeholder {
    color: var(--vs-white-color);
}

.footer-newsletter input::placeholder {
    color: var(--vs-white-color);
}

.footer-newsletter .vs-btn {
    border-radius: 0px 5px 5px 0px;
}

.footer-newsletter .vs-btn:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
}

.footer-newsletter .vs-btn::after, .footer-newsletter .vs-btn::before {
    display: none;
}

.footer-schedule table {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    margin: -0.3em 0px 0px;
}

.footer-schedule th, .footer-schedule td {
    padding: 0px 0px 10px;
    color: var(--vs-body-color);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-weight: 400;
}

.footer-number1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--vs-body-color);
    font-family: var(--vs-title-font);
    margin-bottom: 25px;
    display: block;
    width: max-content;
}

.footer-mail1, .footer-address1 {
    padding-left: 25px;
    position: relative;
}

.footer-mail1 > i:first-child, .footer-address1 > i:first-child {
    position: absolute;
    left: 0px;
    top: 4px;
}

.footer-address1 {
    max-width: 250px;
}

.footer-mail1 {
    color: var(--vs-body-color);
    text-decoration: underline;
}

.footer-mail1 i:first-child {
    top: 2px;
}

.footer-info-list {
    margin: 35px 0px 22px;
}

.footer-info-list .info {
    position: relative;
    margin-bottom: 21px;
    padding-left: 30px;
    max-width: 250px;
}

.footer-info-list .info i:first-child {
    position: absolute;
    left: 0px;
    top: 4px;
    color: var(--vs-theme-color1);
}

.newsletter-form2 .form_text {
    margin: -0.3em 0px 22px;
    display: block;
    max-width: 300px;
}

.newsletter-form2 input {
    background-color: rgb(235, 236, 241);
    margin-bottom: 15px;
    border-radius: 7px;
}

@media (max-width: 1399px) {
    .menu-all-pages-container.footer-links {
        width: 330px;
        max-width: 100%;
    }

    .footer-number::before {
        display: none;
    }
}

@media (max-width: 1199px) {
    .footer-widget {
        margin-bottom: 40px;
    }

    .footer-widget .widget_title {
        font-size: 26px;
    }

    .footer-number {
        padding: 27px 0px 0px;
        margin: 17px 0px 0px;
    }

    .footer-info {
        display: block;
        text-align: center;
    }

    .footer-info_icon {
        margin: 0px 0px 20px;
    }

    .footer-info_group {
        padding: 0px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }
}

@media (min-width: 991px) and (max-width: 1399px) {
    .footer-newsletter {
        display: block;
    }

    .footer-newsletter input {
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .footer-newsletter .vs-btn {
        border-radius: 5px;
    }
}

@media (max-width: 991px) {
    .footer-widget .widget_title {
        font-size: 22px;
    }

    .footer-layout1 .footer-widget.widget_meta a, .footer-layout1 .footer-widget.widget_pages a, .footer-layout1 .footer-widget.widget_archive a, .footer-layout1 .footer-widget.widget_categories a, .footer-layout1 .footer-widget.widget_nav_menu a {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
        font-size: 14px;
    }

    .footer-newsletter {
        display: block;
    }

    .footer-newsletter input {
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .footer-newsletter .vs-btn {
        border-radius: 5px;
    }
}

.sidebar-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sidebar-gallery .gallery-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.7);
    transition: 0.3s ease-in-out;
}

.sidebar-gallery .gallery-thumb img {
    transition: 0.4s;
    width: 100%;
    transform: scale(1.055);
}

.sidebar-gallery .gallery-thumb::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--vs-theme-color1);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.sidebar-gallery .gallery-thumb .gal-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--icon-size, 35px);
    height: var(--icon-size, 35px);
    margin: calc(var(--icon-size, 35px) / -2) 0 0 calc(var(--icon-size, 35px) / -2);
    text-align: center;
    font-size: 18px;
    color: var(--vs-white-color);
    background-color: transparent;
    border-radius: 50%;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sidebar-gallery .gallery-thumb .gal-btn:hover {
    transform: scale(1);
    background-color: var(--vs-white-color);
    color: var(--vs-theme-color1);
}

.sidebar-gallery .gallery-thumb:hover {
    border-color: var(--vs-theme-color2);
}

.sidebar-gallery .gallery-thumb:hover::before {
    opacity: 0.8;
    visibility: visible;
}

.sidebar-gallery .gallery-thumb:hover .gal-btn {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.1s;
}

.sidebar-gallery .gallery-thumb:hover img {
    transform: scale(1.011);
}

.vs-gallery {
    display: inline-flex;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}

.vs-gallery::before, .vs-gallery::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border: 3px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.vs-gallery::after {
    background-color: var(--vs-theme-color1);
    opacity: 0.1;
    transform-origin: center center;
    transition: 0.4s;
}

.vs-gallery::before {
    z-index: 1;
}

.vs-gallery--row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    height: 100%;
    gap: 24px;
}

@media (max-width: 767px) {
    .vs-gallery--row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.vs-gallery--row {
}

@media (max-width: 575px) {
    .vs-gallery--row {
        grid-template-rows: repeat(9, 1fr);
        grid-template-columns: 1fr;
    }
}

.vs-gallery--col1 {
    grid-area: 1 / 1 / 2 / 2;
}

@media (max-width: 767px) {
    .vs-gallery--col1 {
        grid-area: 1 / 1 / 3 / 2;
    }
}

.vs-gallery--col1 {
}

@media (max-width: 575px) {
    .vs-gallery--col1 {
        grid-area: 1 / 1 / 3 / 2;
    }
}

.vs-gallery--col2 {
    grid-area: 1 / 2 / 2 / 3;
}

@media (max-width: 767px) {
    .vs-gallery--col2 {
        grid-area: 1 / 2 / 3 / 3;
    }
}

.vs-gallery--col2 {
}

@media (max-width: 575px) {
    .vs-gallery--col2 {
        grid-area: 3 / 1 / 5 / 2;
    }
}

.vs-gallery--col3 {
    grid-area: 1 / 3 / 3 / 4;
}

@media (max-width: 767px) {
    .vs-gallery--col3 {
        grid-area: 3 / 1 / 7 / 3;
    }
}

.vs-gallery--col3 {
}

@media (max-width: 575px) {
    .vs-gallery--col3 {
        grid-area: 5 / 1 / 8 / 2;
    }
}

.vs-gallery--col4 {
    grid-area: 2 / 1 / 3 / 3;
}

@media (max-width: 767px) {
    .vs-gallery--col4 {
        grid-area: 8 / 1 / 7 / 3;
    }
}

.vs-gallery--col4 {
}

@media (max-width: 575px) {
    .vs-gallery--col4 {
        grid-area: 8 / 1 / 10 / 2;
    }
}

.vs-gallery__figure {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.vs-gallery__image {
    transition: 0.3s ease-in-out;
    transform: scale(1.04);
    transform-origin: center center;
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}

.vs-gallery__image--link {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.vs-gallery__hover {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    transform: translateY(20px);
}

.vs-gallery__icon {
    --icon-size: 85px;
    width: var(--icon-size, 85px);
    height: var(--icon-size, 85px);
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background-color: var(--vs-title-color);
    color: var(--vs-white-color);
    border-radius: 50%;
    margin: 0px 0px 29px;
    transition: 0.4s;
}

@media (max-width: 991px) {
    .vs-gallery__icon {
        --icon-size: 60px;
        margin: 0px 0px 10px;
        font-size: 20px;
    }
}

.vs-gallery__icon:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
}

.vs-gallery__cate {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--vs-special-font);
    line-height: 1;
    color: var(--vs-white-color);
    margin-bottom: 8px;
    transition: 0.3s ease-in-out;
}

.vs-gallery__cate:hover {
    color: var(--vs-theme-color1);
}

.vs-gallery__cate {
}

@media (max-width: 991px) {
    .vs-gallery__cate {
        font-size: 24px;
    }
}

.vs-gallery__heading {
    color: var(--vs-white-color);
    font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
    margin-bottom: 0px;
    transition: 0.3s ease-in-out;
}

.vs-gallery__heading:hover {
    color: var(--vs-theme-color1);
}

.vs-gallery:hover::after {
    transform: scale(1.1);
    opacity: 0.9;
    background-color: var(--vs-theme-color2);
}

.vs-gallery:hover .vs-gallery__image {
    transform: scale(1.01);
}

.vs-gallery:hover .vs-gallery__hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.vs-header {
    position: relative;
    z-index: 41;
}

.vs-header__ele1 {
    position: absolute;
    bottom: -7px;
    left: 0px;
    right: 0px;
    width: 100%;
}

@media (max-width: 1919px) {
    .vs-header__ele1 {
        bottom: -21px;
    }
}

@media (max-width: 1499px) {
    .vs-header__ele1 {
        display: none;
    }
}

.vs-header__top {
    background: var(--vs-theme-color1);
    padding: 7px 0px;
}

.vs-header__info {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--vs-white-color);
}

.vs-header__info span {
    font-weight: 100;
    font-family: var(--vs-title-font);
}

.vs-header__info a {
    color: var(--vs-white-color);
    padding-left: 5px;
}

.vs-header__info a:hover {
    color: var(--vs-theme-color5);
}

.vs-header__action {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 35px;
    align-items: center;
}

.vs-header__action.style2 {
    margin-left: 0px;
}

.vs-header__logo {
    padding: 5px 0px;
}

.vs-header__logo img {
    height: 90px;
}

.vs-header__logo.style2 img {
    opacity: 1;
}

@media (max-width: 767px) {
    .vs-header__logo.style2 img {
        max-width: 180px;
    }
}

.vs-header--style2::before {
    content: "";
    position: absolute;
    inset: 0px 0px 60px;
    background-color: var(--vs-theme-color1);
    z-index: -1;
}

.vs-header--style2 .vs-header__box {
    background-color: var(--vs-white-color);
    padding: 0px 27px;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .vs-header--style2 .vs-header__box {
        padding: 0px 15px;
    }
}

.vs-header--style2 .vs-header__ele1 {
    bottom: 32px;
    z-index: -1;
}

.sideCartToggler {
    align-items: center;
    background-color: transparent;
    border: 0px;
    padding: 0px 0px 0px 23px;
    position: relative;
    margin-right: 17px;
    font-size: 21px;
}

.sideCartToggler::before, .sideCartToggler::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 41px;
    background-color: rgba(var(--vs-title-color-rgb), 0.2);
    left: 0px;
}

.sideCartToggler::before {
    left: 3px;
    height: 25px;
}

.sideCartToggler span {
    position: absolute;
    top: -13px;
    right: -13px;
    width: 18px;
    height: 18px;
    background-color: var(--vs-theme-color2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vs-white-color);
    font-size: 12px;
}

.sideCartToggler:hover {
    color: var(--vs-theme-color2);
}

.vs-balls {
    width: 100vw;
    height: 10px;
    display: flex;
    overflow: hidden;
    position: absolute;
    bottom: -8px;
    left: 0px;
    z-index: 2;
    pointer-events: none;
}

.vs-balls__ball {
    width: 14px;
    height: 8px;
    background-color: rgb(255, 255, 255);
    border-radius: 0px 0px 20px 20px;
    position: absolute;
    transform: translateX(0px);
}

.vs-balls--style2 {
    bottom: 50px;
    z-index: -1;
}

.vs-balls--style2 .vs-balls__ball {
    background-color: var(--vs-theme-color1);
}

.vs-balls--style3 {
    bottom: -14px;
}

.vs-balls--screen {
    mix-blend-mode: screen;
}

.main-menu a {
    display: block;
    position: relative;
    font-family: var(--vs-title-font);
    font-weight: 500;
    font-size: 18px;
    color: var(--vs-title-color);
}

.main-menu a:hover {
    color: var(--vs-theme-color1) 1;
}

.main-menu > ul > li {
    margin: 0px 18px;
}

@media (max-width: 1199px) {
    .main-menu > ul > li {
        margin: 0px 10px;
    }
}

.main-menu > ul > li > a {
    padding: 38px 0px;
    position: relative;
    z-index: 1;
}

.main-menu > ul > li > a .new-label {
    position: absolute;
    top: -10px;
    right: -27px;
    font-size: 11px;
    border-radius: 3px;
}

.main-menu > ul > li > a .has-new-lable {
    position: relative;
}

.main-menu > ul > li > a.vs-svg-assets svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -54%);
    z-index: -1;
}

.main-menu > ul > li > a.vs-svg-assets svg path {
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform 0.4s;
}

.main-menu > ul > li > a:hover, .main-menu > ul > li > a.active {
    color: var(--vs-theme-color2);
}

.main-menu > ul > li > a:hover svg path, .main-menu > ul > li > a.active svg path {
    transform: scaleX(1);
    transform-origin: left center;
}

.main-menu > ul > li.menu-item-has-children.active > a.vs-svg-assets {
    color: var(--vs-theme-color2);
}

.main-menu > ul > li.menu-item-has-children.active > a.vs-svg-assets svg path {
    transform: scaleX(1);
    transform-origin: left center;
}

.main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets {
    color: var(--vs-title-color);
}

.main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets svg path {
    transform-origin: right center;
    transform: scaleX(0);
}

.main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets:hover {
    color: var(--vs-white-color);
}

.main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets:hover svg path {
    transform: scaleX(1);
    transform-origin: left center;
}

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

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu ul li.menu-item-has-children > a::after {
    content: "";
    position: relative;
    font-family: var(--vs-icon-font);
    margin-left: 5px;
    font-size: 0.8rem;
    display: none;
}

.main-menu ul li.menu-item-has-children.active > a {
    color: var(--vs-theme-color2);
}

.main-menu ul li.menu-item-has-children.active > a:hover {
    color: var(--vs-white-color);
}

.main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active > a {
    color: var(--vs-title-color);
}

.main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active > a:hover {
    color: var(--vs-white-color);
}

.main-menu ul li:last-child {
    margin-right: 0px;
}

.main-menu ul li:first-child {
    margin-left: 0px;
}

.main-menu ul.sub-menu, .main-menu ul.mega-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    background-color: var(--vs-white-color);
    visibility: hidden;
    min-width: 210px;
    width: max-content;
    padding: 7px;
    left: -14px;
    margin-top: 50px;
    opacity: 0;
    z-index: -1;
    border-bottom: 4px solid var(--vs-theme-color1) 1;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 10px 60px 0px, rgba(231, 13, 60, 0.004) 0px 3px 0px 0px;
    transform-origin: center top;
    transition: margin-top 0.4s ease-in-out, visibility 0.4s ease-in-out, opacity 0.4s ease-in-out, z-index;
}

.main-menu ul.sub-menu a, .main-menu ul.mega-menu a {
    font-size: 16px;
    line-height: 30px;
}

.main-menu ul.sub-menu {
    padding: 25px 20px;
    left: -20px;
    display: grid;
    gap: 3px;
}

.main-menu ul.sub-menu li {
    display: block;
    margin: 0px;
}

.main-menu ul.sub-menu li.menu-item-has-children > a::after {
    content: "";
    float: right;
    top: 3px;
}

.main-menu ul.sub-menu li a {
    position: relative;
    padding: 5px 0px;
}

.main-menu ul.sub-menu li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    inset: auto 0px 0px;
    background-color: var(--vs-theme-color2);
    transition: 0.4s ease-in-out;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
}

.main-menu ul.sub-menu li a::before {
    content: "";
    font-family: var(--vs-icon-font);
    font-weight: 400;
    margin: 0px 10px 0px 0px;
}

.main-menu ul.sub-menu li a:hover, .main-menu ul.sub-menu li a.active {
    transform: translateX(15px);
    color: var(--vs-white-color);
}

.main-menu ul.sub-menu li a:hover::after, .main-menu ul.sub-menu li a.active::after {
    top: 0px;
    height: 100%;
    opacity: 1;
    visibility: visible;
    transform: translateX(-15px);
}

.main-menu ul.sub-menu li ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0px;
    margin: 0px 0px 0px 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
    left: 100%;
    right: auto;
}

.main-menu .mega-menu-wrap {
    position: static;
}

.main-menu ul.mega-menu {
    display: flex;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    max-width: var(--vs-main-container);
    padding: 20px 15px 23px;
    left: 50%;
    transform: translateX(-50%);
}

.main-menu ul.mega-menu .main-menu ul.mega-menu > li > ul > li > a {
    position: relative;
}

.main-menu ul.mega-menu li {
    display: block;
    width: 100%;
    padding: 0px 15px;
}

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

.main-menu ul.mega-menu li a {
    display: block;
    padding: 5px 0px;
    position: relative;
    z-index: 1;
}

.main-menu ul.mega-menu > li > a {
    display: block;
    padding: 0px 0px 15px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--vs-theme-color1);
    border-color: var(--vs-theme-color1);
    text-transform: uppercase;
    font-family: var(--vs-title-font);
}

.main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 15px;
    height: 1px;
    background-color: var(--vs-theme-color1);
}

.main-menu ul.mega-menu > li > a::after {
    width: calc(100% - 20px);
    left: 20px;
}

.main-menu ul.mega-menu > li > a:hover {
    padding-left: 0px;
}

.main-menu ul.mega-menu > li > ul {
    display: grid;
    gap: 3px;
}

.main-menu ul.mega-menu > li > ul > li > a {
    z-index: 1;
    position: relative;
}

.main-menu ul.mega-menu > li > ul > li > a::before {
    content: "";
    font-family: var(--vs-icon-font);
    font-weight: 400;
    margin: 0px 10px 0px 0px;
}

.main-menu ul.mega-menu > li > ul > li > a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 0%;
    height: 42px;
    background: var(--vs-theme-color2);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
    z-index: -1;
    pointer-events: none;
    border-radius: 10px;
}

.main-menu ul.mega-menu > li > ul > li > a:hover {
    color: var(--vs-white-color);
    transform: translateX(15px);
}

.main-menu ul.mega-menu > li > ul > li > a:hover::after {
    width: 90%;
    left: 0px;
    opacity: 1;
    visibility: visible;
    transition: 0.6s;
    transform: translateX(-15px);
}

.main-menu > ul > li:hover > ul.sub-menu, .main-menu > ul > li:hover > ul.mega-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    z-index: 9;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active .mega-menu li.active ul li.active a.active, .main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active .mega-menu li.active ul li.active a:hover {
    color: var(--vs-white-color);
    transform: translateX(15px);
}

.main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active .mega-menu li.active ul li.active a.active::after, .main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active .mega-menu li.active ul li.active a:hover::after {
    width: 90%;
    left: 0px;
    opacity: 1;
    visibility: visible;
    transition: 0.6s;
    transform: translateX(-15px);
}

.vs-footer {
    overflow: hidden;
}
.vs-footer__top{
    background-color: #42054c;
}

.vs-footer__ele1, .vs-footer__ele2, .vs-footer__ele3, .vs-footer__ele4 {
    position: absolute;
    bottom: 0px;
    z-index: -1;
}

@media (max-width: 767px) {
    .vs-footer__ele1, .vs-footer__ele2, .vs-footer__ele3, .vs-footer__ele4 {
        display: none;
    }
}

.vs-footer__ele1 {
    left: 142px;
}

.vs-footer__ele2 {
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.03;
}

.vs-footer__ele3 {
    right: 176px;
}

.vs-footer__ele4 {
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
}

.vs-footer__desc {
    font-weight: 700;
    color: var(--vs-text-color);
    padding-right: 9%;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .vs-footer__desc {
        padding-right: 0px;
    }
}

.vs-footer__title {
    color: var(--vs-white-color);
    font-size: 24px;
    position: relative;
    padding: 0px 0px 17px;
    margin: 0px 0px 30px;
}

@media (max-width: 767px) {
    .vs-footer__title {
        text-align: center;
    }
}

.vs-footer__title::after, .vs-footer__title::before {
    position: absolute;
    content: "";
    height: 2.5px;
    width: 65%;
    background-color: rgba(255, 255, 255, 0.2);
    left: 0px;
    bottom: 0px;
}

@media (max-width: 767px) {
    .vs-footer__title::after, .vs-footer__title::before {
        width: 100%;
    }
}

.vs-footer__title::after {
    width: 80px;
    background-color: var(--vs-theme-color2);
}

@media (max-width: 767px) {
    .vs-footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.vs-footer__menu {
    column-count: 2;
}

@media (max-width: 767px) {
    .vs-footer__menu {
        column-count: 1;
        display: grid;
        gap: 15px;
    }
}

.vs-footer__menu--list {
    list-style: none;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .vs-footer__menu--list {
        text-align: center;
    }
}

.vs-footer__menu--list > li {
    margin: 0px 0px 15px;
    transition: 0.3s ease-in-out;
}

.vs-footer__menu--list > li:last-child {
    margin: 0px;
}

.vs-footer__menu--list > li > a {
    color: var(--vs-text-color);
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    display: block;
    position: relative;
    padding: 0px 0px 0px 25px;
    letter-spacing: 0.48px;
}

@media (max-width: 1199px) {
    .vs-footer__menu--list > li > a {
        font-size: 14px;
    }
}

.vs-footer__menu--list > li > a {
}

@media (max-width: 767px) {
    .vs-footer__menu--list > li > a {
        display: inline-block;
    }
}

.vs-footer__menu--list > li > a::before {
    position: absolute;
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.vs-footer__menu--list > li > a:hover {
    color: var(--vs-theme-color2);
}

.vs-footer__menu--list > li:hover {
    transform: translateX(5px);
}

.vs-footer__bottom {
    padding: 29px 0px;
}

.vs-footer__bottom--menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0px;
    margin: 0px;
    list-style: none;
    column-gap: 37px;
}

@media (max-width: 767px) {
    .vs-footer__bottom--menu {
        justify-content: center;
    }
}

.vs-footer__bottom--menu > li > a {
    color: var(--vs-text-color);
    font-weight: 700;
    letter-spacing: 0.48px;
    position: relative;
}

.vs-footer__bottom--menu > li > a::before {
    position: absolute;
    content: "";
    width: 0%;
    left: auto;
    right: 0px;
    bottom: -2px;
    opacity: 0;
    visibility: hidden;
    height: 2px;
    background-color: var(--vs-theme-color5);
    transition: 0.3s ease-in-out;
}

.vs-footer__bottom--menu > li > a:hover {
    color: var(--vs-theme-color5);
}

.vs-footer__bottom--menu > li > a:hover::before {
    left: 0px;
    right: auto;
    opacity: 1;
    visibility: visible;
    width: 100%;
    transition: 0.3s ease-in-out;
}

.vs-footer__copyright {
    color: var(--vs-text-color);
    font-weight: 700;
    letter-spacing: 0.48px;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .vs-footer__copyright {
        text-align: center;
    }
}

.vs-footer__copyright a {
    color: var(--vs-theme-color5);
    position: relative;
    text-transform: uppercase;
}

.vs-footer__copyright a::before {
    position: absolute;
    content: "";
    width: 0%;
    left: auto;
    right: 0px;
    bottom: -2px;
    opacity: 0;
    visibility: hidden;
    height: 2px;
    background-color: var(--vs-theme-color5);
    transition: 0.3s ease-in-out;
}

.vs-footer__copyright a:hover {
    color: var(--vs-theme-color5);
}

.vs-footer__copyright a:hover::before {
    left: 0px;
    right: auto;
    opacity: 1;
    visibility: visible;
    width: 100%;
    transition: 0.3s ease-in-out;
}

.breadcrumb-wrapper {
    padding-top: 140px;
    padding-bottom: 200px;
    background-color: var(--vs-title-color);
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center bottom;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: 325px;
    }
}

.breadcrumb-wrapper__bg {
    position: absolute;
    inset: 0px;
    z-index: -1;
}

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

.breadcrumb-wrapper__ele1 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
}

.breadcrumb-wrapper__content {
    text-align: center;
}

.breadcrumb-wrapper__title {
    color: var(--vs-white-color);
    width: 100%;
    text-transform: capitalize;
    font-size: clamp(1.875rem, 1.563rem + 1.56vw, 3.438rem);
    margin: 0px 0px 5px;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper__title {
        margin: 0px 0px 10px;
    }
}

.breadcrumb-wrapper__menu {
    max-width: 100%;
    margin: -0.35em 0px;
    padding: 0px;
    list-style-type: none;
}

.breadcrumb-wrapper__menu--item {
    display: inline-block;
    list-style: none;
    position: relative;
}

.breadcrumb-wrapper__menu--item::after {
    content: "";
    font-family: var(--vs-icon-font);
    display: inline-block;
    margin: 0px 3px 0px 7px;
    position: relative;
    font-size: 16px;
    color: var(--vs-theme-color2);
}

.breadcrumb-wrapper__menu--item:last-child::after {
    content: "";
}

.breadcrumb-wrapper__menu li, .breadcrumb-wrapper__menu a, .breadcrumb-wrapper__menu span {
    white-space: normal;
    word-break: break-word;
    font-weight: 700;
    font-size: 22px;
    font-family: var(--vs-title-font);
    color: var(--vs-white-color);
    text-transform: capitalize;
}

.breadcrumb-wrapper__menu a {
    color: var(--vs-theme-color2);
}

.breadcrumb-wrapper__menu a:hover {
    color: var(--vs-white-color);
}

.vs-pagination {
    margin-bottom: 30px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vs-pagination ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vs-pagination li {
    display: inline-block;
    margin: 0px;
    list-style-type: none;
}

.vs-pagination li:last-child {
    margin-right: 0px;
}

.vs-pagination li:first-child {
    margin-left: 0px;
}

.vs-pagination span, .vs-pagination a {
    font-family: var(--vs-title-font);
    color: var(--vs-body-color);
    text-align: center;
    min-width: 57px;
    height: 56px;
    line-height: 56px;
    font-weight: 700;
    font-size: 18px;
    z-index: 1;
    border-radius: 15px;
    position: relative;
    background-color: rgba(var(--vs-title-color-rgb), 0.1);
    border: 2px solid rgba(var(--vs-title-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .vs-pagination span, .vs-pagination a {
        min-width: 40px;
    }
}

.vs-pagination span::before, .vs-pagination a::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0px;
    background-color: var(--bg-color3);
    border: 1px solid var(--vs-stroke-color);
    border-radius: 5px;
    transition: 0.3s;
    opacity: 0.7;
    z-index: -1;
}

.vs-pagination span.active, .vs-pagination span:hover, .vs-pagination a.active, .vs-pagination a:hover {
    box-shadow: none;
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color1);
}

.vs-pagination .pagi-btn {
    font-size: 15px;
}

.vs-pagination .pagi-btn--next {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    border-color: var(--vs-theme-color2);
}

blockquote {
    display: block;
    position: relative;
    overflow: hidden;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    color: var(--vs-title-color);
    background-color: var(--quote-bg, #eff1f5);
    border-left: 4px solid var(--vs-theme-color1);
    padding: 43px 50px 42px 35px;
    margin: 35px 0px;
}

blockquote p {
    font-family: inherit;
    color: inherit;
    z-index: 3;
    width: 100%;
    line-height: 1.5;
    position: relative;
    margin-bottom: 0px !important;
}

blockquote::before {
    content: "";
    font-family: var(--vs-icon-font);
    position: absolute;
    right: 40px;
    bottom: 30px;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--vs-theme-color1);
    opacity: 0.3;
}

blockquote p {
    margin-bottom: 0px;
}

blockquote p a {
    color: inherit;
}

blockquote cite {
    color: var(--vs-theme-color1);
    font-family: var(--vs-title-font);
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-left: 45px;
    line-height: 1;
    margin-top: 20px;
    font-style: normal;
}

blockquote cite::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 6px;
    width: 25px;
    height: 4px;
    border-top: 4px solid var(--vs-theme-color2);
    border-radius: 3px;
}

blockquote.vs-quote {
    text-align: left;
    padding: 0px 35px 20px 127px;
    border-left: 0px;
    border-radius: 30px;
    box-shadow: 0 8px 0 var(--vs-theme-color2);
    background-color: transparent;
}

blockquote.vs-quote::before {
    position: absolute;
    inset: 0px auto auto 45px;
    line-height: 1;
    opacity: 1;
    width: auto;
    height: auto;
    text-align: center;
    background-color: transparent;
    color: var(--vs-theme-color2);
    font-size: 60px;
    display: inline-block;
    margin: 0px;
    border-radius: 0%;
    font-weight: 700;
}

blockquote.vs-quote cite {
    padding: 0px 0px 0px 34px;
    margin-top: 18px;
    position: relative;
    color: var(--vs-theme-color2);
    font-family: var(--vs-body-font);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

blockquote.vs-quote cite::before {
    display: inline-block;
}

blockquote.vs-quote p {
    font-weight: 900;
    text-transform: capitalize;
}

blockquote.vs-quote .quote-author {
    font-size: 14px;
    color: rgb(116, 120, 124);
    font-family: var(--vs-title-font);
    display: block;
    font-weight: 400;
}

.blog-meta span, .blog-meta a {
    display: inline-block;
    margin-right: 16px;
    font-size: 16px;
    color: rgb(139, 145, 156);
}

.blog-meta span:last-child, .blog-meta a:last-child {
    margin-right: 0px;
}

.blog-meta span i, .blog-meta a i {
    margin-right: 10px;
    color: var(--vs-theme-color1);
}

.blog-meta a:hover {
    color: var(--vs-theme-color1);
}

.blog-category {
    margin-bottom: -10px;
}

.blog-category a {
    display: inline-block;
    color: var(--vs-white-color);
    padding: 4.5px 24.5px;
    margin-right: 5px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    background-color: var(--vs-theme-color1);
}

.blog-category a:hover {
    background-color: var(--vs-white-color);
    color: var(--vs-body-color);
    border-color: var(--vs-theme-color1);
}

.blog-title a {
    color: inherit;
}

.blog-title a:hover {
    color: var(--vs-theme-color1);
}

.vs-blog {
    margin-bottom: 50px;
    position: relative;
}

.vs-blog__ele1 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
}

.vs-blog__img {
    border-radius: 20px;
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
}

.vs-blog__img--figure {
    overflow: hidden;
    border-radius: 20px;
}

.vs-blog__img--link {
    display: inline-block;
}

.vs-blog__content {
    padding: 0px;
}

.vs-blog__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0px 0px 9px;
}

.vs-blog__meta--link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--vs-body-font);
    font-weight: 500;
    color: var(--vs-body-color);
    text-transform: capitalize;
}

.vs-blog__meta--link::after {
    content: "/";
    padding-right: 9px;
}

.vs-blog__meta--link:first-child i {
    color: var(--vs-theme-color2);
}

.vs-blog__meta--link:last-child::after {
    display: none;
}

.vs-blog__meta--link:hover {
    color: var(--vs-theme-color2);
}

.vs-blog__heading {
    font-size: 2rem;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
    font-weight: 800;
    margin-bottom: 20px;
}

.vs-blog__heading--link {
    display: inline-block;
}

.vs-blog__heading--link:hover .vs-blog__heading {
    color: var(--vs-theme-color2);
}

.vs-blog__desc {
    font-weight: 500;
}

.vs-blog__link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--vs-title-color);
    gap: 9px;
    text-transform: capitalize;
    font-family: var(--vs-title-font);
    font-size: 18px;
}

.vs-blog__link i {
    color: var(--vs-theme-color2);
}

.vs-blog__link:hover {
    color: var(--vs-theme-color2);
}

.vs-blog:hover .vs-blog__img {
    transform: scale(1);
    transition: 0.3s ease-in-out;
}

.vs-blog--style2 {
    margin: 0px 0px 30px;
    padding: 0px 8px 8px 0px;
    position: relative;
    z-index: 1;
}

.vs-blog--style2::before {
    position: absolute;
    content: "";
    width: 94%;
    height: 94%;
    background-color: var(--vs-title-color);
    z-index: -1;
    border-radius: 21px;
    right: 0px;
    bottom: 0px;
    transition: 0.3s ease-in-out;
}

.vs-blog--style2 .vs-blog__inner {
    background-color: var(--vs-theme-color6);
    border: 1.5px dashed rgba(var(--vs-title-color-rgb), 0.4);
    border-radius: 25px;
    padding: 20px;
    transition: 0.3s ease-in-out;
}

.vs-blog--style2 .vs-blog__meta {
    margin: 0px 0px 11px;
}

.vs-blog--style2 .vs-blog__meta--link {
    display: inline-block;
}

.vs-blog--style2 .vs-blog__meta--link i {
    margin-right: 11px;
    color: var(--vs-body-color);
}

.vs-blog--style2 .vs-blog__img {
    transform: scale(1);
    border-radius: 24px;
    overflow: hidden;
}

.vs-blog--style2 .vs-blog__img a {
    width: 100%;
    display: inline-block;
}

.vs-blog--style2 .vs-blog__img img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    transform-origin: center center;
    transform: scale3d(1.01, 1.01, 1.01) rotateY(0deg) rotateX(0deg);
}

.vs-blog--style2 .vs-blog__content {
    padding: 30px 15px 10px;
}

@media (max-width: 991px) {
    .vs-blog--style2 .vs-blog__content {
        padding: 20px 15px 10px;
    }
}

.vs-blog--style2 .vs-blog__heading {
    font-size: clamp(1.3rem, 0.818rem + 0.91vw, 1.5rem);
    margin: 0px 0px 12px;
}

.vs-blog--style2 .vs-blog__desc {
    text-transform: capitalize;
    margin: 0px 0px 8px;
    font-weight: 500;
}

.vs-blog--style2 .vs-blog__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vs-blog--style2 .vs-blog__share ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

.vs-blog--style2 .vs-blog__share > ul > li {
    position: relative;
    padding: 10px 0px;
}

.vs-blog--style2 .vs-blog__share > ul > li > a {
    color: var(--vs-white-color);
    --icon-size: 41px;
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--vs-title-color);
    border-radius: 50%;
}

.vs-blog--style2 .vs-blog__share > ul > li > ul {
    flex-direction: column-reverse;
    background-color: transparent;
    gap: 8px;
    padding: 0px;
    left: 50%;
    bottom: 100%;
    transform: translate(-50%, 0%);
    position: absolute;
    display: flex;
}

.vs-blog--style2 .vs-blog__share > ul > li > ul > li {
    transform-origin: center center;
    transition: 0.4s linear;
    transform: translateY(50%) scale(0);
    opacity: 0;
    visibility: hidden;
}

.vs-blog--style2 .vs-blog__share > ul > li > ul > li:nth-of-type(1) {
    transition-delay: 0.4s;
}

.vs-blog--style2 .vs-blog__share > ul > li > ul > li:nth-of-type(2) {
    transition-delay: 0.5s;
}

.vs-blog--style2 .vs-blog__share > ul > li > ul > li:nth-of-type(3) {
    transition-delay: 0.6s;
}

.vs-blog--style2 .vs-blog__share > ul > li > ul > li:nth-of-type(4) {
    transition-delay: 0.7s;
}

.vs-blog--style2 .vs-blog__share > ul > li > ul > li > a {
    --icon-size: 42px;
    min-height: var(--icon-size);
    min-width: var(--icon-size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    background: var(--vs-theme-color2);
    transition: 0.3s ease-in-out;
    z-index: 1;
    position: relative;
    color: var(--vs-white-color);
}

.vs-blog--style2 .vs-blog__share > ul > li > ul > li > a::before {
    --icon-size: 50px;
    position: absolute;
    content: "";
    width: var(--icon-size);
    height: var(--icon-size);
    border-radius: 50%;
    z-index: -1;
    background-color: var(--vs-theme-color2);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    transform-origin: center center;
    transform: scale(0.8);
}

.vs-blog--style2 .vs-blog__share > ul > li > ul > li > a:hover {
    color: var(--vs-white-color);
}

.vs-blog--style2 .vs-blog__share > ul > li > ul > li > a:hover::before {
    opacity: 0.5;
    visibility: visible;
    transform: scale(1);
}

.vs-blog--style2 .vs-blog__share > ul > li.active > ul li {
    transform: translateY(0px) scale(1);
    opacity: 1;
    visibility: visible;
}

.vs-blog--style2:hover::before {
    background-color: var(--vs-theme-color2);
    transition: 0.3s ease-in-out;
}

.vs-blog--style2:hover .vs-blog__inner {
    background-color: var(--vs-theme-color8);
    border: 1.5px dashed rgba(0, 0, 0, 0.4);
    transition: 0.3s ease-in-out;
}

.vs-blog--style2:hover .vs-blog__img img {
    transform: scale3d(1.1, 1.1, 1.1) rotateY(10deg) rotateX(5deg);
    transition: transform 0.6s;
}

.vs-blog--style2:hover .vs-blog__share > ul > li > a {
    background-color: var(--vs-theme-color2);
    transition: 0.3s ease-in-out;
}

.vs-blog--single {
    margin-bottom: 70px;
}

.vs-blog--single p {
    line-height: 28px;
}

.vs-blog--single h4 {
    line-height: 1.2;
    font-size: 1.5rem;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 20px;
}

.vs-blog--single figure {
    margin: 0.5rem 0px 1.5rem;
}

.vs-blog--single figure img {
    border-radius: 20px;
    width: 100%;
}

.vs-blog--single .vs-blog__content {
    padding-bottom: 0px;
}

.vs-blog--single .vs-blog__footer {
    padding: 25px 0px 0px;
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 767px) {
    .vs-blog--single .vs-blog__footer {
        justify-content: center;
    }
}

.vs-blog--single .vs-blog__footer--ele1 {
    position: absolute;
    top: 0px;
}

.vs-blog--single .vs-blog__footer--cloud, .vs-blog--single .vs-blog__footer--share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vs-blog--single .vs-blog__footer--share {
    display: flex;
    position: relative;
    cursor: pointer;
    padding: 10px 0px;
}

.vs-blog--single .vs-blog__footer--share__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    list-style: none;
    margin-bottom: 0px;
    position: absolute;
    right: 0px;
    top: auto;
    bottom: 100%;
    padding: 15px 12px;
    gap: 10px;
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    border-radius: 5px;
    transform: scaleY(0) translateY(0%);
    transform-origin: center bottom;
    transition: 0.3s;
    will-change: transform;
}

.vs-blog--single .vs-blog__footer--share__list li {
    transform: translateY(20px);
    transform-origin: center bottom;
    transition: 0.3s;
    will-change: transform;
    opacity: 0;
    visibility: hidden;
}

.vs-blog--single .vs-blog__footer--share__list li:nth-of-type(1) {
    transition-delay: 0.4s;
}

.vs-blog--single .vs-blog__footer--share__list li:nth-of-type(2) {
    transition-delay: 0.5s;
}

.vs-blog--single .vs-blog__footer--share__list li:nth-of-type(3) {
    transition-delay: 0.6s;
}

.vs-blog--single .vs-blog__footer--share__list li:nth-of-type(4) {
    transition-delay: 0.7s;
}

.vs-blog--single .vs-blog__footer--share__list a {
    color: var(--vs-white-color);
    font-size: 14px;
}

.vs-blog--single .vs-blog__footer--share__list a:hover {
    color: var(--vs-theme-color1);
}

.vs-blog--single .vs-blog__footer--share.active ul {
    transform: scaleY(1) translateY(0%);
    transform-origin: center bottom;
    transition: 0.3s;
}

.vs-blog--single .vs-blog__footer--share.active ul li {
    transform: translateY(0px);
    transform-origin: center bottom;
    transition: 0.3s;
    will-change: transform;
    opacity: 1;
    visibility: visible;
}

.vs-blog--single .vs-blog__footer--share.active ul li:nth-of-type(1) {
    transition-delay: 0.4s;
}

.vs-blog--single .vs-blog__footer--share.active ul li:nth-of-type(2) {
    transition-delay: 0.5s;
}

.vs-blog--single .vs-blog__footer--share.active ul li:nth-of-type(3) {
    transition-delay: 0.6s;
}

.vs-blog--single .vs-blog__footer--share.active ul li:nth-of-type(4) {
    transition-delay: 0.7s;
}

.vs-blog--single .vs-blog__footer--title {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--vs-title-color);
    line-height: 1.1;
    gap: 9px;
    font-family: var(--vs-title-font);
    text-transform: capitalize;
}

.vs-blog--single .vs-blog__footer--title i {
    color: var(--vs-theme-color1);
}

.vs-blog--single .vs-blog__footer--list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vs-blog--single .vs-blog__footer--links {
    letter-spacing: 0.48px;
    font-weight: 500;
    font-size: 16px;
    color: var(--vs-body-color);
    text-transform: capitalize;
    line-height: 1.1;
}

.vs-blog--single .vs-blog__footer--links::after {
    content: ",";
}

.vs-blog--single .vs-blog__footer--links:last-child::after {
    content: "";
}

.vs-blog--single .vs-blog__footer--links:hover {
    color: var(--vs-theme-color2);
}

.blog-single-author {
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    background-color: var(--vs-theme-color1);
    overflow: hidden;
    padding: 35px 52px 35px 30px;
    margin-top: 50px;
}

@media (max-width: 1199px) {
    .blog-single-author {
        gap: 20px;
        border-radius: 10px;
        padding: 25px 20px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .blog-single-author {
        flex-direction: column;
    }
}

.blog-single-author .media-img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border: 4px solid var(--vs-theme-color2);
    border-radius: 50%;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .blog-single-author .media-img {
        width: 100px;
        height: 100px;
    }
}

.blog-single-author .media-body {
}

@media (max-width: 767px) {
    .blog-single-author .media-body {
        text-align: center;
    }
}

.blog-single-author .media-body .author-name {
    font-weight: 700;
    text-transform: capitalize;
    color: var(--vs-white-color);
    margin-bottom: 10px;
    font-size: 24px;
}

.blog-single-author .media-body .author-text {
    color: var(--vs-white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 162.5%;
    text-transform: capitalize;
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    .blog-single-author .media-body .author-text {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .vs-comments-wrap {
        margin-top: 40px;
    }
}

.vs-comments-wrap .vs-post-comment {
    margin: 40px 0px;
}

.vs-comments-wrap .vs-post-comment-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .vs-comments-wrap .vs-post-comment-inner {
        flex-direction: column;
        align-items: start;
        gap: 0px;
    }
}

.vs-comments-wrap .comment-content {
    border: 1px dashed rgba(6, 47, 52, 0.4);
    padding: 30px 25px;
    border-radius: 10px;
}

.vs-comments-wrap .reply_and_edit {
    margin-left: 138px;
}

.vs-comments-wrap .reply_and_edit .replay-btn {
    margin-left: 0px;
    margin-top: 20px;
    color: var(--vs-theme-color2);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 991px) {
    .vs-comments-wrap .reply_and_edit {
        margin-left: 0px;
    }
}

.vs-comments-wrap .children {
    margin-left: 60px;
}

@media (max-width: 991px) {
    .vs-comments-wrap .children {
        margin-left: 40px;
    }
}

.vs-comments-wrap .comment-avater {
    width: 118px;
    height: 118px;
    border: 4px solid var(--vs-theme-color2);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.vs-comments-wrap .comment-avater img {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .vs-comments-wrap .comment-avater {
        width: 90px;
        height: 90px;
    }
}

.vs-comments-wrap .comment-content .content-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .vs-comments-wrap .comment-content .content-header {
        margin-bottom: 8px;
    }
}

.vs-comments-wrap .comment-content .content-header .name {
    font-weight: 900;
    text-transform: capitalize;
    line-height: 1;
    font-size: 24px;
}

.vs-comments-wrap .comment-content .content-header .commented-on {
    display: inline-block;
    color: var(--vs-theme-color1);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    line-height: 1;
    font-family: var(--vs-body-font);
}

.vs-comments-wrap .comment-content .text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .vs-comments-wrap .comment-content .text {
        font-size: 14px;
        font-weight: 400;
    }
}

.blog-inner-title {
    font-size: 30px;
    margin-top: -0.2em;
    margin-bottom: 8px;
}

.blog-single {
    position: relative;
    margin-bottom: 40px;
    background: var(--vs-white-color);
    box-shadow: rgba(169, 177, 193, 0.17) 0px 10px 31px;
    border-radius: 5px;
    padding: 0.1px 0px;
}

.blog-single .blog-meta {
    margin: -0.2em 0px 10px;
}

.blog-single .blog-title {
    font-size: 30px;
    margin-bottom: 17px;
}

.blog-single .link-btn {
    width: fit-content;
    display: block;
    margin-top: 26px;
}

.blog-single .blog-date {
    color: var(--vs-body-color);
}

.blog-single .blog-date i {
    color: var(--vs-theme-color1);
    margin: 0px 10px 0px 0px;
}

.blog-single .share-links-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--vs-title-color);
    font-family: var(--vs-title-font);
    margin: 0px 15px 0px 0px;
    display: inline-block;
}

.blog-single .share-links {
    margin: 16px 0px 0px;
}

.blog-single .share-links .row {
    align-items: center;
    --bs-gutter-y: 15px;
}

.blog-single .share-links .tagcloud {
    display: inline-block;
}

.blog-single .share-links .tagcloud a {
    padding: 0px;
    border-radius: 0px;
    color: var(--vs-body-color);
}

.blog-single .share-links .tagcloud a:not(:last-child)::after {
    content: ",";
}

.blog-single .social-links {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    display: inline-block;
}

.blog-single .social-links li {
    display: inline-block;
    margin-right: 13px;
}

.blog-single .social-links li:last-child {
    margin-right: 0px;
}

.blog-single .social-links a {
    line-height: 1;
    font-size: 16px;
    color: var(--vs-body-color);
    text-align: center;
    display: block;
}

.blog-single .social-links a:hover {
    color: var(--vs-theme-color1);
}

.blog-single .blog-content {
    margin: var(--blog-space-y, 40px) var(--blog-space-x, 40px) var(--blog-space-y, 40px) var(--blog-space-x, 40px);
    padding: 0px;
    position: relative;
    border-radius: 0px 0px 5px 5px;
}

.blog-single .blog-audio {
    line-height: 1;
}

.blog-single .blog-audio, .blog-single .blog-img {
    position: relative;
    background-color: var(--vs-smoke-color);
}

.blog-single .blog-audio img, .blog-single .blog-audio > *, .blog-single .blog-img img, .blog-single .blog-img > * {
    border-radius: 5px 5px 0px 0px;
}

.blog-single .blog-img .slick-arrow {
    --pos-x: 30px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    border-radius: 5px;
}

.blog-single .blog-img .slick-arrow:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
}

.blog-single .blog-img .play-btn {
    --icon-size: 80px;
    --vs-icon-font-size: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: calc(var(--icon-size) / -2) 0 0 calc(var(--icon-size) / -2);
}

.blog-single:hover .blog-img .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.blog-author {
    background-color: var(--vs-smoke-color);
    padding: 30px;
    display: flex;
    align-items: center;
    margin: var(--blog-space-y, 60px) 0;
}

.blog-author .media-img {
    width: 189px;
    margin: 0px 30px 0px 0px;
}

.blog-author .author-name {
    font-size: 24px;
    font-weight: 700;
    margin: -0.3em 0px 0px;
}

.blog-author .author-degi {
    color: var(--vs-theme-color1);
}

.blog-author .author-text {
    margin: 0px 0px -0.1em;
}

.blog-details .blog-single {
    background: transparent;
    box-shadow: none;
    padding: 0px;
}

.blog-details .blog-img {
    margin: 0px 0px 40px;
}

.blog-details .blog-img img {
    border-radius: 0px;
}

.blog-details .blog-content {
    margin: 0px;
}

.blog-style1 {
    background-color: var(--vs-white-color);
    box-shadow: rgba(169, 177, 193, 0.07) 0px 10px 31px;
    border-radius: 5px;
}

.blog-style1 .blog-meta {
    margin: 0px 0px 10px;
}

.blog-style1 .blog-content {
    padding: 35px 40px 33px;
}

.blog-style2 {
    background-color: var(--vs-white-color);
    box-shadow: none;
}

.blog-style2 .blog-meta {
    margin: 0px 0px 15px;
}

.blog-style2 .blog-text {
    margin: 0px 0px 20px;
}

.blog-style2 .blog-content {
    border-width: medium 2px 2px;
    border-style: none solid solid;
    border-color: currentcolor rgb(236, 242, 253) rgb(236, 242, 253);
    border-image: initial;
    padding: 35px 40px 40px;
}

.blog-style3 .blog-img {
    overflow: hidden;
    margin: -2px;
}

.blog-style3 .blog-img img {
    transform: scale(1);
    transition: 0.4s;
}

.blog-style3 .blog-body {
    border: 2px solid rgb(244, 245, 248);
}

.blog-style3:nth-child(2n+1) .blog-body {
    display: flex;
    flex-direction: column-reverse;
}

.blog-style3 .blog-content {
    padding: 35px 40px 30px;
}

.blog-style3 .blog-meta {
    margin-bottom: 15px;
}

.blog-style3 .blog-meta i {
    color: var(--vs-body-color);
}

.blog-style3 .blog-meta a {
    position: relative;
    line-height: 1;
    border-right: 1px solid rgb(200, 200, 200);
    margin-right: 12px;
    padding: 0px 15px 0px 0px;
}

.blog-style3 .blog-meta a:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
}

.blog-style3 .blog-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.blog-style3 .link-btn {
    text-transform: capitalize;
}

.blog-style3:hover .blog-img img {
    transform: scale(1.1);
}

.blog-style4 {
    box-shadow: rgba(166, 170, 184, 0.05) 8.5px 0px 60px 0px;
    border-radius: 20px;
    padding: 20px;
    border: 2px solid rgb(239, 242, 251);
}

.blog-style4 .blog-content {
    padding: 0px 20px 10px;
}

.blog-style4 .blog-img {
    overflow: hidden;
    border-radius: 20px;
    margin: 0px 0px 32px;
}

.blog-style4 .blog-img img {
    transform: scale(1);
    transition: 0.4s;
}

.blog-style4 .blog-meta {
    margin-bottom: 4px;
}

.blog-style4 .blog-meta i {
    color: var(--vs-body-color);
}

.blog-style4 .blog-meta a {
    font-size: 14px;
}

.blog-style4 .blog-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 22px;
}

.blog-style4:hover .blog-img img {
    transform: scale(1.2);
}

@media (min-width: 1199px) {
    .blog-style4-slider {
        max-width: 775px;
    }
}

@media (max-width: 1399px) {
    .blog-style2 .blog-content {
        padding: 30px 25px 35px;
    }

    .blog-style1 .blog-content {
        padding: 35px 25px 33px;
    }

    .blog-style1 .blog-title {
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    blockquote {
        font-size: 20px;
        padding: 23px 30px 26px;
    }

    blockquote cite {
        font-size: 16px;
    }

    .blog-single {
        --blog-space-y: 40px;
        --blog-space-x: 30px;
    }

    .blog-single .blog-title {
        font-size: 24px;
    }

    .blog-meta span, .blog-meta a {
        font-size: 14px;
    }

    .blog-style3 .blog-content {
        padding: 25px 25px 30px;
    }

    .blog-style4 {
        padding: 10px;
    }

    .blog-style4 .blog-content {
        padding: 0px 15px 20px;
    }

    .blog-style4 .blog-title {
        margin-bottom: 15px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    blockquote.vs-quote {
        padding: 70px 15px 40px;
    }

    blockquote.vs-quote p {
        line-height: 1.8;
    }

    .blog-inner-title {
        font-size: 26px;
    }

    .blog-single {
        --blog-space-y: 40px;
        --blog-space-x: 20px;
    }

    .blog-single .blog-title {
        font-size: 20px;
    }

    .blog-single .blog-img .play-btn {
        --icon-size: 60px;
        --vs-icon-font-size: 20px;
    }

    .blog-author {
        display: block;
        padding: 30px 15px;
    }

    .blog-author .media-img {
        margin: 0px 0px 30px;
        width: 100%;
    }

    .blog-author .media-img img {
        width: 100%;
    }

    .blog-author .author-name {
        font-size: 18px;
    }

    .blog-author .author-degi {
        margin-bottom: 10px;
    }
}

.comment-respond {
    margin: 0px;
    position: relative;
}

.comment-respond .form-title a#cancel-comment-reply-link {
    font-size: 0.7em;
    text-decoration: underline;
}

.comment-respond .custom-checkbox.notice {
    margin-top: 0px;
    margin-bottom: 0px;
}

.comment-respond .custom-checkbox input[type="checkbox"] {
    display: none;
}

.comment-respond .custom-checkbox label {
    position: relative;
    padding-left: 30px;
    padding-top: 0px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: var(--vs-body-color);
    font-weight: 500;
}

.comment-respond .custom-checkbox label::before {
    display: none !important;
}

.comment-respond .custom-checkbox label .checkmark {
    position: absolute;
    top: 3px;
    left: 0px;
    height: 20px;
    width: 20px;
    background-color: var(--vs-white-color);
    border: 1px dashed rgba(6, 47, 52, 0.4);
    border-radius: 4px;
    transition: 0.2s;
}

.comment-respond .custom-checkbox label .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border-style: solid;
    border-color: white;
    border-image: initial;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
}

.comment-respond .custom-checkbox input[type="checkbox"]:checked + label .checkmark {
    background-color: var(--vs-theme-color2);
    border-color: var(--vs-theme-color2);
}

.comment-respond .custom-checkbox input[type="checkbox"]:checked + label .checkmark::after {
    display: block;
}

.comment-respond .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.comment-respond .form-control {
    background-color: var(--vs-white-color);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    height: 55px;
}

.comment-respond .form-group > i {
    top: 20.5px;
}

.comment-respond input[type="checkbox"] ~ label::before {
    background-color: var(--vs-white-color);
    border: 1px solid var(--vs-white-color);
    border-radius: 3px;
}

.comment-respond input[type="checkbox"]:checked ~ label::before {
    background-color: var(--vs-theme-color1);
    border-color: transparent;
}

.comment-respond .blog-inner-title {
    margin-bottom: 0px;
}

.comment-respond .form-text {
    margin-bottom: 25px;
}

.comment-respond .form-inner {
    background-color: var(--vs-smoke-color);
    padding: 30px;
}

.question-form .comment-respond, .review-form .comment-respond {
    margin: 0px;
}

.question-form .form-control, .review-form .form-control {
    background-color: transparent;
    border: 1px solid rgb(228, 228, 228);
}

.question-form .rating-select, .review-form .rating-select {
    display: flex;
    align-items: center;
}

.question-form .rating-select label, .review-form .rating-select label {
    font-weight: 500;
    color: var(--vs-title-color);
}

.vs-comments-wrap + .vs-comment-form {
    margin: var(--blog-space-y, 85px) 0 30px 0;
}

.vs-comments-wrap {
    margin: var(--blog-space-y, 60px) 0 var(--blog-space-y, 0px) 0;
}

.vs-comments-wrap ul {
    list-style: none;
    padding-left: 0px;
}

.vs-comments-wrap .description p:last-child {
    margin-bottom: 0px;
}

.vs-comments-wrap .comment-respond {
    margin: 30px 0px;
}

.vs-comments-wrap pre {
    background: rgb(237, 237, 237);
    color: rgb(102, 102, 102);
    font-size: 14px;
    margin: 20px 0px;
    overflow: auto;
    padding: 20px;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

.vs-comments-wrap blockquote {
    background-color: rgb(234, 248, 249);
}

.vs-comments-wrap li {
    margin: 0px;
}

.vs-comments-wrap li.vs-comment-item:last-child .vs-post-comment {
    margin-bottom: 30px;
}

.vs-comments-wrap .vs-post-comment {
    border-bottom: 0px solid rgb(240, 240, 240);
    position: relative;
    padding: 0px;
    margin: 30px 0px 40px;
}

.vs-comments-wrap ul.comment-list {
    list-style: none;
    margin: -10px 0px 0px;
    padding: 0px;
}

.vs-comments-wrap ul.comment-list ul ul, .vs-comments-wrap ul.comment-list ul ol, .vs-comments-wrap ul.comment-list ol ul, .vs-comments-wrap ul.comment-list ol ol {
    margin-bottom: 0px;
}

.vs-comments-wrap .comment-avater {
    width: 110px;
    height: 110px;
    margin-right: 0px;
    overflow: hidden;
    background-color: var(--vs-white-color);
}

.vs-comments-wrap .comment-avater img {
    width: 100%;
}

.vs-comments-wrap .comment-content {
    flex: 1 1 0%;
    position: relative;
}

.vs-comments-wrap .commented-on {
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
    margin-top: -0.25em;
    font-weight: 700;
    color: var(--vs-body-color);
    font-family: var(--vs-title-font);
}

.vs-comments-wrap .commented-on i {
    margin-right: 7px;
    font-size: 0.9rem;
}

.vs-comments-wrap .name {
    margin-bottom: 7px;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.vs-comments-wrap .comment-top {
    display: flex;
    justify-content: space-between;
}

.vs-comments-wrap .text:last-of-type {
    margin-bottom: 0px;
}

.vs-comments-wrap .children {
    margin: 0px 0px 0px 70px;
    padding: 0px;
    list-style-type: none;
}

.vs-comments-wrap .reply_and_edit {
    position: static;
    line-height: 1;
    margin-left: 166px;
    color: var(--vs-theme-color2);
}

.vs-comments-wrap .replay-btn {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    font-family: var(--vs-title-font);
    color: var(--vs-theme-color1);
}

.vs-comments-wrap .replay-btn i {
    margin-right: 7px;
    font-size: 0.8em;
}

.vs-comments-wrap .replay-btn:hover {
    color: var(--vs-title-color);
}

.vs-comments-wrap .star-rating {
    font-size: 12px;
    margin-bottom: 10px;
    position: absolute;
    top: 5px;
    right: 0px;
    width: 80px;
}

.vs-comments-wrap.vs-comment-form {
    margin: 0px;
}

.vs-comment-form {
    margin-top: 55px;
    border-radius: 15px;
    border: 1px solid rgba(var(--vs-title-color-rgb), 0.1);
    background: var(--vs-theme-color6);
    padding: 50px 36px;
}

@media (max-width: 991px) {
    .vs-comment-form {
        padding: 20px;
    }
}

.vs-comment-form .form-text {
    color: var(--vs-body-color);
    font-family: var(--vs-body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 15px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .vs-comment-form .form-text {
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

.vs-comment-form .form-group .form-control {
    background-color: var(--vs-white-color);
    border: 1px dashed rgba(6, 47, 52, 0.4);
    padding: 25px;
    border-radius: 10px;
}

.vs-comment-form .form-group textarea.form-control {
    height: 141px;
}

.vs-comment-form .form-group textarea.form-control:focus {
    box-shadow: none;
}

.vs-comment-form .form-group input.form-control {
    height: 60px;
    padding: 10px 26px;
}

.vs-comment-form .form-group input.form-control:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .vs-comment-form .form-group input.form-control {
        height: 55px;
    }
}

.vs-comment-form .custom-checkbox {
    margin: 24px 0px 38px;
}

@media (max-width: 991px) {
    .vs-comment-form .custom-checkbox {
        margin: 20px 0px;
    }
}

.vs-comment-form .custom-checkbox label::before {
    border: 1px dashed rgba(6, 47, 52, 0.4);
}

.vs-comment-form .vs-btn {
    border-radius: 50px;
}

@media (max-width: 767px) {
    .vs-comment-form .vs-btn {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .vs-comments-wrap .vs-post-comment {
        display: block;
    }

    .vs-comments-wrap .star-rating {
        top: 0px;
        right: 0px;
    }

    .vs-comments-wrap .comment-top {
        display: block;
    }

    .vs-comments-wrap .comment-avater {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .vs-comments-wrap .children {
        margin-left: 40px;
    }

    .vs-comments-wrap .reply_and_edit {
        position: relative;
        top: 0px;
        margin: 15px 0px 0px;
    }
}

@media (max-width: 767px) {
    .vs-comments-wrap .children {
        margin-left: 20px;
    }

    .vs-comments-wrap .name {
        font-size: 18px;
    }

    .comment-respond .form-inner {
        padding: 30px 15px;
    }
}

.vs-hero {
    position: relative;
    z-index: 9;
}

.vs-hero__active--zoom {
    display: flex;
    justify-content: center;
}

.vs-hero__active--zoom .swiper-slide {
    overflow: hidden;
}

.vs-hero__ele1, .vs-hero__ele2 {
    position: absolute;
    z-index: 2;
}

@media (max-width: 991px) {
    .vs-hero__ele1, .vs-hero__ele2 {
        display: none;
    }
}

.vs-hero__ele1 {
    top: 150px;
    left: 163px;
}

.vs-hero__ele2 {
    right: 20%;
    top: 16%;
}

@media (max-width: 1199px) {
    .vs-hero__ele2 {
        display: none;
    }
}

.vs-hero__shape-bg {
    position: absolute;
    height: 100%;
    width: 1020px;
    right: 0px;
}

@media (max-width: 1500px) {
    .vs-hero__shape-bg {
        width: 988px;
        right: -15%;
    }
}

.vs-hero__shape-bg {
}

@media (max-width: 1199px) {
    .vs-hero__shape-bg {
        display: none;
    }
}

.vs-hero__bg {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    animation: 20s ease-in-out 0s infinite normal none running zoom;
}

.vs-hero__shape {
    max-height: 485.92px;
    padding: 70px 360px 136px 50px;
    max-width: 803.04px;
    position: relative;
}

@media (max-width: 1199px) {
    .vs-hero__shape {
        padding: 70px 360px 70px 50px;
        max-width: 100%;
        position: relative;
        background-color: rgb(255, 255, 255);
        border-radius: 20px;
        overflow: hidden;
    }
}

.vs-hero__shape {
}

@media (max-width: 991px) {
    .vs-hero__shape {
        padding: 70px 336px 70px 50px;
    }
}

.vs-hero__shape {
}

@media (max-width: 767px) {
    .vs-hero__shape {
        padding: 18px;
    }
}

.vs-hero__shape--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
}

@media (max-width: 767px) {
    .vs-hero__shape--bg {
        left: 15px;
    }
}

.vs-hero__content {
    padding: 177px 0px 160px;
}

@media (max-width: 991px) {
    .vs-hero__content {
        padding: 100px 0px;
    }
}

.vs-hero__title--sub {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    font-weight: 600;
    color: var(--vs-theme-color1);
    text-transform: capitalize;
    line-height: 1.1;
    margin: 0px 0px 15px;
}

.vs-hero__title--main {
    font-size: clamp(1.875rem, 1.307rem + 2.84vw, 3.438rem);
    line-height: 0.9;
    margin: 0px 0px 15px;
}

.vs-hero__title--main span {
    color: var(--vs-theme-color1);
}

.vs-hero__desc {
    font-size: 18px;
    font-weight: 500;
    color: var(--vs-body-color);
    text-transform: capitalize;
    margin: 0px 0px 30px;
}

.vs-hero__character {
    position: absolute;
    right: 41px;
    top: 48px;
}

@media (max-width: 767px) {
    .vs-hero__character {
        display: none;
    }
}

.vs-hero .vs-hero__active--zoom .swiper-slide-active:not(.swiper-slide-duplicate) .vs-hero__anim.manimated {
    animation-fill-mode: both;
    animation-name: fadeInUp;
    opacity: 1;
    animation-duration: 1s;
}

.vs-hero__direction {
    position: absolute;
    right: 206px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

@media (max-width: 1199px) {
    .vs-hero__direction {
        right: 50px;
    }
}

.vs-hero__direction {
}

@media (max-width: 991px) {
    .vs-hero__direction {
        right: 50px;
    }
}

.vs-hero__direction {
}

@media (max-width: 767px) {
    .vs-hero__direction {
        display: none;
    }
}

.vs-hero__direction .vs-swiper-button-next, .vs-hero__direction .vs-swiper-button-prev {
    --circle-size: 55px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    width: var(--circle-size);
    height: var(--circle-size);
    min-width: var(--circle-size);
    min-height: var(--circle-size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--vs-white-color);
    transition: 0.3s ease-in-out;
}

@media (max-width: 1199px) {
    .vs-hero__direction .vs-swiper-button-next, .vs-hero__direction .vs-swiper-button-prev {
        background-color: var(--vs-theme-color2);
    }
}

.vs-hero__direction .vs-swiper-button-next:hover, .vs-hero__direction .vs-swiper-button-prev:hover {
    background-color: var(--vs-theme-color1);
}

.vs-hero--style2 .vs-hero__content {
    padding: 223px 0px 240px;
}

@media (max-width: 1199px) {
    .vs-hero--style2 .vs-hero__content {
        padding: 100px 0px 20px;
    }
}

.vs-hero--style2 .vs-hero__title--sub {
    color: var(--vs-white-color);
}

.vs-hero--style2 .vs-hero__title--main {
    color: var(--vs-white-color);
    font-size: clamp(1.875rem, 0.511rem + 6.82vw, 5.625rem);
    text-transform: capitalize;
}

.vs-hero--style2 .vs-hero__title--main span {
    color: var(--vs-white-color);
}

.vs-hero--style2 .vs-hero__desc {
    color: var(--vs-white-color);
    font-weight: 600;
}

.vs-hero--style2 .vs-hero__btn {
    background-color: var(--vs-white-color);
    color: var(--vs-theme-color1);
}

.vs-hero--style2 .vs-hero__btn .vs-btn__border {
    border-color: var(--vs-theme-color1);
}

.vs-hero--style2 .vs-hero__btn:hover {
    color: var(--vs-white-color);
}

.vs-hero--style2 .vs-hero__btn:hover .vs-btn__border {
    border-color: var(--vs-white-color);
}

.vs-hero--style3 {
    margin-top: -60px;
}

.vs-hero--style3 .vs-hero__content {
    padding: 227px 0px 250px;
}

@media (max-width: 1199px) {
    .vs-hero--style3 .vs-hero__content {
        padding: 100px 0px 20px;
    }
}

.vs-hero--style3 .vs-hero__content {
}

@media (max-width: 991px) {
    .vs-hero--style3 .vs-hero__content {
        text-align: center;
    }
}

.vs-hero--style3 .vs-hero__title--main {
    font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
    margin: 0px 0px 15px;
    line-height: 1.15;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .vs-hero--style3 .vs-hero__title--main {
        font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style3 .vs-hero__title--main span {
    display: block;
    color: var(--vs-theme-color2);
    font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
}

@media (max-width: 767px) {
    .vs-hero--style3 .vs-hero__title--main span {
        font-size: clamp(2.2rem, 1.2rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style3 .vs-hero__title--sub {
    font-size: 40px;
    font-family: var(--vs-special-font);
    margin: 0px 0px 15px;
}

.vs-hero--style3 .vs-hero__desc {
    color: var(--vs-title-color);
    font-size: 20px;
}

.vs-hero--style3 .vs-hero__ele1, .vs-hero--style3 .vs-hero__ele2, .vs-hero--style3 .vs-hero__ele3, .vs-hero--style3 .vs-hero__ele4 {
    position: absolute;
    z-index: 2;
}

@media (max-width: 991px) {
    .vs-hero--style3 .vs-hero__ele1, .vs-hero--style3 .vs-hero__ele2, .vs-hero--style3 .vs-hero__ele3, .vs-hero--style3 .vs-hero__ele4 {
        display: none;
    }
}

.vs-hero--style3 .vs-hero__ele1 {
    top: 163px;
    left: 163px;
}

@media (max-width: 1500px) {
    .vs-hero--style3 .vs-hero__ele1 {
        top: 100px;
    }
}

.vs-hero--style3 .vs-hero__ele1 {
}

@media (max-width: 1199px) {
    .vs-hero--style3 .vs-hero__ele1 {
        top: 0px;
        left: 0px;
    }
}

.vs-hero--style3 .vs-hero__ele2 {
    inset: auto auto 0px 98px;
}

@media (max-width: 1199px) {
    .vs-hero--style3 .vs-hero__ele2 {
        bottom: auto;
        left: 98px;
        right: auto;
    }
}

.vs-hero--style3 .vs-hero__ele3 {
    top: 137px;
    left: 50%;
}

.vs-hero--style3 .vs-hero__ele4 {
    top: 90px;
    right: 270px;
}

@media (max-width: 1199px) {
    .vs-hero--style3 .vs-hero__ele4 {
        top: auto;
        right: 0px;
        bottom: 0px;
    }
}

.vs-hero--style3 .vs-hero__direction {
    z-index: 99;
}

.vs-hero--style3 .vs-hero__direction .vs-swiper-button-next, .vs-hero--style3 .vs-hero__direction .vs-swiper-button-prev {
    color: var(--vs-title-color);
}

.vs-hero--style3 .vs-hero__direction .vs-swiper-button-next:hover, .vs-hero--style3 .vs-hero__direction .vs-swiper-button-prev:hover {
    color: var(--vs-white-color);
}

.vs-hero--style2 .vs-hero__main-img, .vs-hero--style3 .vs-hero__main-img {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.vs-hero--style2 .vs-hero__main-img {
    right: 15%;
}

@media (max-width: 1500px) {
    .vs-hero--style2 .vs-hero__main-img {
        right: 0px;
    }
}

.vs-hero--style2 .vs-hero__main-img {
}

@media (max-width: 1199px) {
    .vs-hero--style2 .vs-hero__main-img {
        position: static;
        margin: 0px auto;
        display: flex;
    }
}

.vs-hero--style2 .vs-hero__direction {
    left: 0px;
    right: 30px;
}

.vs-hero--style2 .vs-hero__direction .vs-swiper-button-next, .vs-hero--style2 .vs-hero__direction .vs-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.4);
}

.vs-hero--style2 .vs-hero__direction .vs-swiper-button-next:hover, .vs-hero--style2 .vs-hero__direction .vs-swiper-button-prev:hover {
    background-color: var(--vs-title-color);
}

.vs-hero--style2 .vs-hero__direction .vs-swiper-button-prev {
    left: 153px;
}

.vs-hero--style2 .vs-hero__direction .vs-swiper-button-next {
    right: 153px;
}

.vs-hero--style3 .vs-hero__main-img {
    right: 0%;
}

@media (max-width: 1500px) {
    .vs-hero--style3 .vs-hero__main-img {
        right: 0px;
    }
}

.vs-hero--style3 .vs-hero__main-img {
}

@media (max-width: 1199px) {
    .vs-hero--style3 .vs-hero__main-img {
        position: static;
        margin: 0px auto;
        display: flex;
    }
}

.vs-hero--style3 .vs-hero-pagination {
    position: absolute;
    z-index: 9;
    max-width: calc(var(--vs-main-container) + var(--vs-container-gutters));
    padding-left: calc(var(--vs-container-gutters) / 2);
    padding-right: calc(var(--vs-container-gutters) / 2);
    margin: 0px auto;
    transform: translateX(-50%);
    bottom: 110px !important;
    left: 50% !important;
}

@media (max-width: 991px) {
    .vs-hero--style3 .vs-hero-pagination {
        text-align: center;
    }
}

.vs-hero--style3 .vs-hero-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background-color: transparent;
    font-size: 22px;
    color: var(--vs-theme-color1);
    opacity: 1;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    will-change: transform;
}

.vs-hero--style3 .vs-hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: var(--vs-theme-color2);
}

.vs-hero--style3 .vs-hero-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
    color: var(--vs-theme-color2);
}

.error-area__content {
    text-align: center;
}

.error-area__title {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--vs-special-font);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 17px;
}

.error-area__title span {
    height: 3px;
    width: 60px;
    background-color: var(--vs-theme-color1);
}

.vs-feature {
    display: flex;
    align-items: center;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 25%);
    gap: 15px;
    padding: 25px 30px;
    border-radius: 18px;
    position: relative;
}

@media (max-width: 1199px) {
    .vs-feature {
        padding: 20px 15px;
        gap: 10px;
    }
}

.vs-feature__top {
    position: absolute;
    top: -23px;
    left: 30px;
}

.vs-feature__title {
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    color: var(--vs-white-color);
}

.vs-feature__text {
    color: var(--vs-white-color);
    font-weight: 500;
    margin-bottom: 0px;
}

.vs-feature__icon {
    --icon-size: 90px;
    width: var(--icon-size);
    height: var(--icon-size);
    min-width: var(--icon-size);
    min-height: var(--icon-size);
}

@media (max-width: 1199px) {
    .vs-feature__icon {
        --icon-size: 65px;
    }
}

.vs-feature.style2 {
    background: var(--vs-theme-color2);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    border-radius: 20px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    z-index: 1;
    align-items: flex-start;
    padding: 33px 30px;
    transition: 0.3s ease-in-out;
}

.vs-feature.style2::before {
    content: "";
    position: absolute;
    inset: 0px 0px 0px -1px;
    width: 96%;
    height: 100%;
    border-radius: 20px;
    background-color: var(--vs-white-color);
    z-index: -1;
}

.vs-feature.style2 .vs-feature__icon {
    --icon-size: 60px;
}

.vs-feature.style2 .vs-feature__title {
    color: var(--vs-title-color);
}

.vs-feature.style2 .vs-feature__text {
    color: var(--vs-body-color);
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 500;
}

.vs-feature.style2 .vs-feature__link {
    color: var(--vs-body-color);
    font-weight: 800;
    font-family: var(--vs-title-font);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vs-feature.style2 .vs-feature__link:hover {
    color: var(--vs-theme-color2);
}

.vs-feature.style2:hover {
    background-color: var(--vs-theme-color1);
}

.vs-featureh3 {
    display: flex;
    align-items: center;
    gap: 21px;
    text-align: right;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .vs-featureh3 {
        gap: 15px;
    }
}

.vs-featureh3 {
}

@media (max-width: 991px) {
    .vs-featureh3 {
        justify-content: flex-end;
    }
}

.vs-featureh3__heading {
    font-size: 24px;
}

@media (max-width: 767px) {
    .vs-featureh3__heading {
        font-size: 22px;
    }
}

.vs-featureh3__icon {
    --icon-size: 95px;
    width: var(--icon-size);
    height: var(--icon-size);
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    background-color: var(--vs-theme-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--vs-white-color);
    font-size: 30px;
    padding: 10px;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .vs-featureh3__icon {
        --icon-size: 80px;
    }
}

.vs-featureh3__icon::before {
    --border-size: 100%;
    content: "";
    position: absolute;
    inset: 0px;
    width: var(--border-size);
    height: var(--border-size);
    border-radius: 50%;
    border: 2px dashed var(--vs-white-color);
    z-index: -1;
    transition: 0.3s ease-in-out;
    scale: 0.9;
}

.vs-featureh3__text {
    margin-bottom: 0px;
    text-transform: capitalize;
}

.vs-featureh3__image {
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .vs-featureh3__image {
        text-align: center;
    }
}

.vs-featureh3:hover .vs-featureh3__icon {
    background-color: var(--vs-theme-color1);
}

.vs-about--ele1, .vs-about--ele1h3 {
    position: absolute;
    right: 10%;
    bottom: 0px;
}

@media (max-width: 767px) {
    .vs-about--ele1, .vs-about--ele1h3 {
        right: 0px;
        width: 40%;
    }
}

.vs-about--ele1h3 {
    inset: 139px auto auto 0px;
}

.vs-about--story__tab {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 27px;
}

@media (max-width: 767px) {
    .vs-about--story__tab {
        gap: 15px;
    }
}

.vs-about--story__tab .nav-tabs {
    border-bottom: 0px;
}

.vs-about--story__tab .nav-tabs button {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    color: var(--vs-title-color);
    text-transform: capitalize;
    padding: 10px 25px;
    border-radius: 30px;
    background-color: transparent;
    line-height: 1;
    border: 2px dashed transparent;
}

@media (max-width: 767px) {
    .vs-about--story__tab .nav-tabs button {
        padding: 10px 15px;
    }
}

.vs-about--story__tab .nav-tabs button:hover {
    border-color: transparent;
    color: var(--vs-theme-color2);
}

.vs-about--story__tab .nav-tabs button.active {
    border: 2px dashed var(--vs-theme-color2);
    background-color: rgba(var(--vs-theme-color2-rgb), 0.1);
    color: var(--vs-theme-color2);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px inset;
}

.vs-about--story__title {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    color: var(--vs-title-color);
    text-transform: capitalize;
}

.vs-about--image {
    min-height: 607px;
    max-width: 607px;
    width: 100%;
    position: relative;
}

@media (max-width: 1199px) {
    .vs-about--image {
        min-height: 607px;
    }
}

.vs-about--image {
}

@media (max-width: 991px) {
    .vs-about--image {
        min-height: 607px;
        margin: 0px auto;
    }
}

.vs-about--image {
}

@media (max-width: 767px) {
    .vs-about--image {
        display: grid;
        gap: 15px;
    }
}

.vs-about--image__figure1, .vs-about--image__figure2, .vs-about--image__ele1, .vs-about--image__ele2, .vs-about--image__ele3 {
    position: absolute;
    top: 0px;
    left: 0px;
}

@media (max-width: 767px) {
    .vs-about--image__figure1, .vs-about--image__figure2, .vs-about--image__ele1, .vs-about--image__ele2, .vs-about--image__ele3 {
        position: static;
    }
}

.vs-about--image__figure1, .vs-about--image__figure2 {
    display: inline-block;
}

.vs-about--image__figure1::before, .vs-about--image__figure2::before {
    position: absolute;
    content: "";
    inset: 0px;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.4);
    border-radius: 21px;
}

.vs-about--image__figure1 img, .vs-about--image__figure2 img {
    border-radius: 21px;
}

@media (max-width: 767px) {
    .vs-about--image__figure1 img, .vs-about--image__figure2 img {
        width: 100%;
        object-fit: cover;
    }
}

.vs-about--image__figure1 {
    left: 13px;
}

.vs-about--image__figure2 {
    left: 145px;
    top: 146px;
}

.vs-about--image__ele1 {
    top: 266px;
    left: -96px;
}

@media (max-width: 767px) {
    .vs-about--image__ele1 {
        display: none;
    }
}

.vs-about--image__ele2 {
    top: 267px;
    left: 45px;
}

@media (max-width: 767px) {
    .vs-about--image__ele2 {
        display: none;
    }
}

.vs-about--image__ele3 {
    --circle-size: 309px;
    min-width: var(--circle-size);
    min-height: var(--circle-size);
    background-color: rgba(var(--vs-theme-color2-rgb), 0.3);
    border-radius: 50%;
    z-index: -1;
    left: -68px;
    top: 188px;
}

@media (max-width: 767px) {
    .vs-about--image__ele3 {
        display: none;
    }
}

.vs-about--image.style2 {
    min-height: auto;
}

.vs-about--yoe {
    position: absolute;
    top: 34px;
    left: 241px;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 767px) {
    .vs-about--yoe {
        max-width: 80%;
        margin: 0px auto;
        position: static;
        padding-top: 30px;
    }
}

.vs-about--yoe__number {
    --icon-size: 88px;
    width: var(--icon-size);
    height: var(--icon-size);
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    background-color: var(--vs-theme-color1);
    border-radius: 50%;
    color: var(--vs-white-color);
    position: relative;
}

.vs-about--yoe__number::before {
    position: absolute;
    content: "";
    inset: 0px;
    border-radius: 50%;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.5);
    opacity: 0.4;
}

.vs-about--yoe__text {
    font-weight: 900;
    color: var(--vs-title-color);
    text-transform: capitalize;
    font-size: 20px;
    padding-right: 210px;
    font-family: var(--vs-title-font);
}

@media (max-width: 767px) {
    .vs-about--yoe__text {
        padding-right: 0px;
    }
}

.vs-service {
    margin-bottom: 0px;
}

.vs-service__details-img > img {
    height: 100%;
    object-fit: cover;
}

.vs-service--ele1, .vs-service--ele2 {
    position: absolute;
    top: 22%;
    z-index: -1;
}

@media (max-width: 767px) {
    .vs-service--ele1, .vs-service--ele2 {
        display: none;
    }
}

.vs-service--ele1 {
    left: 0px;
}

.vs-service--ele2 {
    left: auto;
    right: 0px;
}

.vs-service__figure {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.vs-service__figure::before, .vs-service__figure::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 22px;
    transition: 0.3s ease-in-out;
}

.vs-service__figure::before {
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.7);
    z-index: 1;
}

.vs-service__figure::after {
    background-color: rgba(var(--vs-title-color-rgb), 0.2);
}

.vs-service__image {
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
    transform-origin: center center;
}

.vs-service__image--link {
    display: inline-block;
}

.vs-service__content {
    background-color: var(--vs-theme-color6);
    margin: -35px 23px 0px;
    position: relative;
    z-index: 1;
    padding: 20px 30px;
    border-radius: 22px;
    text-align: center;
}

.vs-service__icon {
    display: inline-block;
    margin: 0px 0px 22px;
}

.vs-service__heading {
    font-size: 1.4rem;
    margin-bottom: 0px;
    transition: 0.3s ease-in-out;
    font-weight: 700;
}

.vs-service__heading:hover {
    color: var(--vs-theme-color2);
    transition: 0.3s ease-in-out;
}

.vs-service__heading--link {
    display: inline-block;
}

.vs-service__link {
    --icon-size: 53px;
    width: var(--icon-size);
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    position: absolute;
    right: 30px;
    top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 50%;
    border: 2px dashed rgba(var(--vs-title-color-rgb), 0.3);
    color: var(--vs-title-color);
}

.vs-service__link svg {
    transform: translateX(-9px) translateY(9px);
    transition: 0.3s ease-in-out;
    transform-origin: center center;
}

.vs-service:hover .vs-service__figure::after {
    background-color: rgba(var(--vs-theme-color2-rgb), 0.4);
}

.vs-service:hover .vs-service__image {
    transform: scale(1.01);
}

.vs-service:hover .vs-service__link {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    border: 2px dashed rgba(var(--vs-white-color-rgb), 0.5);
}

.vs-service:hover .vs-service__link svg {
    transform: translateX(0px) translateY(0px);
    transition: 0.3s ease-in-out;
    transform-origin: center center;
}

.vs-service--tab {
    padding-top: 56px;
}

.vs-service--tab__sidebar {
    border-radius: 25px;
    overflow: hidden;
    border: rgba(var(--vs-title-color-rgb), 0.2) 1px solid;
}

.vs-service--tab__sidebar .nav {
    padding: 10px 25px;
}

.vs-service--tab__sidebar .nav button {
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    border-image: initial;
    text-align: left;
    background-color: transparent;
    font-weight: 700;
    color: var(--vs-body-color);
    border-bottom: rgba(var(--vs-title-color-rgb), 0.2) 1px solid;
    border-radius: 0px;
    padding: 16px 0px;
}

.vs-service--tab__sidebar .nav button:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.vs-service--tab__sidebar .nav button.active {
    background-color: transparent;
    color: var(--vs-theme-color2);
}

.vs-service--tab__title {
    font-size: 24px;
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    padding: 20px 28px;
    margin: -1px;
}

.vs-service--tab__title--main {
    font-size: 40px;
}

@media (max-width: 991px) {
    .vs-service--tab__title--main {
        font-size: 30px;
    }
}

.vs-service--tab__title--sub {
    font-size: 24px;
}

.sidebar-contact {
    background-color: var(--vs-title-color);
    text-align: center;
    padding: 55px;
    border-radius: 25px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(191, 191, 191, 0.2);
    overflow: hidden;
}

@media (max-width: 991px) {
    .sidebar-contact {
        padding: 28px;
    }
}

.sidebar-contact__title {
    color: var(--vs-white-color);
    font-size: 40px;
    line-height: 1.1;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.sidebar-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    --icon-size: 95px;
    width: var(--icon-size);
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    background-color: var(--vs-theme-color2);
    border-radius: 50%;
    margin-bottom: 20px;
}

.sidebar-contact__text {
    font-size: 18px;
    font-family: var(--vs-title-font);
    font-weight: 800;
    text-transform: capitalize;
    color: var(--vs-theme-color2);
    margin-bottom: 5px;
}

.sidebar-contact__call {
    font-size: 24px;
    font-weight: 700;
    color: var(--vs-white-color);
    font-family: var(--vs-title-font);
    text-transform: capitalize;
}

.sidebar-contact__call:hover {
    color: var(--vs-theme-color2);
}

.sidebar-contact__map {
    position: absolute;
    bottom: 2%;
    left: -62%;
    z-index: -1;
}

.vs-team {
    background: var(--vs-white-color);
    border-radius: 30px;
    padding: 18px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 4px;
}

.vs-team--area {
    padding-bottom: 130px;
}

.vs-team__heading {
    font-size: 18px;
}

.vs-team__role {
    font-weight: 700;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

.vs-team__img {
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.vs-team__img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(0deg, rgba(var(--vs-theme-color1-rgb), 0.1), rgba(var(--vs-theme-color1-rgb), 0.1));
    border-radius: 20px;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.vs-team__img img {
    border-radius: 20px;
    width: 100%;
    transform: scale(1.1);
    transform-origin: center center;
    transition: 0.3s ease-in-out;
}

.vs-team__content {
    padding: 30px 15px 15px;
}

.vs-team__heading {
    text-transform: capitalize;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vs-team__heading a {
    color: var(--vs-title-color);
}

.vs-team__heading a:hover {
    color: var(--vs-theme-color2);
}

.vs-team__heading .vs-team__share--hover {
    font-size: 20px;
    padding-top: 4px;
    color: var(--vs-theme-color1);
}

.vs-team__share {
    position: absolute;
    bottom: -0.99px;
    right: -0.99px;
}

.vs-team__share > ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

.vs-team__share > ul > li {
    position: relative;
}

.vs-team__share > ul > li > a {
    color: var(--vs-theme-color1);
    --icon-size: 65px;
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    background: var(--vs-theme-color6);
    transition: 0.3s ease-in-out;
}

.vs-team__share > ul > li > a:hover, .vs-team__share > ul > li > a.active {
    transition: 0.3s ease-in-out;
    color: var(--vs-theme-color2);
    background: transparent;
}

.vs-team__share > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scaleX(1);
    transition: 0.3s ease-in-out;
}

.vs-team__share--list {
    list-style: none;
    margin-bottom: 0px;
    position: absolute;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--vs-theme-color1);
    padding: 15px 30px;
    border-radius: 10px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    z-index: 2;
}

.vs-team__share--list > li {
    transform: translateY(50%) scale(0);
    transform-origin: center center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s linear;
}

.vs-team__share--list > li:nth-of-type(1) {
    transition-delay: 0.4s;
}

.vs-team__share--list > li:nth-of-type(2) {
    transition-delay: 0.5s;
}

.vs-team__share--list > li:nth-of-type(3) {
    transition-delay: 0.6s;
}

.vs-team__share--list > li:nth-of-type(4) {
    transition-delay: 0.7s;
}

.vs-team__share--list > li > a {
    color: var(--vs-white-color);
}

.vs-team__share--list > li > a:hover {
    color: var(--vs-theme-color2);
}

.vs-team__share--list.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

.vs-team__share--list.active > li {
    transform: translateY(0%) scale(1);
    transform-origin: center center;
    opacity: 1;
    visibility: visible;
}

.vs-team:hover .vs-team__role, .vs-team.active .vs-team__role {
    color: var(--vs-theme-color2);
}

.vs-team:hover .vs-team__img::before, .vs-team.active .vs-team__img::before {
    height: 100%;
    top: 0px;
    bottom: auto;
}

.vs-team:hover .vs-team__img img, .vs-team.active .vs-team__img img {
    transform: scale(1.02);
    transition: 0.3s ease-in-out;
}

.vs-team--style2 {
    box-shadow: none;
    padding: 20px 20px 28px;
}

.vs-team--style2 .vs-team__content {
    padding: 20px 15px 0px;
}

@media (max-width: 1199px) {
    .vs-team--style2 .vs-team__content {
        padding: 20px 0px 0px;
    }
}

.vs-team--style2 .vs-team__share--hover {
    color: var(--vs-theme-color1);
    --icon-size: 65px;
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 60%;
    font-size: 22px;
    background: rgb(241, 228, 255);
    position: absolute;
    bottom: -5.35px;
    right: -9.58px;
    transition: 0.3s ease-in-out;
}

.vs-team--style2 .vs-team__share--hover::before, .vs-team--style2 .vs-team__share--hover::after {
    --circle-size: 70%;
    content: "";
    display: block;
    width: var(--circle-size);
    height: var(--circle-size);
    position: absolute;
    border-radius: 20px;
    box-shadow: rgb(241, 228, 255) -20px 30px 0px 0px inset;
    transform: rotate(90deg);
}

.vs-team--style2 .vs-team__share--hover::before {
    top: -27px;
    right: -20px;
}

.vs-team--style2 .vs-team__share--hover::after {
    bottom: -20px;
    left: -15px;
}

.vs-team--style2 .vs-team__share--hover:hover, .vs-team--style2 .vs-team__share--hover.active {
    color: var(--vs-theme-color2);
}

.vs-team--style2 .vs-team__share--hover:hover i::before, .vs-team--style2 .vs-team__share--hover.active i::before {
    display: block;
}

.vs-team--style2 .vs-team__share--hover:hover i::before, .vs-team--style2 .vs-team__share--hover.active i::before {
    animation: 0.5s ease 0s 1 normal forwards running toTopFromBottom;
}

.vs-team--style2 .vs-team__share--list {
    flex-direction: column-reverse;
    background-color: transparent;
    gap: 8px;
    padding: 0px;
    left: auto;
    right: 18px;
    bottom: 78px;
    transform: translate(0px, 0px);
}

.vs-team--style2 .vs-team__share--list > li > a {
    --icon-size: 42px;
    min-height: var(--icon-size);
    min-width: var(--icon-size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    background: var(--vs-theme-color2);
    transition: 0.3s ease-in-out;
    z-index: 1;
}

.vs-team--style2 .vs-team__share--list > li > a i::before {
    display: block;
}

.vs-team--style2 .vs-team__share--list > li > a::before {
    --icon-size: 50px;
    position: absolute;
    content: "";
    width: var(--icon-size);
    height: var(--icon-size);
    border-radius: 50%;
    z-index: -1;
    background-color: var(--vs-theme-color2);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    transform-origin: center center;
    transform: scale(0.8);
}

.vs-team--style2 .vs-team__share--list > li > a:hover {
    color: var(--vs-white-color);
}

.vs-team--style2 .vs-team__share--list > li > a:hover i::before {
    animation: 0.3s ease 0s 1 normal forwards running toTopFromBottom;
}

.vs-team--style2 .vs-team__share--list > li > a:hover::before {
    opacity: 0.5;
    visibility: visible;
    transform: scale(1);
}

.progress-box {
    margin: 0px 0px 25px;
}

.progress-box:last-child {
    margin: 0px;
}

.progress-box__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.progress-box__number, .progress-box__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--vs-title-font);
    color: var(--vs-title-color);
    display: inline-block;
    margin: 0px;
    text-transform: uppercase;
}

.progress-box__number {
    float: right;
    color: var(--vs-theme-color1);
}

.progress-box__progress {
    height: 9px;
    border-radius: 10px;
    background-color: rgba(var(--vs-title-color-rgb), 0.15);
    overflow: hidden;
}

.progress-box__bar {
    height: 100%;
    background-color: var(--vs-theme-color2);
    box-shadow: rgba(169, 177, 193, 0.17) 0px 10px 31px;
    border-radius: 5px;
}

.progress-box__bar.bg-color1 {
    background-color: var(--vs-theme-color1);
}

.teacher-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 20%);
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .teacher-awards {
        flex-direction: column;
    }
}

.teacher-awards__content {
    flex: 1 1 0%;
}

.teacher-awards__logo {
    align-items: stretch;
    height: 100%;
}

.teacher-awards__year {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    color: var(--vs-theme-color2);
}

.teacher-awards__heading {
    font-size: 24px;
    margin-bottom: 0px;
}

.sidemenu-wrapper {
    position: fixed;
    z-index: 999999;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    visibility: hidden;
}

.sidemenu-wrapper .sidemenu-content {
    --sidebarPosition: 589px;
    background-color: var(--vs-theme-color1);
    width: var(--sidebarPosition);
    margin-left: auto;
    padding: 40px 55px 55px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    right: calc(-1 * var(--sidebarPosition));
    cursor: auto;
    transform-origin: right center;
}

@media (max-width: 767px) {
    .sidemenu-wrapper .sidemenu-content {
        --sidebarPosition: 300px;
        padding: 20px 15px;
    }
}

.sidemenu-wrapper .sidemenu-content {
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
    width: 5px;
}

.sidemenu-wrapper .sidemenu-content {
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--vs-white-color);
    border-radius: 0px;
}

.sidemenu-wrapper .sidemenu-content {
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-thumb {
    background: var(--vs-white-color);
    border-radius: 10px;
}

.sidemenu-wrapper .sidemenu-content {
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-thumb:hover {
    background: var(--vs-theme-color2);
}

.sidemenu-wrapper .sidemenu-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidemenu-wrapper .closeButton {
    display: inline-block;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: var(--vs-white-color);
    background-color: transparent;
    font-size: 40px;
    padding: 0px;
    border-radius: 50%;
    transform: rotate(0deg);
    transition: 0.4s;
    font-family: var(--title-font);
    font-weight: 700;
    cursor: pointer;
}

.sidemenu-wrapper .closeButton:hover {
    color: var(--vs-white-color);
    transform: rotate(180deg);
}

.sidemenu-wrapper .sidemenu-hr {
    height: 4px;
    border-top: 1px solid var(--vs-white-color);
    border-bottom: 1px solid var(--vs-white-color);
    opacity: 1;
    margin: 30px 0px 35px;
}

.sidemenu-wrapper .sidemenu-inner {
    display: flex;
    flex-direction: column;
    height: 75vh;
    justify-content: space-between;
}

.sidemenu-wrapper .sidemenu-title {
    font-size: clamp(1rem, 0.75rem + 1.25vw, 2.25rem);
    color: var(--vs-white-color);
    text-transform: uppercase;
    margin: -0.23em 0px 30px;
    letter-spacing: 0.9px;
}

.sidemenu-wrapper .sidemenu-subtitle {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    color: var(--vs-white-color);
    letter-spacing: 0.2px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.sidemenu-wrapper .sidemenu-subtitle::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 4px;
    bottom: 0px;
    left: 0px;
    background-color: var(--vs-white-color);
}

.sidemenu-wrapper .sidemenu-text {
    color: var(--vs-white-color);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--title-font);
    margin-bottom: 0px;
}

.sidemenu-wrapper .sidemenu-footer {
    padding-bottom: 30px;
}

.sidemenu-wrapper .email-subscription__form {
    background-color: var(--vs-white-color);
    border-radius: 10px;
}

.sidemenu-wrapper .email-subscription__right::before {
    width: 5px;
    height: 40px;
    background-color: transparent;
    border: 1px solid rgb(56, 60, 74);
    left: -5px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .sidemenu-wrapper .email-subscription__right::before {
        display: none;
    }
}

.sidemenu-wrapper .email-subscription__input {
    color: var(--body-color);
    font-family: var(--title-font);
    padding: 10px 20px;
    text-align: left;
}

.sidemenu-wrapper .email-subscription__input::placeholder {
    color: var(--body-color);
}

.sidemenu-wrapper .email-subscription__btn {
    background-color: var(--vs-white-color);
    clip-path: none;
    padding: 13px 27px 13px 17px;
}

@media (max-width: 767px) {
    .sidemenu-wrapper .email-subscription__btn {
        padding: 0px;
        background-color: transparent;
        width: auto;
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.sidemenu-wrapper .email-subscription__btn::before, .sidemenu-wrapper .email-subscription__btn::after {
    clip-path: none;
}

.sidemenu-wrapper .email-subscription__btn svg path {
    transition: 0.3s ease-in-out;
}

.sidemenu-wrapper .email-subscription__btn:hover svg path {
    fill: var(--vs-white-color);
}

.sidemenu-wrapper .footer-social span {
    color: var(--vs-white-color);
    font-weight: 700;
    font-family: var(--title-font);
    text-transform: uppercase;
    margin-right: auto;
    display: none;
}

.sidemenu-wrapper .footer-social a {
    background-color: var(--vs-white-color);
    color: var(--vs-theme-color1);
}

.sidemenu-wrapper .footer-social a:hover {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
}

.sidemenu-wrapper .sidemenu-item {
    opacity: 0;
}

.sidemenu-wrapper.show .sidemenu-content {
    right: 0px;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .email-subscription__right {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
    }
}

.sidemenu-contact {
    margin: 0px 0px 20px;
    display: grid;
    gap: 10px;
}

.sidemenu-contact ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.sidemenu-contact ul li {
    margin-bottom: 10px;
}

.sidemenu-contact ul li:last-child {
    margin-bottom: 0px;
}

.sidemenu-contact a, .sidemenu-contact .sidemenu-link {
    display: inline-block;
    color: var(--vs-white-color);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    font-family: var(--title-font);
    padding: 0px 0px 0px 19px;
    position: relative;
}

.sidemenu-contact a::before, .sidemenu-contact a::after, .sidemenu-contact .sidemenu-link::before, .sidemenu-contact .sidemenu-link::after {
    position: absolute;
    content: "";
}

.sidemenu-contact a::before, .sidemenu-contact .sidemenu-link::before {
    top: 7px;
    left: 0px;
    width: 8px;
    height: 8px;
    background-color: var(--vs-white-color);
}

.sidemenu-contact a::after, .sidemenu-contact .sidemenu-link::after {
    top: auto;
    bottom: 0px;
    right: 0px;
    width: 0%;
    height: 1px;
    background-color: var(--vs-white-color);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.sidemenu-contact .sidemenu-link:hover::after {
    width: 90%;
    left: 10%;
    opacity: 1;
    visibility: visible;
    transition: 0.4s;
}

.sidemenu-contact.style2 {
    text-align: left;
}

.sidemenu-contact.style2 a, .sidemenu-contact.style2 .sidemenu-link {
    color: var(--vs-body-color);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--vs-title-font);
}

.sidemenu-contact.style2 a::before, .sidemenu-contact.style2 a::after, .sidemenu-contact.style2 .sidemenu-link::before, .sidemenu-contact.style2 .sidemenu-link::after {
    background-color: var(--vs-theme-color2);
    transition: 0.3s ease-in-out;
}

.sidemenu-contact.style2 a:hover::before, .sidemenu-contact.style2 .sidemenu-link:hover::before {
    background-color: var(--vs-theme-color1);
}

.offcanvas-wrapper {
    position: fixed;
    z-index: 99999;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 0px;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: 0.8s;
}

.offcanvas-wrapper .closeButton {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    padding: 0px;
    background-color: var(--vs-theme-color1);
    color: var(--white-color);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 50%;
    transform: rotate(0deg);
    transition: 0.4s;
    z-index: 33;
}

.offcanvas-wrapper .closeButton i {
    line-height: inherit;
}

.offcanvas-wrapper .closeButton:hover {
    color: var(--vs-white-color);
    border-color: transparent;
    transform: rotate(90deg);
    background-color: var(--sec-color);
}

.offcanvas-wrapper .sidemenu-content {
    background-color: var(--vs-white-color);
    width: 450px;
    margin-left: auto;
    padding: 50px 30px;
    height: 100%;
    overflow: scroll;
    position: relative;
    right: -500px;
    cursor: auto;
    transition: right 1s;
}

.offcanvas-wrapper .sidemenu-content::-webkit-scrollbar-track {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 1px inset;
    background-color: rgb(245, 245, 245);
}

.offcanvas-wrapper .sidemenu-content::-webkit-scrollbar {
    width: 2px;
    background-color: rgb(245, 245, 245);
}

.offcanvas-wrapper .widget {
    padding: 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background-color: transparent;
    margin-bottom: 50px;
}

.offcanvas-wrapper .footer-text {
    max-width: 100%;
}

.offcanvas-wrapper.show {
    opacity: 1;
    visibility: visible;
    width: 100%;
    transition: 0.8s;
}

.offcanvas-wrapper.show .sidemenu-content {
    right: 0px;
    opacity: 1;
    visibility: visible;
}

.sideCart-wrapper {
    position: fixed;
    z-index: 999999;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 0px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: none;
    backdrop-filter: blur(0px);
}

@media (max-width: 991px) {
    .sideCart-wrapper {
        mask: none;
    }
}

.sideCart-wrapper .cart-sidebar-content {
    background-color: var(--vs-white-color);
    width: 400px;
    padding: 40px 25px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    left: -100%;
    opacity: 0;
    visibility: hidden;
    transition: none;
}

@media (max-width: 991px) {
    .sideCart-wrapper .cart-sidebar-content {
        width: 300px;
        padding: 25px 15px;
    }
}

.sideCart-wrapper .cart-sidebar-content {
}

.sideCart-wrapper .cart-sidebar-content::-webkit-scrollbar {
    width: 5px;
}

.sideCart-wrapper .cart-sidebar-content {
}

.sideCart-wrapper .cart-sidebar-content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--vs-theme-color1);
    border-radius: 0px;
}

.sideCart-wrapper .cart-sidebar-content {
}

.sideCart-wrapper .cart-sidebar-content::-webkit-scrollbar-thumb {
    background: var(--vs-theme-color1);
    border-radius: 10px;
}

.sideCart-wrapper .cart-sidebar-content {
}

.sideCart-wrapper .cart-sidebar-content::-webkit-scrollbar-thumb:hover {
    background: var(--vs-theme-color2);
}

.sideCart-wrapper.cartshow {
    opacity: 1;
    visibility: visible;
    width: 100%;
    transition: none;
}

.sideCart-wrapper.cartshow .cart-sidebar-content {
    left: 0px;
    opacity: 1;
    visibility: visible;
}

.sideCart-wrapper .sidemenu-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 30px;
}

.sideCart-wrapper .cart-close-button {
    background: var(--vs-theme-color1);
    color: var(--vs-white-color);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: var(--title-font);
    font-weight: 600;
}

.sideCart-wrapper .cart-close-button:hover {
    background: var(--vs-theme-color2);
}

.sideCart-wrapper .cart-animation-item {
    opacity: 0;
}

.sideCart-wrapper .cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0px 0px 20px;
}

.sideCart-wrapper .cart-item .item-details {
    flex: 1 1 0%;
}

.sideCart-wrapper .cart-item__image {
    --image-size: 80px;
    width: var(--image-size);
    height: var(--image-size);
    object-fit: cover;
    background: var(--vs-theme-color6);
    border: 2px solid var(--vs-theme-color2);
    border-radius: 10px;
    padding: 10px;
}

@media (max-width: 991px) {
    .sideCart-wrapper .cart-item__image {
        display: none;
    }
}

.sideCart-wrapper .cart-item .item-details h3 {
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 0px;
}

.sideCart-wrapper .cart-item .item-details h3 a {
    color: var(--vs-body-color);
}

.sideCart-wrapper .item-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sideCart-wrapper .item-controls .quantity__field {
    position: relative;
}

.sideCart-wrapper .item-controls input[type="number"] {
    --input-size: 90px;
    width: var(--input-size);
    min-width: var(--input-size);
    height: 45px;
    min-height: 45px;
    padding: 10px;
    border: 2px solid rgba(56, 60, 74, 0.5);
    background-color: var(--bg-color3);
    color: var(--white-color);
    appearance: none;
}

@media (max-width: 991px) {
    .sideCart-wrapper .item-controls input[type="number"] {
        width: 100%;
    }
}

.sideCart-wrapper .item-controls .quantity__buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    display: flex;
    flex-direction: column;
    background-color: var(--vs-white-color);
}

.sideCart-wrapper .item-controls .quantity__buttons .qty-btn {
    font-size: 16px;
    background-color: transparent;
    border: 0px;
    padding: 0px;
    height: auto;
    line-height: 1;
}

.sideCart-wrapper .cart-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.sideCart-wrapper .cart-actions button {
    clip-path: none;
}

.sideCart-wrapper .subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--body-color);
    text-transform: uppercase;
}

.sideCart-wrapper .subtotal .total-amount {
    color: var(--vs-theme-color1);
}

.sideCart-wrapper .item-price {
    font-weight: 600;
    color: var(--white-color);
}

.sideCart-wrapper .remove-item {
    background-color: transparent;
    border: 0px;
    padding: 0px;
}

.sideCart-wrapper .remove-item:hover {
    color: var(--vs-theme-color2);
}

.sideCart-wrapper .social-style {
    gap: 10px;
    flex-wrap: wrap;
}

.sideCart-wrapper .social-style ul {
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.sideCart-wrapper .social-style ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sideCart-wrapper .social-style__title {
    font-size: 24px;
}

.mfp-wrap, .mfp-bg {
    z-index: 9999999;
}

.sidemenu-text--footer {
    font-weight: 700;
    text-transform: capitalize;
}

.form-style {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
    padding: 0px;
}

.form-style .row:not([class*="gx-"]) {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 15px;
}

.form-style textarea, .form-style input {
    height: 60px;
    background-color: transparent;
    font-size: 16px;
    font-family: var(--vs-body-font);
    color: var(--vs-body-color);
    border-radius: 50px;
    border: 1.5px solid rgba(var(--vs-white-color-rgb), 0.2);
    padding: 10px 31px;
    font-weight: 500;
    box-shadow: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

.form-style textarea::placeholder, .form-style input::placeholder {
    color: var(--vs-white-color);
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease-in-out;
}

.form-style textarea:focus, .form-style input:focus {
    box-shadow: none;
}

.form-style textarea:focus::placeholder, .form-style input:focus::placeholder {
    color: var(--vs-title-color);
    opacity: 0;
    visibility: hidden;
}

.form-style textarea {
    min-height: 180px;
    resize: none;
}

.form-style2 .form-group {
    margin-bottom: var(--bs-gutter-x);
    position: relative;
}

.form-style2 .form-control {
    background-color: var(--vs-theme-color6);
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
    min-height: 69px;
    border-radius: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 19px 20px;
    box-shadow: none;
    outline: none;
}

.form-style2 textarea.form-control {
    min-height: 169px;
}

.custom-checkbox input[type="checkbox"] ~ label::before, .custom-checkbox input[type="radio"] ~ label::before, .wc_payment_method input[type="checkbox"] ~ label::before, .wc_payment_method input[type="radio"] ~ label::before, .woocommerce-shipping-methods input[type="checkbox"] ~ label::before, .woocommerce-shipping-methods input[type="radio"] ~ label::before, #ship-to-different-address input[type="checkbox"] ~ label::before, #ship-to-different-address input[type="radio"] ~ label::before {
    content: "";
    background-color: transparent;
    border: 1px solid var(--vs-theme-color2);
    border-radius: 0px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    line-height: 20px;
    font-family: var(--icon-font);
    text-align: center;
    color: var(--bg-color);
    font-size: 0px;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-checkbox, .wc_payment_method, .woocommerce-shipping-methods, #ship-to-different-address {
    padding: 10px 0px 20px;
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .custom-checkbox, .wc_payment_method, .woocommerce-shipping-methods, #ship-to-different-address {
        padding: 0px 0px 20px;
    }
}

.custom-checkbox label, .wc_payment_method label, .woocommerce-shipping-methods label, #ship-to-different-address label {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"], .custom-checkbox input[type="radio"], .wc_payment_method input[type="checkbox"], .wc_payment_method input[type="radio"], .woocommerce-shipping-methods input[type="checkbox"], .woocommerce-shipping-methods input[type="radio"], #ship-to-different-address input[type="checkbox"], #ship-to-different-address input[type="radio"] {
    display: none;
}

.custom-checkbox input[type="checkbox"] ~ label::before, .custom-checkbox input[type="radio"] ~ label::before, .wc_payment_method input[type="checkbox"] ~ label::before, .wc_payment_method input[type="radio"] ~ label::before, .woocommerce-shipping-methods input[type="checkbox"] ~ label::before, .woocommerce-shipping-methods input[type="radio"] ~ label::before, #ship-to-different-address input[type="checkbox"] ~ label::before, #ship-to-different-address input[type="radio"] ~ label::before {
    content: "";
    background-color: transparent;
    border: 1px solid var(--vs-theme-color2);
    border-radius: 0px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    line-height: 20px;
    font-family: var(--vs-icon-font);
    text-align: center;
    color: var(--vs-white-color);
    font-size: 0px;
    transition: 0.3s ease-in-out;
}

.custom-checkbox input[type="checkbox"]:checked ~ label::before, .custom-checkbox input[type="radio"]:checked ~ label::before, .wc_payment_method input[type="checkbox"]:checked ~ label::before, .wc_payment_method input[type="radio"]:checked ~ label::before, .woocommerce-shipping-methods input[type="checkbox"]:checked ~ label::before, .woocommerce-shipping-methods input[type="radio"]:checked ~ label::before, #ship-to-different-address input[type="checkbox"]:checked ~ label::before, #ship-to-different-address input[type="radio"]:checked ~ label::before {
    background-color: var(--vs-theme-color2);
    border-color: transparent;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.form-messages {
    font-weight: 700;
}

.vs-contact--ele1, .vs-contact--ele2, .vs-contact--ele3 {
    position: absolute;
    top: 0px;
    right: 0px;
}

@media (max-width: 1199px) {
    .vs-contact--ele1, .vs-contact--ele2, .vs-contact--ele3 {
        display: none;
    }
}

.vs-contact--ele1 {
    top: 92px;
    right: 92px;
}

.vs-contact--ele2 {
    top: auto;
    bottom: 148px;
    right: 166px;
}

.vs-contact--ele3 {
    top: auto;
    bottom: 69px;
    right: 66px;
}

.vs-map .mapouter {
    filter: grayscale(10%);
}

.vs-map .mapouter {
    position: relative;
    text-align: right;
    width: 100%;
    height: 447px !important;

}

.vs-map .gmap_canvas {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: none !important;
    height: 447px !important;
    border-radius: 30px;
    border: 5px solid #e9e7e7;
}

.vs-map .gmap_canvas__credit {
    position: absolute;
    bottom: 0px;
    left: 15%;
    color: var(--bg-color);
    text-transform: capitalize;
}

.vs-map .gmap_canvas__credit:hover {
    color: var(--vs-theme-color);
}

.vs-map .gmap_iframe {
    height: 447px !important;
}

.contact-info {
    max-width: 100%;
}

.contact-info span {
    color: var(--vs-theme-color2);
}

.address-info {
    --icon-size: 60px;
    display: flex;
    align-items: center;
    gap: 25px;
    font-family: var(--title-font);
    letter-spacing: 0.4px;
    font-size: 15px;
    font-weight: 500;
    margin: 0px 0px 15px;
}

@media (max-width: 767px) {
    .address-info {
        --icon-size: 60px;
        font-size: 14px;
    }
}

.address-info:last-child {
    margin: 0px;
}

.address-info__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--icon-size);
    width: var(--icon-size);
    height: var(--icon-size);
    background-color: var(--vs-theme-color1);
    font-size: 24px;
    border-radius: 50%;
    color: var(--vs-white-color);
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.3);
}

.address-info span {
    color: var(--vs-theme-color1);
    text-transform: capitalize;
    display: block;
    margin: 0px 0px 3px;
    font-weight: 800;
    font-size: 16px;
}

.address-info a {
    display: inline-block;
    text-transform: capitalize;
    color: var(--vs-body-color);
}

.address-info a:hover {
    color: var(--vs-theme-color2);
}

.contact-divider {
    width: 100%;
}

.vs-event {
    display: flex;
    align-items: stretch;
    gap: 40px;
    background-color: rgba(253, 255, 231, 0.67);
    border: 1.5px dashed rgba(var(--vs-title-color-rgb), 0.2);
    border-radius: 25px;
    overflow: hidden;
    padding: 21px 40px 21px 21px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .vs-event {
        gap: 20px;
        padding: 15px;
    }
}

.vs-event {
}

@media (max-width: 991px) {
    .vs-event {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.vs-event--ele1, .vs-event--ele2 {
    position: absolute;
    top: 105px;
    left: 0px;
    z-index: -1;
}

.vs-event--ele2 {
    right: 0px;
    left: auto;
}

.vs-event__figure {
    position: relative;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    min-width: 411px;
}

@media (max-width: 991px) {
    .vs-event__figure {
        min-width: 100%;
    }
}

.vs-event__figure--img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .vs-event__figure--img {
        width: 100%;
    }
}

.vs-event__figure--date {
    position: absolute;
    top: 21px;
    right: 21px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1.5px dashed rgba(var(--vs-white-color-rgb), 0.3);
    border-radius: 15px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    color: var(--vs-white-color);
    overflow: hidden;
}

.vs-event__figure--day {
    display: flex;
    flex-direction: column;
    padding: 6px 21px;
    font-size: 40px;
    line-height: 1;
    background-color: var(--vs-theme-color2);
}

@media (max-width: 767px) {
    .vs-event__figure--day {
        font-size: 30px;
    }
}

.vs-event__figure--month {
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
}

.vs-event__figure--year {
    background-color: var(--vs-theme-color1);
    padding: 4px 0px 2px;
    font-size: 18px;
}

.vs-event__content {
    align-self: center;
}

.vs-event__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.vs-event__title a {
    color: var(--vs-theme-color1);
    text-transform: capitalize;
}

.vs-event__title a:hover {
    color: var(--vs-theme-color2);
}

.vs-event .vs-time__features {
    margin-bottom: 20px;
}

.vs-event .vs-time__features ul {
    justify-content: flex-start;
    gap: 20px;
}

@media (max-width: 991px) {
    .vs-event .vs-time__features ul {
        gap: 5px;
    }
}

.vs-event .vs-time__features ul li {
    color: var(--vs-title-color);
}

.vs-event .vs-time__features ul li i {
    color: var(--vs-theme-color1);
}

.vs-event__text {
    letter-spacing: 0.48px;
}

@media (max-width: 1199px) {
    .vs-event__text {
        margin-bottom: 0px;
    }
}

.vs-event__footer {
    display: flex;
    gap: 34px;
    padding-top: 20px;
}

@media (max-width: 767px) {
    .vs-event__footer {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
}

.vs-event__user {
    display: flex;
    gap: 15px;
    align-items: center;
}

.vs-event__user--name {
    font-size: 20px;
    margin-bottom: 0px;
    text-transform: capitalize;
}

.vs-event__user--role {
    text-transform: capitalize;
    font-weight: 500;
}

.vs-event__user--img {
    border-radius: 50%;
    border: 3px solid rgba(var(--vs-theme-color2-rgb), 0.5);
}

.vs-event__btn {
    position: relative;
}

@media (max-width: 767px) {
    .vs-event__btn {
        padding-left: 0px;
    }
}

.vs-event__btn::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    width: 1px;
    height: 55px;
}

@media (max-width: 767px) {
    .vs-event__btn::before {
        display: none;
    }
}

.vs-event:hover .vs-event__figure--img {
    transform: scale(1.01);
}

.vs-event--speaker .vs-event__footer {
    padding-top: 0px;
    align-items: center;
    flex-wrap: wrap;
}

.vs-event--speaker .social-style {
    color: var(--vs-body-color);
    font-family: var(--vs-body-font);
    letter-spacing: 0.48px;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
    flex: 1 1 0%;
}

@media (max-width: 767px) {
    .vs-event--speaker .social-style {
        padding-left: 0px;
    }
}

.vs-event--speaker .social-style::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 55px;
    background-color: rgba(var(--vs-title-color-rgb), 0.3);
    left: 0px;
}

@media (max-width: 767px) {
    .vs-event--speaker .social-style::before {
        display: none;
    }
}

.vs-event--speaker .social-style a {
    --icon-size: 36px;
    color: var(--vs-theme-color2);
    border: 2px solid rgba(var(--vs-title-color-rgb), 0.3);
}

.vs-event--speaker .social-style a:hover {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    border-color: var(--vs-theme-color2);
}

.vs-side-form--reg {
    padding: 55px;
    border: 1px dashed rgba(var(--vs-title-color-rgb), 0.3);
    border-radius: 25px;
}

@media (max-width: 991px) {
    .vs-side-form--reg {
        padding: 15px;
    }
}

.vs-side-form--reg .wp-block-heading {
    font-size: 20px;
    text-transform: capitalize;
    padding: 10px 0px;
}

.vs-side-form--reg .vs-side-form__group {
    position: relative;
    border: 1px solid rgba(var(--vs-title-color-rgb), 0.4);
    border-radius: 10px;
}

.vs-side-form--reg .vs-side-form__group--inline .vs-side-form__group {
    flex: 1 1 auto;
}

@media (max-width: 991px) {
    .vs-side-form--reg .vs-side-form__group--inline .vs-side-form__group {
        width: 100%;
    }
}

.vs-side-form--reg .vs-side-form__group--checkbox {
    border: 0px;
}

.vs-side-form--reg .vs-side-form__input {
    letter-spacing: 0.8px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .vs-side-form--reg .vs-side-form__input {
        width: 100%;
    }
}

.vs-side-form--reg .vs-side-form__icon-wrapper {
    position: absolute;
    right: 0px;
    border-right: 0px;
}

.feedback--ele1 {
    position: absolute;
    right: 76px;
    top: 92px;
}

@media (max-width: 1199px) {
    .feedback--ele1 {
        display: none;
    }
}

.feedback-wrapper {
    padding: 0px 0px 0px 100px;
}

@media (max-width: 1199px) {
    .feedback-wrapper {
        padding-left: 40px;
    }
}

.feedback-wrapper {
}

@media (max-width: 991px) {
    .feedback-wrapper {
        padding-left: 0px;
    }
}

.feedback-wrapper.admission-form {
    padding-left: 70px;
}

@media (max-width: 991px) {
    .feedback-wrapper.admission-form {
        padding-left: 0px;
    }
}

.feedback-slider .swiper-wrapper {
    margin-left: 0px;
}

.feedback-slider .vs-feedback-pagination {
    padding: 54px 0px 0px;
}

@media (max-width: 991px) {
    .feedback-slider .vs-feedback-pagination {
        text-align: center;
    }
}

.feedback-slider .vs-feedback-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(var(--vs-white-color-rgb), 0.6);
    opacity: 1;
}

.feedback-slider .vs-feedback-pagination .swiper-pagination-bullet-active {
    background-color: var(--vs-theme-color2);
}

.feedback-image {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 45%;
    height: 100%;
    background-position: right center;
}

@media (max-width: 991px) {
    .feedback-image {
        position: static;
        width: 100%;
        height: 722px;
        margin-top: calc(-1 * var(--vs-section-space-mobile));
        margin-bottom: 50px;
    }
}

.feedback-image--right {
    position: absolute;
    left: auto;
    right: 0px;
    bottom: 0px;
    width: 55%;
    height: 100%;
    z-index: -1;
}

.feedback-block {
    display: inline-flex;
    gap: 62px;
}

@media (max-width: 767px) {
    .feedback-block {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
}

.feedback-block__image {
    --image-size: 145px;
    position: relative;
    height: max-content;
    width: var(--image-size);
}

.feedback-block__image > img {
    width: var(--image-size);
    min-width: var(--image-size);
    height: var(--image-size);
    min-height: var(--image-size);
    object-fit: cover;
    border-radius: 50%;
}

.feedback-block__icon--quote {
    --icon-quote: 77px;
    width: var(--icon-quote);
    min-width: var(--icon-quote);
    height: var(--icon-quote);
    min-height: var(--icon-quote);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--vs-theme-color2);
    position: absolute;
    bottom: -17px;
    right: -28px;
    border: 3px solid var(--vs-white-color);
}

.feedback-block__title {
    color: var(--vs-white-color);
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    text-transform: capitalize;
    line-height: 1.1;
    margin-bottom: 0.5em;
}

.feedback-block__title--sub {
    font-weight: 700;
    color: var(--vs-theme-color2);
    text-transform: capitalize;
    display: inline-block;
    margin: 0px 0px 18px;
}

.feedback-block__rating {
    padding-left: 0px;
    display: flex;
    align-items: center;
    font-size: 16px;
    letter-spacing: 3.2px;
    color: var(--vs-theme-color2);
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .feedback-block__rating {
        justify-content: center;
    }
}

.feedback-block__desc {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.48px;
    color: var(--vs-white-color);
    margin-bottom: 0px;
}

.vs-class {
    border: 1.5px dashed rgba(var(--vs-title-color-rgb), 0.4);
    border-radius: 21px;
    padding: 20px 20px 0px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    transition: 0.3s ease-in-out;
}

.vs-class::before, .vs-class::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0px;
    top: 0px;
    border-radius: 21px;
    transition: 0.3s ease-in-out;
}

.vs-class::after {
    background-color: var(--vs-white-color);
}

.vs-class::before {
    background-color: var(--vs-title-color);
    left: 13px;
    top: 23px;
    height: 96%;
    width: 98%;
}

.vs-class--slider__direction {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 115%;
}

@media (max-width: 991px) {
    .vs-class--slider__direction {
        display: none;
    }
}

.vs-class--ele1 {
    position: absolute;
    bottom: 10px;
    right: 134px;
}

@media (max-width: 991px) {
    .vs-class--ele1 {
        display: none;
    }
}

.vs-class--slider {
    padding-right: 0px;
    padding-left: 15px;
}

.vs-class__figure {
    border-radius: 20px;
    position: relative;
}

.vs-class__figure--link {
    display: inline-block;
    width: 100%;
}

.vs-class__figure--img {
    width: 100%;
    height: 188px;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
}

.vs-class__icon {
    --icon-size: 68px;
    min-width: var(--icon-size);
    width: var(--icon-size);
    min-height: var(--icon-size);
    height: var(--icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--vs-theme-color1);
    border-radius: 50%;
    border: 2px dashed rgba(var(--vs-white-color-rgb), 0.5);
    position: relative;
    z-index: 1;
}

.vs-class__icon--wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -33px;
    background: var(--vs-white-color);
    width: 88px;
    height: 78px;
    line-height: 78px;
    text-align: center;
    padding: 10px 10px 0px;
    border-radius: 60% 60% 0px 0px;
}

.vs-class__icon--wrap::before, .vs-class__icon--wrap::after {
    content: "";
    display: block;
    width: 80%;
    height: 80%;
    position: absolute;
    border-radius: 24px;
}

.vs-class__icon--wrap::before {
    bottom: -5px;
    right: -29px;
    box-shadow: inset -19px -48px 0px 0px var(--vs-white-color);
    transform: rotate(56deg);
}

.vs-class__icon--wrap::after {
    bottom: -6px;
    left: -32px;
    box-shadow: inset -24px 45px 0px 0px var(--vs-white-color);
    transform: rotate(121deg);
}

.vs-class__icon--color2 {
    background-color: var(--vs-theme-color4);
}

.vs-class__icon--color3 {
    background-color: var(--vs-theme-color3);
}

.vs-class__icon--color4 {
    background-color: var(--vs-theme-color2);
}

.vs-class__content {
    padding: 60px 0px 0px;
    position: relative;
    z-index: 1;
}

.vs-class__heading {
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    line-height: 1.1;
    margin: 0px 0px 14px;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

.vs-class__heading--link {
    display: inline-block;
}

.vs-class__heading:hover {
    color: var(--vs-theme-color2);
}

.vs-class__text {
    letter-spacing: 0.48px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0px 0px 20px;
}

.vs-class__bottom {
    margin-bottom: -23px;
}

.vs-class__link {
    display: inline-flex;
    padding: 13px 42px;
    background-color: var(--vs-title-color);
    color: var(--vs-white-color);
    border-radius: 999px;
    margin-bottom: 0px;
}

.vs-class__link:hover {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
}

.vs-class:hover {
    border: 1.5px dashed rgba(var(--vs-theme-color2-rgb), 1);
}

.vs-class:hover .vs-class__link {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
}

.vs-class:hover::before {
    background-color: var(--vs-theme-color2);
}

.vs-class--details {
    background-color: var(--vs-white-color);
    border-radius: 22px;
    overflow: hidden;
}

.vs-class--details p {
    font-weight: 500;
    letter-spacing: 0.48px;
}

.vs-class--details .vs-blog__img {
    border-radius: 20px 20px 0px 0px;
}

.vs-class--details .vs-blog__img--figure {
    border-radius: 20px 20px 0px 0px;
}

.vs-class--details .vs-class__price {
    position: absolute;
    top: 40px;
    right: 35px;
    font-size: 40px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    color: var(--vs-theme-color2);
}

@media (max-width: 767px) {
    .vs-class--details .vs-class__price {
        position: static;
        margin-bottom: 15px;
        display: block;
    }
}

.vs-class--details .vs-class__price span {
    font-family: var(--vs-body-font);
    font-size: 16px;
    color: var(--vs-body-color);
    padding-left: 9px;
}

.vs-class--details .vs-class__row, .vs-class--details .vs-class__table {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.vs-class--details .vs-class__row {
    opacity: 1;
}

@media (max-width: 767px) {
    .vs-class--details .vs-class__row {
        display: inline-grid;
        gap: 15px;
    }
}

.vs-class--details .vs-class__table tbody {
    opacity: 1;
}

@media (max-width: 767px) {
    .vs-class--details .vs-class__table tbody {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
}

.vs-class--details .vs-class__heading--sub {
    font-size: 24px;
    text-transform: capitalize;
}

.vs-class--details .vs-class__data {
    padding: 0px;
    font-weight: bold;
    text-align: left;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.vs-class--details .vs-class__data--heading {
    padding: 0px;
    font-weight: bold;
    text-align: left;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-size: 18px;
}

.vs-class--details .vs-class__data--time {
    color: rgb(224, 164, 11);
}

.vs-class--details .vs-class__data--location {
    color: rgb(224, 164, 11);
}

.vs-class--details .vs-blog__content {
    padding: 40px 35px 65px;
    position: relative;
}

@media (max-width: 991px) {
    .vs-class--details .vs-blog__content {
        padding: 40px 20px;
    }
}

.vs-class--details .vs-blog__meta {
    gap: 30px;
}

.vs-class--details .vs-blog__meta--link {
    gap: 7px;
}

.vs-class--details .vs-blog__meta--link i {
    color: var(--vs-body-color);
    margin-top: -5px;
}

.vs-class--details .vs-blog__meta--link::after {
    display: none;
}

.vs-class--sidebar .widget {
    border: 0px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 10px;
    border-radius: 15px;
    overflow: hidden;
}

.vs-session {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding: 30px 35px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .vs-session {
        background-color: var(--vs-white-color);
        border-radius: 15px;
        padding: 18px 20px;
        margin-bottom: 24px;
    }
}

.vs-session__bg {
    position: absolute;
    right: 0px;
    z-index: -1;
    width: 100%;
    top: 0px;
    height: 100% !important;
}

@media (max-width: 1199px) {
    .vs-session__bg {
        display: none;
    }
}

.vs-session--bg-image {
    position: absolute;
    right: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    opacity: 0.05;
}

.vs-session__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.vs-session__time {
    font-weight: 700;
    letter-spacing: 0.48px;
    color: var(--vs-theme-color-1);
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.vs-session__icon {
    --icon-size: 77px;
    display: inline-flex;
    align-items: center;
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    justify-content: center;
    border-radius: 50%;
    background-color: var(--vs-theme-color1);
    transition: 0.3s ease-in-out;
}

.vs-session--ele1, .vs-session--ele2 {
    position: absolute;
    top: 0px;
    left: 0px;
}

@media (max-width: 991px) {
    .vs-session--ele1, .vs-session--ele2 {
        display: none;
    }
}

.vs-session--ele1 {
    left: 5%;
}

@media (max-width: 1199px) {
    .vs-session--ele1 {
        left: 0px;
    }
}

.vs-session--ele2 {
    left: auto;
    top: 173px;
    right: 185px;
}

@media (max-width: 1199px) {
    .vs-session--ele2 {
        right: 0px;
    }
}

.vs-session:hover .vs-session__icon {
    background-color: var(--vs-theme-color2);
}

.vs-session:hover .vs-session__time {
    color: var(--vs-theme-color2);
}

.vs-pro {
    padding: 40px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.vs-pro::before, .vs-pro::after {
    position: absolute;
    content: "";
    --image-size: 212px;
    min-width: var(--image-size);
    min-height: var(--image-size);
    background-color: var(--vs-white-color);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

@media (max-width: 1199px) {
    .vs-pro::before, .vs-pro::after {
        --image-size: 180px;
    }
}

.vs-pro::before, .vs-pro::after {
}

@media (max-width: 991px) {
    .vs-pro::before, .vs-pro::after {
        --image-size: 200px;
    }
}

.vs-pro::after {
    --image-size: 230px;
    min-width: var(--image-size);
    min-height: var(--image-size);
    border: 3px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    height: var(--image-size);
    width: var(--image-size);
    background-color: transparent;
}

@media (max-width: 1199px) {
    .vs-pro::after {
        --image-size: 190px;
    }
}

.vs-pro::after {
}

@media (max-width: 991px) {
    .vs-pro::after {
        --image-size: 220px;
    }
}

.vs-pro--ele1, .vs-pro--ele2, .vs-pro--ele3 {
    position: absolute;
    z-index: 4;
}

@media (max-width: 991px) {
    .vs-pro--ele1, .vs-pro--ele2, .vs-pro--ele3 {
        display: none;
    }
}

.vs-pro--ele1 {
    top: 94px;
    left: 90px;
}

@media (max-width: 1500px) {
    .vs-pro--ele1 {
        top: 0px;
        left: 0px;
    }
}

.vs-pro--ele1 {
}

@media (max-width: 1199px) {
    .vs-pro--ele1 {
        display: none;
    }
}

.vs-pro--ele2 {
    right: 129px;
    top: 94px;
}

.vs-pro--ele3 {
    right: 69px;
    bottom: -88px;
}

@media (max-width: 991px) {
    .vs-pro--ele3 {
        display: none;
    }
}

.vs-pro--area {
    padding: 190px 0px 170px;
}

.vs-pro--area::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    background-color: var(--vs-theme-color7);
    bottom: 0px;
    z-index: -1;
}

.vs-pro--area.layout-h2 {
    margin: -65px 0px;
    z-index: 3;
}

@media (max-width: 1199px) {
    .vs-pro--area.layout-h2 {
        margin: -98px 0px -65px;
    }
}

.vs-pro--area.layout-h2::before {
    display: none;
}

.vs-pro--area.layout-h3 {
    margin: -85px 0px 0px;
}

@media (max-width: 767px) {
    .vs-pro--area.layout-h3 {
        margin: -150px 0px 0px;
    }
}

.vs-pro--area.layout-h3::before {
    display: none;
}

.vs-pro__grade {
    --grade-size: 75px;
    min-width: var(--grade-size);
    min-height: var(--grade-size);
    width: var(--grade-size);
    height: var(--grade-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    color: var(--vs-white-color);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--vs-title-font);
    font-size: 13px;
    line-height: 1;
    gap: 4px;
    padding: 20px 10px 10px;
    margin-bottom: 12px;
}

.vs-pro__grade span {
    font-size: 26px;
}

.vs-pro__title {
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    margin-bottom: 5px;
    line-height: 1;
    font-weight: 900;
}

.vs-pro__age {
    font-weight: 700;
}

.vs-pro--slider {
    padding: 10px 0px;
    display: flex;
    justify-content: flex-end;
    margin-left: -20px;
}

.vs-pro--slider__direction {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 767px) {
    .vs-pro--slider__direction {
        margin-bottom: 30px;
    }
}

.vs-pro--slider__next, .vs-pro--slider__prev {
    --circle-size: 55px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(2px);
    width: var(--circle-size);
    height: var(--circle-size);
    min-width: var(--circle-size);
    min-height: var(--circle-size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--vs-title-color);
    transition: 0.3s ease-in-out;
    position: relative;
}

.vs-pro--slider__next::before, .vs-pro--slider__prev::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 3px dashed var(--vs-theme-color2);
    border-radius: 50%;
}

.vs-pro--slider__next:hover, .vs-pro--slider__prev:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
}

.vs-grade {
    position: relative;
    background-color: var(--vs-white-color);
    border-radius: 21px;
    overflow: hidden;
    margin-bottom: 30px;
    filter: drop-shadow(rgba(0, 0, 0, 0.07) 0px 4px 15px);
    transition: 0.3s ease-in-out;
}

.vs-grade::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(30, 30, 30, 0.15);
    border-radius: 21px;
}

.vs-grade__figure {
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
}

.vs-grade__body {
    padding: 0px 12px 20px;
    position: relative;
    z-index: 1;
}

.vs-grade__header {
    padding: 10px;
    background-color: var(--vs-white-color);
    margin-top: -23px;
    border-radius: 10px;
}

.vs-grade__header ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    column-count: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.vs-grade__header ul li {
    flex: 1 1 auto;
}

.vs-grade__header ul {
    margin: 0px;
}

@media (max-width: 1199px) {
    .vs-grade__header ul {
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

.vs-grade__feature {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 9px 15px;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.3);
    border-radius: 10px;
    min-width: 100%;
    min-height: 67px;
}

.vs-grade__age, .vs-grade__size {
    color: var(--vs-white-color);
    display: inline-block;
}

.vs-grade__age {
    font-size: 20px;
    font-weight: 900;
    font-family: var(--vs-title-font);
    line-height: 1.1;
}

.vs-grade__size {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.48px;
    text-transform: capitalize;
}

.vs-grade__content {
    padding: 15px 25px;
}

.vs-grade__heading {
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    text-transform: capitalize;
    line-height: 1.1;
    margin-bottom: 7px;
    transition: 0.3s ease-in-out;
}

.vs-grade__heading:hover {
    color: var(--vs-theme-color2);
}

.vs-grade__heading--link {
    display: block;
}

.vs-grade__price {
    font-weight: 600;
    color: var(--vs-theme-color2);
    font-size: 20px;
    display: inline-block;
    margin-bottom: 13px;
}

.vs-grade__price span {
    font-size: 16px;
}

.vs-grade__text {
    margin-bottom: 0px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.48px;
}

.vs-grade:hover {
    background-color: var(--vs-theme-color8);
}

.vs-room {
    text-align: center;
    padding: 42px 20px;
    border-radius: 17px;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.25);
    overflow: hidden;
}

.vs-room--area {
    z-index: 4;
}

.vs-room__ele1, .vs-room__ele2 {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

@media (max-width: 991px) {
    .vs-room__ele1, .vs-room__ele2 {
        display: none;
    }
}

.vs-room__ele1 {
    top: 106px;
    left: 183px;
}

@media (max-width: 1500px) {
    .vs-room__ele1 {
        top: 20px;
        left: 100px;
    }
}

.vs-room__ele2 {
    inset: auto 119px -70px auto;
}

@media (max-width: 1500px) {
    .vs-room__ele2 {
        right: 0px;
    }
}

.vs-room__ele2 {
}

@media (max-width: 1199px) {
    .vs-room__ele2 {
        display: none;
    }
}

.vs-room__icon {
    margin-bottom: 23px;
}

.vs-room__title {
    font-size: 24px;
    text-transform: capitalize;
    color: var(--vs-white-color);
    margin-bottom: 10px;
}

.vs-room__text {
    color: var(--vs-white-color);
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0px;
}

.vs-room--video {
    border-radius: 17px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
}

@media (max-width: 767px) {
    .vs-room--video {
        flex-wrap: wrap;
        gap: 35px;
        padding: 0px 0px 35px;
    }
}

.vs-room--ex {
    text-align: center;
    background-color: var(--vs-theme-color1);
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.3);
    border-radius: 17px;
    padding: 40px 10px;
    min-width: 233px;
    box-shadow: 0 0 0px 7px var(--vs-white-color);
}

.vs-room--ex__num, .vs-room--ex__title {
    color: var(--vs-white-color);
}

.vs-room--ex__num {
    font-size: 55px;
    font-family: var(--vs-title-font);
    font-weight: 900;
    display: inline-flex;
    line-height: 1;
    margin-bottom: 10px;
}

.vs-room--ex__title {
    font-size: 20px;
    text-transform: capitalize;
    line-height: 1.1;
    margin: 0px 0px 30px;
}

.vs-room--icon {
    width: 100%;
    text-align: center;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-room--play {
    --icon-size: 80px;
    width: var(--icon-size);
    height: var(--icon-size);
    border-radius: 50%;
    border: 8px solid rgba(var(--vs-white-color-rgb), 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 26px;
    color: rgba(var(--vs-white-color-rgb), 0.8);
}

.vs-room--play:hover {
    color: var(--vs-theme-color1);
    border-color: var(--vs-white-color);
    background-color: var(--vs-white-color);
}

.vs-client {
    display: flex;
    align-items: stretch;
    position: relative;
    gap: 27px;
    padding: 25px 60px 40px;
}

@media (max-width: 1199px) {
    .vs-client {
        background-color: var(--vs-white-color);
        border-radius: 20px;
        padding: 20px;
    }
}

.vs-client {
}

@media (max-width: 767px) {
    .vs-client {
        flex-wrap: wrap;
        gap: 0px;
    }
}

.vs-client--slider {
    padding-left: 0px;
    display: flex;
    justify-content: center;
}

.vs-client__image {
    align-self: self-start;
    border-radius: 50%;
    overflow: hidden;
    border: 7px solid var(--vs-theme-color1);
    min-width: 91px;
}

.vs-client__content {
    padding-top: 10px;
}

.vs-client__title {
    font-size: 24px;
    margin-bottom: 0px;
    text-transform: capitalize;
}

.vs-client__quote {
    position: absolute;
    right: 80px;
    bottom: 55px;
}

@media (max-width: 991px) {
    .vs-client__quote {
        right: 15px;
        bottom: 25px;
    }
}

.vs-client__desc {
    font-weight: 500;
    text-transform: capitalize;
}

.vs-time {
    background-color: var(--vs-theme-color6);
    border-radius: 20px;
    overflow: hidden;
    border: 4px dashed rgba(var(--vs-theme-color1-rgb), 0.2);
    margin-bottom: 30px;
}

.vs-time--ele1 {
    position: absolute;
    right: 90px;
    top: 107px;
}

@media (max-width: 767px) {
    .vs-time--ele1 {
        display: none;
    }
}

.vs-time__figure {
    margin: 2px 3px 0px;
    border-radius: 15px 15px 0px 0px;
    position: relative;
}

.vs-time__image {
    border-radius: 15px 15px 0px 0px;
}

.vs-time__image--link {
    display: block;
    border-radius: 15px 15px 0px 0px;
    overflow: hidden;
}

.vs-time__price {
    --price-size: 63px;
    width: var(--price-size);
    height: var(--price-size);
    background-color: var(--vs-theme-color2);
    position: absolute;
    bottom: -23px;
    right: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--vs-white-color);
    padding: 10px;
    font-family: var(--vs-title-font);
    font-weight: 700;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.5);
}

.vs-time__content {
    padding: 30px;
}

.vs-time__rating {
    margin: 0px 0px 15px;
}

.vs-time__rating ul {
    padding-left: 0px;
    margin-bottom: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--vs-theme-color2);
}

.vs-time__heading {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.vs-time__heading a {
    display: inline-block;
    color: var(--vs-title-color);
}

.vs-time__heading a:hover {
    color: var(--vs-theme-color2);
}

.vs-time__heading:hover {
    color: var(--vs-theme-color2);
}

.vs-time__features ul {
    padding-left: 0px;
    margin-bottom: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--vs-body-color);
    margin-left: 0px;
}

.vs-time__features ul li span {
    font-weight: 600;
    display: inline-block;
}

.vs-time__features ul li span i {
    margin-right: 9px;
}

.vs-time__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vs-time__teacher--link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--vs-title-font);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.48px;
    color: var(--vs-theme-color1);
}

.vs-time__topic {
    font-family: var(--vs-title-font);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.48px;
    color: var(--vs-title-color);
}

.vs-time__divider {
    margin: 25px 0px 16px;
    color: inherit;
    background-color: transparent;
    border-top: 1px solid rgb(217, 217, 217);
    opacity: 1;
}

.vs-time--class {
    border: 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
}

.vs-time--class .vs-time__figure {
    margin: 8px;
}

.vs-video--ele1, .vs-video--ele2 {
    position: absolute;
    inset: 0px;
    z-index: -1;
}

@media (max-width: 991px) {
    .vs-video--ele1, .vs-video--ele2 {
        display: none;
    }
}

.vs-video--ele1 {
    left: 134px;
    top: 85px;
}

.vs-video--ele2 {
    top: 64px;
    right: 264px;
    left: auto;
}

.vs-video--bg-image, .vs-video--bg-image--overlay {
    position: absolute;
    width: 100%;
    height: 104%;
    z-index: -3;
    inset: 0px;
    opacity: 0.05;
}

.vs-video--bg-image img {
    height: 104%;
    object-fit: cover;
    width: 100%;
}

.vs-video--bg-image--overlay {
    z-index: -2;
}

.vs-video__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.vs-video__content .vs-btn:hover {
    color: var(--vs-white-color);
}

.vs-video__content .vs-btn::before, .vs-video__content .vs-btn::after {
    background-color: var(--vs-title-color);
}

.vs-video__button {
    margin-bottom: 42px;
}

.vs-video__divider {
    background-color: var(--vs-white-color);
    opacity: 0.3;
    min-width: 878px;
    margin-bottom: 45px;
    height: 1.5px;
    border: 0px;
    border-radius: 100%;
}

@media (max-width: 991px) {
    .vs-video__divider {
        min-width: 100%;
    }
}

.vs-why--ele1, .vs-why--ele2 {
    position: absolute;
    top: 0px;
    left: 0px;
}

@media (max-width: 1199px) {
    .vs-why--ele1, .vs-why--ele2 {
        display: none;
    }
}

.vs-why--ele1 {
    top: 84px;
    left: 63px;
}

@media (max-width: 1500px) {
    .vs-why--ele1 {
        top: 5px;
    }
}

.vs-why--ele2 {
    top: auto;
    bottom: 104px;
    left: 0px;
}

.accordion .accordion-item {
    margin: 0px 0px 15px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
}

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

.accordion .accordion-item:first-of-type .accordion-button {
    border-radius: 0px;
}

.accordion .accordion-item:last-of-type .accordion-button.collapsed, .accordion .accordion-item:last-of-type .accordion-collapse {
    border-radius: 0px;
}

.accordion .accordion-item:not(:first-of-type) {
    border-top: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
}

.accordion .accordion-header {
    margin: 0px;
}

.accordion .accordion-button {
    background: transparent;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 0px;
    padding: 19.5px 25px;
    font-size: 20px;
    font-weight: 900;
    font-family: var(--vs-title-font);
    color: var(--vs-title-color);
    text-align: left;
    text-transform: capitalize;
    box-shadow: none;
    line-height: 1.3;
}

.accordion .accordion-button::after {
    content: "";
    font-family: var(--vs-icon-font);
    font-weight: 400;
    color: var(--vs-title-color);
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px dashed transparent;
    border-radius: 50%;
}

.accordion .accordion-button:hover {
    color: var(--vs-theme-color);
}

.accordion .accordion-button:hover::after {
    color: var(--vs-theme-color);
}

.accordion .accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed) {
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color2);
}

.accordion .accordion-button:not(.collapsed)::after {
    color: var(--vs-white-color);
    content: "";
}

.accordion .accordion-body {
    padding: 18px 25px 35px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    color: var(--vs-body-color);
}

.accordion .accordion-body p:last-child {
    margin-bottom: 0px;
}

.accordion .accordion-collapse {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.accordion__reaction {
    display: flex;
    align-items: center;
    max-width: 485px;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    background: rgba(18, 21, 31, 0.7);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 4px inset;
    border-radius: 29.5px;
    padding: 0px 30px;
    min-height: 55px;
    margin-top: 39px;
    color: var(--body-color);
}

.accordion__reaction--btns {
    display: flex;
    align-items: center;
}

.accordion__reaction--btn {
    padding-right: 22px;
    margin-right: 22px;
    position: relative;
}

.accordion__reaction--btn::after {
    position: absolute;
    content: "";
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 1px;
    opacity: 0.15;
    background-color: rgb(217, 217, 217);
    border-radius: 100%;
}

.accordion__reaction--btn:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.accordion__reaction--btn:last-child::after {
    display: none;
}

.accordion__reaction--btn:hover {
    color: var(--vs-theme-color);
}

.vs-filter--area {
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.05);
    padding: 15px 25px;
    border-radius: 10px;
}

.vs-filter--item, .vs-filter--select {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    flex-wrap: wrap;
}

.vs-filter--item {
    gap: 27px;
}

@media (max-width: 767px) {
    .vs-filter--item {
        gap: 15px;
    }
}

.vs-filter--select {
    gap: 15px;
}

.vs-filter--select select {
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
    min-height: 40px;
    padding: 0px 17px;
    border-radius: 6px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 17px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    appearance: none;
    cursor: pointer;
    min-width: 85px;
    font-size: 14px;
    font-weight: 700;
    color: var(--vs-body-color);
    outline: none;
    text-transform: capitalize;
}

.vs-filter--select select option {
    font-size: 14px;
    font-weight: 700;
}

.vs-shop {
    margin-bottom: 40px;
}

.vs-shop__img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 287px;
    background-color: var(--vs-theme-color6);
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    position: relative;
}

.vs-shop__img::before {
    content: "";
    position: absolute;
    left: 0px;
    width: 100%;
    height: 0%;
    bottom: auto;
    top: 0px;
    background-color: rgb(246, 241, 228);
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.vs-shop__img img {
    transform: scale(1.05);
    transform-origin: center center;
    transition: 0.3s ease-in-out;
}

.vs-shop__tags {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.vs-shop__tags--link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--vs-body-color);
    text-transform: capitalize;
}

.vs-shop__heading {
    font-size: 20px;
}

.vs-shop__heading a {
    color: var(--vs-title-color);
}

.vs-shop__heading a:hover {
    color: var(--vs-theme-color2);
}

.vs-shop__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vs-shop__pricing {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--vs-title-font);
}

.vs-shop__hover {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.vs-shop__btn {
    --icon-size: 50px;
    display: inline-flex;
    min-width: var(--icon-size);
    width: var(--icon-size);
    height: var(--icon-size);
    min-height: var(--icon-size);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.3);
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.vs-shop__btn::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 0%;
    border-radius: 50%;
    background-color: transparent;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.vs-shop__btn:hover {
    color: var(--vs-white-color);
}

.vs-shop__btn:hover::before {
    background-color: var(--vs-theme-color2);
    height: 100%;
}

.vs-shop:hover .vs-shop__img::before {
    visibility: visible;
    height: 100%;
    opacity: 0.8;
    bottom: 0px;
    top: auto;
    transition: 0.3s ease-in-out;
}

.vs-shop:hover .vs-shop__img img {
    transform: scale(1.01);
    transition: 0.3s ease-in-out;
}

.vs-shop:hover .vs-shop__hover {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.vs-shop:hover .vs-shop__heading a {
    color: var(--vs-theme-color2);
}

.star-rating {
    overflow: hidden;
    position: relative;
    width: 92px;
    height: 1.2em;
    line-height: 1.2em;
    display: block;
    font-family: var(--vs-icon-font);
    font-weight: 700;
    font-size: 14px;
}

.star-rating::before {
    content: "";
    color: var(--vs-theme-color2);
    float: left;
    letter-spacing: 3px;
    font-weight: 700;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0px;
    left: 0px;
    position: absolute;
    padding-top: 1.5em;
}

.star-rating span::before {
    content: "";
    top: 0px;
    position: absolute;
    left: 0px;
    color: var(--vs-theme-color2);
    letter-spacing: 3px;
    font-weight: 700;
}

.shop-sidebar .widget__toggle__expand {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, border 0.5s ease-in-out;
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0);
    border-radius: 10px;
    background-color: var(--vs-white-color);
}

.shop-sidebar .widget__toggle__expand.expanded {
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.14);
    background-color: var(--vs-white-color);
}

.shop-sidebar .widget-arrow-icon {
    float: right;
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

.shop-sidebar .widget-arrow-icon.expanded-arrow {
    transform: rotate(0deg);
}

.shop-sidebar .widget__toggle {
    cursor: pointer;
}

.shop-sidebar .wp-block-heading {
    text-transform: uppercase;
    justify-content: space-between;
    margin-bottom: 0px;
    width: 100%;
}

.shop-sidebar .wp-block-heading svg {
    margin-left: auto;
}

.shop-sidebar .widget {
    padding: 0px;
    background-color: transparent;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    margin-bottom: 45px;
}

.shop-sidebar .widget__toggle {
    width: 100%;
    display: flex;
}

.shop-sidebar .widget ul {
    padding: 10px 0px;
    margin-bottom: 0px;
    list-style: none;
    border-radius: 10px;
}

.shop-sidebar .widget ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--vs-body-color);
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 0.48px;
    padding: 18px 25px;
    border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.14);
}

.shop-sidebar .widget ul li a::after {
    content: "+";
    margin-left: auto;
    font-size: 16px;
    font-weight: 600;
}

.shop-sidebar .widget ul li:last-child a {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.shop-sidebar .widget ul li:hover a {
    color: var(--vs-theme-color2);
}

.shop-sidebar .widget__toggle {
    background-color: transparent;
    border: 0px;
    padding: 0px;
}

.price-slider-container {
    padding: 5px 0px 30px;
    border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.14);
}

.price-slider-container .slider-wrapper {
    position: relative;
    height: 5px;
    margin: 5px 10px 30px;
    border-radius: 5px;
    background-color: var(--vs-theme-color2);
}

.price-slider-container .slider-wrapper .slider-track {
    position: absolute;
    height: 5px;
    background-color: var(--vs-title-color);
    border-radius: 5px;
}

.price-slider-container .slider-wrapper .thumb {
    position: absolute;
    width: 19px;
    height: 19px;
    background-color: var(--vs-white-color);
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: 3.5px solid rgb(37, 40, 62);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    transition: 0.3s, transform 0.3s;
}

.price-slider-container .slider-wrapper .thumb:hover {
    border-color: var(--vs-theme-color2);
    transform: translate(-50%, -50%) scale(1.1);
}

.price-slider-container .slider-wrapper .min-thumb {
    left: 0px;
}

.price-slider-container .slider-wrapper .max-thumb {
    right: 0px;
}

.price-slider-container .price-display {
    font-size: 16px;
    font-weight: 600;
    color: var(--vs-title-color);
}

.price-slider-container .price-display span {
    color: var(--vs-body-color);
}

.price-slider-container .filter-button {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 12px 27px;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--vs-title-font);
    font-weight: 600;
    font-size: 16px;
}

.price-slider-container .filter-button:hover {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
}

.price-slider-container .price-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.side-product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0px;
    border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.14);
}

.side-product__img {
    max-width: 91px;
    min-width: 91px;
    max-height: 80px;
    min-height: 80px;
    background-color: var(--vs-theme-color6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.15);
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

.side-product__title {
    font-size: 18px;
    margin: 3px 0px 1px;
    text-transform: capitalize;
}

.side-product__title a {
    color: var(--vs-title-color);
}

.side-product__title a:hover {
    color: var(--vs-theme-color2);
    transition: 0.3s ease-in-out;
}

.side-product__price {
    font-weight: 800;
    font-family: var(--vs-title-font);
    font-size: 18px;
}

.side-product:hover .side-product__img {
    border-color: var(--vs-theme-color2);
}

.side-product:hover .side-product__img img {
    transform: scale(1.01);
    transition: 0.3s ease-in-out;
}

.side-product:hover .side-product__title a {
    color: var(--vs-theme-color2);
}

.sidebar-offer {
    background-color: var(--vs-theme-color1);
    padding: 35px 40px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sidebar-offer__bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
}

.sidebar-offer__title {
    color: var(--vs-white-color);
    font-size: 24px;
    text-transform: uppercase;
}

.sidebar-offer__title--sub {
    color: var(--vs-white-color);
    font-size: 26px;
    font-weight: 700;
    font-family: var(--vs-special-font);
    letter-spacing: 0.48px;
    margin-bottom: 3px;
    display: inline-block;
}

.sidebar-offer__btn {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    color: var(--vs-white-color);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sidebar-offer__btn i {
    font-size: 14px;
}

.sidebar-offer__btn:hover {
    color: var(--vs-theme-color2);
}

.product-swatches-container {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.product-swatches-container .swatch {
    --border-size: 3px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: var(--border-size) solid transparent;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(255, 69, 0, 0) 0px 0px 0px 0px;
}

.product-swatches-container .swatch.swatch1 {
    background-color: rgb(44, 36, 33);
}

.product-swatches-container .swatch.swatch1.active {
    border: var(--border-size) solid var(--vs-theme-color2);
}

.product-swatches-container .swatch.swatch2 {
    background-color: rgb(230, 59, 63);
}

.product-swatches-container .swatch.swatch2.active {
    border: var(--border-size) solid var(--vs-theme-color2);
}

.product-swatches-container .swatch.swatch3 {
    background-color: rgb(79, 131, 14);
}

.product-swatches-container .swatch.swatch3.active {
    border: var(--border-size) solid var(--vs-theme-color2);
}

.product-swatches-container .swatch.swatch4 {
    background-color: rgb(83, 161, 175);
}

.product-swatches-container .swatch.swatch4.active {
    border: var(--border-size) solid var(--vs-theme-color2);
}

.product-swatches-container {
}

.product-swatches-container .swatch.active {
    border: var(--border-size) solid var(--vs-theme-color2);
}

.product-slide-row .myShopSwiperThumbs .swiper-slide {
    width: 25%;
    background-color: var(--vs-theme-color6);
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 116px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.product-slide-row .myShopSwiperThumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--vs-theme-color2);
}

.product-slide-row .myShopSwiperMain {
    background-color: var(--vs-theme-color6);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
    padding: 15px;
}

.product-slide-row .myShopSwiperMain .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-about__tag {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.48px;
}

.product-about .product-title {
    font-size: 40px;
    margin-bottom: 15px;
}

.product-about .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.product-about .product-desc {
    font-weight: 500;
}

.product-about .product-price {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    text-transform: uppercase;
    color: var(--vs-theme-color2);
    display: flex;
    align-items: center;
}

.product-about .product-price span {
    font-family: var(--vs-body-font);
    font-size: 16px;
    color: var(--vs-body-color);
    padding-left: 15px;
    margin-left: 15px;
    position: relative;
}

.product-about .product-price span::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background-color: var(--vs-body-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}

.product-about__title--sub {
    font-size: 18px;
    font-weight: 600;
    color: var(--vs-title-color);
    margin-bottom: 6px;
    display: inline-block;
}

.product-about__actions {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
}

.product-about__actions .quantity__field {
    display: flex;
    align-items: center;
    position: relative;
    min-width: 120px;
    justify-content: center;
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
    border-radius: 6px;
}

.product-about__actions .quantity__field input {
    min-height: 46px;
    text-align: center;
    border-top: 0px;
    border-bottom: 0px;
    border-image: initial;
    padding: 0px;
    position: relative;
    z-index: 9;
    min-width: 50px;
    border-right: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
    border-left: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
    appearance: none;
    font-weight: 700;
    background-color: transparent;
}

.product-about__actions .quantity__field input::-webkit-outer-spin-button, .product-about__actions .quantity__field input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0px;
}

.product-about__actions .quantity__buttons {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-about__actions .quantity__buttons .qty-btn {
    min-height: 50px;
    min-width: 34px;
    background-color: transparent;
    border: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.product-about__actions .quantity__buttons .qty-btn:hover {
    color: var(--vs-theme-color2);
}

.product-about__actions .vs-btn {
    padding: 15px 24px;
    border-radius: 6px;
}

.product-about__actions .wish-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px 19px;
    min-height: 48px;
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
    border-radius: 6px;
    text-transform: uppercase;
    color: var(--vs-body-color);
    font-weight: 700;
}

.product-about__actions .wish-btn:hover {
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color2);
    border-color: var(--vs-theme-color2);
}

.product-about .product_meta ul {
    padding-left: 0px;
    margin-bottom: 0px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.product-about .product_meta ul li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product-about .product_meta ul li > span {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--vs-title-color);
    margin-right: 10px;
}

.product-about .product_meta ul li > span i {
    margin-right: 10px;
    color: var(--vs-body-color);
    min-width: 20px;
}

.product-about .product_meta ul li a {
    color: var(--vs-body-color);
    font-weight: 500;
    text-transform: capitalize;
    margin-right: 5px;
}

.product-about .product_meta ul li a:hover {
    color: var(--vs-theme-color2);
}

.product-description {
    border-radius: 10px;
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
    overflow: hidden;
}

.product-description .nav-pills {
    background-color: var(--vs-theme-color1);
}

.product-description .nav-pills .nav-link {
    padding: 19px 30px;
    font-weight: 700;
    color: var(--vs-white-color);
    font-family: var(--vs-title-font);
}

@media (max-width: 767px) {
    .product-description .nav-pills .nav-link {
        padding: 6px 10px;
    }
}

.product-description .nav-pills .nav-link.active, .product-description .nav-pills .nav-link:hover {
    background-color: transparent;
    color: var(--vs-theme-color5);
}

.product-description .tab-content {
    padding: 30px 30px 40px;
}

@media (max-width: 767px) {
    .product-description .tab-content {
        padding: 30px 15px 15px;
    }
}

.product-description .product-information {
    display: grid;
    gap: 15px;
}

.product-description .product-information__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-description .product-information__name {
    font-weight: 700;
}

.product-description .vs-comment-form {
    margin-top: 30px;
}

.product-description .vs-comment-form .inner-title {
    font-size: 30px;
    text-transform: capitalize;
}

.product-description .vs-comment-form .vs-post-comment {
    display: flex;
    gap: 20px;
}

.product-description .vs-comment-form .custom-checkbox {
    margin-bottom: 0px;
    margin-top: 0px;
}

.product-description .vs-comment-form .custom-checkbox .form-check-input:checked + .form-check-label .vs-side-form__custom-box {
    background-color: var(--vs-theme-color2);
}

.product-description .vs-comments-wrap .inner-title {
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.product-description .vs-comments-wrap .star-rating {
    top: 29px;
    right: 30px;
}

@media (max-width: 991px) {
    .product-description .vs-comments-wrap .star-rating {
        position: absolute;
        top: 30px;
    }
}

.product-description .vs-comments-wrap .vs-post-comment {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .product-description .vs-comments-wrap .vs-post-comment {
        flex-direction: column;
    }
}

.product-description .vs-comments-wrap + .vs-comment-form {
    margin-bottom: 0px;
}

.rating-select {
    margin-top: -0.4em;
}

.rating-select label {
    margin: 0px 10px 0px 0px;
    display: inline-block;
}

.rating-select p.stars {
    margin-bottom: 0px;
    line-height: 1;
    display: inline-block;
}

.rating-select p.stars a {
    position: relative;
    height: 14px;
    width: 18px;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 991px) {
    .rating-select p.stars a {
        width: 14px;
    }
}

.rating-select p.stars a::before {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 18px;
    height: 14px;
    line-height: 1;
    font-family: var(--vs-icon-font);
    content: "";
    font-weight: 400;
    text-indent: 0px;
    color: var(--vs-theme-color2);
}

.rating-select p.stars a:hover ~ a::before {
    content: "";
    font-weight: 400;
}

.rating-select p.stars:hover a::before {
    content: "";
    font-weight: 700;
}

.rating-select p.stars.selected a.active::before {
    content: "";
    font-weight: 700;
}

.rating-select p.stars.selected a.active ~ a::before {
    content: "";
    font-weight: 400;
}

.rating-select p.stars.selected a:not(.active)::before {
    content: "";
    font-weight: 700;
}

.product-sizes-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-sizes-container .size {
    background-color: var(--vs-theme-color6);
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
    border-radius: 6px;
    padding: 9px 23px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vs-body-color);
    cursor: pointer;
    transition: 0.3s;
    text-transform: capitalize;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-sizes-container .size.active {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    border-color: var(--vs-theme-color1);
}

.product-description .custom-checkbox, .product-description .wc_payment_method, .product-description .woocommerce-shipping-methods, .product-description #ship-to-different-address {
    padding: 10px 0px 20px;
    display: flex;
    align-items: center;
}

.product-description .custom-checkbox label, .product-description .wc_payment_method label, .product-description .woocommerce-shipping-methods label, .product-description #ship-to-different-address label {
    margin-bottom: 0px;
    padding-left: 0px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.product-description .custom-checkbox input[type="checkbox"], .product-description .custom-checkbox input[type="radio"], .product-description .wc_payment_method input[type="checkbox"], .product-description .wc_payment_method input[type="radio"], .product-description .woocommerce-shipping-methods input[type="checkbox"], .product-description .woocommerce-shipping-methods input[type="radio"], .product-description #ship-to-different-address input[type="checkbox"], .product-description #ship-to-different-address input[type="radio"] {
    display: none;
}

.product-description .custom-checkbox input[type="checkbox"] ~ label::before, .product-description .custom-checkbox input[type="radio"] ~ label::before, .product-description .wc_payment_method input[type="checkbox"] ~ label::before, .product-description .wc_payment_method input[type="radio"] ~ label::before, .product-description .woocommerce-shipping-methods input[type="checkbox"] ~ label::before, .product-description .woocommerce-shipping-methods input[type="radio"] ~ label::before, .product-description #ship-to-different-address input[type="checkbox"] ~ label::before, .product-description #ship-to-different-address input[type="radio"] ~ label::before {
    content: "";
    background-color: transparent;
    border: 1px solid var(--vs-theme-color2);
    border-radius: 0px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    line-height: 20px;
    font-family: var(--vs-icon-font);
    text-align: center;
    color: var(--vs-white-color);
    font-size: 0px;
    transition: 0.3s ease-in-out;
}

.product-description .custom-checkbox input[type="checkbox"]:checked ~ label::before, .product-description .custom-checkbox input[type="radio"]:checked ~ label::before, .product-description .wc_payment_method input[type="checkbox"]:checked ~ label::before, .product-description .wc_payment_method input[type="radio"]:checked ~ label::before, .product-description .woocommerce-shipping-methods input[type="checkbox"]:checked ~ label::before, .product-description .woocommerce-shipping-methods input[type="radio"]:checked ~ label::before, .product-description #ship-to-different-address input[type="checkbox"]:checked ~ label::before, .product-description #ship-to-different-address input[type="radio"]:checked ~ label::before {
    background-color: var(--vs-theme-color2);
    border-color: transparent;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.woocommerce-message, .woocommerce-info {
    position: relative;
    border: transparent;
    padding: 15px 25px;
    background-color: var(--vs-theme-color1);
    margin-bottom: 10px;
    color: var(--vs-white-color);
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 30px;
}

.woocommerce-message a, .woocommerce-info a {
    color: inherit;
    text-decoration: underline;
}

.woocommerce-message a:hover, .woocommerce-info a:hover {
    text-decoration: underline;
    color: var(--vs-theme-color2);
}

.woocommerce-message::before, .woocommerce-info::before {
    content: "";
    font-family: var(--vs-icon-font);
    font-weight: 900;
    margin-right: 10px;
    color: var(--vs-white-color);
}

.cart_table {
    border: 1px solid var(--vs-border-color);
    margin-bottom: 45px;
    background: var(--vs-theme-color6);
}

.cart_table thead {
    background-color: var(--vs-theme-color2);
}

.cart_table thead th {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 26.75px 15px;
    color: var(--vs-white-color);
    border-width: medium !important;
    border-style: none !important;
    border-color: currentcolor !important;
    border-image: initial !important;
}

.cart_table td::before, .cart_table th {
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 27px 15px;
}

.cart_table td::before {
    content: attr(data-title);
    position: absolute;
    left: 15px;
    top: 50%;
    padding: 0px;
    transform: translateY(-50%);
    display: none;
}

.cart_table td {
    border-bottom: 1px solid var(--vs-border-color);
    color: var(--vs-body-color);
    padding: 20px;
    position: relative;
    vertical-align: middle;
    text-align: center;
    font-family: var(--vs-title-font);
}

@media (max-width: 991px) {
    .cart_table td {
        padding: 5px;
    }
}

.cart_table td.cart_table__product-name {
    text-align: left;
}

@media (max-width: 767px) {
    .cart_table td.cart_table__product-name {
        text-align: right;
    }
}

.cart_table td .amount {
    font-weight: 700;
}

.cart_table .icon-btn {
    --btn-size: 50px;
    font-size: var(--btn-font-size, 17px);
}

.cart_table .icon-btn:hover {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
}

.cart_table .product-quantity {
    color: var(--title-color);
}

.cart_table .product-quantity input {
    position: relative;
    top: -2px;
}

.cart_table .cart-productname {
    font-weight: 700;
    font-family: var(--title-font);
    color: var(--title-color);
    text-transform: uppercase;
}

.cart_table .cart-productname:hover {
    color: var(--vs-theme-color);
}

.cart_table .cart-productimage {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vs-white-color);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .cart_table .cart-productimage {
        margin-left: auto;
    }
}

.cart_table .cart-productimage > img {
    object-fit: cover;
    width: 100%;
    padding: 5px;
}

.cart_table .remove {
    color: var(--vs-theme-color1);
    font-size: 18px;
}

.cart_table .remove:hover {
    color: var(--vs-theme-color2);
}

.cart_table .quantity {
    display: inline-flex;
    align-items: center;
}

.cart_table .quantity__buttons {
    display: flex;
    align-items: center;
}

.cart_table .qut-btn {
    border: 2px solid var(--vs-border-color);
    background-color: transparent;
    color: rgb(184, 198, 208);
    padding: 0px;
    width: 30px;
    height: 30px;
    line-height: 25px;
    font-size: 16px;
    border-radius: 4px;
}

.cart_table .qut-btn:hover {
    background-color: var(--vs-theme-color);
    color: var(--white-color);
}

.cart_table .qty-input {
    vertical-align: middle;
    border: 1px solid var(--vs-border-color);
    width: 70px;
    min-height: 45px;
    font-size: 16px;
    text-align: center;
    color: var(--vs-title-color);
    font-family: var(--vs-title-font);
    font-weight: 700;
    margin: 0px 10px;
    border-radius: 4px;
    padding: 0px 15px;
    appearance: none;
}

@media (max-width: 991px) {
    .cart_table .qty-input {
        width: 60px;
    }
}

.cart_table input[type="number"]::-webkit-outer-spin-button, .cart_table input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    margin: 0px;
}

.cart_table .actions {
    text-align: right;
    vertical-align: middle;
    padding: 20px;
}

.cart_table .actions > .vs-btn {
    font-size: 16px;
    padding: 17px 28px;
    margin-right: 15px;
}

.cart_table .actions > .vs-btn:last-child {
    margin-right: 0px;
}

.cart_table .vs-cart-coupon {
    float: left;
    display: inline-flex;
    margin: 0px;
}

.cart_table .vs-cart-coupon input {
    height: 54px;
    width: calc(100% - 200px);
    margin-right: 10px;
    border: 1px solid var(--bg-color2);
    padding: 10px 20px;
    background-color: var(--vs-border-color);
    color: var(--vs-body-color);
    transition: 0.3s ease-in-out;
    border-radius: 50px;
}

@media (max-width: 991px) {
    .cart_table .vs-cart-coupon input {
        flex: 1 1 0%;
    }
}

.cart_table .vs-cart-coupon input::placeholder {
    color: var(--vs-body-color);
}

.cart_table .vs-cart-coupon input:focus {
    border-color: var(--vs-theme-color);
    transition: 0.3s ease-in-out;
}

.cart_table .vs-cart-coupon .vs-btn {
    flex: 0 0 auto;
}

.quantity.style2 .quantity__field {
    background-color: transparent;
}

.quantity.style2 .qty-btn {
    width: 45px;
    height: 45px;
    background-color: var(--vs-white-color);
    border: 1px solid var(--vs-border-color);
    border-radius: 4px;
    color: var(--vs-body-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .quantity.style2 .qty-btn {
        width: 36px;
    }
}

.quantity.style2 .qty-btn:hover {
    background-color: var(--vs-theme-color2);
    border-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
}

.cart-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
}

@media (max-width: 991px) {
    .cart-footer-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.cart-footer-actions-right {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cart_totals {
    border: 1px solid var(--border-color);
}

.cart_totals th, .cart_totals td {
    vertical-align: top;
    padding: 20px;
    border: 1px solid var(--vs-theme-color6);
    font-size: 14px;
    color: var(--vs-theme-color2);
    width: 55%;
}

.cart_totals th:first-child, .cart_totals td:first-child {
    width: 45%;
    background-color: var(--vs-theme-color6);
    font-weight: 700;
    font-size: 14px;
    color: var(--vs-title-color);
}

.cart_totals .shipping-calculator-button {
    display: inline-block;
    border-bottom: 1px solid;
    color: var(--title-color);
    font-weight: 700;
}

.cart_totals .shipping-calculator-button:hover {
    color: var(--vs-theme-color);
}

.cart_totals .woocommerce-shipping-destination {
    margin-bottom: 10px;
}

.cart_totals .woocommerce-shipping-methods {
    margin-bottom: 5px;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0px;
}

.cart_totals .woocommerce-shipping-methods > li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 13px;
}

.cart_totals .woocommerce-shipping-methods input[type="radio"] {
    display: none;
}

.cart_totals .woocommerce-shipping-methods input[type="radio"] ~ label {
    display: flex;
    align-items: center;
    font-family: var(--vs-title-font);
    gap: 15px;
    text-transform: capitalize;
}

.cart_totals .woocommerce-shipping-methods input[type="radio"] ~ label::before {
    content: "";
    background-color: transparent;
    border: 1px solid var(--vs-theme-color2);
    border-radius: 0px;
    height: 25px;
    width: 25px;
    min-width: 25px;
    line-height: 25px;
    font-family: var(--vs-icon-font);
    text-align: center;
    color: var(--vs-theme-color1);
    font-size: 0px;
    transition: 0.3s ease-in-out;
}

.cart_totals .woocommerce-shipping-methods input[type="radio"]:checked ~ label::before {
    background-color: var(--vs-theme-color2);
}

.cart_totals .shipping-calculator-form {
    display: none;
}

.cart_totals .shipping-calculator-form p:first-child {
    margin-top: 20px;
}

.cart_totals .shipping-calculator-form p:last-child {
    margin-bottom: 0px;
}

.cart_totals .shipping-calculator-form .vs-btn {
    padding: 10px 30px;
    height: 50px;
    align-items: center;
}

.cart_totals .amount {
    font-weight: 700;
}

.cart_totals .order-total .amount {
    color: var(--vs-theme-color);
}

.shipping-calculator-form .nice-select.form-select, .shipping-calculator-form .form-control {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    height: 50px;
    border: 0px;
    color: var(--vs-body-color);
    box-shadow: none;
}

.shipping-calculator-form .nice-select.form-select::after, .shipping-calculator-form .form-control::after {
    display: none;
}

.shipping-calculator-form .form-select {
    min-height: 50px;
    border: 0px;
    color: var(--vs-body-color);
    box-shadow: none;
}

.cart-footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cart-footer-right .vs-btn {
    flex: 1 1 auto;
}

@media (max-width: 991px) {
    .cart_table th {
        padding: 23px 8px;
        font-size: 14px;
    }

    .cart_table .cart-productname {
        font-size: 14px;
    }

    .cart_table .vs-cart-coupon {
        width: 100%;
        margin-bottom: 20px;
    }

    .cart_table .actions {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .cart_table {
        text-align: left;
        border-collapse: separate;
        border-spacing: 0px;
        border-top-width: medium;
        border-right-width: medium;
        border-left-width: medium;
        border-top-style: none;
        border-right-style: none;
        border-left-style: none;
        border-top-color: currentcolor;
        border-right-color: currentcolor;
        border-left-color: currentcolor;
        border-image: initial;
        border-bottom: 1px solid var(--vs-border-color);
    }

    .cart_table thead {
        display: none;
    }

    .cart_table td {
        padding: 15px;
        display: block;
        width: 100%;
        text-align: right;
        border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
    }

    .cart_table td::before {
        display: block;
    }

    .cart_table td:last-child {
        border-bottom: 1px solid rgb(243, 243, 243);
    }

    .cart_table td.actions {
        padding-left: 15px;
        text-align: center;
    }

    .cart_table td.actions > .vs-btn {
        display: block;
        width: max-content;
        margin: 10px auto 0px;
    }

    .cart_table .vs-cart-coupon {
        width: 100%;
        display: flex;
        text-align: center;
        padding-bottom: 10px;
        justify-content: center;
        float: none;
        gap: 10px;
    }

    .cart_table .vs-cart-coupon input {
        width: 100%;
        margin-bottom: 0px;
        margin-right: 0px;
    }

    .cart_totals th, .cart_totals td {
        padding: 15px 10px;
    }

    .cart_totals th:first-child, .cart_totals td:first-child {
        width: 40%;
        line-height: 1.4;
    }
}

@media (max-width: 767px) {
    .cart_table .vs-cart-coupon {
        flex-wrap: wrap;
        gap: 15px;
    }

    .cart_table .vs-cart-coupon .vs-btn {
        width: 100%;
    }
}

.checkout-ordertable th, .checkout-ordertable td {
    border: 1px solid var(--vs-border-color);
    vertical-align: top;
    text-align: right;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--vs-body-color);
}

.checkout-ordertable th {
    text-align: left;
}

.checkout-ordertable ul {
    margin: 0px;
    padding: 0px;
}

.checkout-ordertable .order-total .amount {
    color: var(--vs-theme-color1);
}

.checkout-ordertable input[type="hidden"] ~ label {
    color: var(--vs-theme-color1);
}

.woocommerce-checkout .form-group input:not(:last-child) {
    margin-bottom: var(--bs-gutter-x);
}

.woocommerce-checkout-payment {
    text-align: left;
}

.woocommerce-checkout-payment ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.woocommerce-checkout-payment ul li {
    border-bottom: 1px solid var(--vs-border-color);
    border-radius: 0px;
    font-size: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0px;
}

.woocommerce-checkout-payment ul input[type="radio"] {
    display: none;
}

.woocommerce-checkout-payment ul input[type="radio"] ~ label {
    margin-bottom: 0px;
    color: var(--vs-title-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.woocommerce-checkout-payment ul input[type="radio"] ~ label img {
    margin-bottom: -2px;
    margin-left: 10px;
}

.woocommerce-checkout-payment ul input[type="radio"]:checked ~ label::before {
    background-color: var(--vs-theme-color2);
}

.woocommerce-checkout-payment .place-order {
    padding-top: 30px;
}

.woocommerce-checkout-payment .payment_box {
    display: none;
    background-color: var(--vs-theme-color1);
    border-top-color: ;
    border-top-style: ;
    border-top-width: ;
    border-right-color: ;
    border-right-style: ;
    border-right-width: ;
    border-left-color: ;
    border-left-style: ;
    border-left-width: ;
    border-image-source: ;
    border-image-slice: ;
    border-image-width: ;
    border-image-outset: ;
    border-image-repeat: ;
    color: var(--vs-white-color);
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    font-size: 15px;
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.woocommerce-checkout-payment .payment_box p {
    margin: 0px;
    color: var(--vs-white-color);
    font-weight: 500;
    text-transform: capitalize;
}

.vs-checkout-wrapper form.woocommerce-form {
    margin-bottom: 25px;
}

.vs-checkout-wrapper .vs-btn {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 16px;
}

.vs-checkout-wrapper .vs-btn--style3::before, .vs-checkout-wrapper .vs-btn--style3::after {
    background-color: var(--vs-theme-color);
}

.vs-cart-wrapper .vs-btn {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 16px;
}

.vs-cart-wrapper .vs-btn--style3::before, .vs-cart-wrapper .vs-btn--style3::after {
    background-color: var(--vs-theme-color);
}

@media (max-width: 767px) {
    tfoot.checkout-ordertable th {
        display: none;
    }

    .woocommerce-checkout-payment ul input[type="radio"] ~ label img {
        max-width: 150px;
    }

    .woocommerce-form-coupon, .woocommerce-form-login {
        padding: 25px 0px 0px;
        margin-bottom: 0px;
    }
}

.woocommerce-checkout .row:not([class*="gx-"]), .woocommerce-form-login .row:not([class*="gx-"]), .woocommerce-form-coupon .row:not([class*="gx-"]) {
    --bs-gutter-x: 15px;
}

.woocommerce-checkout .form-select, .woocommerce-checkout .select2-container, .woocommerce-checkout .form-control, .woocommerce-form-login .form-select, .woocommerce-form-login .select2-container, .woocommerce-form-login .form-control, .woocommerce-form-coupon .form-select, .woocommerce-form-coupon .select2-container, .woocommerce-form-coupon .form-control {
    --bs-gutter-x: 15px;
    margin-bottom: var(--bs-gutter-x);
    display: flex;
    align-items: center;
    border: 1px solid var(--vs-border-color);
    min-height: 50px;
    padding: 10px 25px;
    outline: none;
    box-shadow: none;
}

.woocommerce-checkout .form-select::after, .woocommerce-checkout .select2-container::after, .woocommerce-checkout .form-control::after, .woocommerce-form-login .form-select::after, .woocommerce-form-login .select2-container::after, .woocommerce-form-login .form-control::after, .woocommerce-form-coupon .form-select::after, .woocommerce-form-coupon .select2-container::after, .woocommerce-form-coupon .form-control::after {
    display: none;
}

.woocommerce-checkout .form-select .list, .woocommerce-checkout .select2-container .list, .woocommerce-checkout .form-control .list, .woocommerce-form-login .form-select .list, .woocommerce-form-login .select2-container .list, .woocommerce-form-login .form-control .list, .woocommerce-form-coupon .form-select .list, .woocommerce-form-coupon .select2-container .list, .woocommerce-form-coupon .form-control .list {
    width: 100%;
}

.woocommerce-checkout .form-select::placeholder, .woocommerce-checkout .select2-container::placeholder, .woocommerce-checkout .form-control::placeholder, .woocommerce-form-login .form-select::placeholder, .woocommerce-form-login .select2-container::placeholder, .woocommerce-form-login .form-control::placeholder, .woocommerce-form-coupon .form-select::placeholder, .woocommerce-form-coupon .select2-container::placeholder, .woocommerce-form-coupon .form-control::placeholder {
    transition: 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
}

.woocommerce-checkout .form-select:focus, .woocommerce-checkout .select2-container:focus, .woocommerce-checkout .form-control:focus, .woocommerce-form-login .form-select:focus, .woocommerce-form-login .select2-container:focus, .woocommerce-form-login .form-control:focus, .woocommerce-form-coupon .form-select:focus, .woocommerce-form-coupon .select2-container:focus, .woocommerce-form-coupon .form-control:focus {
    border-color: var(--vs-theme-color2);
    transition: 0.3s ease-in-out;
}

.woocommerce-checkout .form-select:focus::placeholder, .woocommerce-checkout .select2-container:focus::placeholder, .woocommerce-checkout .form-control:focus::placeholder, .woocommerce-form-login .form-select:focus::placeholder, .woocommerce-form-login .select2-container:focus::placeholder, .woocommerce-form-login .form-control:focus::placeholder, .woocommerce-form-coupon .form-select:focus::placeholder, .woocommerce-form-coupon .select2-container:focus::placeholder, .woocommerce-form-coupon .form-control:focus::placeholder {
    opacity: 0;
    visibility: hidden;
}

.woocommerce-checkout .form-select, .woocommerce-form-login .form-select, .woocommerce-form-coupon .form-select {
    color: var(--vs-body-color);
}

.woocommerce-checkout textarea.form-control, .woocommerce-form-login textarea.form-control, .woocommerce-form-coupon textarea.form-control {
    height: 150px;
}

.woocommerce-checkout .select2-container--open .select2-dropdown--below, .woocommerce-form-login .select2-container--open .select2-dropdown--below, .woocommerce-form-coupon .select2-container--open .select2-dropdown--below {
    margin-top: 30px;
}

.woocommerce-checkout .select2-container--open .select2-dropdown--above, .woocommerce-form-login .select2-container--open .select2-dropdown--above, .woocommerce-form-coupon .select2-container--open .select2-dropdown--above {
    position: relative;
    bottom: -30px;
}

.woocommerce-checkout .select2-dropdown, .woocommerce-form-login .select2-dropdown, .woocommerce-form-coupon .select2-dropdown {
    border-width: medium 1px 1px;
    border-style: none solid solid;
    border-color: currentcolor rgb(227, 230, 233) rgb(227, 230, 233);
    border-image: initial;
}

.woocommerce-checkout .select2-container--default .select2-selection--single, .woocommerce-form-login .select2-container--default .select2-selection--single, .woocommerce-form-coupon .select2-container--default .select2-selection--single {
    height: 60px;
    border: 1px solid rgb(227, 230, 233);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered, .woocommerce-form-login .select2-container--default .select2-selection--single .select2-selection__rendered, .woocommerce-form-coupon .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 60px;
    padding-left: 30px;
    padding-right: 25px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow, .woocommerce-form-login .select2-container--default .select2-selection--single .select2-selection__arrow, .woocommerce-form-coupon .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 60px;
    line-height: 60px;
    margin-right: 18px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b, .woocommerce-form-login .select2-container--default .select2-selection--single .select2-selection__arrow b, .woocommerce-form-coupon .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin: 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    top: 0px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b::before, .woocommerce-form-login .select2-container--default .select2-selection--single .select2-selection__arrow b::before, .woocommerce-form-coupon .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
    content: "ÃƒÂ¯Ã¢â‚¬Å¾Ã¢â‚¬Â¡";
    font-family: var(--icon-font);
}

.woocommerce-checkout .form-control:focus, .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered, .woocommerce-form-login .form-control:focus, .woocommerce-form-login .select2-container--default .select2-selection--single .select2-selection__rendered, .woocommerce-form-coupon .form-control:focus, .woocommerce-form-coupon .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--body-color);
}

.woocommerce-billing-fields .form-row {
    margin-bottom: 0px;
}

span.select2-selection.select2-selection--single:focus {
    outline: none;
}

.shipping-calculator-form .form-select, .shipping-calculator-form .form-control {
    height: 50px;
    padding-left: 20px;
    font-size: 14px;
    border-radius: 0px;
    background-position: right 13px center;
    background-color: var(--vs-theme-color6);
    border-color: transparent;
}

.shipping-calculator-form .vs-btn {
    font-size: 14px;
    padding: 0px 20px;
    width: max-content;
    height: 40px;
}

.vs-checkbox {
    display: inline-block;
    margin: 10px;
}

.vs-checkbox__input {
    display: none;
}

.vs-checkbox__input:checked + .vs-checkbox__label {
    background-color: var(--vs-theme-color2);
    border-color: var(--vs-theme-color2);
}

.vs-checkbox__input:checked + .vs-checkbox__label::after {
    opacity: 1;
}

.vs-checkbox__label {
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 2px solid var(--vs-theme-color2);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.vs-checkbox__label::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 6px;
    height: 12px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
}

.vs-checkbox.style2 .vs-checkbox__label {
    border-color: var(--vs-white-color);
}

.vs-checkbox.style2 .vs-checkbox__input:checked + .vs-checkbox__label {
    background-color: var(--vs-theme-color1);
    border-color: var(--vs-theme-color1);
}

.vs-auth {
    max-width: 450px;
    margin: 0px auto;
    padding: 30px;
    background-color: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 15px 35px;
}

.vs-auth__tabs {
    margin-bottom: 25px;
}

.vs-auth__tabs .nav-link {
    color: var(--vs-body-color);
    font-weight: 500;
    border-width: medium medium 2px;
    border-style: none none solid;
    border-color: currentcolor currentcolor transparent;
    border-image: initial;
}

.vs-auth__tabs .nav-link.active {
    color: var(--vs-theme-color1);
    border-bottom: 2px solid var(--vs-theme-color1);
    background-color: transparent;
}

.vs-auth__form .form-label {
    color: var(--vs-body-color);
}

.vs-auth__form .form-control {
    border-radius: 8px;
    padding: 10px 15px;
}

.vs-auth .form-check-input {
    margin-top: 2px;
}

.vs-auth__title {
    color: var(--vs-title-color);
    margin-bottom: 20px;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
}

.vs-auth__btn {
    background: linear-gradient(135deg, var(--vs-theme-color1), var(--vs-theme-color2));
    color: rgb(255, 255, 255);
    width: 100%;
    padding: 12px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

.vs-auth__btn:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 20px;
    color: var(--vs-white-color);
}

.vs-auth__btn--signup {
    background: linear-gradient(135deg, var(--vs-theme-color2), var(--vs-theme-color1));
}

.vs-auth__divider {
    text-align: center;
    margin: 20px 0px;
    position: relative;
}

.vs-auth__divider span {
    background-color: rgb(255, 255, 255);
    padding: 0px 10px;
    position: relative;
    z-index: 1;
    color: var(--vs-body-color);
    font-size: 0.9rem;
}

.vs-auth__divider::before {
    content: "";
    position: absolute;
    height: 1px;
    background-color: rgb(204, 204, 204);
    width: 100%;
    top: 50%;
    left: 0px;
    z-index: 0;
}

.vs-auth__socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vs-auth__social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
    border: 1px solid rgb(204, 204, 204);
    background-color: rgb(249, 249, 249);
    color: rgb(51, 51, 51);
}

.vs-auth__social-btn i {
    font-size: 1.2rem;
}

.vs-auth__social-btn:hover {
    background-color: rgb(241, 241, 241);
    transform: translateY(-1px);
}

.vs-auth__social-btn--google {
    color: rgb(219, 68, 55);
    border-color: rgb(219, 68, 55);
}

.vs-auth__social-btn--facebook {
    color: rgb(24, 119, 242);
    border-color: rgb(24, 119, 242);
}

.vs-auth__link {
    color: var(--vs-theme-color1);
    text-decoration: none;
    font-size: 0.875rem;
}

.vs-auth__link:hover {
    text-decoration: underline;
}

.vs-dashboard__sidebar .vs-dashboard__card {
    background: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px;
}

.vs-dashboard__sidebar .vs-dashboard__username {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--vs-title-color);
    margin-bottom: 20px;
}

.vs-dashboard__sidebar .vs-dashboard__nav .nav-link {
    color: var(--vs-body-color);
    border-radius: 8px;
    padding: 10px 15px;
    transition: 0.3s;
}

.vs-dashboard__sidebar .vs-dashboard__nav .nav-link:hover {
    background-color: rgb(243, 243, 243);
}

.vs-dashboard__sidebar .vs-dashboard__nav .nav-link.active {
    background: linear-gradient(135deg, var(--vs-theme-color1), var(--vs-theme-color2));
    color: rgb(255, 255, 255);
}

.vs-dashboard__content .tab-pane {
    animation: 0.4s ease-in-out 0s 1 normal none running fadeIn;
}

.vs-dashboard__content .vs-dashboard__card {
    background: rgb(255, 255, 255);
    padding: 25px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px;
    margin-bottom: 30px;
}

.vs-dashboard__content .vs-dashboard__title {
    color: var(--vs-title-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.vs-dashboard__content .vs-dashboard__btn {
    background: linear-gradient(135deg, var(--vs-theme-color2), var(--vs-theme-color1));
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    border-radius: 8px;
    transition: 0.3s;
}

.vs-dashboard__content .vs-dashboard__btn:hover {
    transform: scale(1.02);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

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

.offer-counter {
    margin: 0px 0px 30px;
    padding: 0px;
    list-style-type: none;
    display: flex;
    justify-content: center;
    background: var(--vs-theme-color1);
    min-height: 175px;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .offer-counter {
        flex-direction: column;
    }
}

.offer-counter > li {
    line-height: 1;
    padding: 16px 30px;
    position: relative;
    color: var(--vs-white-color);
}

.offer-counter > li::before {
    content: "";
    position: absolute;
    height: 37px;
    width: 1px;
    background: var(--vs-theme-color);
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0.49px;
}

@media (max-width: 767px) {
    .offer-counter > li::before {
        display: none;
    }
}

.offer-counter > li:first-child {
    padding-left: 0px;
}

.offer-counter > li:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.offer-counter > li:last-child::before {
    display: none;
}

.offer-counter > li {
}

@media (max-width: 767px) {
    .offer-counter > li {
        padding-right: 0px;
        padding-left: 0px;
    }
}

.offer-counter .count-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--vs-theme-color);
    font-family: var(--title-font);
    margin-bottom: 10px;
}

.offer-counter .count-name {
    font-size: 16px;
    color: var(--white-color);
    font-family: var(--title-font);
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
}

.popup-search-box {
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    height: 0%;
    width: 100%;
    overflow: hidden;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s 0.9s;
    padding: 0px 20px;
}

.popup-search-box button.searchClose {
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: absolute;
    top: 0px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    font-size: 30px;
    border-radius: 50%;
    transition: 0.4s 0.5s;
}

.popup-search-box button.searchClose i {
    line-height: inherit;
    transition: 1s;
    rotate: 360deg;
}

.popup-search-box button.searchClose:hover {
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color1);
}

.popup-search-box button.searchClose:hover i {
    transition: 1s;
    rotate: 0deg;
}

.popup-search-box form {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    cursor: auto;
    width: 100%;
    max-width: 700px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s;
    padding: 0px 20px;
}

@media (max-width: 1199px) {
    .popup-search-box form {
        max-width: 600px;
    }
}

.popup-search-box form input {
    font-size: 14px;
    height: 70px;
    width: 100%;
    border: 2px solid var(--vs-theme-color2);
    background-color: rgba(18, 21, 31, 0.5);
    backdrop-filter: blur(10px);
    padding-left: 30px;
    color: var(--vs-white-color);
    border-radius: 50px;
    box-shadow: none;
    transition: 0.3s ease-in-out;
}

.popup-search-box form input:focus {
    outline: none;
    border-color: var(--vs-theme-color2);
}

.popup-search-box form button {
    position: absolute;
    top: 50%;
    background-color: transparent;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-size: 20px;
    right: 45px;
    color: var(--vs-white-color);
    cursor: pointer;
    width: auto;
    height: auto;
    transition: 0.4s;
    transform: scale(1.001) translateY(-50%);
}

.popup-search-box form button:hover {
    transform: scale(1.1) translateY(-50%);
    color: var(--vs-theme-color2);
}

.popup-search-box.show {
    opacity: 1;
    visibility: visible;
    height: 100%;
    transition: 0.4s;
}

.popup-search-box.show button.searchClose {
    top: 40px;
    transition-delay: 0.5s;
}

.popup-search-box.show form {
    transition-delay: 0.5s;
    transform: translate(-50%, -50%) scale(1);
}

.px-5 {
    padding-right: 5px;
    padding-left: 5px;
}

.px-10 {
    padding-right: 10px;
    padding-left: 10px;
}

.px-15 {
    padding-right: 15px;
    padding-left: 15px;
}

.px-20 {
    padding-right: 20px;
    padding-left: 20px;
}

.px-25 {
    padding-right: 25px;
    padding-left: 25px;
}

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

.px-35 {
    padding-right: 35px;
    padding-left: 35px;
}

.px-40 {
    padding-right: 40px;
    padding-left: 40px;
}

.px-45 {
    padding-right: 45px;
    padding-left: 45px;
}

.px-50 {
    padding-right: 50px;
    padding-left: 50px;
}

.py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.py-35 {
    padding-top: 35px;
    padding-bottom: 35px;
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-45 {
    padding-top: 45px;
    padding-bottom: 45px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.mx-5 {
    margin-right: 5px;
    margin-left: 5px;
}

.mx-10 {
    margin-right: 10px;
    margin-left: 10px;
}

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

.mx-20 {
    margin-right: 20px;
    margin-left: 20px;
}

.mx-25 {
    margin-right: 25px;
    margin-left: 25px;
}

.mx-30 {
    margin-right: 30px;
    margin-left: 30px;
}

.mx-35 {
    margin-right: 35px;
    margin-left: 35px;
}

.mx-40 {
    margin-right: 40px;
    margin-left: 40px;
}

.mx-45 {
    margin-right: 45px;
    margin-left: 45px;
}

.mx-50 {
    margin-right: 50px;
    margin-left: 50px;
}

.my-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.my-35 {
    margin-top: 35px;
    margin-bottom: 35px;
}

.my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.my-45 {
    margin-top: 45px;
    margin-bottom: 45px;
}

.my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mt-n1 {
    margin-top: -0.25rem;
}

.mt-n2 {
    margin-top: -0.5rem;
}

.mt-n3 {
    margin-top: -1rem;
}

.mt-n4 {
    margin-top: -1.5rem;
}

.mt-n5 {
    margin-top: -3rem;
}

.mb-n1 {
    margin-bottom: -0.25rem;
}

.mb-n2 {
    margin-bottom: -0.5rem;
}

.mb-n3 {
    margin-bottom: -1rem;
}

.mb-n4 {
    margin-bottom: -1.5rem;
}

.mb-n5 {
    margin-bottom: -3rem;
}

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

.space, .space-top {
    padding-top: var(--vs-section-space);
}

.space, .space-bottom {
    padding-bottom: var(--vs-section-space);
}

.space-extra, .space-extra-top {
    padding-top: calc(var(--vs-section-space) - 40px);
}

.space-extra, .space-extra-bottom {
    padding-bottom: calc(var(--vs-section-space) - 40px);
}

@media (max-width: 991px) {
    .space, .space-top {
        padding-top: var(--vs-section-space-mobile);
    }

    .space, .space-bottom {
        padding-bottom: var(--vs-section-space-mobile);
    }

    .space-extra, .space-extra-top {
        padding-top: calc(var(--vs-section-space-mobile) - 30px);
    }

    .space-extra, .space-extra-bottom {
        padding-bottom: calc(var(--vs-section-space-mobile) - 30px);
    }

    .space-top-md-none {
        padding-top: 0px;
    }
}

.icon-call {
    display: flex;
    align-items: center;
}

.icon-call__icon {
    --icon-size: 52px;
    font-size: 20px;
    margin-right: 14px;
    position: relative;
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color2);
    transition: 0.4s;
    border: 3px dashed rgba(255, 255, 255, 0.4);
}

.icon-call__title {
    display: block;
    color: var(--vs-text-color);
    font-size: 14px;
    letter-spacing: 0.48px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0px 0px 6px;
}

.icon-call__number {
    display: block;
    color: var(--vs-white-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--vs-title-font);
}

.icon-call__number:hover {
    color: var(--vs-theme-color2);
}

body {
    transition: background-color 0.3s, color 0.3s;
}

body.light-mode {
    background-color: rgb(255, 255, 255);
    color: rgb(34, 34, 34);
}

body.dark-mode {
    background-color: var(--vs-title-color);
    color: var(--vs-white-color);
}

body.dark-mode .main-menu a {
    color: var(--vs-white-color);
}

body.dark-mode .main-menu ul.sub-menu, body.dark-mode .main-menu ul.mega-menu {
    background-color: var(--vs-title-color);
}

body.color-mode {
    color: rgb(42, 42, 42);
}

.theme-toggle-icon {
    position: fixed;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    background: var(--vs-title-color);
    color: var(--vs-white-color);
    padding: 12px 14px;
    cursor: pointer;
    z-index: 999;
    font-size: 20px;
    transition: 0.3s;
    border-radius: 50%;
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-icon:hover {
    background: var(--vs-theme-color1);
}

.theme-panel {
    position: fixed;
    top: 50%;
    right: -250px;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    border-radius: 10px 0px 0px 10px;
    padding: 20px;
    width: 220px;
    box-shadow: rgba(0, 0, 0, 0.15) -4px 4px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: right 0.35s;
    z-index: 999;
}

.theme-panel.open {
    right: 0px;
}

.theme-panel .close-btn {
    align-self: flex-end;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 8px;
    padding: 2px;
}

.theme-panel .mode-btn, .theme-panel .reset-btn {
    background: rgb(243, 243, 243);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.theme-panel .mode-btn:hover, .theme-panel .reset-btn:hover {
    background: rgb(225, 225, 225);
}

.theme-panel .color-mode-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.theme-panel .color-mode-label input[type="color"] {
    width: 30px;
    height: 30px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
}

.back-to-top {
    padding: 0px;
}

.back-to-top.visible {
    bottom: 15px;
    right: 10px;
}

.vs-hero--style4 .vs-hero__active--zoom .swiper-slide-active:not(.swiper-slide-duplicate) .vs-hero__anim.manimated {
    animation-name: slideinup;
}

.vs-hero--style4 .vs-hero__shape-bg {
    position: absolute;
    top: 0px;
    right: -20px;
    left: auto;
    width: 1100px;
    height: 830px;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA1NyIgaGVpZ2h0PSI4MjgiIHZpZXdCb3g9IjAgMCAxMDU3IDgyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI1MiA0MTBMMzU4IDBIMTA4NkwxMDk4IDgzNkgwTDE5MCA2NjJMNjYgMzA2TDI1MiA0MTBaIiBmaWxsPSIjRjg5MzFGIi8+Cjwvc3ZnPgo=");
    background-color: var(--vs-theme-color2);
    mask-position: center center;
    mask-size: contain;
    mask-repeat: no-repeat;
    z-index: 1;
}

.vs-hero--style4 .vs-hero__main-img {
    position: absolute;
    bottom: 0px;
    right: 0%;
}

@media (max-width: 1500px) {
    .vs-hero--style4 .vs-hero__main-img {
        right: 0px;
        height: 650px;
        object-fit: cover;
    }
}

.vs-hero--style4 .vs-hero__main-img {
}

@media (max-width: 1199px) {
    .vs-hero--style4 .vs-hero__main-img {
        position: static;
        margin: 0px auto;
        display: flex;
    }
}

.vs-hero--style4 .vs-hero__main-img {
}

@media (max-width: 991px) {
    .vs-hero--style4 .vs-hero__main-img {
        height: 500px;
    }
}

.vs-hero--style4 .vs-hero__main-img {
}

@media (max-width: 575px) {
    .vs-hero--style4 .vs-hero__main-img {
        height: 400px;
    }
}

.vs-hero--style4 .vs-hero__shape-img {
    right: -45px;
    position: absolute;
    bottom: 14%;
}

@media (max-width: 1500px) {
    .vs-hero--style4 .vs-hero__shape-img {
        width: 500px;
        right: 0px;
        object-fit: cover;
    }
}

.vs-hero--style4 .vs-hero__shape-img {
}

@media (max-width: 1199px) {
    .vs-hero--style4 .vs-hero__shape-img {
        left: 0px;
        bottom: 7%;
        margin: 0px auto;
    }
}

.vs-hero--style4 .vs-hero__shape-img {
}

@media (max-width: 991px) {
    .vs-hero--style4 .vs-hero__shape-img {
        width: 400px;
        bottom: 5%;
    }
}

.vs-hero--style4 .vs-hero__content {
    padding: 185px 0px 230px;
}

@media (max-width: 1199px) {
    .vs-hero--style4 .vs-hero__content {
        padding: 100px 0px 0px;
    }
}

.vs-hero--style4 .vs-hero__content {
}

@media (max-width: 991px) {
    .vs-hero--style4 .vs-hero__content {
        padding: 100px 0px 30px;
        text-align: center;
    }
}

.vs-hero--style4 .vs-hero__title--main {
    font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
    margin: 0px 0px 15px;
    line-height: 1.15;
    text-transform: capitalize;
    color: var(--vs-white-color);
}

@media (max-width: 1500px) {
    .vs-hero--style4 .vs-hero__title--main {
        font-size: 80px;
    }
}

.vs-hero--style4 .vs-hero__title--main {
}

@media (max-width: 991px) {
    .vs-hero--style4 .vs-hero__title--main {
        font-size: 70px;
    }
}

.vs-hero--style4 .vs-hero__title--main {
}

@media (max-width: 575px) {
    .vs-hero--style4 .vs-hero__title--main {
        font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style4 .vs-hero__title--main span {
    display: block;
    color: var(--vs-white-color);
    font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
}

@media (max-width: 1199px) {
    .vs-hero--style4 .vs-hero__title--main span {
        font-size: 45px;
    }
}

.vs-hero--style4 .vs-hero__title--main span {
}

@media (max-width: 991px) {
    .vs-hero--style4 .vs-hero__title--main span {
        font-size: 40px;
    }
}

.vs-hero--style4 .vs-hero__title--main span {
}

@media (max-width: 575px) {
    .vs-hero--style4 .vs-hero__title--main span {
        font-size: 30px;
    }
}

.vs-hero--style4 .vs-hero__title--sub {
    font-size: 40px;
    font-family: var(--vs-special-font);
    margin: 0px 0px 15px;
    color: var(--vs-white-color);
}

.vs-hero--style4 .vs-hero__desc {
    color: var(--vs-white-color);
    font-size: 20px;
}

.vs-hero--style4 .vs-hero__ele1 {
    top: 85px;
    right: 160px;
    left: auto;
}

@media (max-width: 1500px) {
    .vs-hero--style4 .vs-hero__ele1 {
        top: 30px;
        right: 25px;
        width: 130px;
    }
}

.vs-hero--style4 .vs-hero__ele1 {
}

@media (max-width: 1199px) {
    .vs-hero--style4 .vs-hero__ele1 {
        display: none;
    }
}

.vs-hero--style4 .vs-hero__ele2 {
    inset: auto auto 0px 98px;
}

@media (max-width: 1199px) {
    .vs-hero--style4 .vs-hero__ele2 {
        bottom: auto;
        left: 98px;
        right: auto;
    }
}

.vs-hero--style4 .vs-hero__direction {
    z-index: 99;
}

@media (max-width: 1500px) {
    .vs-hero--style4 .vs-hero__direction {
        right: 25px;
    }
}

.vs-hero--style4 .vs-hero__direction .vs-swiper-button-next, .vs-hero--style4 .vs-hero__direction .vs-swiper-button-prev {
    color: var(--vs-white-color);
}

.vs-hero--style4 .vs-hero__direction .vs-swiper-button-next:hover, .vs-hero--style4 .vs-hero__direction .vs-swiper-button-prev:hover {
    color: var(--vs-theme-color2);
    background-color: var(--vs-white-color);
}

.vs-featureh4 {
    display: flex;
    align-items: center;
    gap: 30px;
    text-transform: capitalize;
    background: rgb(255, 255, 255);
    padding: 50px;
    border-radius: 30px;
}

.vs-featureh4__title {
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    color: var(--vs-title-color);
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .vs-featureh4__title {
        font-size: 22px;
    }
}

.vs-featureh4__text {
    font-weight: 500;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
}

.vs-featureh4__icon {
    position: relative;
    margin-left: 15px;
}

.vs-featureh4__icon .feature-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--vs-theme-color4);
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04OS41MjA4IDg5LjA5NzRDODYuNzEwMSA5MS44OTY2IDg1LjI3OTUgOTkuNTI3IDgwLjk4OTYgOTkuNTI3QzY1LjQ5NDggOTkuNTI3IDY1LjQ5NDggOTIuNjE1NCA1MCA5Mi42MTU0QzM0LjUwNTIgOTIuNjE1NCAzNC41MDUyIDk5LjUyNyAxOS4wMTA0IDk5LjUyN0MxNC43MjA1IDk5LjUyNyAxMy4yODk5IDkxLjg5NjYgMTAuNDc5MiA4OS4wOTc0QzcuNjY2NjcgODYuMyAwIDg0Ljg3NjIgMCA4MC42MDY1QzAgNjUuMTg1IDYuOTQ0NDQgNjUuMTg1IDYuOTQ0NDQgNDkuNzYzNUM2Ljk0NDQ0IDM0LjM0MiAwIDM0LjM0MiAwIDE4LjkyMDVDMCAxNC42NTA5IDcuNjY2NjcgMTMuMjI3MSAxMC40NzkyIDEwLjQyOTZDMTMuMjg5OSA3LjYzMDM5IDE0LjcyMDUgLTEuNTI1ODhlLTA1IDE5LjAxMDQgLTEuNTI1ODhlLTA1QzM0LjUwNTIgLTEuNTI1ODhlLTA1IDM0LjUwNTIgNi45MTE1OSA1MCA2LjkxMTU5QzY1LjQ5NDggNi45MTE1OSA2NS40OTQ4IC0xLjUyNTg4ZS0wNSA4MC45ODk2IC0xLjUyNTg4ZS0wNUM4NS4yNzk1IC0xLjUyNTg4ZS0wNSA4Ni43MTAxIDcuNjMwMzkgODkuNTIwOCAxMC40Mjk2QzkyLjMzMzMgMTMuMjI3MSAxMDAgMTQuNjUwOSAxMDAgMTguOTIwNUMxMDAgMzQuMzQyIDkzLjA1NTUgMzQuMzQyIDkzLjA1NTUgNDkuNzYzNUM5My4wNTU1IDY1LjE4NSAxMDAgNjUuMTg1IDEwMCA4MC42MDY1QzEwMCA4NC44NzYyIDkyLjMzMzMgODYuMyA4OS41MjA4IDg5LjA5NzRaIiBmaWxsPSIjNEY4MzBFIi8+CjxwYXRoIGQ9Ik04MC44Mzg2IDMuOTc0M0M3NC4wNDg3IDMuOTk1MDQgNzAuODQwNCA1LjQyNzQ2IDY3LjEyODYgNy4wODI3OUM2My4xMzIgOC44NjU5OCA1OC42MDI1IDEwLjg4NTkgNTAuMDAwMSAxMC44ODU5QzQxLjM5NzcgMTAuODg1OSAzNi44NjgxIDguODY1OTggMzIuODcxNiA3LjA4Mjc5QzI5LjE1OTggNS40Mjc0NiAyNS45NTE1IDMuOTk1MDQgMTkuMTYxNSAzLjk3NDNDMTguNDc5MiA0LjQ3MzY2IDE3LjM2ODEgNi42NjQ2NCAxNi43NjA1IDcuODYyMDdDMTUuNzg0OCA5Ljc4NTIyIDE0Ljc3NjEgMTEuNzcyMyAxMy4zMDM5IDEzLjIzNzZDMTEuODI5OSAxNC43MDI4IDkuODMxNjggMTUuNzA4NSA3LjkwMTEyIDE2LjY3OTVDNi42OTYyNiAxNy4yODQzIDQuNDk2NjEgMTguMzkxOSAzLjk5NDg3IDE5LjA2OTJDNC4wMTU3MSAyNS44MjcgNS40NTQ5NCAyOS4wMjAyIDcuMTE4MTQgMzIuNzE0NUM4LjkwOTggMzYuNjkyMSAxMC45MzkzIDQxLjIwMDIgMTAuOTM5MyA0OS43NjE5QzEwLjkzOTMgNTguMzIzNyA4LjkwOTggNjIuODMxOCA3LjExODE0IDY2LjgwOTRDNS40NTQ5NCA3MC41MDM2IDQuMDE1NzEgNzMuNjk2OCAzLjk5NDg3IDgwLjQ1NDZDNC40OTY2MSA4MS4xMzM3IDYuNjk4IDgyLjIzOTUgNy45MDExMiA4Mi44NDQzQzkuODMzNDEgODMuODE1NCAxMS44Mjk5IDg0LjgxOTMgMTMuMzAyMiA4Ni4yODQ2QzE0Ljc3NDQgODcuNzUxNSAxNS43ODQ4IDg5Ljc0MDQgMTYuNzYwNSA5MS42NjE4QzE3LjM2ODEgOTIuODYwOSAxOC40ODEgOTUuMDUwMiAxOS4xNjE1IDk1LjU0OTZDMjUuOTUxNSA5NS41Mjg4IDI5LjE1OTggOTQuMDk2NCAzMi44NzE2IDkyLjQ0MTFDMzYuODY4MSA5MC42NTc5IDQxLjM5NzcgODguNjM4IDUwLjAwMDEgODguNjM4QzU4LjYwMjUgODguNjM4IDYzLjEzMiA5MC42NTc5IDY3LjEyODYgOTIuNDQxMUM3MC44NDA0IDk0LjA5NjQgNzQuMDQ4NyA5NS41Mjg4IDgwLjgzODYgOTUuNTQ5NkM4MS41MjA5IDk1LjA1MDIgODIuNjMyIDkyLjg1OTIgODMuMjM5NyA5MS42NjE4Qzg0LjIxNTQgODkuNzM4NiA4NS4yMjQgODcuNzUxNSA4Ni42OTYzIDg2LjI4NjNDODguMTcwMiA4NC44MjEgOTAuMTY4NSA4My44MTU0IDkyLjA5OSA4Mi44NDQzQzkzLjMwMzkgODIuMjM5NSA5NS41MDM2IDgxLjEzMiA5Ni4wMDUzIDgwLjQ1NDZDOTUuOTg0NSA3My42OTY4IDk0LjU0NTIgNzAuNTAzNiA5Mi44ODIgNjYuODA5NEM5MS4wOTA0IDYyLjgzMTggODkuMDYwOCA1OC4zMjM3IDg5LjA2MDggNDkuNzYxOUM4OS4wNjA4IDQxLjIwMDIgOTEuMDkwNCAzNi42OTIxIDkyLjg4MiAzMi43MTQ1Qzk0LjU0NTIgMjkuMDIwMiA5NS45ODQ1IDI1LjgyNyA5Ni4wMDUzIDE5LjA2OTJDOTUuNTAzNiAxOC4zOTAyIDkzLjMwMjIgMTcuMjg0MyA5Mi4wOTkgMTYuNjc5NUM5MC4xNjY3IDE1LjcwODUgODguMTcwMiAxNC43MDQ2IDg2LjY5OCAxMy4yMzkzQzg1LjIyNTggMTEuNzcyMyA4NC4yMTU0IDkuNzgzNSA4My4yMzk3IDcuODYyMDdDODIuNjMyIDYuNjYyOTEgODEuNTE5MiA0LjQ3MzY2IDgwLjgzODYgMy45NzQzWiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSI1IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KPC9zdmc+Cg==");
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    position: relative;
    z-index: 1;
    --icon-size: 90px;
    min-width: var(--icon-size);
    min-height: var(--icon-size);
}

@media (max-width: 1199px) {
    .vs-featureh4__icon .feature-shape {
        --icon-size: 70px;
    }
}

.vs-featureh4__icon::after {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--vs-theme-color4);
    transform: scale(1.1);
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04MS4xNTMzIDk5LjI1QzgxLjk2MzMgOTkuMjUgODIuNjcxMiA5OC44OTM1IDgzLjM1MTYgOTguMjIzNkM4NC4wNDQ1IDk3LjU0MTIgODQuNjY0OSA5Ni41NzUyIDg1LjI3MzQgOTUuNDU3Qzg1LjU3NTMgOTQuOTAyNCA4NS44NjcxIDk0LjMyMzEgODYuMTYxMSA5My43MzYzQzg2LjQ1MzMgOTMuMTUzMiA4Ni43NDkxIDkyLjU1OTkgODcuMDQ5OCA5MS45OTMyQzg3LjY0NSA5MC44NzE1IDg4LjI5ODUgODkuNzgwMSA4OS4wNzgxIDg4Ljk5MzJMODkuMDc5MSA4OC45OTIyQzg5Ljg1OTYgODguMjA1NiA5MC45NDIzIDg3LjU0NTkgOTIuMDU0NyA4Ni45NDUzQzkyLjYxNjYgODYuNjQxOSA5My4yMDUzIDg2LjM0MzUgOTMuNzgzMiA4Ni4wNDg4Qzk0LjM2NDggODUuNzUyMyA5NC45Mzg4IDg1LjQ1NzYgOTUuNDg4MyA4NS4xNTMzQzk2LjU5NjEgODQuNTM5OCA5Ny41NTMyIDgzLjkxNDYgOTguMjI5NSA4My4yMTU4Qzk4Ljg5MzIgODIuNTMwMSA5OS4yNSA4MS44MTMgOTkuMjUgODAuOTg5M0M5OS4yNSA3My4zNzQ1IDk3Ljc4IDY5LjU5OTkgOTYuMjkgNjUuNzY2NkM5NC43Njg3IDYxLjg1MjYgOTMuMjI3NSA1Ny44Nzk3IDkzLjIyNzUgNTBDOTMuMjI3NSA0Mi4xMjAzIDk0Ljc2ODcgMzguMTQ3NCA5Ni4yOSAzNC4yMzM0Qzk3Ljc4IDMwLjQwMDEgOTkuMjUgMjYuNjI1NSA5OS4yNSAxOS4wMTA3Qzk5LjI1IDE4LjIwNDkgOTguOTEwNSAxNy42MTg0IDk4LjI5MyAxNy4xMTIzQzk3LjY0MjUgMTYuNTc5NCA5Ni43MTAxIDE2LjE2MTMgOTUuNTk1NyAxNS43NTc4Qzk0LjU0NjEgMTUuMzc3OCA5My4yMzUyIDE0Ljk3OTYgOTIuMTM1NyAxNC41NDY5QzkxLjAwNzIgMTQuMTAyNyA4OS44ODkzIDEzLjU0ODEgODkuMDc5MSAxMi43MzE0SDg5LjA3ODFDODguMjgwNiAxMS45MjY1IDg3LjYyMzUgMTAuNzAzOSA4Ny4wMzEyIDkuNDI1NzhDODYuNzMwMiA4Ljc3NjE0IDg2LjQzNTggOC4wODcyNSA4Ni4xNDI2IDcuNDAxMzdDODUuODQ3OCA2LjcxMTc4IDg1LjU1MzkgNi4wMjM5MyA4NS4yNSA1LjM1OTM4Qzg0LjYzNzIgNC4wMTk0NiA4NC4wMDg2IDIuODM1NTYgODMuMzAyNyAxLjk5MzE2QzgyLjYwMSAxLjE1NTY5IDgxLjkwNTIgMC43NSA4MS4xNTMzIDAuNzVDNzMuNjIyNCAwLjc1MDAyMSA2OS42NzY2IDIuNDQxMiA2NS42NTYyIDQuMTYyMTFDNjEuNTY1MSA1LjkxMzM1IDU3LjM5OTIgNy42OTQyOCA0OS41NjkzIDcuNjk0MzRDNDEuNzM1IDcuNjk0MzQgMzcuNzgwOSA1LjkxMDQyIDMzLjg5ODQgNC4xNTUyN0MzMC4xMDA0IDIuNDM4MjggMjYuMzczMiAwLjc1MDAyMiAxOC44NDY3IDAuNzVDMTguMDM2NyAwLjc1IDE3LjMyODggMS4xMDY0NiAxNi42NDg0IDEuNzc2MzdDMTUuOTU1NSAyLjQ1ODgxIDE1LjMzNTEgMy40MjQ4NSAxNC43MjY2IDQuNTQyOTdDMTQuNDI0NyA1LjA5NzU5IDE0LjEzMjkgNS42NzY4NSAxMy44Mzg5IDYuMjYzNjdDMTMuNTQ2NyA2Ljg0Njc2IDEzLjI1MDkgNy40NDAxIDEyLjk1MDIgOC4wMDY4NEMxMi4zNTUgOS4xMjg0OSAxMS43MDE1IDEwLjIxOTkgMTAuOTIxOSAxMS4wMDY4TDEwLjkyMDkgMTEuMDA3OEMxMC4xNDA0IDExLjc5NDQgOS4wNTc2NyAxMi40NTQxIDcuOTQ1MzEgMTMuMDU0N0M3LjM4MzM5IDEzLjM1ODEgNi43OTQ3MyAxMy42NTY1IDYuMjE2OCAxMy45NTEyQzUuNjM1MTggMTQuMjQ3NyA1LjA2MTI1IDE0LjU0MjQgNC41MTE3MiAxNC44NDY3QzMuNDAzODUgMTUuNDYwMiAyLjQ0NjgzIDE2LjA4NTQgMS43NzA1MSAxNi43ODQyQzEuMTA2ODQgMTcuNDcgMC43NSAxOC4xODcgMC43NSAxOS4wMTA3QzAuNzUwMDQ4IDI2LjYwNjYgMi40MjU1MSAzMC4zNjg2IDQuMTI3OTMgMzQuMjAwMkM1Ljg2NzczIDM4LjExNTkgNy42MzQ3NyA0Mi4xMDE1IDcuNjM0NzcgNTBDNy42MzQ3NyA1Ny44OTg1IDUuODY3NzMgNjEuODg0MSA0LjEyNzkzIDY1Ljc5OThDMi40MjU1MSA2OS42MzE0IDAuNzUwMDQ4IDczLjM5MzQgMC43NSA4MC45ODkzQzAuNzUgODEuODEzIDEuMTA2ODQgODIuNTMwMSAxLjc3MDUxIDgzLjIxNThDMi40NDY4MyA4My45MTQ2IDMuNDAzODUgODQuNTM5OCA0LjUxMTcyIDg1LjE1MzNDNS4wNjEyNSA4NS40NTc2IDUuNjM1MTggODUuNzUyMyA2LjIxNjggODYuMDQ4OEM2Ljc5NDczIDg2LjM0MzUgNy4zODMzOSA4Ni42NDE5IDcuOTQ1MzEgODYuOTQ1M0M5LjA1NzY3IDg3LjU0NTkgMTAuMTQwNCA4OC4yMDU2IDEwLjkyMDkgODguOTkyMkwxMC45MjE5IDg4Ljk5MzJDMTEuNzAxNSA4OS43ODAxIDEyLjM1NSA5MC44NzE1IDEyLjk1MDIgOTEuOTkzMkMxMy4yNTA5IDkyLjU1OTkgMTMuNTQ2NyA5My4xNTMyIDEzLjgzODkgOTMuNzM2M0MxNC4xMzI5IDk0LjMyMzEgMTQuNDI0NyA5NC45MDI0IDE0LjcyNjYgOTUuNDU3QzE1LjMzNTEgOTYuNTc1MiAxNS45NTU1IDk3LjU0MTIgMTYuNjQ4NCA5OC4yMjM2QzE3LjMyODggOTguODkzNSAxOC4wMzY3IDk5LjI1IDE4Ljg0NjcgOTkuMjVDMjYuMzczMiA5OS4yNSAzMC4xMDA0IDk3LjU2MTcgMzMuODk4NCA5NS44NDQ3QzM3Ljc4MDkgOTQuMDg5NiA0MS43MzUgOTIuMzA1NyA0OS41NjkzIDkyLjMwNTdDNTcuMzk5MiA5Mi4zMDU3IDYxLjU2NTEgOTQuMDg2NyA2NS42NTYyIDk1LjgzNzlDNjkuNjc2NiA5Ny41NTg4IDczLjYyMjQgOTkuMjUgODEuMTUzMyA5OS4yNVoiIHN0cm9rZT0iIzRGODMwRSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPC9zdmc+Cg==");
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
}

.vs-featureh4__icon {
}

@media (max-width: 1199px) {
    .vs-featureh4__icon {
        margin-left: 0px;
    }
}

.vs-featureh4__icon {
}

@media (max-width: 991px) {
    .vs-featureh4__icon {
        margin-left: 5px;
    }
}

.vs-featureh4__icon.Fshape1::after {
    background-color: var(--vs-theme-color2);
}

.vs-featureh4__icon.Fshape1 .feature-shape {
    background-color: var(--vs-theme-color2);
}

.vs-featureh4__icon.Fshape2::after {
    background-color: var(--vs-theme-color1);
}

.vs-featureh4__icon.Fshape2 .feature-shape {
    background-color: var(--vs-theme-color1);
}

.vs-featureh4:hover img {
    animation: 0.5s ease 0s 1 normal forwards running toTopFromBottom;
}

.vs-featureh4 {
}

@media (max-width: 1199px) {
    .vs-featureh4 {
        gap: 15px;
    }
}

.vs-about2--image {
    width: 100%;
    position: relative;
}

.vs-about2--image img.img-bg {
    width: 100%;
}

.vs-about2--image img.main-img {
    position: absolute;
    top: 14px;
    left: 0px;
    height: 100%;
    width: 98%;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTkyIiBoZWlnaHQ9IjUwMyIgdmlld0JveD0iMCAwIDU5MiA1MDMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik01OTAuNzk1IDEzMC44MjJDNTg2LjI4MSA2NC4wNjIgNTMzLjcxMiA4LjYyNzQ1IDQ2Ny4yMzkgMC45NjQ0NzFDNDM5LjY1NSAtMi4yMTQzMyA0MTMuNDM4IDIuNjAxNDUgMzkwLjU5NSAxMy4zOTE1QzM2MS45MjYgMjYuOTM0OSAzMjkuMTA5IDMwLjIxNTkgMjk5Ljc1MiAxOC4yMzM4QzI4OC41NTMgMTMuNjYyOSAyNzYuMzAxIDExLjE0MTcgMjYzLjQ1IDExLjE0MTdDMjI1LjY1NyAxMS4xNDE3IDE5My4wMDcgMzIuODk2NiAxNzcuMTk2IDY0LjU1MDJDMTcxLjI0NyA3Ni40NTk2IDE1OC40ODcgODIuOTc5NSAxNDUuMTczIDgyLjk1MTVDMTQ1LjA4OSA4Mi45NTE1IDE0NS4wMDMgODIuOTUxNSAxNDQuOTE5IDgyLjk1MTVDNjQuODgyOCA4Mi45NTE1IDAgMTQ3LjgzNCAwIDIyNy44NzFDMCAyODQuMzg0IDMyLjM3NDIgMzMzLjI0NCA3OS41NzkxIDM1Ny4wODhDMTE0LjMzIDM3NC42NDEgMTQzLjU1MiA0MDAuODQ4IDE2Ny4wMzcgNDMxLjkwM0MxOTkuMjg5IDQ3NC41NTEgMjUwLjM3NyA1MDIuMTIyIDMwNy45ODcgNTAyLjEyMkMzNzEuODg5IDUwMi4xMjIgNDI3Ljc1NiA0NjguMTgyIDQ1OC44MTMgNDE3LjM4N0M0NjkuNTI5IDM5OS44NjIgNDg1LjUzNSAzODYuNSA1MDIuOTkyIDM3NS42NzJDNTM1LjI1OCAzNTUuNjU3IDU1Ni43NiAzMTkuOTc1IDU1Ni43NiAyNzkuMjA2QzU1Ni43NiAyNzYuNDU5IDU1Ni42NTggMjczLjczOCA1NTYuNDU4IDI3MS4wNDVDNTU0Ljk4OSAyNTEuMjE0IDU1OS40NyAyMzEuNjQxIDU2OS45NzkgMjE0Ljc1OEM1ODQuOTcyIDE5MC42NzUgNTkyLjg4NSAxNjEuNzI5IDU5MC43OTUgMTMwLjgyMloiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcl8xXzUxMTApIi8+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMV81MTEwIiB4MT0iNDU4LjkyMyIgeTE9IjM4LjM1NjkiIHgyPSI2Ni44Mzk1IiB5Mj0iNDkyLjkyNCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRkY3NDFDIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0ZGMUMzQSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=");
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    object-fit: cover;
}

.vs-about2--image img.shape-img {
    position: absolute;
    left: 0px;
    top: 35px;
    width: 90%;
}

.vs-about2__eleh4 {
    position: absolute;
    bottom: 35px;
    left: 12%;
}

@media (max-width: 1500px) {
    .vs-about2__eleh4 {
        bottom: 20px;
        width: 140px;
    }
}

.vs-about2__eleh4 {
}

@media (max-width: 1199px) {
    .vs-about2__eleh4 {
        display: none;
    }
}

.vs-list.style3 {
    flex-direction: unset;
    flex-wrap: wrap;
}

.vs-list.style3 li {
    font-size: 16px;
    font-family: var(--vs-body-font);
    padding-left: 0px;
    display: flex;
    align-items: center;
    width: 85%;
}

@media (max-width: 575px) {
    .vs-list.style3 li {
        width: 100%;
    }
}

.vs-list.style3 li span {
    background-image: url("../img/ellipse-about2-h4.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
    color: var(--vs-white-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-list.style3 li::before {
    display: none;
}

.vs-featureh4-1--activity {
    padding: 200px 0px 195px;
    margin: -80px 0px 0px;
}

.vs-featureh4-1--activity::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    background-color: var(--vs-theme-color7);
    bottom: 0px;
    z-index: -1;
}

.vs-featureh4-1--activity {
}

@media (max-width: 767px) {
    .vs-featureh4-1--activity {
        margin: -150px 0px 0px;
    }
}

.vs-featureh4-1--activity {
}

.vs-featureh4-1--activity .custom-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.vs-featureh4-1--activity .custom-pagination .pg {
    width: 24px;
    height: 8px;
    border-radius: 10px;
    background: var(--vs-white-color);
    opacity: 0.8;
    transition: 0.3s;
    cursor: pointer;
}

.vs-featureh4-1--activity .custom-pagination .pg.active {
    width: 35px;
    background: var(--vs-theme-color2);
    cursor: pointer;
}

.vs-featureh4-1--content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
}

.vs-featureh4-1--content .vs-featureh4-1__image {
    padding: 30px 40px 0px;
}

@media (max-width: 1199px) {
    .vs-featureh4-1--content .vs-featureh4-1__image {
        padding: 40px 40px 0px;
    }
}

.vs-featureh4-1--content img.icon-img1 {
    width: 46px;
    height: 45px;
    transition: 0.4s;
}

.vs-featureh4-1--content img.icon-img2 {
    width: 46px;
    height: 45px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    transition: 0.4s;
}

.vs-featureh4-1--content .vs-featureh4-1__title {
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    margin-bottom: 5px;
    line-height: 3;
    font-weight: 900;
    padding: 15px 30px 45px;
    transition: 0.4s;
}

.vs-featureh4-1--content .vs-featureh4-1__title::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 2px;
    left: 0px;
    right: 0px;
    background-color: rgba(var(--vs-title-color-rgb), 0.2);
    margin: 0px auto;
    transition: 0.4s;
}

.vs-featureh4-1--content .vs-featureh4-1__arrow {
    position: absolute;
    z-index: 5;
    background-color: var(--vs-white-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    line-height: 45px;
    margin: 0px auto;
    left: 1px;
    right: 0px;
    bottom: -10px;
    transition: 0.4s;
}

@media (max-width: 1199px) {
    .vs-featureh4-1--content .vs-featureh4-1__arrow {
        bottom: -12px;
    }
}

.vs-featureh4-1--content::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: var(--vs-white-color);
    width: 100%;
    height: 100%;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTc1IiBoZWlnaHQ9IjE4NyIgdmlld0JveD0iMCAwIDE3NSAxODciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xNzUgMTc3QzE3NSAxODIuNTIzIDE3MC41MjMgMTg3IDE2NSAxODdIMTIwLjM4QzExNy4yODEgMTg3IDExNSAxODQuMDk5IDExNSAxODFDMTE1IDE2Ni4wODggMTAyLjkxMiAxNTQgODggMTU0QzczLjA4ODMgMTU0IDYxIDE2Ni4wODggNjEgMTgxQzYxIDE4NC4wOTkgNTguNzE5NSAxODcgNTUuNjIwMSAxODdIMTBDNC40NzcxNSAxODcgMCAxODIuNTIzIDAgMTc3VjEwQzAgNC40NzcxNSA0LjQ3NzE1IDAgMTAgMEgxNjVDMTcwLjUyMyAwIDE3NSA0LjQ3NzE1IDE3NSAxMFYxNzdaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
    mask-position: center center;
    mask-size: contain;
    mask-repeat: no-repeat;
    left: 0px;
    top: 0px;
    transition: 0.4s;
}

.vs-featureh4-1--content:hover::after {
    background-color: var(--vs-theme-color2);
}

.vs-featureh4-1--content:hover img.icon-img1 {
    opacity: 0;
    visibility: hidden;
}

.vs-featureh4-1--content:hover img.icon-img2 {
    opacity: 1;
    visibility: visible;
}

.vs-featureh4-1--content:hover .vs-featureh4-1__title {
    color: var(--vs-white-color);
}

.vs-featureh4-1--content:hover .vs-featureh4-1__title::after {
    background-color: var(--vs-white-color);
}

.vs-featureh4-1--content:hover .vs-featureh4-1__arrow {
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color2);
}

.vs-time--activity .vs-image-effect {
    border: 2px dashed rgba(var(--vs-theme-color1-rgb), 0.3);
}

.vs-time--activity .vs-image-effect:hover .vs-time__teacher--link {
    color: var(--vs-theme-color2);
}

.vs-time__figure {
    margin: 15px 15px 0px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.vs-time__figure .vs-time__image {
    border-radius: 20px;
    width: 100%;
}

.vs-time__teacher--link {
    color: var(--vs-title-color);
}

.vs-time__teacher--link i {
    color: var(--vs-theme-color2);
    font-size: 20px;
}

.vs-time__footer .vs-time__price2 {
    color: var(--vs-theme-color2);
    font-size: 20px;
    font-family: var(--vs-title-font);
    font-weight: 700;
}

.vs-time__eleh4 {
    position: absolute;
    left: 8%;
    bottom: -5px;
}

@media (max-width: 1500px) {
    .vs-time__eleh4 {
        display: none;
    }
}

.vs-about__eleh4 {
    position: absolute;
    bottom: 100px;
    left: 10%;
}

@media (max-width: 1500px) {
    .vs-about__eleh4 {
        display: none;
    }
}

.vs-about__eleh4-1 {
    position: absolute;
    right: 129px;
    top: 94px;
}

@media (max-width: 1500px) {
    .vs-about__eleh4-1 {
        right: 50px;
        top: 50px;
        width: 70px;
    }
}

.vs-about__eleh4-1 {
}

@media (max-width: 1199px) {
    .vs-about__eleh4-1 {
        display: none;
    }
}

.vs-about--right2 {
}

@media (max-width: 1199px) {
    .vs-about--right2 {
        margin-left: 20px;
    }

    .vs-about--right2 .vs-title__main {
        font-size: 40px;
    }

    .vs-about--right2 .vs-room__icon {
        margin-bottom: 15px;
    }
}

.vs-about--right2 {
}

@media (max-width: 991px) {
    .vs-about--right2 {
        margin-left: 0px;
    }
}

@media (max-width: 1300px) {
    .vs-about--right2 .h4-txt {
        margin: 0px !important;
    }
}

.vs-about--image2 {
    position: relative;
    margin-right: 15px;
}

.vs-about--image2 img {
    position: relative;
    width: 100%;
    height: 542px;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjY5IiBoZWlnaHQ9IjUyOSIgdmlld0JveD0iMCAwIDY2OSA1MjkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02NjkgMTk0QzY2OSAyMTAuNTY5IDY1NS41NjkgMjI0IDYzOSAyMjRINjAyQzU4NS40MzEgMjI0IDU3MiAyMzcuNDMxIDU3MiAyNTRWNDk5QzU3MiA1MTUuNTY5IDU1OC41NjkgNTI5IDU0MiA1MjlIMzBDMTMuNDMxNSA1MjkgMCA1MTUuNTY5IDAgNDk5VjMwQzAgMTMuNDMxNSAxMy40MzE1IDAgMzAgMEg2MzlDNjU1LjU2OSAwIDY2OSAxMy40MzE1IDY2OSAzMFYxOTRaIiBmaWxsPSIjOTIyNzhGIi8+Cjwvc3ZnPgo=");
    mask-size: contain;
    mask-position: center top;
    mask-repeat: no-repeat;
    object-fit: cover;
}

@media (max-width: 1500px) {
    .vs-about--image2 img {
        height: 525px;
    }
}

.vs-about--image2 img {
}

@media (max-width: 1199px) {
    .vs-about--image2 img {
        height: 375px;
    }
}

.vs-about--image2 img {
}

@media (max-width: 991px) {
    .vs-about--image2 img {
        height: 542px;
    }
}

.vs-about--image2 img {
}

@media (max-width: 767px) {
    .vs-about--image2 img {
        height: 400px;
    }
}

.vs-about--image2 img {
}

@media (max-width: 575px) {
    .vs-about--image2 img {
        height: 100%;
        mask-position: left center;
        margin-left: 10px;
    }
}

.vs-about--image2::before {
    position: absolute;
    content: "";
    top: -9px;
    left: -10px;
    width: 220px;
    height: 180px;
    background-color: var(--vs-theme-color4);
    border-radius: 30px;
}

@media (max-width: 1500px) {
    .vs-about--image2::before {
        left: 0px;
    }
}

@media (max-width: 1300px) {
    .vs-about--image2::before {
        left: -10px;
    }
}

.vs-about--image2::before {
}

@media (max-width: 575px) {
    .vs-about--image2::before {
        left: 0px;
        width: 125px;
        height: 125px;
    }
}

.vs-about--image2 {
}

@media (max-width: 1199px) {
    .vs-about--image2 {
        margin-right: -25px;
    }
}

.vs-about--image2 {
}

@media (max-width: 991px) {
    .vs-about--image2 {
        margin-bottom: 60px;
        margin-right: 10px;
    }
}

.vs-about--content {
    margin-left: -95px;
}

.vs-about--content .vs-room {
    text-align: left;
    padding: 40px 30px;
}

@media (max-width: 1300px) {
    .vs-about--content .vs-room {
        padding: 33px;
    }
}

.vs-about--content .vs-room {
}

@media (max-width: 1199px) {
    .vs-about--content .vs-room {
        padding: 15px 25px;
    }
}

.vs-about--content .vs-room {
}

@media (max-width: 991px) {
    .vs-about--content .vs-room {
        padding: 33px;
    }
}

.vs-about--content {
}

@media (max-width: 1199px) {
    .vs-about--content {
        margin-left: -70px;
    }
}

.vs-about--content {
}

@media (max-width: 991px) {
    .vs-about--content {
        margin-left: 0px;
    }
}

.vs-video--bg-image.extra, .vs-video--bg-image-overlay.extra {
    opacity: 0.15;
}

.vs-video__button2.play-btn {
    --icon-size: 50px;
    padding: 0px;
    background-color: var(--vs-theme-color4);
    border-radius: 50%;
}

.vs-video__button2.play-btn > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size, 124px);
    height: var(--icon-size, 124px);
    line-height: var(--icon-size, 124px);
    font-size: var(--vs-icon-font-size);
    text-align: center;
    border: 2px dashed rgba(var(--vs-title-color-rgb), 0.5);
    background-color: transparent;
    margin: 3px;
}

.vs-video__button2.play-btn::after, .vs-video__button2.play-btn::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: var(--vs-theme-color4);
    z-index: -1;
    border-radius: 50%;
    transition: 0.4s;
}

.vs-video__button2.play-btn::after {
    animation-delay: 2s;
}

.vs-video__button2.play-btn:hover {
    background-color: var(--vs-theme-color2);
}

.vs-video__button2.play-btn:hover::after, .vs-video__button2.play-btn:hover::before, .vs-video__button2.play-btn:hover i {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
}

.vs-balls--style4 {
    transform: rotate(180deg);
}

.vs-team--style3 {
    background: transparent;
    border-radius: 0px;
    padding: 0px;
    position: relative;
    margin: 10px 10px 30px;
    box-shadow: none;
}

.vs-team--style3 .vs-team__img {
    border-radius: 0px;
    overflow: initial;
}

.vs-team--style3 .vs-team__img::before {
    display: none;
    content: "";
}

.vs-team--style3 .vs-team__img::after {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--vs-theme-color2);
    z-index: -1;
    transform: scale(1.1);
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjM3LjYyOTk5OTk5OTk5OTk5NSAzNy42Mjk5OTk5OTk5OTk5OTUgMjgwLjQ1IDI4MC40NSIgc3R5bGU9Im1heC1oZWlnaHQ6IDUwMHB4IiB3aWR0aD0iMjgwLjQ1IiBoZWlnaHQ9IjI4MC40NSI+CjxwYXRoIGZpbGw9IiM5MjI3OEYiIGQ9Ik0xOTYuMzQ0IDMwMi4wMUMxOTAuMDM4IDMxOS43NDIgMTY0Ljk2MiAzMTkuNzQyIDE1OC42NTYgMzAyLjAxTDE1MC45NTkgMjgwLjM2N0MxNDYuOTg4IDI2OS4yIDEzNC4yMzMgMjYzLjkxNyAxMjMuNTI5IDI2OS4wMDVMMTAyLjc4MyAyNzguODY3Qzg1Ljc4NTcgMjg2Ljk0NiA2OC4wNTM5IDI2OS4yMTQgNzYuMTMzNCAyNTIuMjE3TDg1Ljk5NTEgMjMxLjQ3MUM5MS4wODMxIDIyMC43NjcgODUuNzk5NyAyMDguMDEyIDc0LjYzMzIgMjA0LjA0MUw1Mi45ODk5IDE5Ni4zNDRDMzUuMjU4MiAxOTAuMDM4IDM1LjI1ODEgMTY0Ljk2MiA1Mi45ODk5IDE1OC42NTZMNzQuNjMzMiAxNTAuOTU5Qzg1Ljc5OTcgMTQ2Ljk4OCA5MS4wODMxIDEzNC4yMzMgODUuOTk1MSAxMjMuNTI5TDc2LjEzMzQgMTAyLjc4M0M2OC4wNTM5IDg1Ljc4NTcgODUuNzg1NyA2OC4wNTM5IDEwMi43ODMgNzYuMTMzNEwxMjMuNTI5IDg1Ljk5NTFDMTM0LjIzMyA5MS4wODMxIDE0Ni45ODggODUuNzk5NyAxNTAuOTU5IDc0LjYzMzJMMTU4LjY1NiA1Mi45ODk5QzE2NC45NjIgMzUuMjU4MiAxOTAuMDM4IDM1LjI1ODEgMTk2LjM0NCA1Mi45ODk5TDIwNC4wNDEgNzQuNjMzMkMyMDguMDEyIDg1Ljc5OTcgMjIwLjc2NyA5MS4wODMxIDIzMS40NzEgODUuOTk1MUwyNTIuMjE3IDc2LjEzMzRDMjY5LjIxNCA2OC4wNTM5IDI4Ni45NDYgODUuNzg1NyAyNzguODY3IDEwMi43ODNMMjY5LjAwNSAxMjMuNTI5QzI2My45MTcgMTM0LjIzMyAyNjkuMiAxNDYuOTg4IDI4MC4zNjcgMTUwLjk1OUwzMDIuMDEgMTU4LjY1NkMzMTkuNzQyIDE2NC45NjIgMzE5Ljc0MiAxOTAuMDM4IDMwMi4wMSAxOTYuMzQ0TDI4MC4zNjcgMjA0LjA0MUMyNjkuMiAyMDguMDEyIDI2My45MTcgMjIwLjc2NyAyNjkuMDA1IDIzMS40NzFMMjc4Ljg2NyAyNTIuMjE3QzI4Ni45NDYgMjY5LjIxNCAyNjkuMjE0IDI4Ni45NDYgMjUyLjIxNyAyNzguODY3TDIzMS40NzEgMjY5LjAwNUMyMjAuNzY3IDI2My45MTcgMjA4LjAxMiAyNjkuMiAyMDQuMDQxIDI4MC4zNjdMMTk2LjM0NCAzMDIuMDFaIi8+CjxwYXRoIGZpbGw9IiNEMUQyRDYiIGQ9Ik0xOTYuMzQ0IDI5MC4wMUMxOTAuMDM4IDMwNy43NDIgMTY0Ljk2MiAzMDcuNzQyIDE1OC42NTYgMjkwLjAxTDE1My4yNTYgMjc0LjgyNEMxNDkuMjg1IDI2My42NTcgMTM2LjUyOSAyNTguMzc0IDEyNS44MjUgMjYzLjQ2MkwxMTEuMjY4IDI3MC4zODFDOTQuMjcxIDI3OC40NjEgNzYuNTM5MiAyNjAuNzI5IDg0LjYxODcgMjQzLjczMkw5MS41Mzg0IDIyOS4xNzVDOTYuNjI2NCAyMTguNDcxIDkxLjM0MyAyMDUuNzE1IDgwLjE3NjUgMjAxLjc0NEw2NC45ODk5IDE5Ni4zNDRDNDcuMjU4MiAxOTAuMDM4IDQ3LjI1ODIgMTY0Ljk2MiA2NC45ODk5IDE1OC42NTZMODAuMTc2NSAxNTMuMjU1QzkxLjM0MyAxNDkuMjg1IDk2LjYyNjQgMTM2LjUyOSA5MS41Mzg0IDEyNS44MjVMODQuNjE4NyAxMTEuMjY4Qzc2LjUzOTIgOTQuMjcxIDk0LjI3MSA3Ni41MzkxIDExMS4yNjggODQuNjE4NkwxMjUuODI1IDkxLjUzODRDMTM2LjUyOSA5Ni42MjY0IDE0OS4yODUgOTEuMzQyOSAxNTMuMjU2IDgwLjE3NjRMMTU4LjY1NiA2NC45ODk5QzE2NC45NjIgNDcuMjU4MSAxOTAuMDM4IDQ3LjI1ODEgMTk2LjM0NCA2NC45ODk5TDIwMS43NDUgODAuMTc2NEMyMDUuNzE1IDkxLjM0MjkgMjE4LjQ3MSA5Ni42MjY0IDIyOS4xNzUgOTEuNTM4NEwyNDMuNzMyIDg0LjYxODZDMjYwLjcyOSA3Ni41MzkyIDI3OC40NjEgOTQuMjcxIDI3MC4zODEgMTExLjI2OEwyNjMuNDYyIDEyNS44MjVDMjU4LjM3NCAxMzYuNTI5IDI2My42NTcgMTQ5LjI4NSAyNzQuODI0IDE1My4yNTVMMjkwLjAxIDE1OC42NTZDMzA3Ljc0MiAxNjQuOTYyIDMwNy43NDIgMTkwLjAzOCAyOTAuMDEgMTk2LjM0NEwyNzQuODI0IDIwMS43NDRDMjYzLjY1NyAyMDUuNzE1IDI1OC4zNzQgMjE4LjQ3MSAyNjMuNDYyIDIyOS4xNzVMMjcwLjM4MSAyNDMuNzMyQzI3OC40NjEgMjYwLjcyOSAyNjAuNzI5IDI3OC40NjEgMjQzLjczMiAyNzAuMzgxTDIyOS4xNzUgMjYzLjQ2MkMyMTguNDcxIDI1OC4zNzQgMjA1LjcxNSAyNjMuNjU3IDIwMS43NDQgMjc0LjgyNEwxOTYuMzQ0IDI5MC4wMVoiLz4KPC9zdmc+");
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
}

.vs-team--style3 .vs-team__img .ins-image {
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjM3LjYyOTk5OTk5OTk5OTk5NSAzNy42Mjk5OTk5OTk5OTk5OTUgMjgwLjQ1IDI4MC40NSIgc3R5bGU9Im1heC1oZWlnaHQ6IDUwMHB4IiB3aWR0aD0iMjgwLjQ1IiBoZWlnaHQ9IjI4MC40NSI+CjxwYXRoIGZpbGw9IiM5MjI3OEYiIGQ9Ik0xOTYuMzQ0IDMwMi4wMUMxOTAuMDM4IDMxOS43NDIgMTY0Ljk2MiAzMTkuNzQyIDE1OC42NTYgMzAyLjAxTDE1MC45NTkgMjgwLjM2N0MxNDYuOTg4IDI2OS4yIDEzNC4yMzMgMjYzLjkxNyAxMjMuNTI5IDI2OS4wMDVMMTAyLjc4MyAyNzguODY3Qzg1Ljc4NTcgMjg2Ljk0NiA2OC4wNTM5IDI2OS4yMTQgNzYuMTMzNCAyNTIuMjE3TDg1Ljk5NTEgMjMxLjQ3MUM5MS4wODMxIDIyMC43NjcgODUuNzk5NyAyMDguMDEyIDc0LjYzMzIgMjA0LjA0MUw1Mi45ODk5IDE5Ni4zNDRDMzUuMjU4MiAxOTAuMDM4IDM1LjI1ODEgMTY0Ljk2MiA1Mi45ODk5IDE1OC42NTZMNzQuNjMzMiAxNTAuOTU5Qzg1Ljc5OTcgMTQ2Ljk4OCA5MS4wODMxIDEzNC4yMzMgODUuOTk1MSAxMjMuNTI5TDc2LjEzMzQgMTAyLjc4M0M2OC4wNTM5IDg1Ljc4NTcgODUuNzg1NyA2OC4wNTM5IDEwMi43ODMgNzYuMTMzNEwxMjMuNTI5IDg1Ljk5NTFDMTM0LjIzMyA5MS4wODMxIDE0Ni45ODggODUuNzk5NyAxNTAuOTU5IDc0LjYzMzJMMTU4LjY1NiA1Mi45ODk5QzE2NC45NjIgMzUuMjU4MiAxOTAuMDM4IDM1LjI1ODEgMTk2LjM0NCA1Mi45ODk5TDIwNC4wNDEgNzQuNjMzMkMyMDguMDEyIDg1Ljc5OTcgMjIwLjc2NyA5MS4wODMxIDIzMS40NzEgODUuOTk1MUwyNTIuMjE3IDc2LjEzMzRDMjY5LjIxNCA2OC4wNTM5IDI4Ni45NDYgODUuNzg1NyAyNzguODY3IDEwMi43ODNMMjY5LjAwNSAxMjMuNTI5QzI2My45MTcgMTM0LjIzMyAyNjkuMiAxNDYuOTg4IDI4MC4zNjcgMTUwLjk1OUwzMDIuMDEgMTU4LjY1NkMzMTkuNzQyIDE2NC45NjIgMzE5Ljc0MiAxOTAuMDM4IDMwMi4wMSAxOTYuMzQ0TDI4MC4zNjcgMjA0LjA0MUMyNjkuMiAyMDguMDEyIDI2My45MTcgMjIwLjc2NyAyNjkuMDA1IDIzMS40NzFMMjc4Ljg2NyAyNTIuMjE3QzI4Ni45NDYgMjY5LjIxNCAyNjkuMjE0IDI4Ni45NDYgMjUyLjIxNyAyNzguODY3TDIzMS40NzEgMjY5LjAwNUMyMjAuNzY3IDI2My45MTcgMjA4LjAxMiAyNjkuMiAyMDQuMDQxIDI4MC4zNjdMMTk2LjM0NCAzMDIuMDFaIi8+CjxwYXRoIGZpbGw9IiNEMUQyRDYiIGQ9Ik0xOTYuMzQ0IDI5MC4wMUMxOTAuMDM4IDMwNy43NDIgMTY0Ljk2MiAzMDcuNzQyIDE1OC42NTYgMjkwLjAxTDE1My4yNTYgMjc0LjgyNEMxNDkuMjg1IDI2My42NTcgMTM2LjUyOSAyNTguMzc0IDEyNS44MjUgMjYzLjQ2MkwxMTEuMjY4IDI3MC4zODFDOTQuMjcxIDI3OC40NjEgNzYuNTM5MiAyNjAuNzI5IDg0LjYxODcgMjQzLjczMkw5MS41Mzg0IDIyOS4xNzVDOTYuNjI2NCAyMTguNDcxIDkxLjM0MyAyMDUuNzE1IDgwLjE3NjUgMjAxLjc0NEw2NC45ODk5IDE5Ni4zNDRDNDcuMjU4MiAxOTAuMDM4IDQ3LjI1ODIgMTY0Ljk2MiA2NC45ODk5IDE1OC42NTZMODAuMTc2NSAxNTMuMjU1QzkxLjM0MyAxNDkuMjg1IDk2LjYyNjQgMTM2LjUyOSA5MS41Mzg0IDEyNS44MjVMODQuNjE4NyAxMTEuMjY4Qzc2LjUzOTIgOTQuMjcxIDk0LjI3MSA3Ni41MzkxIDExMS4yNjggODQuNjE4NkwxMjUuODI1IDkxLjUzODRDMTM2LjUyOSA5Ni42MjY0IDE0OS4yODUgOTEuMzQyOSAxNTMuMjU2IDgwLjE3NjRMMTU4LjY1NiA2NC45ODk5QzE2NC45NjIgNDcuMjU4MSAxOTAuMDM4IDQ3LjI1ODEgMTk2LjM0NCA2NC45ODk5TDIwMS43NDUgODAuMTc2NEMyMDUuNzE1IDkxLjM0MjkgMjE4LjQ3MSA5Ni42MjY0IDIyOS4xNzUgOTEuNTM4NEwyNDMuNzMyIDg0LjYxODZDMjYwLjcyOSA3Ni41MzkyIDI3OC40NjEgOTQuMjcxIDI3MC4zODEgMTExLjI2OEwyNjMuNDYyIDEyNS44MjVDMjU4LjM3NCAxMzYuNTI5IDI2My42NTcgMTQ5LjI4NSAyNzQuODI0IDE1My4yNTVMMjkwLjAxIDE1OC42NTZDMzA3Ljc0MiAxNjQuOTYyIDMwNy43NDIgMTkwLjAzOCAyOTAuMDEgMTk2LjM0NEwyNzQuODI0IDIwMS43NDRDMjYzLjY1NyAyMDUuNzE1IDI1OC4zNzQgMjE4LjQ3MSAyNjMuNDYyIDIyOS4xNzVMMjcwLjM4MSAyNDMuNzMyQzI3OC40NjEgMjYwLjcyOSAyNjAuNzI5IDI3OC40NjEgMjQzLjczMiAyNzAuMzgxTDIyOS4xNzUgMjYzLjQ2MkMyMTguNDcxIDI1OC4zNzQgMjA1LjcxNSAyNjMuNjU3IDIwMS43NDQgMjc0LjgyNEwxOTYuMzQ0IDI5MC4wMVoiLz4KPC9zdmc+");
    transform: none;
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
}

.vs-team--style3 .vs-team__img.shape1::after {
    background-color: var(--vs-theme-color1);
}

.vs-team--style3 .vs-team__img.shape2::after {
    background-color: var(--vs-theme-color3);
}

.vs-team--style3 .vs-team__img.shape3::after {
    background-color: var(--vs-theme-color4);
}

.vs-team--style3 .vs-team__heading {
    justify-content: center;
}

.vs-team--style3 .vs-team__share {
    position: relative;
}

.vs-team--style3 .vs-team__share--list {
    list-style: none;
    margin-bottom: 0px;
    position: relative;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    padding: 0px;
    border-radius: 0px;
    left: 0px;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: 0.4s;
}

.vs-team--style3 .vs-team__share--list > li {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.vs-team--style3 .vs-team__share--list > li > a {
    color: var(--vs-title-color);
    background-color: rgba(var(--vs-title-color-rgb), 0.2);
    --icon-size: 40px;
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.4s;
}

.vs-team--style3 .vs-team__share--list > li > a:hover {
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color2);
}

.vs-team--style3:hover .vs-team__role {
    color: var(--vs-body-color);
}

.vs-team--style3:hover .vs-team__share--list > li > a {
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color2);
}

.vs-team--style3:hover .vs-team__share--list.vs-color1 > li > a {
    background-color: var(--vs-theme-color1);
}

.vs-team--style3:hover .vs-team__share--list.vs-color2 > li > a {
    background-color: var(--vs-theme-color3);
}

.vs-team--style3:hover .vs-team__share--list.vs-color3 > li > a {
    background-color: var(--vs-theme-color4);
}

.vs-team--style3 {
}

@media (max-width: 1199px) {
    .vs-team--style3 {
        margin-bottom: 50px;
    }
}

.vs-team--style3 {
}

@media (max-width: 991px) {
    .vs-team--style3 {
        margin-bottom: 50px;
    }
}

.vs-team--style3 {
}

@media (max-width: 575px) {
    .vs-team--style3 {
        margin: 20px 21px 50px;
    }
}

.vs-blog--style3 .vs-blog__inner {
    padding: 35px 25px;
}

.vs-blog--style3 .vs-blog__img {
    margin: 10px 0px 25px;
}

.vs-hero--style5 .vs-hero__anim1.manimated {
    animation-name: slideinright;
    animation-fill-mode: both;
    opacity: 1;
    animation-duration: 1s;
}

.vs-hero--style5 .vs-hero__bg {
    animation: 2s ease-in-out 0s 1 normal none running slideinright;
}

.vs-hero--style5 .vs-hero__content {
    padding: 245px 0px 280px;
}

@media (max-width: 1199px) {
    .vs-hero--style5 .vs-hero__content {
        padding: 120px 0px;
    }
}

.vs-hero--style5 .vs-hero__content {
}

@media (max-width: 991px) {
    .vs-hero--style5 .vs-hero__content {
        text-align: center;
    }
}

.vs-hero--style5 .vs-hero__title--main {
    font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
    margin: 0px 0px 15px;
    line-height: 1.15;
    text-transform: capitalize;
    color: var(--vs-title-color);
}

@media (max-width: 991px) {
    .vs-hero--style5 .vs-hero__title--main {
        color: var(--vs-white-color);
    }
}

.vs-hero--style5 .vs-hero__title--main {
}

@media (max-width: 767px) {
    .vs-hero--style5 .vs-hero__title--main {
        font-size: 70px;
    }
}

.vs-hero--style5 .vs-hero__title--main {
}

@media (max-width: 575px) {
    .vs-hero--style5 .vs-hero__title--main {
        font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style5 .vs-hero__title--main span {
    display: block;
    color: var(--vs-title-color);
    font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
}

@media (max-width: 991px) {
    .vs-hero--style5 .vs-hero__title--main span {
        color: var(--vs-white-color);
    }
}

.vs-hero--style5 .vs-hero__title--main span {
}

@media (max-width: 767px) {
    .vs-hero--style5 .vs-hero__title--main span {
        font-size: clamp(2.2rem, 1.2rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style5 .vs-hero__title--sub {
    font-size: 40px;
    font-family: var(--vs-special-font);
    margin: 0px 0px 15px;
    color: var(--vs-title-color);
}

@media (max-width: 991px) {
    .vs-hero--style5 .vs-hero__title--sub {
        color: var(--vs-white-color);
    }
}

.vs-hero--style5 .vs-hero__desc {
    color: var(--vs-title-color);
    font-size: 20px;
}

@media (max-width: 991px) {
    .vs-hero--style5 .vs-hero__desc {
        color: var(--vs-white-color);
    }
}

.vs-hero--style5 .vs-hero__ele1 {
    top: 85px;
    right: -15%;
    left: 0px;
    text-align: center;
}

@media (max-width: 1500px) {
    .vs-hero--style5 .vs-hero__ele1 {
        top: 150px;
    }
}

.vs-hero--style5 .vs-hero__ele1 {
}

@media (max-width: 1199px) {
    .vs-hero--style5 .vs-hero__ele1 {
        display: none;
    }
}

.vs-hero--style5 .vs-hero__ele2 {
    top: 100px;
    left: 100px;
    right: auto;
}

@media (max-width: 1500px) {
    .vs-hero--style5 .vs-hero__ele2 {
        left: 50px;
    }
}

.vs-hero--style5 .vs-hero__ele2 {
}

@media (max-width: 1199px) {
    .vs-hero--style5 .vs-hero__ele2 {
        display: none;
    }
}

.vs-hero--style5 .vs-hero__ele3 {
    position: absolute;
    bottom: 85px;
    right: auto;
    left: 100px;
    z-index: 2;
}

@media (max-width: 1500px) {
    .vs-hero--style5 .vs-hero__ele3 {
        left: 50px;
    }
}

.vs-hero--style5 .vs-hero__ele3 {
}

@media (max-width: 1199px) {
    .vs-hero--style5 .vs-hero__ele3 {
        display: none;
    }
}

.vs-featureh5 {
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: capitalize;
    position: relative;
}

.vs-featureh5__title {
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    color: var(--vs-title-color);
    text-transform: capitalize;
    margin-bottom: 6px;
    transition: 0.4s;
}

.vs-featureh5__text {
    font-weight: 500;
    margin-bottom: 0px;
    letter-spacing: 0.3px;
    max-width: 240px;
}

.vs-featureh5__icon img {
    width: 110px;
}

.vs-featureh5-txt {
    position: relative;
    top: 5px;
}

@media (max-width: 1199px) {
    .vs-featureh5-txt {
        top: 0px;
    }
}

.vs-featureh5::after {
    content: "";
    position: absolute;
    width: 0%;
    left: 10px;
    bottom: -20px;
    height: 2px;
    background-color: var(--vs-theme-color2);
    margin: 0px auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.vs-featureh5:hover::after {
    width: 92%;
    opacity: 1;
    visibility: visible;
}

.vs-featureh5 {
}

@media (max-width: 1199px) {
    .vs-featureh5 {
        gap: 10px;
    }
}

.vs-about3 .vs-text {
}

@media (max-width: 1199px) {
    .vs-about3 .vs-text {
        letter-spacing: normal;
        margin-bottom: 10px;
    }
}

.vs-about3--image {
    position: relative;
}

@media (max-width: 575px) {
    .vs-about3--image {
        max-width: 400px;
        margin-left: 2px;
    }
}

.vs-about3--image img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.vs-about3--image img.img-right {
    height: 460px;
}

@media (max-width: 1500px) {
    .vs-about3--image img.img-right {
        height: 458px;
    }
}

@media (max-width: 1300px) {
    .vs-about3--image img.img-right {
        height: 418px;
    }
}

.vs-about3--image img.img-right {
}

@media (max-width: 1199px) {
    .vs-about3--image img.img-right {
        height: 350px;
    }
}

.vs-about3--image img.img-right {
}

@media (max-width: 991px) {
    .vs-about3--image img.img-right {
        height: 535px;
    }
}

.vs-about3--image img.img-right {
}

@media (max-width: 767px) {
    .vs-about3--image img.img-right {
        height: 397px;
    }
}

.vs-about3--image img.img-right {
}

@media (max-width: 575px) {
    .vs-about3--image img.img-right {
        height: 100%;
        margin-left: 12px;
        margin-top: 15px;
        width: 97%;
    }
}

.vs-about3--image .img-bottom {
    position: relative;
}

.vs-about3--yoe {
    position: absolute;
    bottom: 15px;
    left: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--vs-white-color);
    width: 245px;
    height: 80px;
    margin: 0px auto;
    border-radius: 15px;
    font-family: var(--vs-title-font);
}

.vs-about3--yoe__number {
    font-size: 40px;
    font-weight: 700;
    color: var(--vs-theme-color2);
}

.vs-about3--yoe__text {
    font-weight: 900;
    font-size: 18px;
    color: var(--vs-title-color);
    width: 120px;
}

@media (max-width: 1199px) {
    .vs-about3--yoe__text {
        width: 90px;
    }
}

.vs-about3--yoe {
}

@media (max-width: 1199px) {
    .vs-about3--yoe {
        width: 195px;
        height: 75px;
        gap: 10px;
    }
}

.vs-about3__ele1-h5 {
    position: absolute;
    top: -35px;
    right: -12%;
    width: auto;
}

@media (max-width: 1500px) {
    .vs-about3__ele1-h5 {
        right: -5%;
        top: 0px;
        width: 80px;
    }
}

.vs-about3__ele1-h5 {
}

@media (max-width: 1199px) {
    .vs-about3__ele1-h5 {
        display: none;
    }
}

.vs-about3__ele2-h5 {
    position: absolute;
    top: 100px;
    left: -15%;
    width: auto;
}

@media (max-width: 1500px) {
    .vs-about3__ele2-h5 {
        left: -7%;
        width: 80px;
    }
}

.vs-about3__ele2-h5 {
}

@media (max-width: 1199px) {
    .vs-about3__ele2-h5 {
        display: none;
    }
}

.vs-featureh5-1--provide {
    margin-bottom: -15px;
}

.vs-featureh5-1--provide .swiper-pagination-bullet {
    background: var(--vs-white-color);
    opacity: 0.8;
}

.vs-featureh5-1--provide .swiper-pagination-bullet-active {
    background: var(--vs-theme-color2);
    opacity: 1;
}

.vs-featureh5-1--content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 15px 15px;
    padding: 10px;
    background-color: var(--vs-white-color);
    text-align: center;
    transition: 0.4s;
}

@media (max-width: 575px) {
    .vs-featureh5-1--content {
        max-width: 320px;
        margin: 0px auto;
    }
}

.vs-featureh5-1--content .vs-featureh5-1__border {
    border: 1px dashed rgba(var(--vs-title-color-rgb), 0.5);
    padding: 30px 20px;
    border-radius: 50% 50% 15px 15px;
    transition: 0.4s;
}

.vs-featureh5-1--content .vs-featureh5-1__image {
    width: 68px;
    height: 70px;
    margin: 10px auto;
}

.vs-featureh5-1--content .vs-featureh5-1__title {
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    margin-bottom: 5px;
    line-height: 1.5;
    font-weight: 900;
    text-transform: capitalize;
    transition: 0.4s;
}

.vs-featureh5-1--content .vs-featureh5-1__des {
    letter-spacing: 0.3px;
    font-weight: 500;
}

.vs-featureh5-1--content .vs-featureh5-1__arrow {
    display: inline-block;
    background-color: var(--vs-title-color);
    color: var(--vs-white-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    line-height: 45px;
    margin: 5px auto 0px;
    transition: 0.4s;
}

.vs-featureh5-1--content:hover .vs-featureh5-1__title {
    color: var(--vs-theme-color2);
}

.vs-featureh5-1--content:hover .vs-featureh5-1__border {
    border-color: var(--vs-theme-color2);
}

.vs-featureh5-1--content:hover .vs-featureh5-1__arrow {
    background-color: var(--vs-theme-color2);
}

.vs-gallery--row.home5-row {
}

@media (max-width: 767px) {
    .vs-gallery--row.home5-row {
        grid-template-rows: repeat(3, 1fr);
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.vs-gallery--row.home5-row {
}

@media (max-width: 575px) {
    .vs-gallery--row.home5-row {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
    }
}

.vs-gallery--col1.home5-col1 {
}

@media (max-width: 767px) {
    .vs-gallery--col1.home5-col1 {
        grid-area: auto;
    }
}

.vs-gallery--col1.home5-col1 {
}

@media (max-width: 575px) {
    .vs-gallery--col1.home5-col1 {
        grid-area: auto;
    }
}

.vs-gallery--col2.home5-col2 {
}

@media (max-width: 767px) {
    .vs-gallery--col2.home5-col2 {
        grid-area: auto;
    }
}

.vs-gallery--col2.home5-col2 {
}

@media (max-width: 575px) {
    .vs-gallery--col2.home5-col2 {
        grid-area: auto;
    }
}

.vs-gallery--col3.home5-col3 {
}

@media (max-width: 767px) {
    .vs-gallery--col3.home5-col3 {
        grid-area: 1 / 2 / 3 / 3;
    }
}

.vs-gallery--col3.home5-col3 {
}

@media (max-width: 575px) {
    .vs-gallery--col3.home5-col3 {
        grid-area: auto;
    }
}

.vs-gallery--col4.home5-col4 {
}

@media (max-width: 767px) {
    .vs-gallery--col4.home5-col4 {
        grid-area: 3 / 1 / 3 / 3;
    }
}

.vs-gallery--col4.home5-col4 {
}

@media (max-width: 575px) {
    .vs-gallery--col4.home5-col4 {
        grid-area: auto;
    }
}

.vs-team--style4 {
    background: transparent;
    border-radius: 0px;
    padding: 0px;
    position: relative;
    box-shadow: none;
    text-transform: capitalize;
}

.vs-team--style4 .vs-team__img {
    border-radius: 50%;
    overflow: initial;
}

@media (max-width: 991px) {
    .vs-team--style4 .vs-team__img {
        display: flex;
        justify-content: center;
    }
}

.vs-team--style4 .vs-team__img img {
    border-radius: 50%;
    transform: none;
}

@media (max-width: 991px) {
    .vs-team--style4 .vs-team__img img {
        width: auto;
    }
}

.vs-team--style4 .vs-team__img::before {
    display: none;
    content: "";
}

.vs-team--style4 .vs-team__heading {
    justify-content: center;
    font-size: 30px;
}

.vs-team--style4 .vs-team__share {
    position: relative;
}

.vs-team--style4 .vs-team__share--list {
    list-style: none;
    margin-bottom: 0px;
    position: relative;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    padding: 0px;
    border-radius: 0px;
    left: 0px;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: 0.4s;
}

.vs-team--style4 .vs-team__share--list > li {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.vs-team--style4 .vs-team__share--list > li > a {
    color: var(--vs-title-color);
    background-color: rgba(var(--vs-title-color-rgb), 0.2);
    --icon-size: 40px;
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.4s;
}

.vs-team--style4 .vs-team__share--list > li > a:hover {
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color2);
}

.vs-team--style4 .vs-team__share--list > li > a:hover {
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color2);
}

.vs-team--style4:hover .vs-team__heading a {
    color: var(--vs-theme-color2);
}

.vs-team--style4:hover .vs-team__img img {
    transform: none;
}

.vs-team--style4:hover .vs-team__role {
    color: var(--vs-body-color);
}

.vs-team--style4 {
}

@media (max-width: 1199px) {
    .vs-team--style4 {
        margin-bottom: 50px;
    }
}

.vs-team--style4 {
}

@media (max-width: 991px) {
    .vs-team--style4 {
        margin-bottom: 50px;
    }
}

.contact-img-overlay {
    position: absolute;
    inset: 0px;
    z-index: -1;
}

.vs-contact--ele1.home-5 {
}

@media (max-width: 1500px) {
    .vs-contact--ele1.home-5 {
        top: 50px;
        right: 50px;
        width: 80px;
    }
}

.feedback-image.home-5 {
}

@media (max-width: 575px) {
    .feedback-image.home-5 {
        height: 480px;
    }
}

@media (max-width: 374px) {
    .feedback-image.home-5 {
        height: 400px;
    }
}

.vs-blog--style4 {
    margin: 0px;
    padding: 0px;
}

@media (max-width: 767px) {
    .vs-blog--style4 {
        display: flex;
        justify-content: center;
    }
}

.vs-blog--style4 .vs-blog__inner {
    padding: 0px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background-color: var(--vs-white-color);
}

.vs-blog--style4 .vs-blog__img {
    margin: 0px;
}

.vs-blog--style4 .vs-blog__img img {
    width: auto;
}

.vs-blog--style4 .vs-blog__content {
    padding: 30px 0px 0px;
}

.vs-blog--style4 .vs-blog__desc {
    max-width: 350px;
    letter-spacing: 0.3px;
}

.vs-blog--style4::before {
    display: none;
}

.vs-blog--style4:hover .vs-blog__inner {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background-color: var(--vs-white-color);
}

.vs-header.bg-transparent {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
}

.vs-hero--style6 .vs-hero__shape-banner {
    position: absolute;
    left: 0px;
    bottom: -1px;
    width: 100%;
    z-index: 2;
}

.vs-hero--style6 .vs-hero__shape-banner img {
    width: 100%;
}

.vs-hero--style6 .vs-hero__anim1.manimated {
    animation-name: slideinleft;
    animation-fill-mode: both;
    opacity: 1;
    animation-duration: 1s;
}

.vs-hero--style6 .vs-hero__bg {
    animation: 2s ease-in-out 0s 1 normal none running slideindown;
}

.vs-hero--style6 .vs-hero__content {
    padding: 300px 0px 230px;
}

@media (max-width: 1300px) {
    .vs-hero--style6 .vs-hero__content {
        margin-right: -50px;
        padding: 270px 0px 200px;
    }
}

.vs-hero--style6 .vs-hero__content {
}

@media (max-width: 1199px) {
    .vs-hero--style6 .vs-hero__content {
        padding: 250px 0px 200px;
    }
}

.vs-hero--style6 .vs-hero__content {
}

@media (max-width: 991px) {
    .vs-hero--style6 .vs-hero__content {
        padding: 200px 0px 80px;
        margin: 0px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vs-hero--style6 .vs-hero__content {
        padding-bottom: 0px;
    }
}

.vs-hero--style6 .vs-hero__title--main {
    font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
    margin: 0px 0px 15px;
    line-height: 1.15;
    text-transform: capitalize;
    color: var(--vs-title-color);
}

@media (max-width: 1199px) {
    .vs-hero--style6 .vs-hero__title--main {
        font-size: 70px;
    }
}

.vs-hero--style6 .vs-hero__title--main {
}

@media (max-width: 991px) {
    .vs-hero--style6 .vs-hero__title--main {
        font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
    }
}

.vs-hero--style6 .vs-hero__title--main {
}

@media (max-width: 575px) {
    .vs-hero--style6 .vs-hero__title--main {
        font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style6 .vs-hero__title--main span.main-sub {
    color: var(--vs-theme-color1);
    font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
    display: inline;
}

@media (max-width: 1199px) {
    .vs-hero--style6 .vs-hero__title--main span.main-sub {
        font-size: 70px;
    }
}

.vs-hero--style6 .vs-hero__title--main span.main-sub {
}

@media (max-width: 991px) {
    .vs-hero--style6 .vs-hero__title--main span.main-sub {
        font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
    }
}

.vs-hero--style6 .vs-hero__title--main span.main-sub {
}

@media (max-width: 575px) {
    .vs-hero--style6 .vs-hero__title--main span.main-sub {
        font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style6 .vs-hero__title--main span {
    display: block;
    color: var(--vs-title-color);
    font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
}

@media (max-width: 1199px) {
    .vs-hero--style6 .vs-hero__title--main span {
        font-size: 40px;
    }
}

.vs-hero--style6 .vs-hero__title--main span {
}

@media (max-width: 767px) {
    .vs-hero--style6 .vs-hero__title--main span {
        font-size: clamp(2.2rem, 1.2rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style6 .vs-hero__title--sub {
    font-size: 40px;
    font-family: var(--vs-special-font);
    margin: 0px 0px 15px;
    color: var(--vs-title-color);
}

@media (max-width: 1199px) {
    .vs-hero--style6 .vs-hero__title--sub {
        font-size: 30px;
    }
}

.vs-hero--style6 .vs-hero__title--sub {
}

@media (max-width: 767px) {
    .vs-hero--style6 .vs-hero__title--sub {
        margin: 0px;
    }
}

.vs-hero--style6 .vs-hero__desc {
    font-size: 20px;
    margin: 0px 0px 40px;
}

.vs-hero--style6 .vs-hero__search {
    position: relative;
    width: 570px;
}

@media (max-width: 1199px) {
    .vs-hero--style6 .vs-hero__search {
        width: 90%;
    }
}

.vs-hero--style6 .vs-hero__search {
}

@media (max-width: 991px) {
    .vs-hero--style6 .vs-hero__search {
        margin: 0px auto;
    }
}

@media (max-width: 480px) {
    .vs-hero--style6 .vs-hero__search {
        display: none;
    }
}

.vs-hero--style6 .vs-hero__search form input {
    text-transform: capitalize;
    height: 80px;
    width: 100%;
    border: 2px dashed rgba(18, 21, 31, 0.1);
    background-color: var(--vs-white-color);
    padding-left: 30px;
    color: var(--vs-title-color);
    box-shadow: rgba(18, 21, 31, 0.2) 0px 4px 5px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.vs-hero--style6 .vs-hero__search form input:focus {
    outline: none;
}

.vs-hero--style6 .vs-hero__search form button {
    position: absolute;
    top: 16%;
    background-color: var(--vs-theme-color2);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-size: 18px;
    font-weight: 700;
    right: 12px;
    border-radius: 50px;
    color: var(--vs-white-color);
    font-family: var(--vs-title-font);
    text-transform: uppercase;
    cursor: pointer;
    width: 175px;
    height: 56px;
}

.vs-hero--style6 .vs-hero__brand-profile {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 80px;
}

@media (max-width: 1199px) {
    .vs-hero--style6 .vs-hero__brand-profile {
        margin-top: 50px;
        width: 90%;
    }
}

.vs-hero--style6 .vs-hero__brand-profile {
}

@media (max-width: 991px) {
    .vs-hero--style6 .vs-hero__brand-profile {
        width: auto;
        justify-content: center;
    }
}

.vs-hero--style6 .vs-hero__brand-profile {
}

@media (max-width: 575px) {
    .vs-hero--style6 .vs-hero__brand-profile {
        display: none;
    }
}

.vs-hero--style6 .vs-hero__brand-profile .ms-n2 {
    margin-left: -15px;
}

.vs-hero--style6 .vs-hero__brand-profile .ms-n3 {
    margin-left: -20px;
}

.vs-hero--style6 .vs-hero__brand-profile ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: flex;
}

.vs-hero--style6 .vs-hero__brand-profile ul.brand {
    display: flex;
    gap: 30px;
    margin-right: 25px;
}

.vs-hero--style6 .vs-hero__brand-profile ul.profile li:nth-last-child(1) a {
    background-color: var(--vs-title-color);
    width: 60px;
    height: 60px;
    line-height: 58px;
    color: var(--vs-white-color);
    font-size: 20px;
    text-align: center;
    border: 3px solid var(--vs-white-color);
    border-radius: 50%;
    display: block;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .vs-hero--style6 .vs-hero__brand-profile ul.profile li:nth-last-child(1) a {
        width: 50px;
        height: 50px;
        line-height: 48px;
        font-size: 16px;
    }
}

.vs-hero--style6 .vs-hero__brand-profile ul.profile li:nth-last-child(1) a {
}

@media (max-width: 991px) {
    .vs-hero--style6 .vs-hero__brand-profile ul.profile li:nth-last-child(1) a {
        width: 60px;
        height: 60px;
        line-height: 58px;
        font-size: 20px;
    }
}

.vs-hero--style6 .vs-hero__img-shape {
    position: absolute;
    right: auto;
    left: 58%;
    top: 27%;
    animation: 2s ease-in-out 0s 1 normal none running slideinup;
}

@media (max-width: 1400px) {
    .vs-hero--style6 .vs-hero__img-shape {
        left: 56%;
    }
}

@media (max-width: 1300px) {
    .vs-hero--style6 .vs-hero__img-shape {
        width: 36%;
        left: 58%;
    }
}

.vs-hero--style6 .vs-hero__img-shape {
}

@media (max-width: 991px) {
    .vs-hero--style6 .vs-hero__img-shape {
        position: relative;
        width: 60%;
        left: auto;
        margin: 0px auto 150px;
    }
}

@media (max-width: 480px) {
    .vs-hero--style6 .vs-hero__img-shape {
        width: 80%;
    }
}

.vs-hero--style6 .vs-hero__img-shape img.main-img {
    position: relative;
    width: 100%;
    height: 470px;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTA1IiBoZWlnaHQ9IjQ3MCIgdmlld0JveD0iMCAwIDUwNSA0NzAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik00OTEuOTM2IDEyLjA1MTFDNDc0LjM2OSAtNy4wMTczMiA0NDUuOTA4IC0wLjA3NTY2MzIgMzk5LjExNyA5Ljc4MjQ0QzI0My43ODkgNDIuNTExMSAyOC4wMzI3IDEwMC4zNTcgOC45NDAxNCAxMzIuMTQxQy0xNi43NTgxIDE3NC45MjggMTcuNjgxNCAzODAuMDQ1IDUyLjM3MDkgNDIxLjgyMkM4Ny4wNjMxIDQ2My41OTcgMzU5LjYyMyA0OTQuMTQgNDE1LjY1MyA0NDMuMjE1QzQ1Ni43ODIgNDA1LjgzNSA0ODkuOTQ0IDIzMC4wNzUgNTAxLjAxNCA5Ni41ODg5QzUwMy44NCA2Mi40NzMzIDUwOS41NCAzMS4xNTU4IDQ5MS45MzYgMTIuMDUxMVoiIGZpbGw9IiNEMTgxMDkiLz4KPC9zdmc+Cg==");
    mask-size: contain;
    mask-position: center top;
    mask-repeat: no-repeat;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 1300px) {
    .vs-hero--style6 .vs-hero__img-shape img.main-img {
        height: auto;
    }
}

.vs-hero--style6 .vs-hero__img-shape img.border-img {
    position: absolute;
    inset: -2px 0px 0px;
    transform: scale(1.19);
}

@media (max-width: 1300px) {
    .vs-hero--style6 .vs-hero__img-shape img.border-img {
        top: -3px;
        transform: scale(1.18);
    }
}

.vs-hero--style6 .vs-hero__img-shape img.border-img {
}

@media (max-width: 1199px) {
    .vs-hero--style6 .vs-hero__img-shape img.border-img {
        top: -2px;
    }
}

.vs-hero--style6 .vs-hero__img-shape::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: var(--vs-theme-color2);
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTA1IiBoZWlnaHQ9IjQ3MCIgdmlld0JveD0iMCAwIDUwNSA0NzAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik00OTEuOTM2IDEyLjA1MTFDNDc0LjM2OSAtNy4wMTczMiA0NDUuOTA4IC0wLjA3NTY2MzIgMzk5LjExNyA5Ljc4MjQ0QzI0My43ODkgNDIuNTExMSAyOC4wMzI3IDEwMC4zNTcgOC45NDAxNCAxMzIuMTQxQy0xNi43NTgxIDE3NC45MjggMTcuNjgxNCAzODAuMDQ1IDUyLjM3MDkgNDIxLjgyMkM4Ny4wNjMxIDQ2My41OTcgMzU5LjYyMyA0OTQuMTQgNDE1LjY1MyA0NDMuMjE1QzQ1Ni43ODIgNDA1LjgzNSA0ODkuOTQ0IDIzMC4wNzUgNTAxLjAxNCA5Ni41ODg5QzUwMy44NCA2Mi40NzMzIDUwOS41NCAzMS4xNTU4IDQ5MS45MzYgMTIuMDUxMVoiIGZpbGw9IiNEMTgxMDkiLz4KPC9zdmc+Cg==");
    mask-size: contain;
    mask-position: center top;
    mask-repeat: no-repeat;
    transform: scale(1.1);
}

.vs-hero--style6 .vs-hero__img-shape img.rabbit-img {
    position: absolute;
    right: 70px;
    z-index: 1;
    bottom: 45px;
}

@media (max-width: 1300px) {
    .vs-hero--style6 .vs-hero__img-shape img.rabbit-img {
        right: 14%;
        bottom: 14%;
        width: 80px;
    }
}

@media (max-width: 420px) {
    .vs-hero--style6 .vs-hero__img-shape img.rabbit-img {
        right: 10%;
        width: 60px;
    }
}

.vs-hero--style6 .vs-hero__ele1 {
    top: 26%;
    right: -130px;
    text-align: center;
}

@media (max-width: 1500px) {
    .vs-hero--style6 .vs-hero__ele1 {
        top: 22%;
    }
}

.vs-hero--style6 .vs-hero__ele2 {
    right: -90px;
    top: -80px;
}

@media (max-width: 1300px) {
    .vs-hero--style6 .vs-hero__ele2 {
        right: -65px;
    }
}

.vs-hero--style6 .vs-hero__ele3 {
    position: absolute;
    top: 65%;
    right: auto;
    left: 100px;
    z-index: 2;
}

@media (max-width: 1500px) {
    .vs-hero--style6 .vs-hero__ele3 {
        top: 65%;
        left: 40px;
    }

    .vs-hero--style6 .vs-hero__ele3 img {
        width: 50px;
    }
}

@media (max-width: 1400px) {
    .vs-hero--style6 .vs-hero__ele3 {
        display: none;
    }
}

.vs-hero--style6 .vs-hero__ele4 {
    position: absolute;
    top: 58%;
    right: 11%;
    z-index: 2;
}

.vs-hero--style6 .vs-hero__ele4 img {
}

@media (max-width: 1500px) {
    .vs-hero--style6 .vs-hero__ele4 img {
        width: 60px;
    }
}

.vs-hero--style6 .vs-hero__ele4 {
}

@media (max-width: 1500px) {
    .vs-hero--style6 .vs-hero__ele4 {
        top: 62%;
        right: 30px;
    }
}

.vs-hero--style6 .vs-hero__ele4 {
}

@media (max-width: 1199px) {
    .vs-hero--style6 .vs-hero__ele4 {
        display: none;
    }
}

.vs-hero--style6 .vs-hero__ele5 {
    position: absolute;
    bottom: 12%;
    right: 35%;
    z-index: 2;
}

@media (max-width: 1500px) {
    .vs-hero--style6 .vs-hero__ele5 {
        bottom: 12%;
        right: 35%;
    }
}

.vs-hero--style6 .vs-hero__ele5 {
}

@media (max-width: 991px) {
    .vs-hero--style6 .vs-hero__ele5 {
        bottom: 5%;
    }
}

.vs-featureh5 {
    gap: 20px;
}

.vs-featureh5 .vs-featureh5__icon.h6 img {
    width: auto;
}

@media (max-width: 991px) {
    .vs-featureh5 .vs-featureh5__icon.h6 img {
        margin-right: 10px;
    }
}

.vs-featureh5 {
}

@media (max-width: 1199px) {
    .vs-featureh5 {
        gap: 10px;
    }
}

.vs-about3__ele1-h6 {
    position: absolute;
    top: 65%;
    right: -4%;
    width: 52px;
    z-index: 2;
}

@media (max-width: 1199px) {
    .vs-about3__ele1-h6 {
        display: none;
    }
}

.vs-about3 {
}

@media (max-width: 1199px) {
    .vs-about3 img.img-right.home6 {
        height: 95%;
    }
}

.vs-course--category {
    margin-bottom: -10px;
}

@media (max-width: 575px) {
    .vs-course--category .course-width {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .vs-course--category .course-width {
        width: 100%;
        margin-bottom: 20px;
    }
}

.vs-course--content {
    position: relative;
    padding: 50px 40px 40px;
    background-color: var(--vs-white-color);
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjc4IiBoZWlnaHQ9IjE4OCIgdmlld0JveD0iMCAwIDI3OCAxODgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xOTUuODk0IDE2Ny42NzZDMTk0LjkyNSAxNjcuNjc2IDE5My45NDcgMTY3Ljc2MSAxOTIuOTg4IDE2Ny42NjNDMTgyLjczOSAxNjYuNjE2IDE3NC43NDYgMTY5LjAzIDE2Ni42OTMgMTc2LjkxNEMxNTAuNzY5IDE5Mi41MDQgMTI2Ljk2NCAxOTEuMzgyIDExMC4wMTIgMTc1LjI0MkMxMDMuODM3IDE2OS4zNjQgOTcuODAyNSAxNjcuMjcgODkuNTQzMiAxNjcuNDkzQzc1Ljg1ODQgMTY3Ljg2MiA2Mi4xNjIxIDE2OC42MDkgNDguNzA0NyAxNjMuNzc4QzE4LjEwMTIgMTUyLjc5IC0yLjExNTkzIDEyMi43NyAwLjE3Njc3NSA5MC40NDMxQzIuNjc0NTYgNTUuMjI2MyAyNi4zNjY4IDI3Ljg0NSA1OS40NDYyIDIxLjYzODFDNzEuOTc0MiAxOS4yODc0IDg0LjU2MDMgMjAuODU4NyA5Ny4xMTMyIDIwLjUyNzNDMTAxLjAxMiAyMC40MjQyIDEwMy43NTYgMTkuMzk5OCAxMDYuNTI4IDE2LjU1OUMxMjcuOTQzIC01LjM4NDMyIDE1MS4xMTMgLTUuNTMzMjIgMTcyLjYwNCAxNi4xOThDMTc1Ljc5MSAxOS40MjA4IDE3OC45NTQgMjAuNDc4MSAxODMuMzUyIDIwLjUzMjhDMTk2Ljg0MSAyMC43MDE3IDIxMC40NSAxOS4wMDEgMjIzLjc1NCAyMi44MDQ0QzI1OC4yNDkgMzIuNjY2NSAyNzguODU1IDYwLjc3NjIgMjc3Ljk3MyA5Ni44Nzk5QzI3Ny4xNDQgMTMwLjgxNCAyNTcuMDMzIDE1Ni41ODUgMjI0LjY4NyAxNjUuMzcyQzIxNS4yMDUgMTY3Ljk0OCAyMDUuNTU4IDE2Ny43MjYgMTk1Ljg5NCAxNjcuNjc2WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
    width: 100%;
    height: 190px;
    mask-size: contain;
    mask-position: center top;
    mask-repeat: no-repeat;
    object-fit: cover;
    text-align: center;
    transition: 0.4s;
}

@media (max-width: 1300px) {
    .vs-course--content {
        padding: 38px 30px 0px;
    }
}

.vs-course--content {
}

@media (max-width: 1199px) {
    .vs-course--content {
        padding: 30px 13px 0px;
        height: 155px;
    }
}

.vs-course--content {
}

@media (max-width: 767px) {
    .vs-course--content {
        padding: 38px 30px 0px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .vs-course--content {
        padding: 50px 40px 40px;
        height: 190px;
    }
}

.vs-course--content::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 93%;
    height: 170px;
    background-color: var(--vs-title-color);
    opacity: 1;
    mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQYAAACpCAYAAADJCJOzAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABY5SURBVHgB7d37UxtXlgfw2w91S0JYgBBIAoxAgIWArB128iCJi5nM1Nb+Afkr/fvObtXMFptJ7E12PZUdGxkciGULkAEBAglJ3eruuzqNm+BnMOahVn8/VYnUSBibbt2+99xzz5UYeMb8/Lzc5Nvd3TVv3PiiM9g9NDTQn/QXi88qw5NfxXt7r9/oCQ+ae3v5w1Tq9lBX/1BMjgzp1Z28Tu/v7lYF+l4GbU9k0NbGxsZUepydnQ3m1vXphpAYdV7z+2XlgGu6/dyyKoYgbFSrWuXoVUOj//dJe/aj5ZMGuRyb/uabbyQ67m02FAzalsCgbQ2NzaUUWez6eCb+0507d8yxj+YHLZ9c/uX+X/bZe8pk5kP7VlVdX/pxhxqZ0mFg0mKs/GTpu8cM2o7MoG3QUKFQaPRpmq+ayy2ULDlQqjRqZef1lX8srLEzymYXqCdh9ybu379fHZ3944pSqVl0nE5/HdGYFpGM509XVlY0Bq6HhqGNNBuFQHM4EJckPU/H60t/3aHHO6vs3J3sddT9pilpslKvR5tD0xUWj88GC4X7VQYAV6MZFEyMpj+fccb+zuNVGRv7VzWV/nI2mf4sycC1EHx0KRo20KMuqj7DlA4XFxftBoFiCewKraz8WWOKlZcaot1jcP6e4C4IProMfdDyRStuGVbADYG/0fTtGcYabHZmMHvVjRacHnoMLhONRjkzxbCkyK4Yw/u4meNM0tAoAFyAkZFP+1OpuT56ftVxhLOieMhI+ssJJ7cCWhd6DC5AWYfNUMKgpbAAHbv17muo3BAFWWniDADOhiL8zt01mpkPsTZC/7Z0+pMIg5aEHkOLog+OJR9OmHJsmI63jxKM2od/f7DBlCRSq1sTGoYWdetWyODM0hoVM8/a0MrDu6t1puaKy9+XGQC8G2UNDjWDdMxDUtO3h7z2b2516DG0EAoyqiF1QhF5j1tnHs5CMblB/+ZMJqMwAHgZNQYjk38Y9uIHJJP5xv4337w535VMzncxAK+iLEaa26fl0QxslOdAay2coCRSqq+GZ7qrhC4yTYv4K5VCg+7OhzwS6w0PBqliER1XrWvDwfBoZ3nv6QGN9aODqZFgOBl80zF1+zujA4lYb0IqFtdr9HpkaKy3e3BULj3P1Z3jWGRI2HlRASnUl4w4P4/+PnIoMWJxMSqIQuNPv/+0lM1mPT+/Xyo+2wn2juuby/9Vsr/gS3wUTYx07249LTrnLNQbU8tv+J1Tb8PfFYv1R4ZN+p3TcvBQb39/yD+kHRysGbSwq7s32ef8rqkR6o0Ndu1u5ffoz+odHB6IhK8rdH7ouL9/pNvv7+N0vdC1k8vlLOYRbR1joExBuhic8Xr+ufFPwXBg0nld5jzBFGZnEy4uMkkS/CFJMOwubeJFKCwQOHp0jn0KN+hRC/js9zdkf5COxXBXwP7z6vWuk8eaYNpz9XVRDNGx5ROPu8n1Et9Qxd0HtOYBKcO/cpaL03njsrR5WDuqA0HniH6HClPs3+mrv/NCWVfonGxqPvt8HzQaQTp2/lxZFl+7ERqGZf/e6fza7w3Idt6I0hUMM584FAyq9vevFfVh6skMDn5uXxHU6CRvYsjjChTZTk3OTztj9PHp25MnjweaJ3N09o9h5/1eCvDB+6Prw7lGqIIV1cV0ju2l5eNzN+k55ZzQDehGG+VkuHp1Ja0fYKovTHP9a2v3amPTcynTEKX6fm0NhULgIlEDce/emkLXHTUIGhdGBckqPXl09ykdC0JDMYzdilsrWrkqsOOULmv2M8uUGMPVQEBgBqt3iPa/g5JmGMAleDH0q9Hz5aMkrf+jxuLJI2fYqCTqck+u+XXNSWt3UyPhiq60E/iRryUTlsVjhsGrh80AUamYK1GwisqbM4Ar5gSP94vPKvG+T3f8wrq+vb1tdvVNZ5jYEe/wD5QoCMpcoKV7DHYXzeKp1TWdWuRVxYhuTc2wAgJ10Oqy2TvHNyu90ljx96iRtbXvakdrYEoTCjM3lpZ+3GEtquV6DPa8dVfyGk0//eEPn5mF7cPOqux7Xt3ONVvfrIkpPXAb6iXsbuYO6HlPz7jMJN5jCLw5NZvfP7kJEIO3o0gvRXwxYwDtzLm+k+n5JBXzbbUl6C2Rx0CzC06ApiEF8jS3j+ECtDPn+g6K0Q0uBA5EsWKvMm2VKc8rn66kFlNiRoS2R3v66G8FBuBRrbTD15X0GGhc5WSNUYt5IMrLaBTA62iHL6pRwf3yFh1T7+Gq6mNeeo+Bxlb3H2xmBGYpWsXMUoIIA4DXOKX3/eL+cjPo3r5T8sfppKm5PifnHADejJai00bE9Jx62ZfZe7iUHgPN3TKlktJ0U8uvIDsR4H1RlStuNLosv5rP/bRQYhfsUmIMihLinEuiFFJaNqEDoJWpVv+mJPuMoL7l/jVAJ6chAeB82HVBx+ZSF5nrc2E9Bpp1oE1SGr54DwOAcxMOdwUUWez6+9/X3bcvB7VmA9hQBOBCnOwtXESv/NyDj5Sw5GfVcisvEAFoF5OTX8VrhtmvVbTH51mD5FyHEjR8oCzGmqCiDDjAJRCE2I4gidXu7lprL+dutz0WAdyCgpL0HzsH5xLVpDnWQOdwmKon0/JoBgCXLp4cH2v2HvoTsc5dKhDDPsAHDyUoecnUjIhTPRkArobP6l+lqtotkz6N2gkArYU2MvqQ2Yozz0o4JapEY/uxWyvhArQj+mwawv6kyVn5rEsQzjyUMOXysCAIXFEUlFoDaCErK3/WWIeS43W+wS4bDR+wOzFAa6NZirPsmPXeQwla/6Cq3EACE0Dro02YDI11ynzr0fsM+d9rKEFjF1r/oAkychUAXECxBvI0U3HhcUAqsoIhBID7nFfy00vaacNOAK+h6UvamuG0U5inGkocTX8IE06ZKQBwF0lKFH2qrNXr0VN95k+1RZ0kHSg6E8oBY2uLAYDrvNgy7xEDAHhVOv11ZHz69uRvve83uxUj6S8nzjIPCgCth/O6bhlW8LeKKL1zjQO1LpyZ/bpRPygX17H/A4DL7ezk9Q7/QGn9lx8O2IcYaDYODADaCk0ovGskIL79G4+mNdaX/ooMR4A2Q2ud2KGefNvK6Lc2DJacmKD4AgOAtqNwXqCMyLftKv/G6UrqZnChxjVeR28BoA0tL39fbj6U3/b6pW9qCwCtwa6+1hxSlJu9h+JRQ3FMfNObMT0J0P5u3QoZ3LSCXaov/OprrzUMsqyHpLqRwkIpgPZG8QWjxpdv3YgWfvPN1FtIpj9LMgDwjPn5+VMtjwAAjxhN3555dQbypaEEZTqmsd8kgKeIirhnGNZL05YvdR901khwplClF0xTAnjEyj8W1l792nGPgTKgNObb4H4ZS6sBPIaqO6EYEwC8hGIMqcm5aef4uMdA+08ifwHAm3Sm7gg+peQcH8cYaP9JwbQbihIDAE95dbGk3WOg+IJ4LfikXtK2GQB40slZSbvH8GKF1T4DAM8y5UafYSjUFuzYDQOVljYMbqyu3sWMBIBHNWSxIKpHe9HaDYPlk8K6aVAVWTQMAB6V+2nh5eCjzxLztTo3GQB4lr1/jLwXNyrCpt0wZLMLFQYAnqYoIc6tcqQR0ssCZTtVTd7XqZTy2WxWZwDgWYOZf+m5xq5V5GbQMaD4xK6pqalcs2FgAOBda9n/2KVHWVUHSgfswHhbUUgA8A7KgK7VUPMRAE4Ym55LNTRZEamFSKXm+hgAeF60k2+YtUZOZqYY1gVG288hhwHA4+7du2dvRSmrAsupCuq+AkAzxkCjB0XpQ4wBAI4NT34VlzlPiFSgAXUeAYB8Mh3bUsXdB7LIWGdNUMsMADzvRdqCKauivKyyKDIeAQAxBgB43XGMYXz69uRk84ABgOcdxxgsU5RqvK4yAPC8X2MMwtbj7COsqgSAo5Rorc6YSEutsaElABDTECVZbv6XTM8n85t6qPm1hwwAPO2fZ+Kr9ChzwdQYU0IMADzPKb+A6UoAsNH+Mv/z0/oMayg5ib4wNjam9vT0yLu7uyjWAuBRptkdYqIYrSjitkitBJdj05z3hRkAeNby8vdlrWJm56ei9tLro51uUawFAAAATqIOQjL9WZKe25vaUh4D9RhoWMEAwJO4aQVlxW/Qc7thKJfLCvOJQ3cfPO1iAOBJv7s58EAxoi+XeBz7aH4wk5lHPgMAAAAcrZGgGINzfLxGwtnQssKlnWJz2oIBgGcITFaYYFSdY9F5cutWyGCm2NUhihhOAHjMzw+/fRQQBgpvfHEg/XUEMxMA3kKZz6d6I5ZhA3gHVXEbGptLnfya+OqbRtO3Z9Z2WYwBgCdQFTdLNkonv/ZawyAq4p5W1VHqDcAjVh8tPJybGS69802IMQB4x9s2m3qtEchms5xiDKo6ENvZyWPaEqBNJW/Od3FDGA32xvRycb128jXxTd9QKDQChiDEsXUdQHuzGCuvL/24c+pvoEVVmUwG22ADwOswdQnQfm7c+CLxrhGB+K5vTk3fHnr2XJtkANA27OUPzVCBJshvzXJ+Z8MgN8ySZUniqTOjAKDlraz8WaszNRcQSgV2Vpi+BGgf5xoaGBn5tH+oOSZhAOBqlPp8cnn124jsFPx+RVSaY5LBwc8DDABciWILik8J6Ew//fTku9BwIorqTgDwJtTi0LCCAYCr/Nb05KtONZRw+HyVHlH1Dfbe+KKTAYArONOThhI8dSjgvRqG6enYVvMHbPz+o0SVAYArONOTt25Ezz49eVo3b86j1DxAi7txxt79mXIU6IfVTT4eCCfl8t7TAwYALYfiCs0efrInPGju7eUP3+d732so4aDNL5vTlxsNVdxjANCSJClRpKH/6urdLXbZKLBxA8FIgJZBn8kPXcZwph7DS/z7g5rFU1iiDXD1qFGw5MMJU44Nsw/wwQ2DYg3k5YBSzGazOgOAK0X7w3BmaY2KmWetgpKfsBIT4PLR4qjkOc4UfvhQ4gVKmxb9gajgT4wyALhUa1vmhFQ3zm1If24Nw507d0xViD6ulRo5BgCXysfZno/pufMa0gvsAjgBEKFhbF7JVAmAB9DnTJMOIvnl7zfYOTu3HsNJihLikswMoUPBTAXABaGbryLyHtcWU6KK06gEBXA+nCpM8fhs8KLSBC5kKHESJT8ZgjBB9eufLH33mAHAmVCDkHvOBkWmdc7ODGYprscuyIUMJU6i9GmZ88fOvCq1cgwA3ls0GuU+2QoIDWHzIhuFS0fBkuT43M1k+rMkA4DfRL0E2saBhuN0fFlD8gvvMZxE68IDsrQpK36DjrGZDcC7/fxcCjPD6jMUyW4Q2qqn8DZUrZaq1iIwCfArp5fgfC6uogjzlX4gO3rHmU+0Or7/9t+LdEzp1Lu7u+3fIgK8g+AfHLMMfu3xVrlS3cnrBwdrBrtkFz4rcVrp9NcRnVUTll/N535aKDEAj6AeQqHQ6DMMblBCIAXou7trxlUuTLzUGMO7iGJPmQuBg0Od2a0jajyAVzQbhQAVa9UF1nl0fL+K1cpvQGOrVPrL2dH05zOIP0C7sa/vZgyBrm/na9jM6ZQymfnQwIs6+NR7oClO5ECAW9FwYaA5XHZudBR4H5mcG8aN7wPQLzQ1OT/tNBS07hx1H6DVnZyOH5ueS1EvuCvpjurqLRNjeJf1pb/urD5aeDg3M2wHJcW6NcTl2LTT2mIDHGg1VLQot65PO4lJUkPYOhDl5VLOHYF1V3VjmgEZTo/xvk9Kulqv3P3Pf6tRNqUq6ZNdvdc7S8VnO3QsRvuDn8ykrFwuZzGAC2SvX2heZ7TPSmfv9ZHOyHXffvFZpSOW9qt+saFVjBJNN+40px2r2znXBBRdOb7Z3s6apee5Oj3f3V0xu4cnqnqjqpWL67Xu7r6IXxJHy7oo7G7mDmi/vnAs1euXeo1KpdCgOEUs1iEiXwJOw/ng03Ma0vaF4520R8Ps7GxQDY1M7Vd5iG5I4fCAr8FZB/PL+3RtlotPanT9XUUOwnloi5TkX+7/Zd95/vHHAzuLi9tVZmzZrfMh9zU7FFaP0d25xwqM+cOBQc4CnZmM8oCmhManb0/S+35++O0jGpr874NCSpItc+Xh3VVqROQONW5yWd9Y/TZPQVC9Oa0kNqwSzTfb3URF6fPxamFp6cedVOr2kCkaES5Lm08f/a1AsRCfYcUbhl7LLf13jn4ODXuKy9+XGbwXOhc0jUfPKVuWtnOn4SUd09idHleXvrtPj3RO6w1z/7OPEpt0Pg3OK1TMhG4SGlMiKtN36Hw5x7wub+WaXXyaKWCmGNbK2ura2r0axbXyzw01k8nY14rPrA0xn0g3063R0VFtf3m7aPlk+1wuH53TtjmvbbdW4UUuecU5flHd5rjCTUCUNw6Yqnw8FTebJ5vRh9Z5bXHxqAdlGJbdm0gkGDvQZKV5u7AbGS3gk4S6cfyHm52Kzur1iukP2u+v+3zVgCJySWvYb6nUGmbA5Lro82l0THeZ0qEwERqfM393c+CBJ/Lez8Fo+vaMwCwl0330AVX9dI7qFWrI6XdIm6qcfH+9bug6Z4ZzPnWD23ftMutkCtPsx5PHFbVxdB5EQzMNq+Lk/fm4VNhr6NLHH0/Z10rQV8pOTU2Zq0vH19kaa1Mtk/noBXQh3/9lL2RWtSD1KOhrNG1FdzTV3NxZWVnRGNhZsPXm3bkiCqvUu6IuvCDK/POpa/toTC8HGoYrZA9dHu4MilzvVcXdB17OdqOx/NramkSN4+TkV/E6551Uw4O69AzAi5xpV5pRoR6E13I0MplvFBounMwEhKvlijyGdud0jyXpQBEFWeG+vnEvZMQ5CUDZ7B1dVMS9sqg+YQDwOrp7Onnz7VzIhmYZqJfgJABBa0GedouhHA1n7lsODqXDkevdf/r9pyUnuatdDAyM+rlohbUqf+7Wuf52htJqLYzLZlFssL7FxUVqwNsiGk+pwpK0U3ox7/+QQUvCrIRLUMrt5mZZd5J83IgSvmh/Rco7cKZroTUh+OgSh4YVD4YDk25cMObESn43Hi3XmZ5DowBwTmiWwll2TtOabpnSpL8rBRmHbnyRYOAaCD66BAUfaZEYPb/WNzhkcf9Q1/VU3VlM1qpUNawqAbH7UFQ23bS60OsQfHShoBjd0JVt41aza577iVKIP4nQoiDWIpzFZmXOCwUKMhYQZHQbBB9djtYVNJiWbKW9QVMfzfWZdTHeEPW19RZqsAA8hRYZUcSfnjfv1gnqQVxm5iT9rGR6PknbDzo/F7UM3Q0nrw1QURAn1nAtOhznTOrfLT7bbjKpwbiZThrnXc2KZhokKdHr9/fxH374i94bS0RMQSoN9IUOKR7SbglZXoOhRBvKZDIKrdSksb4hCBPOMINmCErSgTId99UWFhbeK9vQrmRUYiF6ThsC0QpInfNEpWHlN1fvbjFoK8hjaEPO8m3KLlRFeVlpBgHpmPP9cLjZUDzZNKN0TOsUqBqSU5af4hXDzQ+8Mwygkv1U3Zieb21FRUpOEuqGvbZhejq2RUvF0Si0J8xKtLlsduG4mpVT9k5lWy+mDWXV72dKSVFEKnunMS0ic9a5uLhIAUNTYLKi1Y+qWdEKyGhmfnl+Klp78msFIxRNaVP/D2xaYWjBZCo5AAAAAElFTkSuQmCC");
    mask-size: contain;
    mask-position: center top;
    mask-repeat: no-repeat;
    object-fit: cover;
    transition: 0.4s;
}

@media (max-width: 1199px) {
    .vs-course--content::after {
        width: 91%;
    }
}

@media (max-width: 480px) {
    .vs-course--content::after {
        width: 100%;
        margin: 0px auto;
        left: 0px;
    }
}

.vs-course--content .vs-course__image {
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .vs-course--content .vs-course__image {
        padding-bottom: 15px;
    }
}

.vs-course--content img.icon-img1 {
    width: 46px;
    height: 45px;
    object-fit: contain;
    transition: 0.4s;
}

@media (max-width: 1199px) {
    .vs-course--content img.icon-img1 {
        width: 40px;
        height: 39px;
    }
}

.vs-course--content img.icon-img2 {
    width: 46px;
    height: 45px;
    object-fit: contain;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    transition: 0.4s;
}

@media (max-width: 1199px) {
    .vs-course--content img.icon-img2 {
        width: 40px;
        height: 39px;
    }
}

.vs-course--content .vs-course__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .vs-course--content .vs-course__title {
        font-size: 16px;
    }
}

.vs-course--content:hover::after {
    background-color: var(--vs-white-color);
}

.vs-course--content:hover {
    background-color: var(--vs-theme-color2);
}

.vs-course--content:hover img.icon-img1 {
    opacity: 0;
    visibility: hidden;
}

.vs-course--content:hover img.icon-img2 {
    opacity: 1;
    visibility: visible;
}

.vs-course--content:hover .vs-course__title {
    color: var(--vs-white-color);
}

.vs-course--content:hover .vs-course__border {
    border-color: var(--vs-theme-color2);
}

.vs-masonry--area {
}

@media (max-width: 991px) {
    .vs-masonry--area {
        padding-bottom: 80px;
    }
}

.vs-masonry--area .filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

@media (max-width: 480px) {
    .vs-masonry--area .filter-buttons {
        display: block;
        width: 200px;
        margin: 0px auto 50px;
    }
}

.vs-masonry--area .filter-buttons button.active {
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
}

.vs-masonry--area .filter-buttons button {
    width: 145px;
    height: 50px;
    border-radius: 50px;
    border: 0px;
    background-color: var(--vs-white-color);
    color: var(--vs-title-color);
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: rgb(217, 217, 217) 0px 0px 5px;
    margin: 0px 5px;
    transition: 0.4s;
}

@media (max-width: 480px) {
    .vs-masonry--area .filter-buttons button {
        width: 90%;
        margin: 0px auto 15px;
    }
}

.vs-masonry--area .masonry {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 30px;
}

@media (max-width: 991px) {
    .vs-masonry--area .masonry {
        grid-template-columns: 1fr 1fr;
    }
}

.vs-masonry--area .masonry {
}

@media (max-width: 767px) {
    .vs-masonry--area .masonry {
        gap: 0px 15px;
    }
}

@media (max-width: 480px) {
    .vs-masonry--area .masonry {
        grid-template-columns: 1fr;
    }
}

.vs-masonry--content {
    background-color: var(--vs-white-color);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 15px;
    box-shadow: rgb(217, 217, 217) 0px 0px 5px;
    transition: 0.4s;
}

@media (max-width: 991px) {
    .vs-masonry--content {
        margin-bottom: 0px;
    }
}

.vs-masonry--content {
}

@media (max-width: 767px) {
    .vs-masonry--content {
        padding: 10px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .vs-masonry--content {
        padding: 15px;
        max-width: 100%;
        margin-bottom: 10px;
    }
}

.vs-masonry--content .vs-masonry__figure {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.vs-masonry--content .vs-masonry__figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.vs-masonry--content .vs-masonry__price {
    width: 65px;
    height: 55px;
    background-color: var(--vs-theme-color2);
    position: absolute;
    bottom: 0px;
    right: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--vs-white-color);
    padding: 10px;
    font-family: var(--vs-title-font);
    font-weight: 700;
    border-top: 4px solid var(--vs-white-color);
}

@media (max-width: 767px) {
    .vs-masonry--content .vs-masonry__price {
        width: 50px;
        height: 40px;
        font-size: 20px;
    }
}

.vs-masonry--content .vs-masonry__rating {
    margin: 30px 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .vs-masonry--content .vs-masonry__rating {
        margin: 20px 10px;
    }
}

.vs-masonry--content .vs-masonry__rating a.category {
    display: block;
    width: 135px;
    height: 35px;
    border-radius: 20px;
    background-color: rgba(var(--vs-theme-color2-rgb), 0.3);
    color: var(--vs-title-color);
    text-align: center;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .vs-masonry--content .vs-masonry__rating a.category {
        width: 110px;
    }
}

.vs-masonry--content .vs-masonry__rating ul {
    padding: 0px;
    margin-bottom: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--vs-theme-color2);
}

@media (max-width: 575px) {
    .vs-masonry--content .vs-masonry__rating ul {
        font-size: 10px;
    }
}

.vs-masonry--content .vs-masonry__rating ul {
}

@media (max-width: 767px) {
    .vs-masonry--content .vs-masonry__rating ul {
        font-size: 12px;
    }
}

.vs-masonry--content .vs-masonry__heading {
    font-size: clamp(1.3rem, 0.818rem + 0.91vw, 1.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0px 10px 20px;
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .vs-masonry--content .vs-masonry__heading {
        font-size: 18px;
        margin: 0px 10px 10px;
    }
}

.vs-masonry--content .vs-masonry__heading a {
    display: inline-block;
    color: var(--vs-title-color);
    transition: 0.4s;
}

.vs-masonry--content .vs-masonry__features {
    padding: 0px;
    margin: 0px 10px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--vs-body-color);
}

.vs-masonry--content .vs-masonry__features li {
    font-weight: 600;
    display: inline-block;
}

.vs-masonry--content .vs-masonry__features li i {
    margin-right: 9px;
}

.vs-masonry--content .vs-masonry__divider {
    margin: 20px 10px;
    border-top: 1px solid rgb(217, 217, 217);
    opacity: 1;
}

@media (max-width: 767px) {
    .vs-masonry--content .vs-masonry__divider {
        margin: 10px 5px;
    }
}

.vs-masonry--content .vs-masonry__teacher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--vs-title-font);
    margin: 0px 10px;
}

.vs-masonry--content .vs-masonry__teacher a {
    text-transform: capitalize;
    font-weight: 600;
    color: var(--vs-title-color);
    transition: 0.4s;
}

.vs-masonry--content .vs-masonry__teacher a img {
    margin-right: 10px;
    border-radius: 50%;
}

.vs-masonry--content .vs-masonry__teacher a:hover {
    color: var(--vs-theme-color2);
}

.vs-masonry--content .vs-masonry__teacher a.join-class {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--vs-title-color);
    transition: 0.4s;
}

@media (max-width: 1199px) {
    .vs-masonry--content .vs-masonry__teacher a.join-class span {
        display: none;
    }
}

@media (max-width: 480px) {
    .vs-masonry--content .vs-masonry__teacher a.join-class {
        font-size: 15px;
    }

    .vs-masonry--content .vs-masonry__teacher a.join-class span {
        display: inline-block;
    }
}

.vs-masonry--content .vs-masonry__teacher a.join-class i {
    font-size: 22px;
    padding-left: 5px;
    position: relative;
    top: 2px;
    color: var(--vs-theme-color2);
}

.vs-masonry--content .vs-masonry__teacher a.join-class:hover {
    color: var(--vs-theme-color2);
}

.vs-masonry--content:hover .vs-masonry__heading a {
    color: var(--vs-theme-color2);
}

.vs--subcribe {
    padding: 175px 0px;
}

.vs--subcribe__bg-image, .vs--subcribe__bg-image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    inset: 0px;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyMSIgaGVpZ2h0PSI1MDMiIHZpZXdCb3g9IjAgMCAxOTIxIDUwMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEwxMDM5LjM4IDU1LjQxMTRDMTE5Ny45OSA2My44NjY4IDEzNTcuMDEgNTkuNzEzNSAxNTE0Ljk2IDQyLjk5MDZMMTkyMSAwVjUwM0w3NTUuNzc2IDQ1NS44MzRDNjEyLjI5OCA0NTAuMDI2IDQ2OC41ODggNDU0LjUyNyAzMjUuNzU1IDQ2OS4zMDNMMCA1MDNWMFoiIGZpbGw9IiM3MDE2N0UiLz4KPC9zdmc+Cg==");
    mask-position: center center;
    mask-size: contain;
    mask-repeat: no-repeat;
}

@media (max-width: 1850px) {
    .vs--subcribe__bg-image, .vs--subcribe__bg-image-overlay {
        mask-size: cover;
    }
}

.vs--subcribe__bg-image img {
    position: relative;
    height: 100%;
    object-fit: cover;
    width: 100%;
    z-index: -2;
}

.vs--subcribe__bg-image-overlay {
    z-index: 1;
    opacity: 0.95;
}

.vs--subcribe .vs__search {
    position: relative;
    margin-top: 30px;
}

.vs--subcribe .vs__search form input {
    text-transform: capitalize;
    height: 70px;
    width: 100%;
    background-color: var(--vs-white-color);
    padding-left: 40px;
    color: var(--vs-title-color);
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

@media (max-width: 420px) {
    .vs--subcribe .vs__search form input {
        padding-left: 15px;
    }
}

.vs--subcribe .vs__search form input:focus {
    outline: none;
}

.vs--subcribe .vs__search form .vs-btn {
    position: absolute;
    top: 6%;
    font-weight: 600;
    right: 7px;
    width: 185px;
    height: 56px;
}

@media (max-width: 420px) {
    .vs--subcribe .vs__search form .vs-btn {
        width: 120px;
        font-size: 15px;
    }
}

.vs--subcribe .vs__search p {
    font-size: 18px;
    color: var(--vs-white-color);
    text-align-last: end;
    margin-top: 10px;
    text-transform: capitalize;
}

.header-layout7 .will-sticky .sticky-active {
    background-color: var(--vs-title-color);
}

.header-layout7 .main-menu a {
    font-weight: 700;
}

.header-layout7 .main-menu > ul > li > a {
    color: var(--vs-white-color);
}

.header-layout7 .main-menu > ul > li > a:hover, .header-layout7 .main-menu > ul > li > a.active {
    color: var(--vs-theme-color2);
}

.header-layout7 .main-menu > ul > li.menu-item-has-children.active > a {
    color: var(--vs-theme-color2);
}

.header-layout7 .main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a {
    color: var(--vs-white-color);
}

.header-layout7 .main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a:hover {
    color: var(--vs-theme-color2);
}

.header-layout7 .searchBoxTggler {
    background-color: var(--vs-theme-color4);
}

.header-layout7 .sideMenuToggler {
    color: var(--vs-white-color);
}

.vs-hero--style7 {
    background-color: black;
}

.vs-hero--style7 .vs-hero__shape-banner {
    position: absolute;
    left: 0px;
    bottom: -4px;
    width: 100%;
    z-index: 2;
}

.vs-hero--style7 .vs-hero__bg {
    animation: 1s ease-in-out 0s 1 reverse none running shutters;
}

@keyframes shutters {
    0% {
        clip-path: polygon(0% 0%, 20% 0%, 20% 100%, 20% 100%, 20% 0%, 40% 0%, 40% 100%, 40% 100%, 40% 0%, 60% 0%, 60% 100%, 60% 100%, 60% 0%, 80% 0%, 80% 100%, 80% 100%, 80% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(20% 0%, 20% 0%, 20% 100%, 40% 100%, 40% 0%, 40% 0%, 40% 100%, 60% 100%, 60% 0%, 60% 0%, 60% 100%, 80% 100%, 80% 0%, 80% 0%, 80% 100%, 100% 100%, 100% 0%, 100% 0%, 100% 100%, 20% 100%);
    }
}

.vs-hero--style7 .vs-hero__content {
    padding: 150px 0px 180px;
}

@media (max-width: 1199px) {
    .vs-hero--style7 .vs-hero__content {
        padding: 200px 0px;
    }
}

.vs-hero--style7 .vs-hero__content {
}

@media (max-width: 991px) {
    .vs-hero--style7 .vs-hero__content {
        padding: 180px 0px 120px;
    }
}

.vs-hero--style7 .vs-hero__content {
}

@media (max-width: 767px) {
    .vs-hero--style7 .vs-hero__content {
        text-align: center;
    }
}

.vs-hero--style7 .vs-hero__title--main {
    font-size: 5rem;
    margin: 0px 0px 15px;
    line-height: 1.15;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--vs-white-color);
}

@media (max-width: 1300px) {
    .vs-hero--style7 .vs-hero__title--main {
        font-size: 80px;
    }
}

.vs-hero--style7 .vs-hero__title--main {
}

@media (max-width: 1199px) {
    .vs-hero--style7 .vs-hero__title--main {
        font-size: 70px;
    }
}

.vs-hero--style7 .vs-hero__title--main {
}

@media (max-width: 767px) {
    .vs-hero--style7 .vs-hero__title--main {
        font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style7 .vs-hero__title--main span {
    display: block;
    color: var(--vs-white-color);
    font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
}

@media (max-width: 767px) {
    .vs-hero--style7 .vs-hero__title--main span {
        font-size: clamp(2.2rem, 1.2rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style7 .vs-hero__title--sub {
    font-size: 40px;
    font-family: var(--vs-special-font);
    margin: 0px 0px 15px;
    color: var(--vs-white-color);
}

@media (max-width: 767px) {
    .vs-hero--style7 .vs-hero__title--sub {
        font-size: 30px;
    }
}

.vs-hero--style7 .vs-hero__desc {
    font-size: 20px;
    margin: 0px 0px 40px;
    color: var(--vs-white-color);
}

.vs-hero--style7 .vs-hero__ele1 {
    top: auto;
    bottom: 10%;
    left: 130px;
}

@media (max-width: 1500px) {
    .vs-hero--style7 .vs-hero__ele1 {
        bottom: 10%;
        left: 130px;
    }
}

.vs-hero--style7 .vs-hero__ele1 {
}

@media (max-width: 1199px) {
    .vs-hero--style7 .vs-hero__ele1 {
        display: none;
    }
}

.vs-hero--style7 .vs-hero__ele2 {
    top: auto;
    bottom: 10%;
    right: 130px;
}

@media (max-width: 1500px) {
    .vs-hero--style7 .vs-hero__ele2 {
        bottom: 10%;
        right: 20px;
    }
}

.vs-hero--style7 .vs-hero__ele2 {
}

@media (max-width: 1199px) {
    .vs-hero--style7 .vs-hero__ele2 {
        display: none;
    }
}

.vs-hero--style7 .vs-hero__direction {
    margin-left: auto;
    right: 17%;
}

@media (max-width: 1850px) {
    .vs-hero--style7 .vs-hero__direction {
        right: 13%;
    }
}

@media (max-width: 1600px) {
    .vs-hero--style7 .vs-hero__direction {
        right: 120px;
    }
}

@media (max-width: 1500px) {
    .vs-hero--style7 .vs-hero__direction {
        right: 100px;
    }
}

.vs-hero--style7 .vs-hero__direction {
}

@media (max-width: 1199px) {
    .vs-hero--style7 .vs-hero__direction {
        right: 80px;
    }
}

@media (max-width: 1024px) {
    .vs-hero--style7 .vs-hero__direction {
        right: 30px;
    }
}

.vs-hero--style7 .vs-hero__direction {
}

@media (max-width: 991px) {
    .vs-hero--style7 .vs-hero__direction {
        right: 100px;
    }
}

@media (max-width: 768px) {
    .vs-hero--style7 .vs-hero__direction {
        right: 30px;
    }
}

.vs-hero--style7 .vs-hero__direction .vs-swiper-button-next, .vs-hero--style7 .vs-hero__direction .vs-swiper-button-prev {
    color: var(--vs-white-color);
}

.vs-hero--style7 .vs-hero__direction .vs-swiper-button-next:hover, .vs-hero--style7 .vs-hero__direction .vs-swiper-button-prev:hover {
    color: var(--vs-theme-color2);
    background-color: var(--vs-white-color);
}

.vs-countdown {
    position: relative;
    top: -75px;
    z-index: 10;
}

@media (max-width: 1199px) {
    .vs-countdown {
        top: -65px;
    }
}

.vs-countdown {
}

@media (max-width: 991px) {
    .vs-countdown {
        top: 0px;
        margin: 80px 0px;
    }
}

.vs-countdown__overlay {
    padding: 37px 37px 30px;
    border-radius: 20px;
    position: relative;
    margin: 0px 10px;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 1199px) {
    .vs-countdown__overlay {
        padding: 27px 20px 20px;
        margin: 0px;
    }
}

.vs-countdown__overlay {
}

@media (max-width: 575px) {
    .vs-countdown__overlay {
        padding: 37px 20px 0px;
    }
}

.vs-countdown__overlay::after {
    content: url("../img/home-7/time-bg-h7.png");
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.vs-countdown__title {
}

@media (max-width: 991px) {
    .vs-countdown__title {
        text-align: center;
        margin-bottom: 30px;
    }
}

.vs-countdown__title h5 {
    font-size: 40px;
    line-height: 1;
    margin: 0px 0px 7px;
}

@media (max-width: 1199px) {
    .vs-countdown__title h5 {
        font-size: 35px;
    }
}

.vs-countdown__title h6 {
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1;
}

.vs-countdown--content {
    display: flex;
    justify-content: end;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .vs-countdown--content {
        margin-left: -100px;
    }
}

.vs-countdown--content {
}

@media (max-width: 991px) {
    .vs-countdown--content {
        justify-content: center;
        margin-left: -10px;
    }
}

.vs-countdown--content .flipper {
    color: var(--vs-title-color);
    font-weight: 700;
    line-height: 100%;
    font-family: var(--vs-title-font);
    font-size: 34px !important;
}

.vs-countdown--content .flipper-group {
    position: relative;
    display: inline-block;
    margin-left: 13px;
}

@media (max-width: 1199px) {
    .vs-countdown--content .flipper-group {
        margin-left: 8px;
    }
}

.vs-countdown--content .flipper-group {
}

@media (max-width: 575px) {
    .vs-countdown--content .flipper-group {
        margin: 0px 10px 40px 0px;
    }
}

.vs-countdown--content .flipper-group::after {
    top: -3px !important;
}

.vs-countdown--content .flipper-group:nth-child(2n)::after, .vs-countdown--content .flipper-group:nth-child(2n)::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--vs-white-color);
    left: 5px;
    top: -20px;
}

@media (max-width: 575px) {
    .vs-countdown--content .flipper-group:nth-child(2n)::after, .vs-countdown--content .flipper-group:nth-child(2n)::before {
        background-color: transparent;
    }
}

.vs-countdown--content label {
    font-size: 20px;
    font-weight: 600;
    color: var(--vs-white-color);
    font-family: var(--vs-title-font);
    text-transform: uppercase;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -30px;
    text-align: center;
}

.vs-countdown--content .flipper-digit {
    position: relative;
    display: inline-block;
    overflow-y: hidden;
    margin-left: 7px;
    width: 54px;
    height: 76px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .vs-countdown--content .flipper-digit {
        margin-left: 5px;
        width: 40px;
        height: 60px;
    }
}

.vs-countdown--content .flipper-delimiter {
    display: inline-block;
    color: transparent;
}

.vs-countdown--content .digit-next {
    height: 1.4em;
    background: var(--vs-white-color);
    padding-top: 0.62em;
}

@media (max-width: 767px) {
    .vs-countdown--content .digit-next {
        padding-top: 0.42em;
    }
}

.vs-countdown--content .digit-bottom {
    position: absolute;
    overflow: hidden;
    background: var(--vs-white-color);
    height: 50%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9;
    line-height: 0em;
    padding-top: 0px;
    text-align: center;
}

.vs-countdown--content .digit-top2 {
    visibility: hidden;
    position: absolute;
    height: 50%;
    left: 1px;
    right: 0px;
    background: rgb(204, 204, 204);
    padding-top: 0px;
    overflow: hidden;
    transition: transform linear;
    transform: rotateX(-90deg);
    z-index: 20;
    line-height: 0em !important;
    top: 50% !important;
    bottom: auto !important;
    transform-origin: 0px 0px 0px !important;
}

@media (max-width: 575px) {
    .vs-countdown--content .digit-top2 {
        left: -1px;
    }
}

.vs-countdown--content .digit-top {
    top: 0px;
    left: 0px;
    right: 0px;
    height: 50%;
    overflow: hidden;
    position: absolute;
    background: var(--vs-white-color);
    padding-top: 0.62em;
    padding-bottom: 0px;
    transition: transform linear;
    z-index: 20;
    transform-origin: 0px 0.6em 0px !important;
}

@media (max-width: 767px) {
    .vs-countdown--content .digit-top {
        padding-top: 0.42em;
    }
}

.vs-countdown--content .digit-top.r {
    transition: 0.2s linear;
    transform: rotateX(90deg);
    background: rgb(204, 204, 204);
}

.vs-countdown--content .digit-top2.r {
    visibility: visible;
    transition: 0.2s linear 0.2s;
    transform: rotateX(0deg);
    background: var(--vs-white-color);
}

.vs-countdown--content .digit-bottom.r {
    transition: 0.2s linear;
    background: rgb(204, 204, 204);
}

.vs-countdown--content .digit-face {
    display: block;
    text-align: center;
}

.vs-countdown__ele1 {
    position: absolute;
    right: 5%;
    bottom: -80px;
}

@media (max-width: 1650px) {
    .vs-countdown__ele1 {
        right: 4%;
        bottom: -120px;
    }
}

@media (max-width: 1500px) {
    .vs-countdown__ele1 {
        display: none;
    }
}

.vs-featureh7__img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

@media (max-width: 1300px) {
    .vs-featureh7__img {
        padding: 0px 5px;
    }
}

.vs-featureh7__img img.shape-bottom {
    width: 100%;
    height: 350px;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjk4IiBoZWlnaHQ9IjM1MCIgdmlld0JveD0iMCAwIDI5OCAzNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0yOTcuMDcyIDE1LjkyMDJDMjk3LjYwMiA3LjI5MDI5IDI5MC43NDYgMCAyODIuMSAwSDE1LjAwMDVDNi4zNTQzMSAwIC0wLjUwMTY0OCA3LjI5MDI3IDAuMDI4NzE3IDE1LjkyMDJMMTkuNjk1NyAzMzUuOTJDMjAuMTgyIDM0My44MzIgMjYuNzQwNSAzNTAgMzQuNjY3NSAzNTBIMjYyLjQzM0MyNzAuMzYgMzUwIDI3Ni45MTkgMzQzLjgzMiAyNzcuNDA1IDMzNS45MkwyOTcuMDcyIDE1LjkyMDJaIiBmaWxsPSIjMjUyODNFIi8+Cjwvc3ZnPgo=");
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    object-fit: cover;
    transform: scale(1.03);
    transform-origin: center center;
    transition: 0.3s linear;
}

@media (max-width: 1199px) {
    .vs-featureh7__img img.shape-bottom {
        height: 280px;
    }
}

.vs-featureh7__img img.shape-bottom {
}

@media (max-width: 991px) {
    .vs-featureh7__img img.shape-bottom {
        height: 210px;
    }
}

.vs-featureh7__img img.shape-bottom {
}

@media (max-width: 767px) {
    .vs-featureh7__img img.shape-bottom {
        height: 317px;
    }
}

.vs-featureh7__img img.shape-top {
    width: 100%;
    height: 350px;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjk4IiBoZWlnaHQ9IjM1MCIgdmlld0JveD0iMCAwIDI5OCAzNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0yOTcuMDcyIDMzNC4wOEMyOTcuNjAyIDM0Mi43MSAyOTAuNzQ2IDM1MCAyODIuMSAzNTBIMTUuMDAwNUM2LjM1NDMxIDM1MCAtMC41MDE2NDggMzQyLjcxIDAuMDI4NzE3IDMzNC4wOEwxOS42OTU3IDE0LjA3OTlDMjAuMTgyIDYuMTY3ODggMjYuNzQwNSAzLjA1MTc2ZS0wNSAzNC42Njc1IDMuMDUxNzZlLTA1SDI2Mi40MzNDMjcwLjM2IDMuMDUxNzZlLTA1IDI3Ni45MTkgNi4xNjc4NSAyNzcuNDA1IDE0LjA3OTlMMjk3LjA3MiAzMzQuMDhaIiBmaWxsPSIjMjUyODNFIi8+Cjwvc3ZnPgo=");
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    object-fit: cover;
    transform: scale(1.03);
    transform-origin: center center;
    transition: 0.3s linear;
}

@media (max-width: 1199px) {
    .vs-featureh7__img img.shape-top {
        height: 280px;
    }
}

.vs-featureh7__img img.shape-top {
}

@media (max-width: 991px) {
    .vs-featureh7__img img.shape-top {
        height: 210px;
    }
}

.vs-featureh7__img img.shape-top {
}

@media (max-width: 767px) {
    .vs-featureh7__img img.shape-top {
        height: 317px;
    }
}

.vs-featureh7__img:hover img.shape-top, .vs-featureh7__img:hover img.shape-bottom {
    opacity: 0.8;
    transform: scale(1.01);
    transform-origin: center center;
}

.vs-featureh7 .bg-color7 {
    background-color: rgb(255, 28, 58);
}

.vs-featureh7__title {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -1px;
    font-size: clamp(1.3rem, 0.818rem + 0.91vw, 1.5rem);
    font-weight: 700;
    font-family: var(--vs-title-font);
    text-align: center;
    width: 200px;
    height: 60px;
    line-height: 63px;
    text-transform: uppercase;
    margin: 0px auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

@media (max-width: 1300px) {
    .vs-featureh7__title {
        bottom: 7px;
    }
}

.vs-featureh7__title {
}

@media (max-width: 1199px) {
    .vs-featureh7__title {
        width: 170px;
        font-size: 20px;
        height: 55px;
        line-height: 58px;
        bottom: 0px;
    }
}

.vs-featureh7__title {
}

@media (max-width: 991px) {
    .vs-featureh7__title {
        width: 130px;
        font-size: 16px;
        height: 45px;
        line-height: 45px;
    }
}

.vs-featureh7__title a {
    color: var(--vs-white-color);
}

.vs-about3 .vs-texth7 {
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .vs-about3 .vs-texth7 {
        letter-spacing: 0.3px;
        margin-bottom: 0px;
    }
}

.vs-about3 .vs-title {
}

@media (max-width: 1199px) {
    .vs-about3 .vs-title {
        margin-bottom: 10px;
    }
}

.vs-about3 .vs-list.style3 {
    margin: 0px;
}

@media (max-width: 1199px) {
    .vs-about3 .vs-list.style3 {
        margin-bottom: 25px;
    }
}

.vs-about3--image-h7 img {
    border-radius: 10px;
}

.vs-about3--image-h7 {
}

@media (max-width: 991px) {
    .vs-about3--image-h7 img {
        width: 100%;
        object-fit: cover;
    }

    .vs-about3--image-h7 .ab-right-img {
        height: 280px;
    }
}

.vs-about3--content-h7 {
    padding: 30px 25px 35px;
    border-radius: 10px;
    margin-bottom: 23px;
}

@media (max-width: 1300px) {
    .vs-about3--content-h7 {
        padding: 23px 20px;
    }
}

.vs-about3--content-h7 {
}

@media (max-width: 1199px) {
    .vs-about3--content-h7 {
        padding: 18px 20px;
    }
}

.vs-about3--content-h7 {
}

@media (max-width: 991px) {
    .vs-about3--content-h7 {
        text-align: center;
    }
}

.vs-about3--content-h7 {
}

@media (max-width: 767px) {
    .vs-about3--content-h7 {
        margin-top: 23px;
    }
}

.vs-about3--content-h7 .vs-about3__ab-text {
    display: flex;
    align-items: center;
}

.vs-about3--content-h7 .vs-about3__yoe-number {
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    color: var(--vs-white-color);
    font-family: var(--vs-title-font);
    display: block;
}

@media (max-width: 1199px) {
    .vs-about3--content-h7 .vs-about3__yoe-number {
        font-size: 35px;
        line-height: 36px;
    }
}

.vs-about3--content-h7 .vs-about3__yoe-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--vs-white-color);
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .vs-about3--content-h7 .vs-about3__yoe-text {
        font-size: 14px;
    }
}

.vs-about3--content-h7 .vs-about3__profile {
    list-style-type: none;
    display: flex;
    padding: 0px;
    margin: 20px 0px 0px;
}

@media (max-width: 991px) {
    .vs-about3--content-h7 .vs-about3__profile {
        justify-content: center;
    }
}

.vs-about3--content-h7 .vs-about3__profile img {
    width: auto;
    border-radius: 50%;
}

.vs-about3--content-h7 .ms-n2 {
    margin-left: -15px;
}

.vs-about3--content-h7 .ms-n3 {
    margin-left: -20px;
}

.vs-videoh7 {
    position: relative;
}

.vs-videoh7::before {
    content: url("../img/home-7/video-bg-overlay.png");
    position: absolute;
    width: auto;
    height: 100%;
    background-color: var(--vs-theme-color4);
    top: 0px;
    left: -40px;
    z-index: -1;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTg4IiBoZWlnaHQ9IjM5MCIgdmlld0JveD0iMCAwIDk4OCAzOTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik05ODggMTkxLjk2OUw4NDEuMTMgMEgwVjM5MEg4MDEuMTNMOTg4IDE5MS45NjlaIiBmaWxsPSIjNEY4MzBFIi8+Cjwvc3ZnPgo=");
    mask-size: cover;
    mask-position: left center;
    mask-repeat: no-repeat;
    object-fit: cover;
}

@media (max-width: 1500px) {
    .vs-videoh7::before {
        left: -9%;
    }
}

@media (max-width: 1400px) {
    .vs-videoh7::before {
        left: -15%;
    }
}

.vs-videoh7::before {
}

@media (max-width: 991px) {
    .vs-videoh7::before {
        left: -20%;
        mask-size: contain;
    }
}

.vs-videoh7::before {
}

@media (max-width: 767px) {
    .vs-videoh7::before {
        left: -80%;
    }
}

.vs-videoh7::before {
}

@media (max-width: 575px) {
    .vs-videoh7::before {
        left: -115%;
    }
}

.vs-videoh7 h2 {
    font-size: 48px;
}

@media (max-width: 991px) {
    .vs-videoh7 h2 {
        font-size: 32px;
    }
}

.vs-videoh7 {
}

@media (max-width: 575px) {
    .vs-videoh7 .textCenter {
        text-align: center;
    }
}

.vs-videoh7__content {
    justify-content: right;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .vs-videoh7__content {
        justify-content: center;
        margin-top: 30px;
    }
}

.vs-videoh7__content span {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--vs-special-font);
    letter-spacing: 0.48px;
    line-height: 1;
    display: inline-block;
    margin-left: 40px;
    color: var(--vs-white-color);
}

.vs-videoh7__button2.play-btn {
    padding: 0px;
    background-color: var(--vs-theme-color2);
    border-radius: 50%;
    transition: 0.4s;
}

.vs-videoh7__button2.play-btn > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 115px;
    font-size: 28px;
    transition: 0.4s;
}

@media (max-width: 767px) {
    .vs-videoh7__button2.play-btn > i {
        width: 90px;
        height: 90px;
    }
}

.vs-videoh7__button2.play-btn::after, .vs-videoh7__button2.play-btn::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: var(--vs-theme-color2);
    z-index: -1;
    border-radius: 50%;
    transition: 0.4s;
}

.vs-videoh7__button2.play-btn::after {
    animation-delay: 2s;
}

.vs-videoh7__button2.play-btn:hover {
    background-color: var(--vs-theme-color4);
}

.vs-videoh7__button2.play-btn:hover::after, .vs-videoh7__button2.play-btn:hover::before, .vs-videoh7__button2.play-btn:hover i {
    background-color: var(--vs-theme-color4);
}

.vs-event-schedule .vs-event__button {
}

@media (max-width: 991px) {
    .vs-event-schedule .vs-event__button {
        margin-bottom: 20px;
    }
}

.vs-event-schedule .vs-event__button .nav-tabs {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

@media (max-width: 991px) {
    .vs-event-schedule .vs-event__button .nav-tabs {
        justify-content: center;
        gap: 10px;
    }
}

.vs-event-schedule .vs-event__button .nav-link#tab_one {
    background-color: var(--vs-theme-color4);
}

.vs-event-schedule .vs-event__button .nav-link#tab_two {
    background-color: var(--vs-theme-color1);
}

.vs-event-schedule .vs-event__button .nav-link#tab_three {
    background-color: var(--vs-theme-color2);
}

.vs-event-schedule .vs-event__button .nav-link#tab_four {
    background-color: var(--vs-title-color);
}

.vs-event-schedule .vs-event__button .nav-link {
    position: relative;
    width: 100%;
    height: 70px;
    color: var(--vs-white-color);
    text-align: center;
    font-family: var(--vs-title-font);
    padding: 0px 0px 0px 35px;
    border-radius: 15px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    margin-bottom: 10px;
    transition: 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .vs-event-schedule .vs-event__button .nav-link {
        width: 165px;
        height: 80px;
    }
}

.vs-event-schedule .vs-event__button .nav-link {
}

@media (max-width: 767px) {
    .vs-event-schedule .vs-event__button .nav-link {
        width: 170px;
    }
}

.vs-event-schedule .vs-event__button .nav-link {
}

@media (max-width: 767px) {
    .vs-event-schedule .vs-event__button .nav-link {
        width: 47%;
        padding-left: 25px;
    }

    .vs-event-schedule .vs-event__button .nav-link span.days {
        font-size: 15px;
    }
}

.vs-event-schedule .vs-event__button .nav-link::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 15px;
    border: 2px dashed var(--vs-white-color);
    z-index: 1;
    opacity: 0.4;
}

.vs-event-schedule .vs-event__button .nav-link span.days {
    display: block;
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    line-height: 32px;
    text-align: left;
}

@media (max-width: 991px) {
    .vs-event-schedule .vs-event__button .nav-link span.days {
        font-size: 18px;
        line-height: 22px;
    }
}

.vs-event-schedule .vs-event__button .nav-link span.date {
    font-weight: 600;
    font-size: 20px;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 28px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .vs-event-schedule .vs-event__button .nav-link span.date {
        font-size: 14px;
        bottom: 16px;
    }
}

.vs-event-schedule .vs-event__button .nav-link.active {
    background-color: transparent;
    text-decoration: underline;
}

.vs-event-schedule .vs-event__button .nav-link.active span.days {
}

@media (max-width: 991px) {
    .vs-event-schedule .vs-event__button .nav-link.active span.days {
        margin-bottom: 20px;
    }
}

.vs-event-schedule .vs-event__button .nav-link.active span.date {
    opacity: 1;
    visibility: visible;
}

.vs-event-schedule .vs-event__schedule-content {
    display: flex;
    justify-content: space-between;
    background-color: var(--vs-white-color);
    box-shadow: rgb(217, 217, 217) 0px 0px 5px;
    border-radius: 15px;
    padding: 20px;
}

@media (max-width: 1300px) {
    .vs-event-schedule .vs-event__schedule-content {
        padding: 15px;
    }
}

.vs-event-schedule .vs-event__schedule-content {
}

@media (max-width: 767px) {
    .vs-event-schedule .vs-event__schedule-content {
        display: block;
    }
}

.vs-event-schedule .vs-event__txt-left {
    border-right: 2px solid rgba(var(--vs-title-color-rgb), 0.2);
    padding: 20px 0px 20px 20px;
}

@media (max-width: 1199px) {
    .vs-event-schedule .vs-event__txt-left {
        padding: 20px 0px 20px 10px;
    }
}

.vs-event-schedule .vs-event__txt-left {
}

@media (max-width: 767px) {
    .vs-event-schedule .vs-event__txt-left {
        border: 0px;
    }
}

.vs-event-schedule .vs-event__img-txt {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media (max-width: 374px) {
    .vs-event-schedule .vs-event__img-txt {
        display: block;
    }
}

.vs-event-schedule .vs-event__img-txt img {
    border-radius: 10px;
    width: 145px;
    height: 130px;
}

@media (max-width: 1199px) {
    .vs-event-schedule .vs-event__img-txt img {
        width: 130px;
        height: 115px;
    }
}

.vs-event-schedule .vs-event__txt {
    width: 245px;
    padding-left: 25px;
}

@media (max-width: 1199px) {
    .vs-event-schedule .vs-event__txt {
        padding-left: 15px;
    }
}

.vs-event-schedule .vs-event__txt {
}

@media (max-width: 767px) {
    .vs-event-schedule .vs-event__txt {
        width: 100%;
    }
}

@media (max-width: 374px) {
    .vs-event-schedule .vs-event__txt {
        padding-left: 0px;
        margin-top: 20px;
    }
}

.vs-event-schedule .vs-event__txt hr {
    margin: 18px 0px 15px;
    border-bottom: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
}

@media (max-width: 1199px) {
    .vs-event-schedule .vs-event__txt hr {
        margin: 10px 0px;
    }
}

.vs-event-schedule .vs-event__txt h4 {
    font-family: var(--vs-title-font);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin: 0px 0px 8px;
}

@media (max-width: 1199px) {
    .vs-event-schedule .vs-event__txt h4 {
        font-size: 24px;
    }
}

.vs-event-schedule .vs-event__txt p {
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    margin: 0px;
}

.vs-event-schedule .vs-event__date {
    font-weight: 900;
    font-family: var(--vs-title-font);
    line-height: 1;
    display: flex;
    align-items: center;
}

.vs-event-schedule .vs-event__date span.number {
    font-size: 40px;
    color: var(--vs-theme-color4);
    margin-right: 15px;
}

.vs-event-schedule .vs-event__date span.month {
    text-transform: uppercase;
    font-size: 18px;
    color: var(--vs-title-color);
    width: 90px;
    display: inline-block;
}

.vs-event-schedule .vs-event__desc {
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    color: var(--vs-title-color);
    margin: 25px 0px 0px;
}

.vs-event-schedule .vs-event__desc img {
    margin-right: 3px;
    position: relative;
    top: -2px;
}

.vs-event-schedule .vs-event__desc span {
    padding: 0px 5px;
}

.vs-event-schedule .vs-event__txt-right {
    padding: 20px 20px 0px 30px;
}

@media (max-width: 1300px) {
    .vs-event-schedule .vs-event__txt-right {
        padding: 20px 0px 0px 30px;
        width: 420px;
    }
}

.vs-event-schedule .vs-event__txt-right {
}

@media (max-width: 1199px) {
    .vs-event-schedule .vs-event__txt-right {
        width: 380px;
    }
}

.vs-event-schedule .vs-event__txt-right {
}

@media (max-width: 767px) {
    .vs-event-schedule .vs-event__txt-right {
        width: 450px;
        padding: 20px 20px 15px 10px;
    }
}

.vs-event-schedule .vs-event__txt-right {
}

@media (max-width: 575px) {
    .vs-event-schedule .vs-event__txt-right {
        width: 100%;
    }
}

.vs-event-schedule .vs-event__txt-right h3 {
    font-family: var(--vs-title-font);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
    margin: 0px 0px 8px;
    color: var(--vs-theme-color1);
}

@media (max-width: 1199px) {
    .vs-event-schedule .vs-event__txt-right h3 {
        font-size: 24px;
    }
}

.vs-event-schedule .vs-event__txt-right h3 {
}

@media (max-width: 767px) {
    .vs-event-schedule .vs-event__txt-right h3 {
        font-size: 32px;
    }
}

.vs-event-schedule .vs-event__txt-right p {
    margin: 15px 0px 25px;
}

@media (max-width: 1199px) {
    .vs-event-schedule .vs-event__txt-right p {
        font-size: 15px;
        line-height: 1.5;
        margin: 10px 0px 20px;
    }
}

.vs-event-schedule .vs-event__txt-right .vs-btn {
    background-color: var(--vs-theme-color4);
}

.vs-pricing--content-h7 {
    background-color: var(--vs-white-color);
    padding: 45px 30px 40px;
    position: relative;
    border-radius: 20px;
    margin: 10px 0px 30px;
}

.vs-pricing--content-h7 .vs-pricing__title {
    margin-bottom: 25px;
}

.vs-pricing--content-h7 .vs-pricing__title h4 {
    font-family: var(--vs-title-font);
    font-size: 24px;
    text-transform: capitalize;
    line-height: 1;
}

.vs-pricing--content-h7 .vs-pricing__title p {
    margin: 0px;
    text-transform: capitalize;
    font-weight: 500;
}

.vs-pricing--content-h7 .vs-pricing__title p span {
    font-family: var(--vs-title-font);
    font-size: 50px;
    line-height: 48px;
    font-weight: 900;
    color: var(--vs-title-color);
}

.vs-pricing--content-h7 .vs-pricing__button a {
    font-family: var(--vs-title-font);
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
    color: var(--vs-white-color);
    background-color: var(--vs-theme-color4);
    display: block;
    text-align: center;
    padding: 27px 0px 23px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    transition: 0.9s;
}

.vs-pricing--content-h7 .vs-pricing__icon svg {
    fill: var(--vs-theme-color4);
    margin-bottom: 30px;
}

.vs-pricing--content-h7 .vs-pricing__list {
    list-style: none;
    padding: 0px;
    margin: 30px 0px 0px;
    font-size: 18px;
    color: var(--vs-title-color);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.2px;
}

@media (max-width: 1199px) {
    .vs-pricing--content-h7 .vs-pricing__list {
        font-size: 16px;
    }
}

.vs-pricing--content-h7 .vs-pricing__list li {
    margin-bottom: 15px;
}

.vs-pricing--content-h7 .vs-pricing__list li img {
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.vs-pricing--content-h7::before, .vs-pricing--content-h7::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40px;
    top: -7px;
    left: 0px;
    z-index: -1;
    border-radius: 20px;
    background-color: var(--vs-theme-color4);
}

.vs-pricing--content-h7::after {
    background-color: var(--vs-theme-color2);
    width: 0%;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.vs-pricing--content-h7:hover::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.vs-pricing--content-h7:hover .vs-pricing__button a {
    background-color: var(--vs-theme-color2);
}

.vs-pricing--content-h7:hover .vs-pricing__icon svg {
    fill: var(--vs-theme-color2);
}

.vs-pricing__ele1 {
    position: absolute;
    top: 80px;
    right: 80px;
    z-index: -1;
}

@media (max-width: 1500px) {
    .vs-pricing__ele1 {
        display: none;
    }
}

.vs-pricing__ele2 {
    position: absolute;
    bottom: 100px;
    left: 80px;
    z-index: -1;
}

@media (max-width: 1650px) {
    .vs-pricing__ele2 {
        width: 60px;
        left: 50px;
    }
}

@media (max-width: 1500px) {
    .vs-pricing__ele2 {
        display: none;
    }
}

.vs-blog--inner-h7 {
    margin-bottom: 30px;
}

.vs-blog--inner-h7 .vs-blog__img {
    position: relative;
    overflow: hidden;
    transform: none;
    margin-bottom: 30px;
}

.vs-blog--inner-h7 .vs-blog__img img {
    width: 100%;
}

@media (max-width: 991px) {
    .vs-blog--inner-h7 .vs-blog__img img {
        height: 215px;
        object-fit: cover;
    }
}

.vs-blog--inner-h7 .vs-blog__date {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--vs-theme-color4);
    border-radius: 10px;
    font-family: var(--vs-title-font);
    width: 75px;
    height: 75px;
    text-align: center;
    transition: 0.4s;
}

@media (max-width: 991px) {
    .vs-blog--inner-h7 .vs-blog__date {
        top: 15px;
        left: 15px;
        width: 62px;
        height: 67px;
    }
}

.vs-blog--inner-h7 .vs-blog__date span.month {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--vs-white-color);
    display: block;
    padding: 7px 0px 5px;
    font-size: 18px;
    line-height: 15px;
}

@media (max-width: 991px) {
    .vs-blog--inner-h7 .vs-blog__date span.month {
        font-size: 15px;
    }
}

.vs-blog--inner-h7 .vs-blog__date span.number {
    font-size: 36px;
    padding: 9px;
    font-weight: 800;
    color: var(--vs-title-color);
    background-color: var(--vs-white-color);
    border-radius: 10px;
    display: block;
    line-height: 30px;
}

@media (max-width: 991px) {
    .vs-blog--inner-h7 .vs-blog__date span.number {
        font-size: 24px;
        padding: 5px;
    }
}

.vs-blog--inner-h7 .vs-blog__tag {
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.vs-blog--inner-h7 .vs-blog__tag .tag-link {
    color: var(--vs-body-color);
}

.vs-blog--inner-h7 .vs-blog__tag .tag-link i {
    color: var(--vs-theme-color4);
    padding-right: 5px;
    transition: 0.4s;
}

.vs-blog--inner-h7 .vs-blog__tag .tag-link span {
    padding: 0px 8px;
}

.vs-blog--inner-h7 .vs-blog__tag .tag-link2 {
    color: var(--vs-body-color);
}

.vs-blog--inner-h7 .vs-blog__tag .tag-link2 i {
    padding-right: 5px;
}

.vs-blog--inner-h7 .vs-blog__heading {
    font-size: 30px;
    margin: 15px 0px 25px;
}

@media (max-width: 991px) {
    .vs-blog--inner-h7 .vs-blog__heading {
        font-size: 24px;
    }
}

.vs-blog--inner-h7 .vs-btn {
    background-color: var(--vs-theme-color4);
    transition: 0.4s;
}

.vs-blog--inner-h7 .vs-btn::after, .vs-blog--inner-h7 .vs-btn::before {
    background-color: var(--vs-theme-color2);
}

.vs-blog--inner-h7:hover .vs-blog__date {
    background-color: var(--vs-theme-color2);
}

.vs-blog--inner-h7:hover .tag-link i {
    color: var(--vs-theme-color2);
}

.vs-blog--inner-h7:hover .vs-btn {
    background-color: var(--vs-theme-color2);
}

@media (max-width: 575px) {
    .dnone {
        display: none !important;
    }
}

.bg-color7 {
    background-color: rgb(255, 28, 58);
}

.vs-hero--style8 .vs-hero__shape-banner {
    position: absolute;
    left: 0px;
    bottom: -4px;
    width: 100%;
    z-index: 2;
}

.vs-hero--style8 .vs-hero__shape-banner img {
    width: 100%;
}

.vs-hero--style8 .vs-hero__anim1.manimated {
    animation-name: slideinleft;
    animation-fill-mode: both;
    opacity: 1;
    animation-duration: 1s;
}

.vs-hero--style8 .vs-hero__bg {
    animation: 2s ease-in-out 0s 1 normal none running slideindown;
}

.vs-hero--style8 .vs-hero__content {
    padding: 180px 0px 320px;
    margin-left: -25px;
    margin-right: -55px;
}

@media (max-width: 1500px) {
    .vs-hero--style8 .vs-hero__content {
        padding: 200px 0px 300px;
    }
}

.vs-hero--style8 .vs-hero__content {
}

@media (max-width: 1199px) {
    .vs-hero--style8 .vs-hero__content {
        padding: 180px 0px 200px;
    }
}

.vs-hero--style8 .vs-hero__content {
}

@media (max-width: 991px) {
    .vs-hero--style8 .vs-hero__content {
        padding: 120px 10px 170px;
    }
}

.vs-hero--style8 .vs-hero__content {
}

@media (max-width: 767px) {
    .vs-hero--style8 .vs-hero__content {
        text-align: center;
        margin: 0px;
    }
}

.vs-hero--style8 .vs-hero__title--main {
    font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
    margin: 0px 0px 15px;
    line-height: 1;
    text-transform: capitalize;
    color: var(--vs-white-color);
}

@media (max-width: 1500px) {
    .vs-hero--style8 .vs-hero__title--main {
        font-size: 75px;
    }
}

.vs-hero--style8 .vs-hero__title--main {
}

@media (max-width: 1199px) {
    .vs-hero--style8 .vs-hero__title--main {
        font-size: 65px;
    }
}

.vs-hero--style8 .vs-hero__title--main {
}

@media (max-width: 991px) {
    .vs-hero--style8 .vs-hero__title--main {
        font-size: 50px;
    }
}

.vs-hero--style8 .vs-hero__title--main {
}

@media (max-width: 767px) {
    .vs-hero--style8 .vs-hero__title--main {
        font-size: 65px;
    }
}

.vs-hero--style8 .vs-hero__title--main span {
    display: block;
    color: var(--vs-white-color);
    font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
}

@media (max-width: 1500px) {
    .vs-hero--style8 .vs-hero__title--main span {
        font-size: 45px;
    }
}

.vs-hero--style8 .vs-hero__title--main span {
}

@media (max-width: 1199px) {
    .vs-hero--style8 .vs-hero__title--main span {
        font-size: 32px;
    }
}

.vs-hero--style8 .vs-hero__title--main span {
}

@media (max-width: 767px) {
    .vs-hero--style8 .vs-hero__title--main span {
        font-size: 40px;
    }
}

.vs-hero--style8 .vs-hero__title--sub {
    font-size: 40px;
    font-family: var(--vs-special-font);
    margin: 0px 0px 15px;
    color: var(--vs-white-color);
}

@media (max-width: 991px) {
    .vs-hero--style8 .vs-hero__title--sub {
        font-size: 32px;
    }
}

.vs-hero--style8 .vs-hero__title--sub {
}

@media (max-width: 767px) {
    .vs-hero--style8 .vs-hero__title--sub {
        font-size: 36px;
    }
}

.vs-hero--style8 .vs-hero__desc {
    color: var(--vs-white-color);
    font-size: 20px;
    margin: 0px 0px 40px;
}

@media (max-width: 991px) {
    .vs-hero--style8 .vs-hero__desc {
        font-size: 16px;
    }
}

.vs-hero--style8 .vs-hero__img-shape {
    position: relative;
    top: 100px;
    left: -30px;
    animation: 2s ease-in-out 0s 1 normal none running slideinup;
}

.vs-hero--style8 .vs-hero__img-shape img.main-img {
    position: relative;
    object-fit: cover;
    z-index: 1;
}

.vs-hero--style8 .vs-hero__img-shape img.star-img {
    position: absolute;
    inset: 20px 0px 0px -45px;
}

.vs-hero--style8 .vs-hero__img-shape {
}

@media (max-width: 767px) {
    .vs-hero--style8 .vs-hero__img-shape {
        left: 0px;
    }
}

.vs-hero--style8 .vs-hero__ele1 {
    inset: auto 120px 20% auto;
}

@media (max-width: 1500px) {
    .vs-hero--style8 .vs-hero__ele1 {
        right: 70px;
        bottom: 15%;
        width: 200px;
    }
}

.vs-hero--style8 .vs-hero__ele1 {
}

@media (max-width: 1199px) {
    .vs-hero--style8 .vs-hero__ele1 {
        display: none;
    }
}

.vs-hero--style8 .vs-hero__ele2 {
    top: 100px;
    right: 3%;
}

@media (max-width: 1500px) {
    .vs-hero--style8 .vs-hero__ele2 {
        width: 100px;
    }
}

.vs-hero--style8 .vs-hero__ele2 {
}

@media (max-width: 1199px) {
    .vs-hero--style8 .vs-hero__ele2 {
        display: none;
    }
}

.vs-about-h8 .vs-about-h8__text {
    font-weight: 500;
    text-transform: capitalize;
    margin: 20px 0px 30px;
}

.vs-about-h8 .vs-about-h8__image {
    position: relative;
    display: flex;
    justify-content: right;
    align-items: center;
}

.vs-about-h8 .vs-about-h8__image img.img-bottom {
    width: 483px;
    height: 600px;
    object-fit: cover;
    margin-right: auto;
    border-radius: 20px;
}

@media (max-width: 1199px) {
    .vs-about-h8 .vs-about-h8__image img.img-bottom {
        width: 390px;
    }
}

.vs-about-h8 .vs-about-h8__image img.img-bottom {
}

@media (max-width: 991px) {
    .vs-about-h8 .vs-about-h8__image img.img-bottom {
        width: 483px;
    }
}

.vs-about-h8 .vs-about-h8__image img.img-top {
    position: absolute;
    border: 10px solid white;
    border-radius: 20px;
    bottom: 70px;
    width: 265px;
    height: 318px;
    right: 25px;
}

@media (max-width: 1199px) {
    .vs-about-h8 .vs-about-h8__image img.img-top {
        bottom: 30px;
        width: 220px;
        height: 275px;
        right: 0px;
    }
}

.vs-about-h8 .vs-about-h8__image img.img-top {
}

@media (max-width: 991px) {
    .vs-about-h8 .vs-about-h8__image img.img-top {
        bottom: 70px;
        width: 265px;
        height: 318px;
        right: 110px;
    }
}

.vs-about-h8 .vs-about-h8__image img.img-top {
}

@media (max-width: 767px) {
    .vs-about-h8 .vs-about-h8__image img.img-top {
        right: -50px;
    }
}

.vs-about-h8 .vs-about-h8__image img.img-top {
}

@media (max-width: 575px) {
    .vs-about-h8 .vs-about-h8__image img.img-top {
        bottom: 0px;
        width: 230px;
        height: 280px;
        right: 0px;
    }
}

.vs-about-h8 .vs-about-h8__image img.img-ele {
    position: absolute;
    left: -40px;
    bottom: 30px;
}

@media (max-width: 1500px) {
    .vs-about-h8 .vs-about-h8__image img.img-ele {
        display: none;
    }
}

.vs-about-h8 .vs-about-h8__list {
    list-style: none;
    margin: 0px 0px 40px;
    padding: 0px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.vs-about-h8 .vs-about-h8__list img.icon-img {
    width: 88px;
    height: 87px;
    object-fit: cover;
}

.vs-about-h8 .vs-about-h8__list li h4 {
    font-size: 26px;
    margin: 20px 0px 15px;
    line-height: 1;
}

.vs-about-h8 .vs-about-h8__list li p {
    font-weight: 500;
    max-width: 245px;
    margin: 0px;
}

.vs-about-h8 .vs-about-h8__btn {
    display: flex;
    align-items: center;
    gap: 30px;
}

.vs-about-h8 .vs-about-h8__ceo-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vs-about-h8 .vs-about-h8__ceo-profile img {
    border-radius: 50%;
    width: 63px;
    height: 63px;
}

@media (max-width: 424px) {
    .vs-about-h8 .vs-about-h8__ceo-profile {
        display: none;
    }
}

.vs-about-h8 .vs-about-h8__ceo-info h4 {
    font-size: 26px;
    text-transform: capitalize;
    line-height: 1;
}

.vs-about-h8 .vs-about-h8__ceo-info span {
    font-weight: 500;
}

.vs-about-h8 .vs-about-h8__ele1 {
    position: absolute;
    right: 0px;
    bottom: -35px;
}

@media (max-width: 1500px) {
    .vs-about-h8 .vs-about-h8__ele1 {
        bottom: -20px;
        width: 200px;
    }
}

.vs-about-h8 .vs-about-h8__ele1 {
}

@media (max-width: 1199px) {
    .vs-about-h8 .vs-about-h8__ele1 {
        display: none;
    }
}

.vs-about-h8 .vs-about-h8__ele2 {
    position: absolute;
    top: 5px;
    right: 7%;
}

@media (max-width: 1199px) {
    .vs-about-h8 .vs-about-h8__ele2 {
        display: none;
    }
}

.vs-rides {
    background-color: var(--vs-white-color);
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: rgb(217, 217, 217) 0px 0px 5px;
}

.vs-rides .vs-rides__figure {
    position: relative;
}

.vs-rides .vs-rides__figure img.main-img {
    width: 100%;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQ4IiBoZWlnaHQ9IjE5OCIgdmlld0JveD0iMCAwIDI0OCAxOTgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDIxQzAgOS40MDIwMSA5LjQwMjAyIDAgMjEgMEgyMjdDMjM4LjU5OCAwIDI0OCA5LjQwMjAyIDI0OCAyMVYxNzQuMTU4QzI0OCAxODEuMTEyIDI0Mi45NzYgMTg3LjA0OCAyMzYuMTE4IDE4OC4xOThDMTYxLjg5MSAyMDAuNjQ2IDg2LjEwODkgMjAwLjY0NiAxMS44ODE2IDE4OC4xOThDNS4wMjM2MiAxODcuMDQ4IDAgMTgxLjExMiAwIDE3NC4xNThWMjFaIiBmaWxsPSIjRDE4MTA5Ii8+Cjwvc3ZnPgo=");
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    object-fit: cover;
}

.vs-rides .vs-rides__icon {
    --icon-size: 70px;
    min-width: var(--icon-size);
    width: var(--icon-size);
    min-height: var(--icon-size);
    height: var(--icon-size);
    border-radius: 50%;
    position: absolute;
    bottom: -30px;
    margin: 0px auto;
    left: 0px;
    right: 0px;
}

.vs-rides .vs-rides__icon span {
    --icon-size: 70px;
    min-width: var(--icon-size);
    width: var(--icon-size);
    min-height: var(--icon-size);
    height: var(--icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px dashed rgba(var(--vs-white-color-rgb), 0.6);
}

.vs-rides .vs-rides__content {
    padding: 55px 0px 10px;
}

.vs-rides .vs-rides__content h3 {
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    line-height: 1.1;
    margin: 0px 0px 14px;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .vs-rides .vs-rides__content h3 {
        font-size: 24px;
    }
}

.vs-rides .vs-rides__content h3:hover {
    color: var(--vs-theme-color2);
}

.vs-rides .vs-rides__content p {
    letter-spacing: 0.48px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0px 10px 20px;
}

.vs-rides .vs-rides__bottom {
    margin-bottom: -35px;
    position: relative;
    z-index: 3;
}

.vs-rides .vs-rides__bottom a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    background-color: var(--vs-title-color);
    justify-content: center;
    align-items: center;
    color: var(--vs-white-color);
    border-radius: 50%;
}

.vs-rides:hover .vs-rides__bottom a {
    background-color: var(--vs-theme-color2);
}

.vs-rides:hover .vs-rides__bottom.hover-1 a {
    background-color: var(--vs-theme-color1);
}

.vs-rides:hover .vs-rides__bottom.hover-2 a {
    background-color: var(--vs-theme-color4);
}

.vs-rides:hover .vs-rides__bottom.hover-3 a {
    background-color: rgb(255, 28, 58);
}

.vs-video-h8 {
    padding: 30px 0px;
}

.vs-gallery--row.home-8-gallery {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(4, 1fr);
    margin-top: 15px;
}

@media (max-width: 767px) {
    .vs-gallery--row.home-8-gallery {
        grid-template-rows: repeat(4, 1fr);
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.vs-gallery--row.home-8-gallery {
}

@media (max-width: 575px) {
    .vs-gallery--row.home-8-gallery {
        grid-template-rows: repeat(6, 1fr);
        grid-template-columns: 1fr;
    }
}

.vs-gallery--col1-h8 {
    grid-area: 1 / 1 / 2 / 2;
}

@media (max-width: 767px) {
    .vs-gallery--col1-h8 {
        grid-area: 1 / 1 / 2 / 4;
    }
}

.vs-gallery--col1-h8 {
}

@media (max-width: 575px) {
    .vs-gallery--col1-h8 {
        grid-area: auto;
    }
}

.vs-gallery--col2-h8 {
    grid-area: 1 / 2 / 2 / 4;
}

@media (max-width: 767px) {
    .vs-gallery--col2-h8 {
        grid-area: 3 / 5 / 2 / 1;
    }
}

.vs-gallery--col2-h8 {
}

@media (max-width: 575px) {
    .vs-gallery--col2-h8 {
        grid-area: auto;
    }
}

.vs-gallery--col3-h8 {
    grid-area: 1 / 4 / 2 / 4;
}

@media (max-width: 767px) {
    .vs-gallery--col3-h8 {
        grid-area: 1 / 4 / 2 / 4;
    }
}

.vs-gallery--col3-h8 {
}

@media (max-width: 575px) {
    .vs-gallery--col3-h8 {
        grid-area: auto;
    }
}

.vs-gallery--col4-h8 {
    grid-area: 2 / 1 / 2 / 2;
}

@media (max-width: 767px) {
    .vs-gallery--col4-h8 {
        grid-area: 3 / 1 / 4 / 4;
    }
}

.vs-gallery--col4-h8 {
}

@media (max-width: 575px) {
    .vs-gallery--col4-h8 {
        grid-area: auto;
    }
}

.vs-gallery--col5-h8 {
    grid-area: 2 / 2 / 2 / 2;
}

@media (max-width: 767px) {
    .vs-gallery--col5-h8 {
        grid-area: 3 / 4 / 3 / 4;
    }
}

.vs-gallery--col5-h8 {
}

@media (max-width: 575px) {
    .vs-gallery--col5-h8 {
        grid-area: auto;
    }
}

.vs-gallery--col6-h8 {
    grid-area: 2 / 3 / 2 / 5;
}

@media (max-width: 767px) {
    .vs-gallery--col6-h8 {
        grid-area: 4 / 1 / 4 / 5;
    }
}

.vs-gallery--col6-h8 {
}

@media (max-width: 575px) {
    .vs-gallery--col6-h8 {
        grid-area: auto;
    }
}

.vs-gallery__image {
    transform: scale(1.01);
}

.vs-pricing__ele3 {
    position: absolute;
    right: 5%;
    top: -115px;
    z-index: 11;
}

.vs-pricing__ele3 img {
    width: 150px;
}

.vs-pricing__ele3 {
}

@media (max-width: 991px) {
    .vs-pricing__ele3 {
        display: none;
    }
}

.vs-pricing {
    background-color: var(--vs-white-color);
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    position: relative;
}

@media (max-width: 575px) {
    .vs-pricing {
        margin-right: 10px;
    }
}

.vs-pricing h4 {
    height: 70px;
    text-transform: uppercase;
    color: var(--vs-white-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 24px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

@media (max-width: 1199px) {
    .vs-pricing h4 {
        font-size: 22px;
        height: 60px;
    }
}

.vs-pricing .vs-pricing__content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid rgb(217, 217, 217);
    padding-bottom: 35px;
}

@media (max-width: 1199px) {
    .vs-pricing .vs-pricing__content {
        padding-bottom: 25px;
    }
}

.vs-pricing .vs-pricing__content ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.vs-pricing .vs-pricing__content ul li {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.vs-pricing .vs-pricing__icon {
    width: 95px;
    height: 95px;
    line-height: 95px;
    margin: 30px auto;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODkiIGhlaWdodD0iODkiIHZpZXdCb3g9IjAgMCA4OSA4OSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQwLjYxNTYgMS45ODg3NUM0Mi4xOTcgLTAuNjYyOTQyIDQ2LjAzNzQgLTAuNjYyOTQyIDQ3LjYxODggMS45ODg3NUM0OC45MjI4IDQuMTc1MjcgNTEuODg5NSA0LjY0NTE1IDUzLjgwNTQgMi45Njg2MUM1Ni4xMjg4IDAuOTM1MzcxIDU5Ljc4MTMgMi4xMjIxNCA2MC40NjU4IDUuMTMyNzJDNjEuMDMwMyA3LjYxNTE3IDYzLjcwNjcgOC45Nzg4NCA2Ni4wNDY4IDcuOTc2MzdDNjguODg0OCA2Ljc2MDYyIDcxLjk5MTggOS4wMTc5OSA3MS43MTI1IDEyLjA5MjhDNzEuNDgyMyAxNC42MjgxIDczLjYwNjIgMTYuNzUyMSA3Ni4xNDE2IDE2LjUyMThDNzkuMjE2NCAxNi4yNDI2IDgxLjQ3MzggMTkuMzQ5NiA4MC4yNTggMjIuMTg3NkM3OS4yNTU1IDI0LjUyNzcgODAuNjE5MiAyNy4yMDQxIDgzLjEwMTYgMjcuNzY4NUM4Ni4xMTIyIDI4LjQ1MzEgODcuMjk5IDMyLjEwNTYgODUuMjY1OCAzNC40MjlDODMuNTg5MiAzNi4zNDQ4IDg0LjA1OTEgMzkuMzExNiA4Ni4yNDU2IDQwLjYxNTZDODguODk3MyA0Mi4xOTcgODguODk3MyA0Ni4wMzc0IDg2LjI0NTYgNDcuNjE4OEM4NC4wNTkxIDQ4LjkyMjggODMuNTg5MiA1MS44ODk1IDg1LjI2NTggNTMuODA1NEM4Ny4yOTkgNTYuMTI4OCA4Ni4xMTIyIDU5Ljc4MTMgODMuMTAxNiA2MC40NjU4QzgwLjYxOTIgNjEuMDMwMyA3OS4yNTU1IDYzLjcwNjcgODAuMjU4IDY2LjA0NjhDODEuNDczOCA2OC44ODQ4IDc5LjIxNjQgNzEuOTkxOCA3Ni4xNDE2IDcxLjcxMjVDNzMuNjA2MiA3MS40ODIzIDcxLjQ4MjMgNzMuNjA2MiA3MS43MTI1IDc2LjE0MTZDNzEuOTkxOCA3OS4yMTY0IDY4Ljg4NDggODEuNDczOCA2Ni4wNDY4IDgwLjI1OEM2My43MDY3IDc5LjI1NTUgNjEuMDMwMyA4MC42MTkyIDYwLjQ2NTggODMuMTAxNkM1OS43ODEzIDg2LjExMjIgNTYuMTI4OCA4Ny4yOTkgNTMuODA1NCA4NS4yNjU4QzUxLjg4OTUgODMuNTg5MiA0OC45MjI4IDg0LjA1OTEgNDcuNjE4OCA4Ni4yNDU2QzQ2LjAzNzQgODguODk3MyA0Mi4xOTcgODguODk3MyA0MC42MTU2IDg2LjI0NTZDMzkuMzExNiA4NC4wNTkxIDM2LjM0NDggODMuNTg5MiAzNC40MjkgODUuMjY1OEMzMi4xMDU2IDg3LjI5OSAyOC40NTMxIDg2LjExMjIgMjcuNzY4NSA4My4xMDE2QzI3LjIwNDEgODAuNjE5MiAyNC41Mjc3IDc5LjI1NTUgMjIuMTg3NiA4MC4yNThDMTkuMzQ5NiA4MS40NzM4IDE2LjI0MjYgNzkuMjE2NCAxNi41MjE4IDc2LjE0MTZDMTYuNzUyMSA3My42MDYyIDE0LjYyODEgNzEuNDgyMyAxMi4wOTI4IDcxLjcxMjVDOS4wMTc5OSA3MS45OTE4IDYuNzYwNjIgNjguODg0OCA3Ljk3NjM3IDY2LjA0NjhDOC45Nzg4NCA2My43MDY3IDcuNjE1MTcgNjEuMDMwMyA1LjEzMjcyIDYwLjQ2NThDMi4xMjIxNCA1OS43ODEzIDAuOTM1MzcxIDU2LjEyODggMi45Njg2MSA1My44MDU0QzQuNjQ1MTUgNTEuODg5NSA0LjE3NTI3IDQ4LjkyMjggMS45ODg3NSA0Ny42MTg4Qy0wLjY2Mjk0MiA0Ni4wMzc0IC0wLjY2Mjk0MiA0Mi4xOTcgMS45ODg3NSA0MC42MTU2QzQuMTc1MjcgMzkuMzExNiA0LjY0NTE1IDM2LjM0NDggMi45Njg2MSAzNC40MjlDMC45MzUzNzEgMzIuMTA1NiAyLjEyMjE0IDI4LjQ1MzEgNS4xMzI3MiAyNy43Njg1QzcuNjE1MTcgMjcuMjA0MSA4Ljk3ODg0IDI0LjUyNzcgNy45NzYzNyAyMi4xODc2QzYuNzYwNjIgMTkuMzQ5NiA5LjAxNzk5IDE2LjI0MjYgMTIuMDkyOCAxNi41MjE4QzE0LjYyODEgMTYuNzUyMSAxNi43NTIxIDE0LjYyODEgMTYuNTIxOCAxMi4wOTI4QzE2LjI0MjYgOS4wMTc5OSAxOS4zNDk2IDYuNzYwNjIgMjIuMTg3NiA3Ljk3NjM3QzI0LjUyNzcgOC45Nzg4NCAyNy4yMDQxIDcuNjE1MTcgMjcuNzY4NSA1LjEzMjcyQzI4LjQ1MzEgMi4xMjIxNCAzMi4xMDU2IDAuOTM1MzcxIDM0LjQyOSAyLjk2ODYxQzM2LjM0NDggNC42NDUxNSAzOS4zMTE2IDQuMTc1MjcgNDAuNjE1NiAxLjk4ODc1WiIgZmlsbD0iIzkyMjc4RiIvPgo8L3N2Zz4K");
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    object-fit: cover;
}

.vs-pricing .vs-pricing__icon span {
    font-family: var(--vs-title-font);
    color: var(--vs-white-color);
    font-size: 30px;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .vs-pricing .vs-pricing__icon span {
        font-size: 24px;
    }
}

.vs-pricing .vs-pricing__icon {
}

@media (max-width: 1199px) {
    .vs-pricing .vs-pricing__icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
        margin: 22px auto;
    }
}

.vs-pricing .vs-pricing__bg-shape {
    position: absolute;
    z-index: -1;
    width: 93%;
    height: 84%;
    bottom: -10px;
    right: -10px;
    border-radius: 10px;
}

.vs-pricing:hover {
    margin-top: -10px;
}

@media (max-width: 1199px) {
    .feedback-image.home-8 {
        background-position: center center;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .feedback-image.home-8 {
        height: 500px;
    }
}

@media (max-width: 1600px) {
    .feedback--ele1 {
        right: 45px;
        top: 40px;
    }
}

.vs-blog--inner-h7.home-8-blog {
    background-color: rgb(255, 240, 229);
    border-radius: 15px;
}

.vs-blog--inner-h7.home-8-blog .vs-blog__img {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    margin-bottom: 0px;
}

.vs-blog--inner-h7.home-8-blog .vs-blog__img img {
    transition: 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .vs-blog--inner-h7.home-8-blog .vs-blog__img img {
        height: 100%;
    }
}

.vs-blog--inner-h7.home-8-blog .vs-blog__heading {
    font-size: 24px;
}

@media (max-width: 1199px) {
    .vs-blog--inner-h7.home-8-blog .vs-blog__heading {
        font-size: 20px;
    }
}

.vs-blog--inner-h7.home-8-blog .vs-blog__content {
  padding: 30px 30px 40px;
  border: 2px dashed rgba(var(--vs-title-color-rgb), 0.2);
  border-top: 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  /* Large devices */
}

@media (max-width: 1199px) {
    .vs-blog--inner-h7.home-8-blog .vs-blog__content {
        padding: 30px 20px 40px;
    }
}

.vs-blog--inner-h7.home-8-blog .vs-blog__date {
    background-color: var(--vs-theme-color2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 5px solid var(--vs-white-color);
}

.vs-blog--inner-h7.home-8-blog .vs-blog__date span {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--vs-white-color);
}

.vs-blog--inner-h7.home-8-blog .vs-blog__date span.month {
    padding: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 15px;
}

.vs-blog--inner-h7.home-8-blog .vs-blog__tag .tag-link i {
    color: var(--vs-theme-color2);
}

.vs-blog--inner-h7.home-8-blog .vs-blog__link i {
    font-size: 22px;
}

.vs-blog--inner-h7.home-8-blog:hover .vs-blog__link {
    color: var(--vs-theme-color2);
}

.vs-blog--inner-h7.home-8-blog:hover .vs-blog__img img {
    transform: scale(1.02);
}

.vs-header__top p.home-9 {
    margin: 0px;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 1;
    font-family: var(--vs-title-font);
    font-weight: 600;
}

.vs-header__top p.home-9 img {
    width: 20px;
    padding-left: 5px;
}

.vs-header__top p.home-9 a:hover {
    color: var(--vs-theme-color2);
}

.vs-header__info-middle {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.vs-header__info-middle i {
    color: rgba(var(--vs-title-color-rgb), 0.9);
    width: 50px;
    height: 50px;
    background-color: rgba(var(--vs-title-color-rgb), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

.vs-header__info-middle i.cart {
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
}

.vs-header__info-middle p {
    text-transform: capitalize;
    font-weight: 700;
    color: var(--vs-title-color);
    padding-left: 15px;
    margin: 0px;
}

.vs-header__info-middle p span {
    display: block;
    color: var(--vs-body-color);
}

.vs-header__info-middle p span span.closed {
    display: inline;
    color: var(--vs-theme-color2);
}

.vs-header__info-middle p span a {
    color: var(--vs-theme-color1);
}

.vs-header__info-middle p a.cart {
    color: var(--vs-title-color);
    transition: 0.3s ease-in-out;
}

.vs-header__info-middle p a.cart:hover {
    color: var(--vs-theme-color2);
}

.vs-header__info-middle.cart-box {
    border-left: 1px solid var(--vs-theme-color2);
    padding-left: 20px;
    padding-right: 5px;
}

.vs-header__action.home-9 {
    gap: 0px;
}

@media (max-width: 991px) {
    .vs-header__action.home-9 {
        gap: 20px;
    }
}

.vs-header__action.home-9 {
}

@media (max-width: 575px) {
    .vs-header__action.home-9 {
        gap: 0px;
    }
}

.vs-header__action.home-9 a.returns {
    display: block;
    position: relative;
    font-family: var(--vs-title-font);
    font-weight: 900;
    font-size: 18px;
    color: var(--vs-white-color);
    text-transform: uppercase;
    margin-right: 25px;
}

.vs-header__action.home-9 a.returns svg {
    margin-right: 5px;
}

.vs-header__action.home-9 .searchBoxTggler {
}

@media (max-width: 767px) {
    .vs-header__action.home-9 .searchBoxTggler {
        display: block !important;
    }
}

.vs-header__action.home-9 .searchBoxTggler {
}

@media (max-width: 575px) {
    .vs-header__action.home-9 .searchBoxTggler {
        display: none !important;
    }
}

.will-sticky .sticky-active.active .home9-logo {
    display: block !important;
}

.will-sticky .sticky-active.active .aaa {
    display: none !important;
}

.aaa {
    display: none;
}

@media (max-width: 767px) {
    .aaa {
        display: block !important;
    }
}

.will-sticky .sticky-active.active .main-menu.home9-menu > ul > li > a {
    color: var(--vs-title-color);
}

.will-sticky .sticky-active.active .main-menu.home9-menu > ul > li {
    margin: 0px 18px;
}

.main-menu.home9-menu > ul > li {
    margin: 0px 50px 0px 0px;
}

@media (max-width: 1199px) {
    .main-menu.home9-menu > ul > li {
        margin: 0px 40px 0px 0px;
    }
}

.main-menu.home9-menu > ul > li > a {
    padding: 25px 0px;
    color: var(--vs-white-color);
}

.main-menu.home9-menu > ul > li > a img {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: -24px;
    top: 28px;
    transition: 0.3s ease-in-out;
}

.main-menu.home9-menu > ul > li > a:hover img {
    opacity: 1;
    visibility: visible;
}

.will-sticky .sticky-active.active .main-menu.home9-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets {
    color: var(--vs-title-color);
}

.main-menu.home9-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets {
    color: var(--vs-white-color);
}

.main-menu.home9-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets img {
    opacity: 0;
    visibility: hidden;
}

.will-sticky .sticky-active.active .main-menu.home9-menu > ul > li.menu-item-has-children.active > a.vs-svg-assets {
    color: var(--vs-theme-color2);
}

.main-menu.home9-menu > ul > li.menu-item-has-children.active > a.vs-svg-assets img {
    opacity: 1;
    visibility: visible;
}

.will-sticky .sticky-active.active .vs-header__action .returns {
    display: none;
}

.will-sticky .sticky-active.active .home9Toggler {
    display: block !important;
}

.vs-hero--style9 .vs-hero__bg {
    animation: auto ease 0s 1 normal none running none;
}

.vs-hero--style9 .vs-hero__anim1.manimated {
    animation-name: slideinright;
    animation-fill-mode: both;
    opacity: 1;
    animation-duration: 1s;
}

.vs-hero--style9 .vs-hero__content {
    padding: 100px 40px 220px;
}

@media (max-width: 1400px) {
    .vs-hero--style9 .vs-hero__content {
        padding: 100px 40px 230px;
    }
}

@media (max-width: 1300px) {
    .vs-hero--style9 .vs-hero__content {
        padding: 100px 40px 200px;
    }
}

.vs-hero--style9 .vs-hero__content {
}

@media (max-width: 1199px) {
    .vs-hero--style9 .vs-hero__content {
        padding: 100px 40px 230px;
    }
}

.vs-hero--style9 .vs-hero__content {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__content {
        padding: 100px 40px 0px;
    }
}

.vs-hero--style9 .vs-hero__content {
}

@media (max-width: 767px) {
    .vs-hero--style9 .vs-hero__content {
        text-align: center;
    }
}

.vs-hero--style9 .vs-hero__title--main {
    font-size: 80px;
    margin: 0px 0px 25px;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--vs-title-color);
}

@media (max-width: 1400px) {
    .vs-hero--style9 .vs-hero__title--main {
        font-size: 70px;
    }
}

.vs-hero--style9 .vs-hero__title--main {
}

@media (max-width: 1199px) {
    .vs-hero--style9 .vs-hero__title--main {
        font-size: 80px;
    }
}

.vs-hero--style9 .vs-hero__title--main {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__title--main {
        font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
    }
}

.vs-hero--style9 .vs-hero__title--main {
}

@media (max-width: 575px) {
    .vs-hero--style9 .vs-hero__title--main {
        font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style9 .vs-hero__title--main span.main-sub {
    color: var(--vs-theme-color1);
    font-size: 80px;
    display: inline;
}

@media (max-width: 1400px) {
    .vs-hero--style9 .vs-hero__title--main span.main-sub {
        font-size: 70px;
    }
}

.vs-hero--style9 .vs-hero__title--main span.main-sub {
}

@media (max-width: 1199px) {
    .vs-hero--style9 .vs-hero__title--main span.main-sub {
        font-size: 80px;
    }
}

.vs-hero--style9 .vs-hero__title--main span.main-sub {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__title--main span.main-sub {
        font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
    }
}

.vs-hero--style9 .vs-hero__title--main span.main-sub {
}

@media (max-width: 575px) {
    .vs-hero--style9 .vs-hero__title--main span.main-sub {
        font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style9 .vs-hero__title--main span {
    display: block;
    color: var(--vs-title-color);
    font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
}

@media (max-width: 1400px) {
    .vs-hero--style9 .vs-hero__title--main span {
        font-size: 45px;
    }
}

.vs-hero--style9 .vs-hero__title--main span {
}

@media (max-width: 1199px) {
    .vs-hero--style9 .vs-hero__title--main span {
        font-size: 50px;
    }
}

.vs-hero--style9 .vs-hero__title--main span {
}

@media (max-width: 767px) {
    .vs-hero--style9 .vs-hero__title--main span {
        font-size: clamp(2.2rem, 1.2rem + 3.98vw, 4.375rem);
    }
}

.vs-hero--style9 .vs-hero__title--sub {
    font-size: 36px;
    font-weight: 700;
    color: var(--vs-title-color);
    text-transform: uppercase;
    font-family: var(--vs-special-font);
    line-height: 1.1;
    margin: 0px 0px 15px;
    letter-spacing: 2px;
}

.vs-hero--style9 .vs-hero__shape-bgImg {
    position: absolute;
    right: auto;
    left: 39%;
    top: 8%;
    animation: 2s ease-in-out 0s 1 normal none running slideinup;
}

@media (max-width: 1300px) {
    .vs-hero--style9 .vs-hero__shape-bgImg {
        left: 42%;
        top: 13%;
    }
}

.vs-hero--style9 .vs-hero__shape-bgImg {
}

@media (max-width: 1199px) {
    .vs-hero--style9 .vs-hero__shape-bgImg {
        left: 39%;
        top: 8%;
    }
}

.vs-hero--style9 .vs-hero__shape-bgImg {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__shape-bgImg {
        position: relative;
        left: 0px;
        top: 0px;
        text-align: center;
        margin-bottom: 50px;
    }
}

.vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
    position: relative;
    width: 550px;
    height: auto;
    object-fit: cover;
}

@media (max-width: 1400px) {
    .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
        width: 530px;
    }
}

@media (max-width: 1300px) {
    .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
        width: 400px;
    }
}

.vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
}

@media (max-width: 1199px) {
    .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
        width: 550px;
    }
}

.vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
        width: auto;
    }
}

.vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
}

@media (max-width: 575px) {
    .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
        width: 80%;
        margin-top: 30px;
    }
}

.vs-hero--style9 .vs-hero__label {
    position: absolute;
    top: 50px;
    right: 50px;
    text-align: center;
}

.vs-hero--style9 .vs-hero__label p {
    padding: 40px 15px 15px;
    width: 120px;
    height: 120px;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODkiIGhlaWdodD0iODkiIHZpZXdCb3g9IjAgMCA4OSA4OSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQwLjYxNTYgMS45ODg3NUM0Mi4xOTcgLTAuNjYyOTQyIDQ2LjAzNzQgLTAuNjYyOTQyIDQ3LjYxODggMS45ODg3NUM0OC45MjI4IDQuMTc1MjcgNTEuODg5NSA0LjY0NTE1IDUzLjgwNTQgMi45Njg2MUM1Ni4xMjg4IDAuOTM1MzcxIDU5Ljc4MTMgMi4xMjIxNCA2MC40NjU4IDUuMTMyNzJDNjEuMDMwMyA3LjYxNTE3IDYzLjcwNjcgOC45Nzg4NCA2Ni4wNDY4IDcuOTc2MzdDNjguODg0OCA2Ljc2MDYyIDcxLjk5MTggOS4wMTc5OSA3MS43MTI1IDEyLjA5MjhDNzEuNDgyMyAxNC42MjgxIDczLjYwNjIgMTYuNzUyMSA3Ni4xNDE2IDE2LjUyMThDNzkuMjE2NCAxNi4yNDI2IDgxLjQ3MzggMTkuMzQ5NiA4MC4yNTggMjIuMTg3NkM3OS4yNTU1IDI0LjUyNzcgODAuNjE5MiAyNy4yMDQxIDgzLjEwMTYgMjcuNzY4NUM4Ni4xMTIyIDI4LjQ1MzEgODcuMjk5IDMyLjEwNTYgODUuMjY1OCAzNC40MjlDODMuNTg5MiAzNi4zNDQ4IDg0LjA1OTEgMzkuMzExNiA4Ni4yNDU2IDQwLjYxNTZDODguODk3MyA0Mi4xOTcgODguODk3MyA0Ni4wMzc0IDg2LjI0NTYgNDcuNjE4OEM4NC4wNTkxIDQ4LjkyMjggODMuNTg5MiA1MS44ODk1IDg1LjI2NTggNTMuODA1NEM4Ny4yOTkgNTYuMTI4OCA4Ni4xMTIyIDU5Ljc4MTMgODMuMTAxNiA2MC40NjU4QzgwLjYxOTIgNjEuMDMwMyA3OS4yNTU1IDYzLjcwNjcgODAuMjU4IDY2LjA0NjhDODEuNDczOCA2OC44ODQ4IDc5LjIxNjQgNzEuOTkxOCA3Ni4xNDE2IDcxLjcxMjVDNzMuNjA2MiA3MS40ODIzIDcxLjQ4MjMgNzMuNjA2MiA3MS43MTI1IDc2LjE0MTZDNzEuOTkxOCA3OS4yMTY0IDY4Ljg4NDggODEuNDczOCA2Ni4wNDY4IDgwLjI1OEM2My43MDY3IDc5LjI1NTUgNjEuMDMwMyA4MC42MTkyIDYwLjQ2NTggODMuMTAxNkM1OS43ODEzIDg2LjExMjIgNTYuMTI4OCA4Ny4yOTkgNTMuODA1NCA4NS4yNjU4QzUxLjg4OTUgODMuNTg5MiA0OC45MjI4IDg0LjA1OTEgNDcuNjE4OCA4Ni4yNDU2QzQ2LjAzNzQgODguODk3MyA0Mi4xOTcgODguODk3MyA0MC42MTU2IDg2LjI0NTZDMzkuMzExNiA4NC4wNTkxIDM2LjM0NDggODMuNTg5MiAzNC40MjkgODUuMjY1OEMzMi4xMDU2IDg3LjI5OSAyOC40NTMxIDg2LjExMjIgMjcuNzY4NSA4My4xMDE2QzI3LjIwNDEgODAuNjE5MiAyNC41Mjc3IDc5LjI1NTUgMjIuMTg3NiA4MC4yNThDMTkuMzQ5NiA4MS40NzM4IDE2LjI0MjYgNzkuMjE2NCAxNi41MjE4IDc2LjE0MTZDMTYuNzUyMSA3My42MDYyIDE0LjYyODEgNzEuNDgyMyAxMi4wOTI4IDcxLjcxMjVDOS4wMTc5OSA3MS45OTE4IDYuNzYwNjIgNjguODg0OCA3Ljk3NjM3IDY2LjA0NjhDOC45Nzg4NCA2My43MDY3IDcuNjE1MTcgNjEuMDMwMyA1LjEzMjcyIDYwLjQ2NThDMi4xMjIxNCA1OS43ODEzIDAuOTM1MzcxIDU2LjEyODggMi45Njg2MSA1My44MDU0QzQuNjQ1MTUgNTEuODg5NSA0LjE3NTI3IDQ4LjkyMjggMS45ODg3NSA0Ny42MTg4Qy0wLjY2Mjk0MiA0Ni4wMzc0IC0wLjY2Mjk0MiA0Mi4xOTcgMS45ODg3NSA0MC42MTU2QzQuMTc1MjcgMzkuMzExNiA0LjY0NTE1IDM2LjM0NDggMi45Njg2MSAzNC40MjlDMC45MzUzNzEgMzIuMTA1NiAyLjEyMjE0IDI4LjQ1MzEgNS4xMzI3MiAyNy43Njg1QzcuNjE1MTcgMjcuMjA0MSA4Ljk3ODg0IDI0LjUyNzcgNy45NzYzNyAyMi4xODc2QzYuNzYwNjIgMTkuMzQ5NiA5LjAxNzk5IDE2LjI0MjYgMTIuMDkyOCAxNi41MjE4QzE0LjYyODEgMTYuNzUyMSAxNi43NTIxIDE0LjYyODEgMTYuNTIxOCAxMi4wOTI4QzE2LjI0MjYgOS4wMTc5OSAxOS4zNDk2IDYuNzYwNjIgMjIuMTg3NiA3Ljk3NjM3QzI0LjUyNzcgOC45Nzg4NCAyNy4yMDQxIDcuNjE1MTcgMjcuNzY4NSA1LjEzMjcyQzI4LjQ1MzEgMi4xMjIxNCAzMi4xMDU2IDAuOTM1MzcxIDM0LjQyOSAyLjk2ODYxQzM2LjM0NDggNC42NDUxNSAzOS4zMTE2IDQuMTc1MjcgNDAuNjE1NiAxLjk4ODc1WiIgZmlsbD0iIzkyMjc4RiIvPgo8L3N2Zz4K");
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    object-fit: cover;
    background-color: var(--vs-white-color);
    color: var(--vs-theme-color2);
    font-size: 32px;
    font-weight: 700;
    font-family: var(--vs-title-font);
    margin: 0px;
    line-height: 25px;
}

@media (max-width: 1300px) {
    .vs-hero--style9 .vs-hero__label p {
        width: 100px;
        height: 100px;
        font-size: 28px;
        padding-top: 28px;
    }
}

.vs-hero--style9 .vs-hero__label p {
}

@media (max-width: 1199px) {
    .vs-hero--style9 .vs-hero__label p {
        padding: 40px 15px 15px;
        width: 120px;
        height: 120px;
        font-size: 32px;
    }
}

.vs-hero--style9 .vs-hero__label p span {
    font-size: 22px;
    line-height: 20px;
    color: var(--vs-title-color);
    text-transform: uppercase;
}

.vs-hero--style9 .vs-hero__label {
}

@media (max-width: 767px) {
    .vs-hero--style9 .vs-hero__label {
        display: none;
    }
}

.vs-hero--style9 .vs-hero__ele2 {
    position: absolute;
    bottom: 20%;
    top: auto;
    left: 50px;
    z-index: 2;
}

@media (max-width: 1199px) {
    .vs-hero--style9 .vs-hero__ele2 {
        display: block;
    }
}

.vs-hero--style9 .vs-hero__ele2 {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__ele2 {
        display: none;
    }
}

.vs-hero--style9 .vs-hero__infobox {
    position: relative;
}

.vs-hero--style9 .vs-hero__infobox img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

@media (max-width: 1400px) {
    .vs-hero--style9 .vs-hero__infobox img {
        height: 285px;
    }
}

@media (max-width: 1300px) {
    .vs-hero--style9 .vs-hero__infobox img {
        height: 268px;
    }
}

.vs-hero--style9 .vs-hero__infobox img {
}

@media (max-width: 1199px) {
    .vs-hero--style9 .vs-hero__infobox img {
        width: 100%;
        height: 290px;
    }
}

.vs-hero--style9 .vs-hero__infobox img {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__infobox img {
        height: 210px;
    }
}

.vs-hero--style9 .vs-hero__txt {
    position: absolute;
    top: 30px;
    left: 30px;
}

.vs-hero--style9 .vs-hero__txt h4 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0px 0px 8px;
    font-family: var(--vs-special-font);
}

@media (max-width: 1300px) {
    .vs-hero--style9 .vs-hero__txt h4 {
        font-size: 28px;
    }
}

.vs-hero--style9 .vs-hero__txt h4 {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__txt h4 {
        font-size: 24px;
    }
}

.vs-hero--style9 .vs-hero__txt h3 {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 1300px) {
    .vs-hero--style9 .vs-hero__txt h3 {
        font-size: 30px;
    }
}

.vs-hero--style9 .vs-hero__txt h3 {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__txt h3 {
        font-size: 24px;
        line-height: 1.1;
    }
}

.vs-hero--style9 .vs-hero__txt h3 span {
    font-size: 34px;
    display: block;
}

@media (max-width: 1300px) {
    .vs-hero--style9 .vs-hero__txt h3 span {
        font-size: 28px;
    }
}

.vs-hero--style9 .vs-hero__txt h3 span {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__txt h3 span {
        font-size: 20px;
    }
}

.vs-hero--style9 .vs-hero__txt a {
    font-size: 18px;
    font-family: var(--vs-title-font);
    text-transform: uppercase;
    font-weight: 800;
    display: inline-block;
    border-bottom: 1px solid var(--vs-theme-color2);
    margin-top: 20px;
    color: var(--vs-title-color);
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__txt a {
        margin-top: 10px;
    }
}

.vs-hero--style9 .vs-hero__infoimg {
    position: absolute;
    right: 25px;
    top: 30px;
    width: auto !important;
    height: auto !important;
}

@media (max-width: 1400px) {
    .vs-hero--style9 .vs-hero__infoimg {
        top: 70px;
        width: 160px !important;
    }
}

@media (max-width: 1300px) {
    .vs-hero--style9 .vs-hero__infoimg {
        width: 130px !important;
    }
}

.vs-hero--style9 .vs-hero__infoimg {
}

@media (max-width: 1199px) {
    .vs-hero--style9 .vs-hero__infoimg {
        top: 30px;
        width: auto !important;
    }
}

.vs-hero--style9 .vs-hero__infoimg {
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__infoimg {
        top: 40px;
        width: 130px !important;
    }
}

.vs-hero--style9 .vs-hero__infoicon {
    position: absolute;
    bottom: 15px;
    left: 10px;
    width: auto !important;
    height: auto !important;
}

@media (max-width: 991px) {
    .vs-hero--style9 .vs-hero__infoicon {
        display: none;
    }
}

.vs-information__border {
    border-bottom: 1px solid rgba(var(--vs-title-color-rgb), 0.4);
    position: relative;
    margin-bottom: 10px;
}

.vs-information__border::after {
    content: "";
    position: absolute;
    border-bottom: 5px solid rgba(var(--vs-title-color-rgb), 0.4);
    width: 100%;
    left: 0px;
    bottom: -7px;
}

.vs-information--content {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

@media (max-width: 1199px) {
    .vs-information--content {
        display: block;
    }
}

.vs-information--content .vs-information__icon {
    --icon-size: 60px;
    width: var(--icon-size);
    height: var(--icon-size);
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    border-radius: 50%;
    border: 1px dashed rgba(var(--vs-title-color-rgb), 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
}

@media (max-width: 1199px) {
    .vs-information--content .vs-information__icon {
        margin-bottom: 15px;
    }
}

.vs-information--content .vs-information__txt p {
    font-family: var(--vs-title-font);
    font-size: 18px;
    margin: 0px;
    font-weight: 600;
    color: var(--vs-title-color);
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

.vs-information--content .vs-information__txt p:hover {
    color: var(--vs-theme-color2);
}

.vs-information--content .vs-information__txt span {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.vs-information--content:hover .vs-information__icon {
    border-color: var(--vs-theme-color2);
}

.new-collections {
    margin-bottom: -45px;
}

@media (max-width: 991px) {
    .new-collections {
        margin-bottom: -100px;
    }
}

.new-collections {
}

@media (max-width: 575px) {
    .new-collections {
        margin-bottom: -200px;
    }
}

.filter-buttons.collections button {
    width: 125px;
    height: 45px;
    margin: 0px 8px;
}

@media (max-width: 575px) {
    .filter-buttons.collections button {
        width: 100%;
        margin-bottom: 10px;
    }
}

.masonry.collections {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0px 30px;
}

@media (max-width: 1199px) {
    .masonry.collections {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.masonry.collections {
}

@media (max-width: 991px) {
    .masonry.collections {
        grid-template-columns: 1fr 1fr;
    }
}

.masonry.collections {
}

@media (max-width: 575px) {
    .masonry.collections {
        grid-template-columns: 1fr;
    }
}

.vs-toyscate {
}

@media (max-width: 991px) {
    .vs-toyscate .vs-title {
        margin-top: 70px;
    }
}

.vs-toyscate {
}

@media (max-width: 575px) {
    .vs-toyscate {
        padding: 150px 0px;
    }
}

.vs-toyscate__grid {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 991px) {
    .vs-toyscate__grid {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 70px;
    }
}

.vs-toyscate__grid {
}

@media (max-width: 767px) {
    .vs-toyscate__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vs-toyscate__grid {
}

@media (max-width: 575px) {
    .vs-toyscate__grid {
        grid-template-columns: 1fr;
    }
}

.vs-toyscate__grid {
}

@media (max-width: 767px) {
    .vs-toyscate__grid .last-child {
        grid-column: 1 / span 2;
        justify-self: center;
    }
}

.vs-toyscate__grid {
}

@media (max-width: 575px) {
    .vs-toyscate__grid .last-child {
        grid-column: auto;
        justify-self: auto;
    }
}

.vs-toyscate--content {
    margin-bottom: 30px;
}

.vs-toyscate--content .vs-toyscate__icon {
    width: 154px;
    height: 154px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(var(--vs-white-color-rgb), 0.1);
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

.vs-toyscate--content .vs-toyscate__icon::after {
    content: "";
    border-radius: 50%;
    background-color: var(--vs-white-color);
    position: absolute;
    z-index: -1;
    inset: 10px;
}

.vs-toyscate--content .vs-toyscate__title {
    background-color: var(--vs-white-color);
    width: 100%;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjA3IiBoZWlnaHQ9Ijc1IiB2aWV3Qm94PSIwIDAgMjA3IDc1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAxMC4wMDE2QzAgMy45ODQyNCA1LjI3NTc5IC0wLjY3MDM0OCAxMS4yNDYyIDAuMDc5NTY0MUw5MS4wMzc1IDEwLjEwMTdDOTkuMzEzMyAxMS4xNDExIDEwNy42ODcgMTEuMTQxMSAxMTUuOTYyIDEwLjEwMTdMMTk1Ljc1NCAwLjA3OTU2NDJDMjAxLjcyNCAtMC42NzAzNDggMjA3IDMuOTg0MjQgMjA3IDEwLjAwMTZWNjQuNjU0MkMyMDcgNzAuNTU3MSAyMDEuOTE0IDc1LjE3NTYgMTk2LjAzOCA3NC42MDc5TDEwNC40NjIgNjUuNzU5OUMxMDMuODIyIDY1LjY5ODEgMTAzLjE3OCA2NS42OTgxIDEwMi41MzggNjUuNzU5OUwxMC45NjE3IDc0LjYwNzlDNS4wODYyMSA3NS4xNzU2IDAgNzAuNTU3MSAwIDY0LjY1NDJWMTAuMDAxNloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    transition: 0.3s ease-in-out;
    margin-top: 8px;
}

.vs-toyscate--content .vs-toyscate__title h6 {
    margin: 0px;
    font-size: 20px;
    line-height: 1;
    transition: 0.3s ease-in-out;
}

.vs-toyscate--content:hover .vs-toyscate__title {
    background-color: var(--vs-theme-color2);
}

.vs-toyscate--content:hover .vs-toyscate__title h6 {
    color: var(--vs-white-color);
}

.vs-toyscate--ele {
    position: absolute;
    left: 10%;
    top: 100px;
}

@media (max-width: 1199px) {
    .vs-toyscate--ele {
        display: none;
    }
}

@media (max-width: 1400px) {
    .vs-contact--ele1.home-9 {
        width: 80px;
    }
}

.vs-bestsell {
    margin-top: -25px;
}

@media (max-width: 575px) {
    .vs-bestsell {
        margin-top: -90px;
    }
}

.vs-bestsell__best-selling {
    border-top: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
    padding-top: 45px;
    margin-top: 25px;
}

.vs-bestsell__view-product {
    color: var(--vs-body-color);
    font-weight: 800;
    letter-spacing: 0.4px;
}

.vs-bestsell__view-product i {
    color: var(--vs-theme-color2);
    font-size: 18px;
    margin-left: 5px;
}

.vs-bestsell--b-selling {
    margin-bottom: 30px;
}

.vs-bestsell--b-selling .vs-bestsell__txt {
    padding-top: 20px;
    text-align: center;
}

.vs-bestsell--b-selling .vs-bestsell__txt p {
    text-transform: capitalize;
    font-weight: 700;
    margin: 0px;
    transition: 0.3s ease-in-out;
}

.vs-bestsell--b-selling .vs-bestsell__txt h6 {
    font-size: 20px;
    line-height: 1.5;
}

.vs-bestsell--b-selling .vs-bestsell__rating {
    display: flex;
    justify-content: center;
    color: var(--vs-theme-color2);
    list-style: none;
    font-size: 14px;
    padding: 0px;
    margin: 8px 0px;
}

.vs-bestsell--b-selling .vs-bestsell__img {
    position: relative;
    background-color: rgba(var(--vs-title-color-rgb), 0.1);
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    transition: 0.3s ease-in-out;
}

@media (max-width: 1199px) {
    .vs-bestsell--b-selling .vs-bestsell__img {
        height: 265px;
    }
}

.vs-bestsell--b-selling .vs-bestsell__img {
}

@media (max-width: 991px) {
    .vs-bestsell--b-selling .vs-bestsell__img {
        height: 350px;
    }
}

.vs-bestsell--b-selling .vs-bestsell__img img {
    object-fit: cover;
}

@media (max-width: 1199px) {
    .vs-bestsell--b-selling .vs-bestsell__img img {
        width: 110px;
    }
}

.vs-bestsell--b-selling .vs-bestsell__img img {
}

@media (max-width: 991px) {
    .vs-bestsell--b-selling .vs-bestsell__img img {
        width: auto;
    }
}

.vs-bestsell--b-selling .vs-bestsell__img::before {
    content: "";
    position: absolute;
    top: auto;
    left: 0px;
    width: 100%;
    height: 0%;
    bottom: 0px;
    background-color: rgb(246, 241, 228);
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.vs-bestsell--b-selling .vs-bestsell__label {
    position: absolute;
    font-size: 13px;
    top: 15px;
    right: 15px;
    padding: 10px 18px;
    background-color: var(--vs-white-color);
    border-radius: 20px;
    margin: 0px;
    line-height: 15px;
    font-weight: 700;
}

.vs-bestsell--b-selling .vs-bestsell__hover {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.vs-bestsell--b-selling .vs-bestsell__btn {
    --icon-size: 50px;
    display: inline-flex;
    min-width: var(--icon-size);
    width: var(--icon-size);
    height: var(--icon-size);
    min-height: var(--icon-size);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--vs-theme-color1);
    color: var(--vs-white-color);
    border: 2px dashed rgba(var(--vs-white-color-rgb), 0.3);
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.vs-bestsell--b-selling .vs-bestsell__btn::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 0%;
    border-radius: 50%;
    background-color: transparent;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.vs-bestsell--b-selling .vs-bestsell__btn:hover {
    color: var(--vs-white-color);
}

.vs-bestsell--b-selling .vs-bestsell__btn:hover::before {
    background-color: var(--vs-theme-color2);
    height: 100%;
}

.vs-bestsell--b-selling:hover .vs-bestsell__img::before {
    visibility: visible;
    height: 100%;
    opacity: 0.75;
}

.vs-bestsell--b-selling:hover .vs-bestsell__hover {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.vs-bestsell--b-selling:hover .vs-bestsell__txt p {
    color: var(--vs-theme-color2);
}

.vs-feedback-pagination.home-9 {
    padding-top: 40px;
}

.vs-feedback-pagination.home-9 .swiper-pagination-bullet {
    background: rgba(var(--vs-title-color-rgb), 0.3);
}

.vs-feedback-pagination.home-9 .swiper-pagination-bullet-active {
    background: var(--vs-theme-color2);
}

.vs-testimonial--area {
    background-color: rgba(var(--vs-title-color-rgb), 0.1);
}

.vs-testimonial--area .vs-testimonial__icon--quote {
    width: 95px;
    height: 95px;
    line-height: 95px;
    margin: 10px auto 30px;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODkiIGhlaWdodD0iODkiIHZpZXdCb3g9IjAgMCA4OSA4OSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQwLjYxNTYgMS45ODg3NUM0Mi4xOTcgLTAuNjYyOTQyIDQ2LjAzNzQgLTAuNjYyOTQyIDQ3LjYxODggMS45ODg3NUM0OC45MjI4IDQuMTc1MjcgNTEuODg5NSA0LjY0NTE1IDUzLjgwNTQgMi45Njg2MUM1Ni4xMjg4IDAuOTM1MzcxIDU5Ljc4MTMgMi4xMjIxNCA2MC40NjU4IDUuMTMyNzJDNjEuMDMwMyA3LjYxNTE3IDYzLjcwNjcgOC45Nzg4NCA2Ni4wNDY4IDcuOTc2MzdDNjguODg0OCA2Ljc2MDYyIDcxLjk5MTggOS4wMTc5OSA3MS43MTI1IDEyLjA5MjhDNzEuNDgyMyAxNC42MjgxIDczLjYwNjIgMTYuNzUyMSA3Ni4xNDE2IDE2LjUyMThDNzkuMjE2NCAxNi4yNDI2IDgxLjQ3MzggMTkuMzQ5NiA4MC4yNTggMjIuMTg3NkM3OS4yNTU1IDI0LjUyNzcgODAuNjE5MiAyNy4yMDQxIDgzLjEwMTYgMjcuNzY4NUM4Ni4xMTIyIDI4LjQ1MzEgODcuMjk5IDMyLjEwNTYgODUuMjY1OCAzNC40MjlDODMuNTg5MiAzNi4zNDQ4IDg0LjA1OTEgMzkuMzExNiA4Ni4yNDU2IDQwLjYxNTZDODguODk3MyA0Mi4xOTcgODguODk3MyA0Ni4wMzc0IDg2LjI0NTYgNDcuNjE4OEM4NC4wNTkxIDQ4LjkyMjggODMuNTg5MiA1MS44ODk1IDg1LjI2NTggNTMuODA1NEM4Ny4yOTkgNTYuMTI4OCA4Ni4xMTIyIDU5Ljc4MTMgODMuMTAxNiA2MC40NjU4QzgwLjYxOTIgNjEuMDMwMyA3OS4yNTU1IDYzLjcwNjcgODAuMjU4IDY2LjA0NjhDODEuNDczOCA2OC44ODQ4IDc5LjIxNjQgNzEuOTkxOCA3Ni4xNDE2IDcxLjcxMjVDNzMuNjA2MiA3MS40ODIzIDcxLjQ4MjMgNzMuNjA2MiA3MS43MTI1IDc2LjE0MTZDNzEuOTkxOCA3OS4yMTY0IDY4Ljg4NDggODEuNDczOCA2Ni4wNDY4IDgwLjI1OEM2My43MDY3IDc5LjI1NTUgNjEuMDMwMyA4MC42MTkyIDYwLjQ2NTggODMuMTAxNkM1OS43ODEzIDg2LjExMjIgNTYuMTI4OCA4Ny4yOTkgNTMuODA1NCA4NS4yNjU4QzUxLjg4OTUgODMuNTg5MiA0OC45MjI4IDg0LjA1OTEgNDcuNjE4OCA4Ni4yNDU2QzQ2LjAzNzQgODguODk3MyA0Mi4xOTcgODguODk3MyA0MC42MTU2IDg2LjI0NTZDMzkuMzExNiA4NC4wNTkxIDM2LjM0NDggODMuNTg5MiAzNC40MjkgODUuMjY1OEMzMi4xMDU2IDg3LjI5OSAyOC40NTMxIDg2LjExMjIgMjcuNzY4NSA4My4xMDE2QzI3LjIwNDEgODAuNjE5MiAyNC41Mjc3IDc5LjI1NTUgMjIuMTg3NiA4MC4yNThDMTkuMzQ5NiA4MS40NzM4IDE2LjI0MjYgNzkuMjE2NCAxNi41MjE4IDc2LjE0MTZDMTYuNzUyMSA3My42MDYyIDE0LjYyODEgNzEuNDgyMyAxMi4wOTI4IDcxLjcxMjVDOS4wMTc5OSA3MS45OTE4IDYuNzYwNjIgNjguODg0OCA3Ljk3NjM3IDY2LjA0NjhDOC45Nzg4NCA2My43MDY3IDcuNjE1MTcgNjEuMDMwMyA1LjEzMjcyIDYwLjQ2NThDMi4xMjIxNCA1OS43ODEzIDAuOTM1MzcxIDU2LjEyODggMi45Njg2MSA1My44MDU0QzQuNjQ1MTUgNTEuODg5NSA0LjE3NTI3IDQ4LjkyMjggMS45ODg3NSA0Ny42MTg4Qy0wLjY2Mjk0MiA0Ni4wMzc0IC0wLjY2Mjk0MiA0Mi4xOTcgMS45ODg3NSA0MC42MTU2QzQuMTc1MjcgMzkuMzExNiA0LjY0NTE1IDM2LjM0NDggMi45Njg2MSAzNC40MjlDMC45MzUzNzEgMzIuMTA1NiAyLjEyMjE0IDI4LjQ1MzEgNS4xMzI3MiAyNy43Njg1QzcuNjE1MTcgMjcuMjA0MSA4Ljk3ODg0IDI0LjUyNzcgNy45NzYzNyAyMi4xODc2QzYuNzYwNjIgMTkuMzQ5NiA5LjAxNzk5IDE2LjI0MjYgMTIuMDkyOCAxNi41MjE4QzE0LjYyODEgMTYuNzUyMSAxNi43NTIxIDE0LjYyODEgMTYuNTIxOCAxMi4wOTI4QzE2LjI0MjYgOS4wMTc5OSAxOS4zNDk2IDYuNzYwNjIgMjIuMTg3NiA3Ljk3NjM3QzI0LjUyNzcgOC45Nzg4NCAyNy4yMDQxIDcuNjE1MTcgMjcuNzY4NSA1LjEzMjcyQzI4LjQ1MzEgMi4xMjIxNCAzMi4xMDU2IDAuOTM1MzcxIDM0LjQyOSAyLjk2ODYxQzM2LjM0NDggNC42NDUxNSAzOS4zMTE2IDQuMTc1MjcgNDAuNjE1NiAxLjk4ODc1WiIgZmlsbD0iIzkyMjc4RiIvPgo8L3N2Zz4K");
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    object-fit: cover;
    color: var(--vs-white-color);
    font-size: 40px;
}

.vs-testimonial--area .vs-testimonial__txt {
    text-transform: capitalize;
}

.vs-testimonial--area .vs-testimonial__txt p {
    font-size: 18px;
    color: var(--vs-title-color);
    margin: 0px auto 30px;
    letter-spacing: 0.4px;
    line-height: 30px;
    max-width: 92%;
}

.vs-testimonial--area .vs-testimonial__txt h4 {
    text-transform: capitalize;
    color: var(--vs-title-color);
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    line-height: 1.1;
}

.vs-testimonial--area .vs-testimonial__txt span {
    font-weight: 600;
    letter-spacing: 0.4px;
}

.vs-offer__special-offer {
    border-top: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
    padding-top: 45px;
    margin-top: 25px;
}

.vs-offer--content {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
    margin-bottom: 20px;
}

.vs-offer--content .vs-offer__txt {
    padding-left: 20px;
}

.vs-offer--content .vs-offer__txt p {
    text-transform: capitalize;
    font-weight: 600;
    margin: 0px;
}

.vs-offer--content .vs-offer__txt h6 {
    font-size: 20px;
    line-height: 1.5;
}

.vs-offer--content .vs-offer__rating {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0px;
    margin: 8px 0px;
    font-size: 14px;
    color: var(--vs-theme-color2);
}

.vs-offer .vs-title__main {
    margin-bottom: 0px;
}

@media (max-width: 575px) {
    .vs-offer .vs-title__main {
        margin-bottom: 10px;
    }
}

.col-lg-12:nth-child(n+2) .vs-offer--content {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.vs-blog--slide {
}

.vs-blog--slide .custom-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.vs-blog--slide .custom-pagination .pag {
    width: 24px;
    height: 10px;
    border-radius: 10px;
    background: rgba(var(--vs-title-color-rgb), 0.2);
    transition: 0.3s;
    cursor: pointer;
}

.vs-blog--slide .custom-pagination .pag.active {
    width: 40px;
    background: var(--vs-theme-color2);
    cursor: pointer;
}

.vs-blog--home-9 .vs-blog__inner {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid rgba(var(--vs-title-color-rgb), 0.4);
    border-radius: 25px;
    padding: 15px;
}

@media (max-width: 575px) {
    .vs-blog--home-9 .vs-blog__inner {
        display: block;
    }
}

.vs-blog--home-9 .vs-blog__content {
    padding: 0px 0px 0px 25px;
    max-width: 330px;
}

@media (max-width: 1199px) {
    .vs-blog--home-9 .vs-blog__content {
        padding: 0px 0px 0px 20px;
    }
}

.vs-blog--home-9 .vs-blog__share > ul > li {
}

@media (max-width: 1199px) {
    .vs-blog--home-9 .vs-blog__share > ul > li {
        padding: 0px;
    }
}

.vs-blog--home-9 .vs-blog__share > ul > li {
}

@media (max-width: 991px) {
    .vs-blog--home-9 .vs-blog__share > ul > li {
        padding: 8px 0px;
    }
}

.vs-blog--home-9 .vs-blog__heading {
}

@media (max-width: 1199px) {
    .vs-blog--home-9 .vs-blog__heading {
        margin-bottom: 5px;
    }
}

.vs-blog--home-9 .vs-blog__heading {
}

@media (max-width: 991px) {
    .vs-blog--home-9 .vs-blog__heading {
        margin-bottom: 10px;
        font-size: 30px;
    }
}

.vs-blog--home-9 .vs-blog__img img {
}

@media (max-width: 1199px) {
    .vs-blog--home-9 .vs-blog__img img {
        width: 370px;
    }
}

.vs-blog--home-9 .vs-blog__img img {
}

@media (max-width: 991px) {
    .vs-blog--home-9 .vs-blog__img img {
        width: 100%;
        margin-bottom: 20px;
    }
}

.vs-blog--home-9 .vs-blog__meta {
}

@media (max-width: 1199px) {
    .vs-blog--home-9 .vs-blog__meta {
        margin-bottom: 5px;
    }
}

.vs-blog--home-9 .vs-blog__meta {
}

@media (max-width: 991px) {
    .vs-blog--home-9 .vs-blog__meta {
        margin-bottom: 10px;
    }
}

.vs-blog--home-9::before {
    & :root {
        --vs-theme-color1: #70167e;
        --vs-theme-color1-rgb: 112, 22, 126;
        --vs-theme-color2: #D18109;
        --vs-theme-color2-rgb: 209, 129, 9;
        --vs-theme-color3: #a60c56;
        --vs-theme-color4: #4f830e;
        --vs-theme-color5: #f8931f;
        --vs-theme-color6: #F6F1E4;
        --vs-theme-color7: #FFEFE4;
        --vs-theme-color8: #FFEFE4;
        --vs-title-color: #25283e;
        --vs-title-color-rgb: 37, 40, 62;
        --vs-text-color: #e1e1e1;
        --vs-body-color: #5b5a7b;
        --vs-body-color-rgb: 91, 90, 123;
        --vs-smoke-color: #eff1f5;
        --vs-black-color: #000000;
        --vs-white-color: #ffffff;
        --vs-white-color-rgb: 255, 255, 255;
        --vs-yellow-color: #fec624;
        --vs-success-color: #28a745;
        --vs-error-color: #dc3545;
        --vs-border-color: #e0e0e0;
        --vs-title-font: "Nunito", sans-serif;
        --vs-body-font: "Roboto", sans-sreif;
        --vs-special-font: "Bubblegum Sans", sans-serif;
        --vs-icon-font: "Font Awesome 6 Pro";
        --vs-main-container: 1220px;
        --vs-container-gutters: 30px;
        --vs-section-space: 120px;
        --vs-section-space-mobile: 80px;
        --vs-section-title-space: 80px;
        --ripple-ani-duration: 5s;
    }

    & html, & body {
        scroll-behavior: auto !important;
    }

    & body {
        font-size: 16px;
        font-weight: 400;
        color: var(--vs-body-color);
        line-height: 1.4;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    @media (max-width: 767px) {
        & body {
            font-size: 14px;
            line-height: 24px;
        }
    }

    & .bubblegum-sans-regular {
        font-family: "Bubblegum Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    & iframe {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        width: 100%;
    }

    & .slick-slide:focus, & button: focus, & a:focus, & a:active, & input, & input:hover, & input:focus, & input:active, & textarea, & textarea:hover, & textarea:focus, & textarea:active {
        outline: none;
    }

    & input: focus {
        outline: none;
        box-shadow: none;
    }

    & img: not([draggable]), & embed, & object, & video {
        max-width: 100%;
    }

    & ul {
        list-style-type: disc;
        line-height: 28px;
        margin-left: 20px;
    }

    & ol {
        list-style-type: decimal;
    }

    & table {
        margin: 0px 0px 1.5em;
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0px;
        border: 1px solid var(--vs-border-color);
    }

    & th {
        font-weight: 700;
        font-family: var(--vs-title-font);
        color: var(--vs-title-color);
    }

    & td, & th {
        border: 1px solid var(--vs-border-color);
        padding: 9px 12px;
    }

    & a {
        color: var(--vs-theme-color1);
        text-decoration: none;
        outline: 0px;
        transition: 0.4s;
    }

    & a: hover {
        color: var(--vs-title-color);
    }

    & a: active, & a:focus, & a:hover, & a:visited {
        text-decoration: none;
        outline: 0px;
    }

    & button {
        transition: 0.4s;
    }

    & img {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        max-width: 100%;
    }

    & ins {
        text-decoration: none;
    }

    & pre {
        background: rgb(245, 245, 245);
        color: rgb(102, 102, 102);
        font-size: 14px;
        margin: 20px 0px;
        overflow: auto;
        padding: 20px;
        white-space: pre-wrap;
        overflow-wrap: break-word;
    }

    & span.ajax-loader: empty, & p:empty {
        display: none;
    }

    & p {
        color: var(--vs-body-color);
        line-height: 1.64;
    }

    @media (max-width: 767px) {
        & p {
            line-height: 1.73;
        }
    }

    & h1 a, & h2 a, & h3 a, & h4 a, & h5 a, & h6 a, & p a, & span a {
        font-size: inherit;
        font-family: inherit;
        font-weight: inherit;
        line-height: inherit;
    }

    & .h1, & h1, & .h2, & h2, & .h3, & h3, & .h4, & h4, & .h5, & h5, & .h6, & h6 {
        font-family: var(--vs-title-font);
        color: var(--vs-title-color);
        text-transform: none;
        font-weight: 900;
        line-height: 1.4;
    }

    & h1, & .h1 {
        font-size: clamp(2.5rem, 1rem + 5vw, 5rem);
        line-height: 1.2;
    }

    & h2, & .h2 {
        font-size: clamp(2rem, 0.5rem + 4vw, 4.5rem);
        line-height: 1.25;
    }

    & h3, & .h3 {
        font-size: clamp(1.8rem, 0.5rem + 3vw, 3.6rem);
        line-height: 1.3;
    }

    & h4, & .h4 {
        font-size: clamp(1.75rem, 0.5rem + 3vw, 3rem);
        line-height: 1.4;
    }

    & h5, & .h5 {
        font-size: clamp(1.3rem, 0.3rem + 2vw, 2.3rem);
        line-height: 1.5;
    }

    & h6, & .h6 {
        font-size: clamp(1.125rem, 0.25rem + 1.5vw, 1.843rem);
        line-height: 1.6;
    }

    & p.has-drop-cap {
        margin-bottom: 20px;
    }

    & .page--item p: last-child .alignright {
        clear: right;
    }

    & .blog-title, & .pagi-title, & .breadcumb-title {
        word-break: break-word;
    }

    & .blocks-gallery-caption, & .wp-block-embed figcaption, & .wp-block-image figcaption {
        color: var(--vs-body-color);
    }

    & .bypostauthor, & .gallery-caption {
        display: block;
    }

    & .page-links, & .clearfix {
        clear: both;
    }

    & .page--item {
        margin-bottom: 30px;
    }

    & .page--item p {
        line-height: 1.8;
    }

    & .content-none-search {
        margin-top: 30px;
    }

    & .wp-block-button.aligncenter {
        text-align: center;
    }

    & .alignleft {
        display: inline;
        float: left;
        margin-bottom: 10px;
        margin-right: 1.5em;
    }

    & .alignright {
        display: inline;
        float: right;
        margin-bottom: 10px;
        margin-left: 1.5em;
        margin-right: 1em;
    }

    & .aligncenter {
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    & .gallery {
        margin-bottom: 1.5em;
        width: 100%;
    }

    & .gallery-item {
        display: inline-block;
        text-align: center;
        vertical-align: top;
        width: 100%;
        padding: 0px 5px;
    }

    & .wp-block-columns {
        margin-bottom: 1em;
    }

    & figure.gallery-item {
        margin-bottom: 10px;
        display: inline-block;
    }

    & figure.wp-block-gallery {
        margin-bottom: 14px;
    }

    & .gallery-columns-2 .gallery-item {
        max-width: 50%;
    }

    & .gallery-columns-3 .gallery-item {
        max-width: 33.33%;
    }

    & .gallery-columns-4 .gallery-item {
        max-width: 25%;
    }

    & .gallery-columns-5 .gallery-item {
        max-width: 20%;
    }

    & .gallery-columns-6 .gallery-item {
        max-width: 16.66%;
    }

    & .gallery-columns-7 .gallery-item {
        max-width: 14.28%;
    }

    & .gallery-columns-8 .gallery-item {
        max-width: 12.5%;
    }

    & .gallery-columns-9 .gallery-item {
        max-width: 11.11%;
    }

    & .gallery-caption {
        display: block;
        font-size: 12px;
        color: var(--vs-body-color);
        line-height: 1.5;
        padding: 0.5em 0px;
    }

    & .wp-block-cover p: not(.has-text-color), & .wp-block-cover-image-text, & .wp-block-cover-text {
        color: var(--vs-white-color);
    }

    & .wp-block-cover {
        margin-bottom: 15px;
    }

    & .wp-caption-text {
        text-align: center;
    }

    & .wp-caption {
        margin-bottom: 1.5em;
        max-width: 100%;
    }

    & .wp-caption .wp-caption-text {
        margin: 0.5em 0px;
        font-size: 14px;
    }

    & .wp-block-media-text, & .wp-block-media-text.alignwide, & figure.wp-block-gallery {
        margin-bottom: 30px;
    }

    & .wp-block-media-text.alignwide {
        background-color: var(--vs-smoke-color);
    }

    & .editor-styles-wrapper .has-large-font-size, & .has-large-font-size {
        line-height: 1.4;
    }

    & .wp-block-latest-comments a {
        color: inherit;
    }

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

    & .wp-block-button:last-child {
        margin-bottom: 0px;
    }

    & .wp-block-button .wp-block-button__link {
        color: rgb(255, 255, 255);
    }

    & .wp-block-button .wp-block-button__link:hover {
        color: rgb(255, 255, 255);
        background-color: var(--vs-theme-color1);
    }

    & .wp-block-button.is-style-outline .wp-block-button__link {
        background-color: transparent;
        border-color: var(--vs-title-color);
        color: var(--vs-title-color);
    }

    & .wp-block-button.is-style-outline .wp-block-button__link:hover {
        color: rgb(255, 255, 255);
        background-color: var(--vs-theme-color1);
        border-color: var(--vs-theme-color1);
    }

    & .wp-block-button.is-style-squared .wp-block-button__link {
        border-radius: 0px;
    }

    & ol.wp-block-latest-comments li {
        margin: 15px 0px;
    }

    & ul.wp-block-latest-posts {
        padding: 0px;
        margin: 0px 0px 15px;
    }

    & ul.wp-block-latest-posts a {
        color: inherit;
    }

    & ul.wp-block-latest-posts a: hover {
        color: var(--vs-theme-color1);
    }

    & ul.wp-block-latest-posts li {
        margin: 15px 0px;
    }

    & .wp-block-search {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    & .wp-block-search .wp-block-search__input {
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.1);
        height: 65px;
        padding-left: 24px;
        flex: 1 1 0%;
        min-width: 0px;
        border-radius: 12px 0px 0px 12px;
        font-size: 16px;
        font-weight: 600;
        font-family: var(--vs-body-font), serif;
        color: var(--vs-title-color);
    }

    & .wp-block-search .wp-block-search__input::placeholder {
        color: var(--vs-title-color);
    }

    & .wp-block-search .wp-block-search__button {
        margin: 0px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        height: 65px;
        width: 59px;
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        border-radius: 0px 12px 12px 0px;
    }

    & .wp-block-search .wp-block-search__button:hover {
        background-color: var(--vs-theme-color1);
        opacity: 0.8;
    }

    & ul.wp-block-rss a {
        color: inherit;
    }

    & .wp-block-group.has-background {
        padding: 15px 15px 1px;
        margin-bottom: 30px;
    }

    & .wp-block-table td, & .wp-block-table th {
        border-color: rgba(0, 0, 0, 0.1);
    }

    & .wp-block-table.is-style-stripes {
        border: 1px solid rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    & .logged-in .will-sticky .sticky-active.active, & .logged-in .preloader .vs-btn {
        top: 32px;
    }

    @media (max-width: 782px) {
        & .logged-in .will-sticky .sticky-active.active, & .logged-in .preloader .vs-btn {
            top: 46px;
        }
    }

    @media (max-width: 600px) {
        & .logged-in .will-sticky .sticky-active.active, & .logged-in .preloader .vs-btn {
            top: 0px;
        }
    }

    & .post-password-form .theme-input-group {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    & .post-password-form .theme-input-group .theme-input-style {
        width: 100%;
        max-width: calc(100% - 120px);
        border: 1px solid rgba(0, 0, 0, 0.1);
        height: 50px;
        padding-left: 20px;
    }

    & .post-password-form .theme-input-group .submit-btn {
        margin: 0px;
        width: 120px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        height: 50px;
        color: rgb(255, 255, 255);
        background-color: var(--vs-theme-color1);
    }

    & .post-password-form .theme-input-group .submit-btn:hover {
        background-color: var(--vs-title-color);
        opacity: 0.8;
    }

    & .page-links {
        clear: both;
        margin: 0px 0px 1.5em;
        padding-top: 1em;
    }

    & .page-links > .page-links-title {
        margin-right: 10px;
    }

    & .page-links > span: not(.page-links-title):not(.screen-reader-text), & .page-links > a {
        display: inline-block;
        padding: 5px 13px;
        background-color: var(--vs-white-color);
        color: var(--vs-title-color);
        border: 1px solid rgba(0, 0, 0, 0.08);
        margin-right: 10px;
    }

    & .page-links > span: not(.page-links-title):not(.screen-reader-text):hover, & .page-links > a:hover {
        opacity: 0.8;
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color1);
        border-color: transparent;
    }

    & .page-links > span: not(.page-links-title):not(.screen-reader-text).current, & .page-links > a.current {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        border-color: transparent;
    }

    & .page-links span.screen-reader-text {
        display: none;
    }

    & .blog-single .wp-block-archives-dropdown {
        margin-bottom: 30px;
    }

    & .blog-single.format-quote, & .blog-single.format-link, & .blog-single.tag-sticky-2, & .blog-single.sticky {
        border-color: transparent;
        position: relative;
    }

    & .blog-single.format-quote .blog-content, & .blog-single.format-link .blog-content, & .blog-single.tag-sticky-2 .blog-content, & .blog-single.sticky .blog-content {
        background-color: var(--vs-smoke-color);
        padding: 40px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    & .blog-single.format-quote .blog-content::before, & .blog-single.format-link .blog-content::before, & .blog-single.tag-sticky-2 .blog-content::before, & .blog-single.sticky .blog-content::before {
        display: none;
    }

    & .blog-single.format-quote::before, & .blog-single.format-link::before, & .blog-single.tag-sticky-2::before, & .blog-single.sticky::before {
        content: "";
        position: absolute;
        font-family: "Font Awesome 5 Pro";
        font-size: 5rem;
        opacity: 0.3;
        right: 15px;
        line-height: 1;
        top: 15px;
        color: var(--vs-theme-color1);
        z-index: 1;
    }

    & .blog-single.tag-sticky-2::before, & .blog-single.sticky::before {
        content: "Featured";
        right: 0px;
        top: 0px;
        font-size: 18px;
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color1);
        font-family: var(--vs-title-font);
        opacity: 1;
        text-transform: capitalize;
        padding: 10px 23px;
        font-weight: 400;
    }

    & .blog-single.format-quote::before {
        content: "";
    }

    & .blog-single .blog-content .wp-block-categories-dropdown.wp-block-categories, & .blog-single .blog-content .wp-block-archives-dropdown {
        display: block;
        margin-bottom: 30px;
    }

    & .blog-details .blog-single::before {
        display: none;
    }

    & .blog-details .blog-single .blog-content {
        background-color: transparent;
        overflow: hidden;
    }

    & .blog-details .blog-single.format-chat .blog-meta {
        margin-bottom: 20px;
    }

    & .blog-details .blog-single.format-chat .blog-content > p: nth-child(2n) {
        background: var(--vs-smoke-color);
        padding: 5px 20px;
    }

    & .blog-details .blog-single.tag-sticky-2, & .blog-details .blog-single.sticky, & .blog-details .blog-single.format-quote, & .blog-details .blog-single.format-link {
        box-shadow: none;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        background-color: transparent;
    }

    & .blog-details .blog-single.tag-sticky-2::before, & .blog-details .blog-single.sticky::before, & .blog-details .blog-single.format-quote::before, & .blog-details .blog-single.format-link::before {
        display: none;
    }

    & .vs-search {
        background-color: rgb(243, 243, 243);
        margin-bottom: 30px;
        border: 1px solid rgb(243, 243, 243);
    }

    & .vs-search .search-grid-content {
        padding: 30px;
    }

    @media (max-width: 767px) {
        & .vs-search .search-grid-content {
            padding: 20px;
        }
    }

    & .vs-search .search-grid-title {
        font-size: 20px;
        margin-bottom: 5px;
        margin-top: -0.2em;
    }

    & .vs-search .search-grid-title a {
        color: inherit;
    }

    & .vs-search .search-grid-title a: hover {
        color: var(--vs-theme-color1);
    }

    & .vs-search .search-grid-meta > * {
        display: inline-block;
        margin-right: 15px;
        font-size: 14px;
    }

    & .vs-search .search-grid-meta > :last-child {
        margin-right: 0px;
    }

    & .vs-search .search-grid-meta a, & .vs-search .search-grid-meta span {
        color: var(--vs-body-color);
    }

    @media (max-width: 1199px) {
        & .blog-single.format-quote::before, & .blog-single.format-link::before, & .blog-single.tag-sticky-2::before, & .blog-single.sticky::before {
            font-size: 14px;
            padding: 8px 16px;
        }

        & .blog-single.format-quote .blog-content, & .blog-single.format-link .blog-content, & .blog-single.tag-sticky-2 .blog-content, & .blog-single.sticky .blog-content {
            padding: 30px;
        }
    }

    @media (max-width: 767px) {
        & .blog-single.format-quote::before, & .blog-single.format-link::before, & .blog-single.tag-sticky-2::before, & .blog-single.sticky::before {
            font-size: 14px;
            padding: 8px 16px;
        }

        & .blog-single.format-quote .blog-content, & .blog-single.format-link .blog-content, & .blog-single.tag-sticky-2 .blog-content, & .blog-single.sticky .blog-content {
            padding: 30px 15px;
        }
    }

    @media (max-width: 768px) {
        & .wp-block-search .wp-block-search__input {
            max-width: 100%;
            margin-bottom: 0px;
        }

        & .wp-block-latest-comments {
            padding-left: 10px;
        }

        & .page--content.clearfix + .vs-comment-form {
            margin-top: 24px;
        }
    }

    @media only screen and (min-width: 1300px) {
        & .container-xxl, & .container-xl, & .container-lg, & .container-md, & .container-sm, & .container {
            max-width: calc(var(--vs-main-container) + var(--vs-container-gutters));
            padding-left: calc(var(--vs-container-gutters) / 2);
            padding-right: calc(var(--vs-container-gutters) / 2);
        }
    }

    @media only screen and (max-width: 1600px) {
        & .container-fluid.px-0 {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

        & .container-fluid.px-0 .row {
            margin-left: 0px !important;
            margin-right: 0px !important;
        }
    }

    @media (min-width: 1399px) {
        & .container-style2 {
            max-width: 1920px;
            overflow: hidden;
            padding-left: 0px;
            padding-right: 0px;
        }
    }

    & .container-style3 {
        --vs-main-container: 1445px;
    }

    @media (min-width: 1500px) and (max-width: 1921px) {
        & .container-style1 {
            max-width: 1576px;
            overflow: hidden;
            margin-right: 0px;
            padding-right: 0px;
        }
    }

    & .container--custom {
        --vs-main-container: 1450px;
    }

    & .slick-track > [class*="col"] {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) / 2);
        padding-left: calc(var(--bs-gutter-x) / 2);
        margin-top: var(--bs-gutter-y);
    }

    @media (min-width: 767px) {
        & .row:not([class*="gx-"]) {
            --bs-gutter-x: 30px;
        }
    }

    & .gy-gx {
        --bs-gutter-y: var(--bs-gutter-x);
    }

    & .gy-30 {
        --bs-gutter-y: 30px;
    }

    & .gy-20 {
        --bs-gutter-y: 20px;
    }

    & .gx-15 {
        --bs-gutter-x: 15px;
    }

    @media (min-width: 1199px) {
        & .gx-45 {
            --bs-gutter-x: 45px;
        }

        & .gx-60 {
            --bs-gutter-x: 60px;
        }

        & .gx-50 {
            --bs-gutter-x: 50px;
        }

        & .gx-70 {
            --bs-gutter-x: 70px;
        }

        & .gx-80 {
            --bs-gutter-x: 80px;
        }
    }

    @media (min-width: 1399px) {
        & .gx-20 {
            --bs-gutter-x: 20px;
        }

        & .gx-30 {
            --bs-gutter-x: 30px;
        }

        & .gx-40 {
            --bs-gutter-x: 40px;
        }
    }

    & input[type="email"] {
        text-transform: lowercase;
    }

    & input[type="email"]: :placeholder {
        text-transform: capitalize;
    }

    & .slick-track > [class*="col"] {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) / 2);
        padding-left: calc(var(--bs-gutter-x) / 2);
        margin-top: var(--bs-gutter-y);
    }

    & .slick-track {
        min-width: 100%;
    }

    & .slick-slide img {
        display: inline-block;
    }

    & .slick-dots {
        list-style-type: none;
        padding: 2px 0px;
        margin: 38px 0px;
        line-height: 0;
        text-align: center;
        height: max-content;
    }

    & .slick-dots li {
        display: inline-block;
        margin-right: 25px;
    }

    & .slick-dots li: last-child {
        margin-right: 0px;
    }

    & .slick-dots button {
        font-size: 0px;
        padding: 0px;
        width: 8px;
        height: 8px;
        line-height: 0;
        border-radius: 9999px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        background-color: var(--dots-bg, #d8d8d8);
        transition: 0.4s;
        position: relative;
    }

    & .slick-dots button: hover {
        border-color: var(--vs-theme-color1);
    }

    & .slick-dots button: :before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 30px;
        height: 30px;
        margin: -15px 0px 0px -15px;
        border: 2px solid var(--vs-theme-color1);
        border-radius: 50%;
        transition: 0.4s;
        opacity: 0;
        visibility: hidden;
    }

    & .slick-dots .slick-active button {
        background-color: var(--vs-theme-color1);
    }

    & .slick-dots .slick-active button: :before {
        opacity: 1;
        visibility: visible;
    }

    & .slick-arrow {
        display: inline-block;
        padding: 0px;
        background-color: var(--vs-white-color);
        position: absolute;
        top: 50%;
        border: 1px solid var(--vs-smoke-color);
        left: var(--pos-x, -100px);
        width: var(--icon-size, 50px);
        height: var(--icon-size, 50px);
        font-size: var(--vs-icon-font-size, 18px);
        margin-top: calc(var(--icon-size, 50px) / -2);
        z-index: 2;
        border-radius: 50%;
    }

    & .slick-arrow.default {
        position: relative;
        --pos-x: 0;
        margin-top: 0px;
    }

    & .slick-arrow.slick-next {
        right: var(--pos-x, -100px);
        left: auto;
    }

    & .slick-arrow:hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        border-color: transparent;
    }

    & .arrow-margin .slick-arrow {
        top: calc(50% - 30px);
    }

    & .arrow-wrap .slick-arrow {
        opacity: 0;
        visibility: hidden;
    }

    & .arrow-wrap:hover .slick-arrow {
        opacity: 1;
        visibility: visible;
    }

    & .dot-style2 .slick-dots {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    & .dot-style2 .slick-dots button {
        width: 10px;
        height: 10px;
        border-radius: 9999px;
        background-color: var(--vs-theme-color1);
    }

    & .dot-style2 .slick-dots button: :before {
        display: none;
    }

    & .dot-style2 .slick-dots button: hover {
        background-color: var(--vs-title-color);
    }

    & .dot-style2 .slick-dots li {
        margin: 0px 5px;
    }

    & .dot-style2 .slick-dots li.slick-active button {
        width: 40px;
    }

    @media (max-width: 1500px) {
        & .slick-arrow {
            --arrow-horizontal: -20px;
        }
    }

    @media (max-width: 1399px) {
        & .slick-arrow {
            --arrow-horizontal: 40px;
        }
    }

    @media (max-width: 991px) {
        & .slick-arrow {
            --icon-size: 40px;
            margin-right: 40px;
        }

        & .slick-arrow.slick-next {
            margin-right: 0px;
            margin-left: 40px;
        }

        & .slick-dots {
            margin: 8px 0px 38px;
        }
    }

    & .nav-prev-1, & .nav-next-2 {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        width: auto;
    }

    & .nav-prev-1::after, & .nav-next-2::after {
        display: none;
    }

    & .nav-prev-1, & .nav-next-2 {
    }

    @media (max-width: 767px) {
        & .nav-prev-1, & .nav-next-2 {
            display: none;
        }
    }

    & .nav-prev-1 svg, & .nav-prev-1 img, & .nav-next-2 svg, & .nav-next-2 img {
        transition: 0.3s ease-in-out;
        transform-origin: center center;
        transform: scale(1);
        color: var(--vs-title-color);
    }

    & .nav-prev-1:hover svg, & .nav-prev-1: hover img, & .nav-next-2:hover svg, & .nav-next-2:hover img {
        transform: scale(1.1);
        color: var(--vs-theme-color1);
        opacity: 1;
    }

    & .nav-prev-1 {
        left: -118px;
    }

    @media (max-width: 1500px) {
        & .nav-prev-1 {
            display: none;
        }
    }

    & .nav-next-2 {
        right: -118px;
    }

    @media (max-width: 1500px) {
        & .nav-next-2 {
            display: none;
        }
    }

    & .swiper-pagination {
        position: absolute;
        text-align: center;
        transition: opacity 300ms;
        transform: translate3d(0px, 0px, 0px);
        z-index: 10;
        bottom: 10px;
        left: 0px;
        width: 100%;
    }

    & .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
        background: rgb(0, 0, 0);
        opacity: 0.3;
        margin: 0px 4px;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    & .swiper-pagination-bullet-active {
        opacity: 1;
        background: var(--vs-theme-color2);
    }

    & .vs-swiper--navigation {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    & .vs-swiper--button {
        --circle-size: 55px;
        backdrop-filter: blur(2px);
        width: var(--circle-size);
        height: var(--circle-size);
        min-width: var(--circle-size);
        min-height: var(--circle-size);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--vs-title-color);
        position: relative;
        background: rgb(255, 255, 255);
        border-radius: 50%;
        transition: 0.4s ease-in-out;
    }

    & .vs-swiper--button::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        border: 3px dashed var(--vs-title-color);
        border-radius: 50%;
        transition: 0.4s ease-in-out;
    }

    & .vs-swiper--button:hover {
        background: var(--vs-theme-color2);
        color: var(--vs-white-color);
    }

    & .vs-swiper--button:hover::before {
        transform: rotate(360deg);
    }

    & .vs-carousel {
        display: flex;
        justify-content: center;
    }

    & .vs-carousel--class {
        padding-right: 7px;
        padding-left: 2px;
    }

    & .vs-menu-wrapper {
        position: fixed;
        top: 0px;
        left: 0px;
        bottom: 0px;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 999999;
        width: 100%;
        height: 100%;
        transition: 0.8s;
        opacity: 0;
        visibility: hidden;
    }

    & .vs-menu-wrapper .vs-header__right {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 20px;
        border-bottom: 1px solid rgb(253, 237, 241);
    }

    & .vs-menu-wrapper .mobile-logo {
        padding-bottom: 30px;
        padding-top: 40px;
        display: block;
        text-align: center;
        background-color: rgba(173, 136, 88, 0.1);
    }

    & .vs-menu-wrapper .mobile-logo svg {
        max-width: 185px;
    }

    & .vs-menu-wrapper .vs-menu-toggle {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        position: absolute;
        right: 10px;
        top: 10px;
        padding: 0px;
        width: 33px;
        height: 33px;
        line-height: 33px;
        font-size: 18px;
        z-index: 1;
        border-radius: 50%;
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
    }

    & .vs-menu-wrapper .vs-menu-toggle:hover {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
    }

    & .vs-menu-wrapper .vs-menu-area {
        width: 100%;
        max-width: 310px;
        background-color: rgb(255, 255, 255);
        border-right: 3px solid var(--vs-theme-color1);
        height: 100%;
        position: relative;
        left: -110%;
        opacity: 0;
        visibility: hidden;
        transition: 1s;
        z-index: 1;
    }

    & .vs-menu-wrapper.vs-body-visible {
        opacity: 1;
        visibility: visible;
    }

    & .vs-menu-wrapper.vs-body-visible .vs-menu-area {
        left: 0px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }

    & .vs-mobile-menu {
        overflow-y: scroll;
        max-height: calc(-70px + 100vh);
        padding-bottom: 0px;
        margin-top: 33px;
        text-align: left;
    }

    & .vs-mobile-menu .vs-svg-assets svg {
        display: none;
    }

    & .vs-mobile-menu .new-label {
        margin-left: 5px;
        text-transform: capitalize;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    & .vs-mobile-menu ul {
        margin: 0px;
        padding: 0px;
    }

    & .vs-mobile-menu ul li {
        border-bottom: 1px solid rgb(253, 237, 241);
        list-style-type: none;
    }

    & .vs-mobile-menu ul li li: first-child {
        border-top: 1px solid rgb(253, 237, 241);
    }

    & .vs-mobile-menu ul li a {
        display: block;
        position: relative;
        padding: 12px 0px;
        line-height: 1;
        font-size: 17px;
        text-transform: capitalize;
        color: var(--vs-title-color);
        font-weight: 600;
        transition: 0.3s ease-in-out;
    }

    & .vs-mobile-menu ul li a: :before {
        content: "";
        font-family: var(--vs-icon-font);
        position: relative;
        left: 0px;
        top: 0px;
        margin-right: 10px;
        display: inline-block;
        transition: 0.3s ease-in-out;
    }

    & .vs-mobile-menu ul li.vs-active > a {
        color: var(--vs-theme-color1);
    }

    & .vs-mobile-menu ul li.vs-active > a: :before {
        transform: rotate(90deg);
    }

    & .vs-mobile-menu ul li ul li {
        padding-left: 10px;
    }

    & .vs-mobile-menu ul li ul li: last-child {
        border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
    }

    & .vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand {
        position: absolute;
        right: 0px;
        top: 50%;
        font-weight: 400;
        font-size: 12px;
        width: 25px;
        height: 25px;
        line-height: 25px;
        margin-top: -12.5px;
        display: inline-block;
        text-align: center;
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        box-shadow: rgba(112, 22, 126, 0.5) 0px 0px 20px -8px;
        border-radius: 50%;
        transition: 0.3s ease-in-out;
    }

    & .vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand: :before {
        content: "";
        font-family: var(--vs-icon-font);
    }

    & .vs-mobile-menu ul .vs-item-has-children.vs-active > a {
        color: var(--vs-theme-color2);
    }

    & .vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand {
        background-color: var(--vs-theme-color2);
    }

    & .vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand: :before {
        content: "";
    }

    & .vs-mobile-menu > ul {
        padding: 0px 20px;
    }

    & .vs-mobile-menu > ul > li: last-child {
        border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
    }

    & .vs-menu-toggle {
        width: 50px;
        height: 50px;
        padding: 0px;
        font-size: 24px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        display: inline-block;
        background-color: rgb(242, 246, 255);
        color: var(--vs-theme-color1);
        border-radius: 5px;
    }

    & .vs-menu-toggle.style2 {
        background-color: var(--vs-theme-color1);
        border-radius: 50%;
        color: var(--vs-white-color);
        width: 55px;
        height: 55px;
    }

    @media (max-width: 400px) {
        & .vs-menu-wrapper .vs-menu-area {
            width: 100%;
            max-width: 270px;
        }

        & .vs-mobile-menu > ul {
            padding: 0px 20px;
        }
    }

    & .email-subscription__form {
        display: flex;
        align-items: center;
        max-width: 500px;
        margin: 0px auto 30px;
        background-color: rgb(217, 217, 217);
        border-radius: 50px;
        padding: 8px 10px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px;
        overflow: hidden;
    }

    & .email-subscription__input {
        flex: 1 1 0%;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        padding: 14px 20px;
        border-radius: 50px;
        font-size: 16px;
        background-color: transparent;
        outline: none;
        color: rgb(51, 51, 51);
    }

    & .email-subscription__input::placeholder {
        color: rgb(153, 153, 153);
        font-size: 15px;
    }

    & .email-subscription__right {
        display: flex;
        align-items: center;
        margin-left: 8px;
    }

    & .email-subscription__btn {
        background-color: var(--vs-theme-color1);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        padding: 12px 16px;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .email-subscription__btn:hover {
        background-color: rgb(140, 198, 15);
        transform: scale(1.05);
    }

    & .email-subscription__btn svg {
        display: block;
        fill: rgb(255, 255, 255);
        transition: fill 0.3s;
    }

    @media (max-width: 576px) {
        & .email-subscription__form {
            flex-direction: column;
            border-radius: 20px;
            padding: 12px;
        }

        & .email-subscription__input {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 10px;
        }

        & .email-subscription__right {
            width: 100%;
            justify-content: center;
            margin-left: 0px;
        }

        & .email-subscription__btn {
            border-radius: 12px;
            width: 100%;
        }
    }

    & .preloader {
        position: fixed;
        inset: 0px;
        z-index: 999;
        background-color: var(--vs-white-color);
    }

    & .preloader .vs-btn {
        padding: 15px 20px;
        border-radius: 0px;
        font-size: 14px;
    }

    & .preloader-inner {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    & .preloader-inner img {
        display: block;
        margin: 0px auto 10px;
    }

    & .loader {
        animation: 1.5s ease 0s infinite normal none running loaderspin;
        height: 50px;
        width: 50px;
        display: block;
        margin: 0px auto;
    }

    & .loader::before, & .loader::after {
        border-radius: 50%;
        content: "";
        display: block;
        height: 20px;
        width: 20px;
    }

    & .loader::before {
        animation: 1.5s ease 0s infinite normal none running ball1;
        background-color: var(--vs-title-color);
        box-shadow: 30px 0 0 var(--vs-theme-color1);
        margin-bottom: 10px;
    }

    & .loader::after {
        animation: 1.5s ease 0s infinite normal none running ball2;
        background-color: var(--vs-theme-color1);
        box-shadow: 30px 0 0 var(--vs-title-color);
    }

    & .vs-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        text-transform: uppercase;
        text-align: center;
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
        font-family: var(--vs-title-font);
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        padding: 12.5px 24px;
        z-index: 1;
        overflow: hidden;
        letter-spacing: 0.5px;
        border-radius: 50px;
    }

    @media (max-width: 991px) {
        & .vs-btn {
            padding: 18px 20px;
        }
    }

    & .vs-btn__border {
        position: absolute;
        inset: 4px 5px;
        border-radius: inherit;
        background-color: transparent;
        border: 2px dashed var(--vs-white-color);
        z-index: 1;
        opacity: 0.4;
        transition: 0.4s;
    }

    & .vs-btn::after, & .vs-btn::before {
        width: 100%;
        height: 100%;
        content: "";
        margin: auto;
        position: absolute;
        top: 0%;
        left: 0%;
        background: var(--vs-theme-color1);
        transition: 0.5s;
        z-index: -1;
        border-radius: inherit;
    }

    & .vs-btn::before {
        transform: rotateX(90deg);
    }

    & .vs-btn::after {
        transform: rotateY(90deg);
    }

    & .vs-btn > i {
        margin-left: 8px;
    }

    & .vs-btn.style2 {
        background-color: var(--vs-white-color);
        color: var(--vs-theme-color1);
    }

    & .vs-btn.style4, & .vs-btn.style3 {
        background-color: var(--vs-theme-color2);
        color: var(--vs-theme-color1);
    }

    & .vs-btn.style3 {
        padding: 14px 23.5px;
    }

    & .vs-btn.style4 {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
    }

    & .vs-btn.style4::before, & .vs-btn.style4::after {
        background-color: var(--vs-theme-color2);
    }

    & .vs-btn:hover {
        color: var(--vs-white-color);
    }

    & .vs-btn:hover::before {
        transform: rotateX(0deg);
    }

    & .vs-btn:hover::after {
        transform: rotateY(0deg);
    }

    & .icon-btn {
        display: inline-block;
        width: var(--btn-size, 67px);
        height: var(--btn-size, 67px);
        line-height: var(--btn-size, 67px);
        font-size: var(--btn-font-size, 20px);
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        text-align: center;
        border-radius: 50%;
        padding: 0px;
    }

    & .icon-btn.style2 {
        border: 2px solid var(--vs-white-color);
        color: var(--vs-white-color);
        background-color: transparent;
    }

    & .icon-btn.style2:hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
    }

    & .icon-btn.style4, & .icon-btn.style3 {
        --btn-size: 55px;
        background-color: rgb(242, 246, 255);
        color: var(--vs-theme-color1);
        border-radius: 5px;
    }

    & .icon-btn.style4 {
        background-color: var(--vs-white-color);
    }

    & .icon-btn.style5 {
        background-color: var(--vs-white-color);
        color: var(--vs-title-color);
        box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 24px;
    }

    & .icon-btn.style5:hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        box-shadow: none;
    }

    & .icon-btn.style6 {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        --btn-size: 55px;
        --btn-font-size: 17px;
    }

    & .icon-btn:hover {
        background-color: var(--vs-title-color);
        color: var(--vs-white-color);
        border-color: transparent;
    }

    & .play-btn {
        --icon-size: 85px;
        display: inline-block;
        position: relative;
        z-index: 1;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        background-color: transparent;
        padding: 0px;
    }

    & .play-btn > i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: var(--icon-size, 124px);
        height: var(--icon-size, 124px);
        line-height: var(--icon-size, 124px);
        font-size: var(--vs-icon-font-size, 1.5em);
        text-align: center;
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
        border-radius: 50%;
        position: relative;
        z-index: 1;
        transition: 0.4s;
    }

    & .play-btn::after, & .play-btn::before {
        content: "";
        position: absolute;
        inset: 0px;
        background-color: var(--vs-theme-color2);
        z-index: -1;
        border-radius: 50%;
        transition: 0.4s;
    }

    & .play-btn::after {
        animation-delay: 2s;
    }

    & .play-btn:hover::after, & .play-btn:hover::before, & .play-btn:hover i {
        background-color: var(--vs-title-color);
        color: var(--vs-white-color);
    }

    & .link-btn {
        font-weight: 500;
        font-size: 16px;
        display: inline-block;
        line-height: 0.8;
        position: relative;
        padding-bottom: 2px;
        margin-bottom: -2px;
        text-transform: uppercase;
    }

    & .link-btn i {
        margin-left: 7px;
        font-size: 0.9rem;
    }

    & .link-btn::before {
        content: "";
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 0px;
        height: 1px;
        background-color: var(--vs-theme-color1);
        transition: 0.4s;
    }

    & .link-btn:hover {
        color: var(--vs-theme-color1);
    }

    & .link-btn:hover::before {
        width: 100%;
    }

    & .scroll-btn {
        position: fixed;
        bottom: 300px;
        right: 30px;
        z-index: 94;
        opacity: 0;
        visibility: hidden;
        display: inline-block;
        border-radius: 50%;
    }

    & .scroll-btn i {
        display: inline-block;
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        text-align: center;
        font-size: 16px;
        width: var(--btn-size, 50px);
        height: var(--btn-size, 50px);
        line-height: var(--btn-size, 50px);
        z-index: 2;
        border-radius: inherit;
        position: relative;
        transition: 0.8s;
    }

    & .scroll-btn::before {
        content: "";
        position: absolute;
        left: var(--extra-shape, -6px);
        top: var(--extra-shape, -6px);
        right: var(--extra-shape, -6px);
        bottom: var(--extra-shape, -6px);
        background-color: transparent;
        border-radius: inherit;
        z-index: 1;
        border: 2px dashed var(--vs-theme-color1);
        animation: 13s linear 0s infinite normal none running spin;
    }

    & .scroll-btn:focus i, & .scroll-btn: hover i {
        background-color: var(--vs-title-color);
        color: var(--vs-white-color);
    }

    & .scroll-btn.show {
        bottom: 120px;
        opacity: 1;
        visibility: visible;
    }

    & .scroll-btn {
    }

    @media (max-width: 767px) {
        & .scroll-btn {
            --btn-size: 40px;
            --extra-shape: -4px;
            right: 15px;
            bottom: 50px;
        }

        & .scroll-btn.show {
            bottom: 15px;
        }
    }

    & .scrollToTop {
        position: fixed;
        right: 60px;
        bottom: 500px;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        z-index: 96;
    }

    & .scrollToTop.show {
        bottom: 60px;
        opacity: 1;
        visibility: visible;
    }

    @media (max-width: 1199px) {
        & .play-btn.style4 {
            --icon-size: 80px;
            --vs-icon-font-size: 20px;
        }
    }

    @media (max-width: 767px) {
        & .play-btn {
            --icon-size: 60px;
        }

        & .scrollToTop {
            right: 20px;
        }

        & .scrollToTop.show {
            bottom: 20px;
        }
    }

    & .vs-title {
        margin-bottom: calc(var(--vs-section-title-space) - 45px);
    }

    & .vs-title__main {
        font-size: 2rem;
        line-height: 2.5rem;
        font-weight: 700;
        transform: translateZ(0px);
    }

    & .vs-title__main .char {
        display: inline-block;
        will-change: transform, opacity;
    }

    & .vs-title__main span {
        color: var(--vs-theme-color2);
    }

    & .vs-title__main2 span {
        display: block;
        color: var(--vs-white-color);
    }

    & .vs-title__sub {
        font-size: 20px;
        font-weight: 500;
        font-family: var(--vs-special-font);
        color: var(--vs-theme-color2);
        letter-spacing: 0.48px;
        line-height: 1;
        display: inline-block;
        margin: -4px 0px 13px;
    }

    & .vs-title--style2 .vs-title__sub, & .vs-title--style2 .vs-title__main {
        color: var(--vs-white-color);
    }

    & .vs-title--right-text {
        padding-left: 16px;
        position: relative;
        max-width: 80%;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 0px;
        margin-left: auto;
    }

    @media (max-width: 1199px) {
        & .vs-title--right-text {
            max-width: 100%;
        }
    }

    & .vs-title--right-text::before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0px;
        width: 2px;
        height: 60px;
        background-color: var(--vs-theme-color2);
        z-index: -1;
    }

    & .vs-middle-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 31px;
        margin-bottom: 40px;
    }

    & .vs-middle-title span {
        height: 1px;
        width: 100%;
        background-color: rgba(var(--vs-title-color-rgb), 0.3);
    }

    & .vs-middle-title__text {
        font-size: 22px;
        text-transform: uppercase;
        margin-bottom: 0px;
        flex: 0 0 auto;
    }

    & .section-heading--no1 {
        font-size: 24px;
    }

    & .image-scale-hover {
        overflow: hidden;
    }

    & .image-scale-hover img {
        transition: 0.4s;
        transform: scale(1.001);
    }

    & .image-scale-hover:hover img {
        transform: scale(1.2);
    }

    & .alert-dismissible .btn-close {
        font-size: 18px;
        line-height: 1;
    }

    & .z-index-step1 {
        position: relative;
        z-index: 4 !important;
    }

    & .z-index-common {
        position: relative;
        z-index: 3;
    }

    & .z-index-n1 {
        z-index: -1;
    }

    & .z-index-n2 {
        z-index: 2;
    }

    & .media-body {
        flex: 1 1 0%;
    }

    & .fs-40 {
        font-size: 40px;
    }

    & .badge {
        position: absolute;
        width: fit-content;
        display: inline-block;
        text-align: center;
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        padding: 0.35em 0.55em;
        border-radius: 50%;
    }

    & .hr-style1 {
        background-color: var(--vs-white-color);
        margin: 20px 0px 30px;
    }

    & .new-label {
        font-size: 12px;
        background-color: var(--vs-error-color);
        color: var(--vs-white-color);
        line-height: 1;
        padding: 1px 5px;
        border-radius: 4px;
        text-transform: capitalize;
        position: relative;
        top: -1px;
    }

    & .big-name {
        font-size: 450px;
        color: var(--vs-white-color);
        -webkit-text-stroke: 2px rgb(238, 240, 255);
        line-height: 1;
        letter-spacing: -0.08em;
        font-weight: 400;
        position: relative;
        z-index: 31;
        text-align: right;
        margin: -234px 30px -59px 0px;
    }

    & .vs-text-bolder {
        font-weight: 900;
        font-size: 18px;
        color: var(--vs-title-color);
        text-transform: capitalize;
    }

    & .vs-text {
        font-weight: 400;
        letter-spacing: 0.48px;
    }

    & .vs-list {
        list-style: none;
        padding-left: 0px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0px;
    }

    & .vs-list li {
        position: relative;
        text-transform: capitalize;
        font-family: var(--vs-title-font);
        padding-left: 39px;
        line-height: 28px;
    }

    & .vs-list li: :before {
        position: absolute;
        content: "";
        font-family: var(--vs-icon-font);
        left: 0px;
        color: var(--vs-theme-color2);
        font-size: 20px;
        top: 5px;
        line-height: 1;
    }

    & .vs-list.style2 li {
        font-weight: 500;
        font-size: 16px;
        color: rgb(37, 40, 62);
        padding-left: 30px;
        font-family: var(--vs-body-font);
    }

    & .vs-list.style2 li: :before {
        content: "";
        font-size: 18px;
        color: var(--vs-theme-color2);
        font-weight: 700;
    }

    & .vs-custom-checkbox {
        position: relative;
        display: flex;
        align-items: center;
        padding: 15px 0px 25px;
    }

    & .vs-custom-checkbox input[type="checkbox"] {
        display: none;
    }

    & .vs-custom-checkbox input[type="checkbox"]: checked + label::before {
        background-color: var(--vs-theme-color2);
        border-color: var(--vs-theme-color2);
        content: "Ã¢Å“â€";
        color: var(--vs-white-color);
        text-align: center;
        line-height: 24px;
        font-size: 16px;
    }

    & .vs-custom-checkbox label {
        position: relative;
        padding-left: 36px;
        cursor: pointer;
        user-select: none;
        font-size: 18px;
        font-weight: 800;
        font-family: var(--vs-title-font);
        color: var(--vs-white-color);
        text-transform: capitalize;
    }

    & .vs-custom-checkbox label: :before {
        content: "";
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        border: 2px solid rgba(var(--vs-white-color-rgb), 0.2);
        border-radius: 4px;
        background-color: transparent;
        transition: 0.4s;
    }

    & .column-count-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    @media (max-width: 991px) {
        & .column-count-2 {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    & .vs-image-effect {
        transform-style: preserve-3d;
    }

    & .vs-image-effect__image {
        backface-visibility: hidden;
        will-change: transform;
    }

    & .vs-image-effect__overlay {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        pointer-events: none;
        opacity: 0;
        transform: scale(1);
        border-radius: 16px;
        mix-blend-mode: screen;
        will-change: opacity, transform, filter, background-position;
        background: linear-gradient(120deg, rgba(209, 129, 9, 0.6) 0%, rgba(112, 22, 126, 0.6) 50%, rgba(209, 129, 9, 0.6) 90%) 0% 0% / 200% 200%;
        animation: 3s linear 0s infinite normal none running shimmer;
        filter: blur(3px);
    }

    & .font-icon {
        font-family: var(--vs-icon-font);
    }

    & .font-title {
        font-family: var(--vs-title-font);
    }

    & .font-body {
        font-family: var(--vs-body-font);
    }

    & .fw-light {
        font-weight: 300;
    }

    & .fw-normal {
        font-weight: 400;
    }

    & .fw-medium {
        font-weight: 500;
    }

    & .fw-semibold {
        font-weight: 600;
    }

    & .fw-bold {
        font-weight: 700;
    }

    & .fw-extrabold {
        font-weight: 800;
    }

    & .fs-md {
        font-size: 18px;
    }

    & .fs-xs {
        font-size: 14px;
    }

    & .bg-theme {
        background-color: var(--vs-theme-color1) !important;
    }

    & .bg-smoke {
        background-color: var(--vs-smoke-color) !important;
    }

    & .bg-white {
        background-color: var(--vs-white-color) !important;
    }

    & .bg-black {
        background-color: var(--vs-black-color) !important;
    }

    & .bg-title {
        background-color: var(--vs-title-color) !important;
    }

    & .bg-gray {
        background-color: rgb(229, 229, 229);
    }

    & .bg-title {
        background-color: var(--vs-title-color);
    }

    & .bg-theme-color-1 {
        background-color: var(--vs-theme-color1);
    }

    & .background-image, & [data-bg-src] {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    & .bg-fluid {
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center center;
    }

    & .bg-auto {
        background-size: auto;
    }

    & .bg-color1 {
        background-color: var(--vs-theme-color1);
    }

    & .bg-color2 {
        background-color: var(--vs-theme-color2);
    }

    & .bg-color3 {
        background-color: var(--vs-theme-color3);
    }

    & .bg-color4 {
        background-color: var(--vs-theme-color4);
    }

    & .bg-color5 {
        background-color: var(--vs-theme-color5);
    }

    & .bg-color6 {
        background-color: var(--vs-theme-color6);
    }

    & .text-theme {
        color: var(--vs-theme-color1) !important;
    }

    & .text-title {
        color: var(--vs-title-color) !important;
    }

    & .text-body {
        color: var(--vs-body-color) !important;
    }

    & .text-white {
        color: var(--vs-white-color) !important;
    }

    & .text-yellow {
        color: var(--vs-yellow-color) !important;
    }

    & .text-success {
        color: var(--vs-success-color) !important;
    }

    & .text-error {
        color: var(--vs-error-color) !important;
    }

    & .text-inherit, & .footer-info-list .info a {
        color: inherit;
    }

    & .text-inherit:hover, & .footer-info-list .info a: hover {
        color: var(--vs-theme-color1);
    }

    & a.text-theme: hover, & .text-reset:hover {
        text-decoration: underline;
    }

    & .vs-text-light {
        color: var(--vs-text-color);
    }

    & .text-theme-color1 {
        color: var(--vs-theme-color1);
    }

    & .text-theme-color2 {
        color: var(--vs-theme-color2);
    }

    & .text-theme-color3 {
        color: var(--vs-theme-color3);
    }

    & .text-theme-color4 {
        color: var(--vs-theme-color4);
    }

    & .text-theme-color5 {
        color: var(--vs-theme-color5);
    }

    & .overlay {
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
    }

    & .position-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    & [data-overlay] {
        position: relative;
    }

    & [data-overlay] [class^="col-"], & [data-overlay] [class*="col-"] {
        z-index: 1;
    }

    & [data-overlay]: :before {
        content: "";
        position: absolute;
        inset: 0px;
        z-index: 1;
    }

    & [data-overlay="theme"]: :before {
        background-color: var(--vs-theme-color1);
    }

    & [data-overlay="title"]: :before {
        background-color: var(--vs-title-color);
    }

    & [data-overlay="white"]: :before {
        background-color: var(--vs-white-color);
    }

    & [data-overlay="black"]: :before {
        background-color: var(--vs-black-color);
    }

    & [data-opacity="1"]: :before {
        opacity: 0.1;
    }

    & [data-opacity="2"]: :before {
        opacity: 0.2;
    }

    & [data-opacity="3"]: :before {
        opacity: 0.3;
    }

    & [data-opacity="4"]: :before {
        opacity: 0.4;
    }

    & [data-opacity="5"]: :before {
        opacity: 0.5;
    }

    & [data-opacity="6"]: :before {
        opacity: 0.6;
    }

    & [data-opacity="7"]: :before {
        opacity: 0.7;
    }

    & [data-opacity="8"]: :before {
        opacity: 0.8;
    }

    & [data-opacity="9"]: :before {
        opacity: 0.9;
    }

    & [data-opacity="10"]: :before {
        opacity: 1;
    }

    & .fadeInUp {
        animation-name: fadeInUp;
    }

    & .wow-animated {
        animation-duration: 1s;
        animation-fill-mode: both;
    }

    & .fadein {
        --animation-name: fadein-custom;
    }

    & .slideinup {
        --animation-name: slideinup;
    }

    & .slideindown {
        --animation-name: slideindown;
    }

    & .slideinleft {
        --animation-name: slideinleft;
    }

    & .slideinright {
        --animation-name: slideinright;
    }

    & .spin {
        --animation-name: spin;
    }

    & .animated {
        animation-fill-mode: both;
        animation-iteration-count: 1;
        animation-duration: 1s;
        animation-delay: 0.3s;
        animation-name: var(--animation-name);
    }

    & .ripple-animation, & .vs-videoh7__button2.play-btn::after, & .vs-videoh7__button2.play-btn::before, & .vs-video__button2.play-btn::after, & .vs-video__button2.play-btn::before, & .play-btn::after, & .play-btn::before {
        animation-duration: var(--ripple-ani-duration);
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-name: ripple;
    }

    & .vs-fade-animation {
        opacity: 0;
        transform: translateY(30px);
    }

    & .vs-x-anim {
        animation-name: vs-x-anim;
        animation-duration: 15s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

    & .sideMenuToggler {
        background-color: transparent;
        border: 0px;
        padding: 0px;
        color: var(--vs-title-color);
        margin-left: 10px;
    }

    & .sideMenuToggler:hover {
        color: var(--vs-theme-color2);
    }

    & .searchBoxTggler {
        --icon-size: 52px;
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        border-radius: 50%;
        position: relative;
        border: 0px;
        background-color: var(--vs-title-color);
        color: var(--vs-white-color);
    }

    & .searchBoxTggler:hover {
        background-color: var(--vs-theme-color1);
    }

    & .searchBoxTggler::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        border-radius: inherit;
        background-color: transparent;
        border: 3px dashed var(--vs-white-color);
        z-index: 1;
        opacity: 0.4;
        transition: 0.4s;
        width: 45px;
        height: 45px;
        transform: translate(-50%, -50%);
        transform-origin: center center;
    }

    & .social-style {
        color: var(--vs-white-color);
        display: inline-flex;
        align-items: center;
    }

    & .social-style__label {
        font-weight: 700;
        text-transform: capitalize;
        margin-right: 12px;
        font-family: var(--vs-title-font);
    }

    & .social-style a {
        --icon-size: 30px;
        background-color: rgba(255, 255, 255, 0.4);
        border: 2px dashed rgba(255, 255, 255, 0.4);
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--vs-white-color);
        font-size: 13px;
        margin-right: 7px;
        transition: 0.4s;
    }

    & .social-style a: last-child {
        margin-right: 0px;
    }

    & .social-style a: hover {
        background-color: var(--vs-theme-color2);
    }

    & .social-style--version2 a {
        --icon-size: 36px !important;
    }

    & .social-style.style2 {
        display: inline-block;
        padding-top: 15px;
    }

    & .social-style.style2 .social-style__label {
        color: var(--vs-title-color);
        text-transform: uppercase;
    }

    & .social-style.style2 a {
        background-color: transparent;
        border: 0px;
        color: var(--vs-body-color);
        min-width: auto;
        min-height: auto;
        font-size: 15px;
    }

    & .social-style.style2 a: hover {
        color: var(--vs-theme-color2);
    }

    & .will-sticky .sticky-active {
        position: fixed;
        top: -100%;
        right: 0px;
        left: 0px;
        background-color: var(--vs-white-color);
        transition: 0.8s;
        box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 10px 0px;
    }

    & .will-sticky .sticky-active.active {
        top: 0px;
    }

    & .back-to-top {
        --back-to-top-size: 57px;
        position: fixed;
        right: 6px;
        width: var(--back-to-top-size);
        height: var(--back-to-top-size);
        background: none;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        cursor: pointer;
        z-index: 1000;
        bottom: -50px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.4s;
    }

    & .back-to-top .progress-circle {
        display: inline-block;
        width: var(--back-to-top-size);
        height: var(--back-to-top-size);
        transform: rotate(-90deg);
        background: var(--vs-theme-color1);
        border-radius: 50%;
    }

    & .back-to-top .progress-circle svg {
        width: 100%;
        height: 100%;
    }

    & .back-to-top .progress-circle circle {
        fill: none;
        stroke-width: 3;
        stroke-linecap: round;
    }

    & .back-to-top .progress-circle .bg {
        stroke: rgba(255, 255, 36, 0.1);
        fill: var(--vs-theme-color1);
    }

    & .back-to-top .progress-circle .progress {
        stroke: var(--vs-theme-color2);
        stroke-dasharray: 251.2;
        stroke-dashoffset: 251.2;
        transition: stroke-dashoffset 0.2s linear;
    }

    & .back-to-top .progress-percentage {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
        color: var(--vs-white-color);
        pointer-events: none;
        font-size: 14px;
        font-weight: 900;
        font-family: var(--vs-title-font);
        padding: 5px;
        transition: color 0.2s linear;
    }

    & .back-to-top:hover .progress-percentage {
        color: var(--vs-theme-color2);
    }

    & .back-to-top.visible {
        opacity: 1;
        pointer-events: auto;
        bottom: 115px;
        visibility: visible;
        transition: 0.4s;
    }

    & .widget_nav_menu ul, & .widget_meta ul, & .widget_pages ul, & .widget_archive ul, & .widget_categories ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

    & .widget_nav_menu > ul, & .widget_meta > ul, & .widget_pages > ul, & .widget_archive > ul, & .widget_categories > ul {
        margin: 0px 0px -38px;
    }

    & .widget_nav_menu a, & .widget_meta a, & .widget_pages a, & .widget_archive a, & .widget_categories a {
        display: block;
        background-color: transparent;
        color: var(--vs-body-color);
        margin: 0px 0px 18px;
        padding: 0px 0px 17px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.15);
        text-transform: capitalize;
        letter-spacing: 0.48px;
    }

    & .widget_nav_menu a: :before, & .widget_meta a::before, & .widget_pages a::before, & .widget_archive a::before, & .widget_categories a::before {
        content: "";
        font-weight: 400;
        position: absolute;
        right: 0px;
        top: 0px;
        font-family: var(--vs-icon-font);
        color: var(--vs-body-color);
        font-size: 15px;
    }

    & .widget_nav_menu a: hover, & .widget_meta a:hover, & .widget_pages a:hover, & .widget_archive a:hover, & .widget_categories a:hover {
        color: var(--vs-theme-color2);
    }

    & .widget_nav_menu a: hover::before, & .widget_meta a:hover::before, & .widget_pages a:hover::before, & .widget_archive a:hover::before, & .widget_categories a:hover::before {
        color: var(--vs-theme-color2);
    }

    & .widget_nav_menu li, & .widget_meta li, & .widget_pages li, & .widget_archive li, & .widget_categories li {
        display: block;
        position: relative;
    }

    & .widget_nav_menu li: last-child a, & .widget_meta li:last-child a, & .widget_pages li:last-child a, & .widget_archive li:last-child a, & .widget_categories li:last-child a {
        border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
    }

    & .widget_nav_menu li > span, & .widget_meta li > span, & .widget_pages li > span, & .widget_archive li > span, & .widget_categories li > span {
        text-align: center;
        position: absolute;
        right: 0px;
        top: -4.5px;
        font-size: 16px;
        transition: 0.4s;
    }

    & .widget_nav_menu li: hover > span, & .widget_meta li:hover > span, & .widget_pages li:hover > span, & .widget_archive li:hover > span, & .widget_categories li:hover > span {
        color: var(--vs-theme-color1);
    }

    & .widget_nav_menu .children, & .widget_meta .children, & .widget_pages .children, & .widget_archive .children, & .widget_categories .children {
        margin-left: 10px;
    }

    & .widget_nav_menu a, & .widget_meta a, & .widget_pages a {
        padding-right: 20px;
    }

    & .widget_nav_menu .sub-menu {
        margin-left: 10px;
    }

    & .wp-block-archives {
        list-style: none;
        margin: 0px 0px 20px;
        padding: 0px;
    }

    & .wp-block-archives a: not(:hover) {
        color: inherit;
    }

    & .vs-blog ul.wp-block-archives li {
        margin: 5px 0px;
    }

    @media (max-width: 767px) {
        & .widget_nav_menu a, & .widget_meta a, & .widget_pages a, & .widget_archive a, & .widget_categories a {
            font-size: 14px;
        }
    }

    & .widget {
        padding: var(--widget-padding-y, 35px) var(--widget-padding-x, 27px);
        background-color: var(--vs-theme-color6);
        position: relative;
        margin-bottom: 30px;
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
        border-radius: 20px;
    }

    & .widget .wp-block-heading, & .widget h2, & .widget .wp-block-search__label {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 24px;
        font-weight: 900;
        font-family: var(--vs-title-font), serif;
        color: var(--vs-title-color);
        margin: -5px 0px 17px;
        text-transform: capitalize;
        line-height: 1.2;
    }

    & .widget .wp-block-heading img, & .widget h2 img, & .widget .wp-block-search__label img {
        margin-top: -0.3em;
    }

    & .wp-block-tag-cloud a, & .tagcloud a {
        display: inline-block;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        padding: 14px 23px;
        margin-right: 5px;
        margin-bottom: 10px;
        color: var(--vs-title-color);
        background-color: var(--vs-smoke-color);
        border-radius: 40px;
        text-transform: uppercase;
    }

    @media (max-width: 1199px) {
        & .wp-block-tag-cloud a, & .tagcloud a {
            padding: 10px 12px;
        }
    }

    & .wp-block-tag-cloud a: hover, & .tagcloud a:hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color) !important;
    }

    & .tagcloud {
        margin-right: -5px;
        margin-bottom: -10px;
    }

    & .tagcloud a {
        background-color: var(--vs-white-color);
        color: var(--vs-title-color);
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.15);
    }

    & .recent-post {
        display: flex;
        align-items: center;
        margin-bottom: 18px;
        padding-bottom: 18px;
        border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.15);
    }

    & .recent-post:last-child {
        margin-bottom: 0px;
        border-bottom: 0px;
        padding-bottom: 0px;
    }

    & .recent-post .media-img {
        margin-right: 18px;
        width: 90px;
        overflow: hidden;
        border-radius: 15px;
    }

    & .recent-post .media-img img {
        width: 100%;
        border-radius: 15px;
        transition: 0.4s;
    }

    & .recent-post .post-title {
        font-weight: 900;
        font-size: 20px;
        line-height: 24px;
        margin: 0px;
        text-transform: capitalize;
    }

    & .recent-post .post-title a {
        color: var(--vs-title-color);
        display: inline-block;
        font-weight: 700;
        font-size: 1.1rem;
        line-height: 22px;
        margin-top: 10px;
    }

    & .recent-post .post-title a: hover {
        color: var(--vs-theme-color2);
    }

    & .recent-post .post-title + .recent-post-meta {
        padding-top: 7px;
    }

    & .recent-post .post-title + .recent-post-meta a {
        font-weight: 600;
        font-size: 16px;
    }

    & .recent-post .post-title + .recent-post-meta a i {
        transition: 0.3s ease-in-out;
    }

    & .recent-post .post-title + .recent-post-meta a: hover {
        color: var(--vs-theme-color2);
    }

    & .recent-post .post-title + .recent-post-meta a: hover i {
        color: var(--vs-theme-color2);
    }

    & .recent-post .recent-post-meta a {
        font-size: 14px;
        font-weight: 500;
        color: var(--vs-body-color);
        text-transform: uppercase;
        font-family: var(--vs-body-font);
    }

    & .recent-post .recent-post-meta a i {
        margin-right: 5px;
        color: var(--vs-body-color);
    }

    & .recent-post .recent-post-meta a: hover {
        color: var(--vs-theme-color1);
    }

    & .recent-post:hover .media-img img {
        transform: scale(1.1);
    }

    & .wp-block-calendar, & .calendar_wrap {
        position: relative;
        background-color: rgb(255, 255, 255);
        padding-bottom: 0px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    & .wp-block-calendar span[class*="wp-calendar-nav"], & .calendar_wrap span[class*="wp-calendar-nav"] {
        position: absolute;
        top: 8px;
        left: 20px;
        font-size: 14px;
        color: var(--vs-title-color);
        font-weight: 500;
        z-index: 1;
    }

    & .wp-block-calendar span[class*="wp-calendar-nav"] a, & .calendar_wrap span[class*="wp-calendar-nav"] a {
        color: inherit;
    }

    & .wp-block-calendar span.wp-calendar-nav-next, & .calendar_wrap span.wp-calendar-nav-next {
        left: auto;
        right: 20px;
    }

    & .wp-block-calendar caption, & .calendar_wrap caption {
        caption-side: top;
        text-align: center;
        color: var(--vs-title-color);
        background-color: rgb(241, 219, 190);
    }

    & .wp-block-calendar th, & .calendar_wrap th {
        font-size: 14px;
        padding: 5px;
        border-width: medium 1px medium medium;
        border-style: none solid none none;
        border-color: currentcolor rgb(255, 255, 255) currentcolor currentcolor;
        border-image: initial;
        text-align: center;
        color: rgb(1, 19, 60);
        font-weight: 500;
    }

    & .wp-block-calendar th a, & .calendar_wrap th a {
        color: inherit;
    }

    & .wp-block-calendar td, & .calendar_wrap td {
        font-size: 14px;
        padding: 5px;
        color: rgb(1, 19, 60);
        border: 1px solid rgb(237, 237, 237);
        text-align: center;
        background-color: transparent;
        transition: 0.4s;
    }

    & .wp-block-calendar #today, & .calendar_wrap #today {
        color: var(--vs-theme-color1);
        background-color: var(--vs-white-color);
        border-color: rgb(237, 237, 237);
    }

    & .wp-block-calendar thead, & .calendar_wrap thead {
        background-color: rgb(246, 246, 246);
    }

    & .wp-block-calendar .wp-calendar-table, & .calendar_wrap .wp-calendar-table {
        margin-bottom: 0px;
    }

    & .wp-block-calendar .wp-calendar-nav .pad, & .calendar_wrap .wp-calendar-nav .pad {
        display: none;
    }

    & .sidebar-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    & .sidebar-gallery .gallery-thumb {
        overflow: hidden;
        border-radius: 5px;
    }

    & .sidebar-gallery .gallery-thumb img {
        width: 100%;
        transform: scale(1);
        transition: 0.4s;
    }

    & .sidebar-gallery .gallery-thumb:hover img {
        transform: scale(1.2);
    }

    & .widget_shopping_cart {
        text-align: left;
    }

    & .widget_shopping_cart ul {
        margin: 0px;
        padding: 0px;
        list-style-type: none;
    }

    & .widget_shopping_cart .mini_cart_item {
        position: relative;
        border-bottom: 1px solid var(--vs-border-color);
        padding: 0px 0px 32px 110px;
        margin: 0px 0px 27px;
        min-height: 90px;
    }

    & .widget_shopping_cart .remove {
        position: absolute;
        right: 0px;
        top: 0px;
        color: var(--vs-title-color);
        line-height: 1;
        font-size: 18px;
    }

    & .widget_shopping_cart .remove:hover {
        color: var(--vs-theme-color1);
    }

    & .widget_shopping_cart .img {
        position: absolute;
        left: 0px;
        top: 3px;
        width: 90px;
        height: 90px;
        display: inline-block;
        border: 1px solid var(--vs-border-color);
    }

    & .widget_shopping_cart .product-title {
        font-size: 14px;
        color: var(--vs-title-color);
        font-weight: 400;
        margin-bottom: 0px;
        display: inline-block;
    }

    & .widget_shopping_cart .amount {
        display: block;
        font-weight: 600;
        color: var(--vs-title-color);
        font-size: 16px;
    }

    & .widget_shopping_cart .quantity {
        display: inline-flex;
        margin-top: 12px;
    }

    & .widget_shopping_cart .qut-btn {
        border: 1px solid var(--vs-border-color);
        background-color: transparent;
        display: inline-block;
        width: 25px;
        height: 25px;
        padding: 0px;
        font-size: 12px;
        z-index: 1;
        position: relative;
    }

    & .widget_shopping_cart .qut-btn:hover {
        background-color: var(--vs-title-color);
        border-color: transparent;
        color: var(--vs-white-color);
    }

    & .widget_shopping_cart .qty-input {
        border: 1px solid var(--vs-border-color);
        text-align: center;
        width: max-content;
        min-width: 40px;
        font-size: 12px;
        padding: 0px;
        height: 25px;
        margin: 0px -1px;
    }

    & .widget_shopping_cart .subtotal {
        float: right;
        text-align: right;
        font-size: 12px;
        margin-top: 19px;
    }

    & .widget_shopping_cart .subtotal > span: not(.amount) {
        color: var(--vs-body-color);
        font-weight: 300;
    }

    & .widget_shopping_cart .subtotal .amount {
        font-size: 12px;
        display: inline-block;
    }

    & .widget_shopping_cart .total {
        color: var(--vs-title-color);
        text-transform: uppercase;
        line-height: 1;
        margin-bottom: 25px;
        font-size: 18px;
    }

    & .widget_shopping_cart .total .amount {
        font-size: inherit;
        display: inline-block;
        color: var(--vs-theme-color1);
    }

    & .widget_shopping_cart .vs-btn {
        border: 1px solid var(--vs-title-color);
        margin-right: 10px;
        text-transform: capitalize;
        height: 50px;
        line-height: 47px;
        padding: 0px 35px;
        background-color: var(--vs-title-color);
        color: var(--vs-white-color);
        font-weight: 400;
    }

    & .widget_shopping_cart .vs-btn:hover {
        background-color: transparent;
        color: var(--vs-title-color);
    }

    & .widget_shopping_cart .buttons {
        margin: 0px;
    }

    & .sidebar-area ul.wp-block-latest-posts {
        margin-bottom: 0px;
    }

    & .sidebar-area ul.wp-block-latest-posts li: last-child {
        margin-bottom: 0px;
    }

    & .sidebar-area .newsletter-form button {
        width: 100%;
        text-transform: capitalize;
        font-size: 16px;
        font-weight: 400;
        height: 60px;
        margin-top: 10px;
    }

    & .sidebar-area .widget .wp-block-search {
        margin-bottom: 0px;
    }

    & .sidebar-area .widget .wp-block-search__inside-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
    }

    & .sidebar-area .wp-block-group__inner-container h2 {
        font-size: 20px;
        line-height: 1em;
        margin-bottom: 20px;
        margin-top: -0.07em;
    }

    & .sidebar-area ol.wp-block-latest-comments {
        padding: 0px;
        margin: 0px;
    }

    & .sidebar-area ol.wp-block-latest-comments li {
        line-height: 1.5;
        margin: 0px 0px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 20px;
    }

    & .sidebar-area ol.wp-block-latest-comments li: last-child {
        margin-bottom: 0px;
        padding-bottom: 0px;
        border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
    }

    & .recent-product {
        display: flex;
    }

    & .recent-product .product-title {
        font-size: 16px;
    }

    & .widget-workhours ul {
        margin: 0px;
        padding: 0px;
        list-style-type: none;
    }

    & .widget-workhours li {
        background-color: var(--vs-white-color);
        padding: 14.5px 20px;
        margin: 0px 0px 15px;
        font-family: var(--vs-title-font);
        font-weight: 500;
    }

    & .widget-workhours li: last-child {
        margin-bottom: 0px;
    }

    & .widget-workhours li i {
        margin-right: 10px;
    }

    & .quote-box {
        position: relative;
        text-align: center;
        padding: 80px 30px;
        margin: 0px 0px 30px;
    }

    & .quote-box::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background-color: rgba(7, 26, 62, 0.7);
    }

    & .quote-box__title {
        color: var(--vs-white-color);
        position: relative;
        z-index: 1;
        max-width: 200px;
        margin: -0.3em auto 25px;
    }

    @media (max-width: 1199px) {
        & .widget {
            --widget-padding-y: 30px;
            --widget-padding-x: 30px;
        }

        & .widget_title {
            font-size: 20px;
            margin-bottom: 25px;
        }

        & .recent-post .post-title {
            font-size: 14px;
            line-height: 22px;
        }

        & .recent-post .recent-post-meta a {
            font-size: 12px;
        }

        & .widget-workhours li {
            padding: 14.5px 20px;
            font-size: 14px;
        }
    }

    @media (max-width: 991px) {
        & .sidebar-area {
            padding-top: 30px;
        }

        & .wp-block-tag-cloud a, & .tagcloud a {
            padding: 10.5px 18px;
        }
    }

    @media (max-width: 767px) {
        & .contact-widget .icon {
            --icon-size: 30px;
            --vs-icon-font-size: 12px;
            top: 5px;
        }

        & .contact-widget .contact {
            padding: 0px 0px 0px 45px;
            margin: 0px 0px 20px;
            border-bottom-width: medium;
            border-bottom-style: none;
            border-bottom-color: currentcolor;
        }

        & .sidebar-gallery {
            gap: 10px;
        }
    }

    @media (max-width: 575px) {
        & .widget {
            padding: 30px 20px;
        }
    }

    & .sidebar-banner {
        text-align: center;
        background-color: var(--vs-theme-color1);
        padding: 45px 27px;
        border-radius: 20px;
        overflow: hidden;
    }

    & .sidebar-banner__icon {
        --icon-size: 90px;
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        max-width: var(--icon-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--vs-theme-color2);
        font-size: 30px;
        color: var(--vs-white-color);
        border-radius: 50%;
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.3);
        margin: 0px 0px 13px;
    }

    & .sidebar-banner__title--sub {
        display: block;
        font-size: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
        font-weight: 700;
        font-family: var(--vs-special-font);
        color: var(--vs-white-color);
        line-height: 1.2;
        margin: 0px 0px 3px;
    }

    & .sidebar-banner__title--main {
        font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
        color: var(--vs-white-color);
        text-transform: uppercase;
        margin: 0px 0px 15px;
    }

    & .sidebar-banner__field {
        width: 100%;
        height: 64px;
        font-family: var(--vs-body-font);
        font-weight: 500;
        text-transform: capitalize;
        text-align: center;
        border-radius: 10px;
        outline: none;
        border: 0px;
        letter-spacing: 0.48px;
        margin: 0px 0px 11px;
    }

    & .sidebar-banner__btn {
        border-radius: 10px;
    }

    & .sidebar-banner__btn > span {
        inset: 1px;
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.2);
    }

    & .sidebar-banner__btn::before, & .sidebar-banner__btn::after {
        background-color: var(--vs-theme-color3);
    }

    & .vs-side-form__group {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        border: 1px solid rgb(204, 204, 204);
        border-radius: 6px;
        padding: 0px 10px;
        background-color: rgb(255, 255, 255);
    }

    & .vs-side-form__group--inline {
        display: flex;
        gap: 10px;
    }

    @media (max-width: 991px) {
        & .vs-side-form__group--inline {
            flex-wrap: wrap;
        }
    }

    & .vs-side-form__group--checkbox {
        display: flex;
        align-items: center;
        gap: 10px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        padding: 0px;
        background: none;
    }

    & .vs-side-form__plan {
        width: 100%;
        border: 0px;
        min-height: 56px;
        text-transform: capitalize;
        font-weight: 700;
        color: var(--vs-title-color);
        padding: 0px 20px;
        outline: none;
        background-color: transparent;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
        background-position: right 26px center;
        background-repeat: no-repeat;
        background-size: 16px 12px;
        appearance: none;
        cursor: pointer;
    }

    & .vs-side-form__plan option {
        padding: 10px;
    }

    & .vs-side-form__pricing {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0px 24px;
        margin-bottom: 25px;
        border-bottom: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
    }

    & .vs-side-form__pricing--amount {
        display: block;
        font-size: 20px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        color: var(--vs-title-color);
    }

    & .vs-side-form__pricing--name {
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0.48px;
        color: var(--vs-body-color);
    }

    & .vs-side-form__total {
        margin-bottom: 25px;
        display: grid;
        gap: 10px;
    }

    & .vs-side-form__total--text, & .vs-side-form__total--amount {
        display: block;
        font-weight: 700;
        color: var(--vs-title-color);
    }

    & .vs-side-form__total--text span, & .vs-side-form__total--amount span {
        color: rgb(37, 40, 62);
    }

    & .vs-side-form__icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 30px;
        padding-right: 10px;
        border-right: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
        color: rgba(var(--vs-body-color-rgb), 0.8);
        font-size: 16px;
    }

    & .vs-side-form__input {
        flex: 1 1 0%;
        padding: 16px 10px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        outline: none;
        font-size: 16px;
        background-color: transparent;
        letter-spacing: 0.48px;
        font-weight: 500;
        text-transform: capitalize;
    }

    & .vs-side-form__input::placeholder {
        color: var(--vs-body-color);
    }

    & .vs-side-form__input--half {
        width: 100%;
    }

    & .vs-side-form__group--checkbox {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        background: none;
        padding: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    & .vs-side-form__checkbox-label {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        letter-spacing: 0.48px;
        position: relative;
        gap: 10px;
        user-select: none;
        font-weight: 500;
        text-transform: capitalize;
        flex-wrap: wrap;
    }

    & .vs-side-form__checkbox {
        display: none;
    }

    & .vs-side-form__checkbox:checked + .vs-side-form__custom-box::after {
        content: "";
        position: absolute;
        left: 5px;
        top: 0px;
        width: 6px;
        height: 12px;
        border-top-color: ;
        border-top-style: ;
        border-right-color: ;
        border-right-style: ;
        border-bottom-color: ;
        border-bottom-style: ;
        border-left-color: ;
        border-left-style: ;
        border-image-source: ;
        border-image-slice: ;
        border-image-width: ;
        border-image-outset: ;
        border-image-repeat: ;
        border-width: 0px 2px 2px 0px;
        transform: rotate(45deg);
    }

    & .vs-side-form__checkbox:checked + .vs-side-form__custom-box {
        background-color: var(--vs-theme-color2);
    }

    & .vs-side-form__custom-box {
        min-width: 20px;
        width: 20px;
        height: 20px;
        background-color: var(--vs-white-color);
        border: 2px solid var(--vs-theme-color2);
        border-radius: 4px;
        position: relative;
        transition: 0.3s;
        margin-top: -3px;
    }

    & .vs-side-form__submit {
        width: 100%;
        padding: 14px 15px;
        font-family: var(--vs-title-font);
        background-color: var(--vs-theme-color2);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        color: var(--vs-white-color);
        font-weight: 700;
        border-radius: 8px;
        cursor: pointer;
        text-transform: capitalize;
        font-size: 20px;
    }

    & .vs-side-form__submit:hover {
        background-color: var(--vs-theme-color1);
    }

    & .author-sidebar__content {
        padding: 30px 30px 40px;
    }

    & .author-sidebar__title {
        font-size: 24px;
        text-transform: capitalize;
        text-align: left;
    }

    & .author-sidebar__schedule {
        margin-bottom: 20px;
    }

    & .author-sidebar__schedule--list {
        list-style: none;
        padding: 0px;
        margin: 0px;
        text-align: left;
    }

    & .author-sidebar__schedule--list li {
        padding: 5px 0px;
        font-weight: 700;
    }

    & .author-sidebar__schedule--list li: last-child {
        border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
    }

    & .author-sidebar__timing {
        color: var(--vs-title-color);
    }

    & .author-sidebar .icon-call {
        margin-bottom: 14px;
    }

    & .author-sidebar .icon-call:last-child {
        margin-bottom: 0px;
    }

    & .author-sidebar .icon-call__number {
        color: var(--vs-body-color);
        font-size: 18px;
    }

    & .author-sidebar .icon-call__icon {
        --icon-size: 45px;
        font-size: 14px;
    }

    & .footer-widget {
        margin-bottom: 40px;
    }

    & .footer-widget, & .footer-widget .widget {
        padding: 0px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        background-color: transparent;
    }

    & .footer-widget .widget_title {
        margin: 0px 0px 27px;
    }

    & .footer-widget.widget_meta, & .footer-widget.widget_pages, & .footer-widget.widget_archive, & .footer-widget.widget_categories, & .footer-widget.widget_nav_menu {
        margin-bottom: 40px;
    }

    & .footer-widget.widget_meta a, & .footer-widget.widget_pages a, & .footer-widget.widget_archive a, & .footer-widget.widget_categories a, & .footer-widget.widget_nav_menu a {
        width: max-content;
        display: block;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 16px;
        max-width: 100%;
        padding: 0px;
    }

    & .footer-widget.widget_meta a: hover, & .footer-widget.widget_pages a:hover, & .footer-widget.widget_archive a:hover, & .footer-widget.widget_categories a:hover, & .footer-widget.widget_nav_menu a:hover {
        background-color: transparent;
        color: var(--vs-theme-color1);
    }

    & .footer-widget.widget_meta a: :before, & .footer-widget.widget_pages a::before, & .footer-widget.widget_archive a::before, & .footer-widget.widget_categories a::before, & .footer-widget.widget_nav_menu a::before {
        display: none;
    }

    & .footer-widget.widget_meta li > span, & .footer-widget.widget_pages li > span, & .footer-widget.widget_archive li > span, & .footer-widget.widget_categories li > span, & .footer-widget.widget_nav_menu li > span {
        width: auto;
        height: auto;
        position: relative;
        background-color: transparent;
        color: var(--vs-body-color);
        line-height: 1;
    }

    & .footer-widget.widget_meta li: last-child a, & .footer-widget.widget_pages li:last-child a, & .footer-widget.widget_archive li:last-child a, & .footer-widget.widget_categories li:last-child a, & .footer-widget.widget_nav_menu li:last-child a {
        margin-bottom: 0px;
    }

    & .footer-widget .footer-links > ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    & .footer-widget .footer-links a {
        margin-bottom: 21px;
    }

    & .footer-logo {
        margin-bottom: 15px;
    }

    & .footer-text {
        margin: -0.3em 0px 25px;
        max-width: 285px;
    }

    & .footer-info {
        display: flex;
    }

    & .footer-info_group {
        display: flex;
        justify-content: center;
        border-right: 1px solid rgb(21, 43, 84);
        padding: 60px 0px;
    }

    & .footer-info_group:last-child {
        border-right-width: medium;
        border-right-style: none;
        border-right-color: currentcolor;
    }

    & .footer-info_group.style2 {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    & .footer-info_group.style2 .footer-info_icon {
        background-color: transparent;
        border: 1px solid rgb(53, 73, 111);
    }

    & .footer-info_icon {
        width: 85px;
        height: 85px;
        line-height: 85px;
        text-align: center;
        background-color: rgb(21, 43, 84);
        color: var(--vs-white-color);
        font-size: 30px;
        margin: 0px 25px 0px 0px;
        display: inline-block;
        border-radius: 5px;
    }

    & .footer-info_label {
        color: var(--vs-white-color);
        font-size: 16px;
        font-weight: 600;
        font-family: var(--vs-title-font);
        text-transform: uppercase;
        display: block;
        margin: 0px 0px 5px;
    }

    & .footer-info_link {
        max-width: 190px;
        color: rgb(138, 153, 180);
        margin: 0px 0px -0.15em;
    }

    & .footer-info_link a {
        color: inherit;
    }

    & .footer-info_link a: hover {
        color: var(--vs-theme-color1);
    }

    & .footer-number {
        border-top: 1px solid rgb(20, 40, 79);
        padding: 43px 0px 0px;
        margin: 34px 0px 0px;
        position: relative;
    }

    & .footer-number::before {
        content: "";
        position: absolute;
        top: -1px;
        left: -60px;
        width: 9999px;
        height: 1px;
        border: inherit;
    }

    & .footer-number .info {
        color: var(--vs-body-color);
        margin: 0px;
        line-height: 1;
        display: inline-block;
    }

    & .footer-number .info:hover {
        color: var(--vs-theme-color1);
    }

    & .footer-number .title {
        margin: 0px 0px 7px;
    }

    & .footer-map {
        max-width: 400px;
        width: 100%;
    }

    & .footer-map frame {
        max-width: 100%;
    }

    & .footer-social .social-title {
        font-family: var(--vs-title-font);
        color: var(--vs-title-color);
        font-size: 20px;
        display: inline-block;
        margin-right: 20px;
        font-weight: 700;
    }

    & .footer-social a {
        display: inline-block;
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
        margin: 0px 5px 0px 0px;
        color: var(--vs-white-color);
        background-color: rgb(21, 40, 76);
        text-align: center;
        border-radius: 5px;
    }

    & .footer-social a: last-child {
        margin-right: 0px;
    }

    & .footer-social a: hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
    }

    & .footer-social.style2 a {
        background-color: var(--vs-white-color);
        outline: rgb(231, 232, 236) solid 2px;
        outline-offset: -2px;
        color: var(--vs-body-color);
        box-shadow: rgba(132, 137, 154, 0.1) 8px 13.856px 30px 0px;
    }

    & .footer-social.style2 a: hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        outline-color: transparent;
    }

    & .footer-newsletter {
        display: flex;
    }

    & .footer-newsletter input {
        background-color: transparent;
        border-radius: 5px 0px 0px 5px;
        border: 1px solid rgb(20, 40, 79);
        height: 55px;
        color: var(--vs-white-color);
        flex: 1 1 0%;
    }

    & .footer-newsletter input: :-webkit-input-placeholder {
        color: var(--vs-white-color);
    }

    & .footer-newsletter input: :placeholder {
        color: var(--vs-white-color);
    }

    & .footer-newsletter .vs-btn {
        border-radius: 0px 5px 5px 0px;
    }

    & .footer-newsletter .vs-btn:hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
    }

    & .footer-newsletter .vs-btn::after, & .footer-newsletter .vs-btn::before {
        display: none;
    }

    & .footer-schedule table {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        margin: -0.3em 0px 0px;
    }

    & .footer-schedule th, & .footer-schedule td {
        padding: 0px 0px 10px;
        color: var(--vs-body-color);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        font-weight: 400;
    }

    & .footer-number1 {
        font-size: 30px;
        font-weight: 700;
        color: var(--vs-body-color);
        font-family: var(--vs-title-font);
        margin-bottom: 25px;
        display: block;
        width: max-content;
    }

    & .footer-mail1, & .footer-address1 {
        padding-left: 25px;
        position: relative;
    }

    & .footer-mail1 > i: first-child, & .footer-address1 > i:first-child {
        position: absolute;
        left: 0px;
        top: 4px;
    }

    & .footer-address1 {
        max-width: 250px;
    }

    & .footer-mail1 {
        color: var(--vs-body-color);
        text-decoration: underline;
    }

    & .footer-mail1 i: first-child {
        top: 2px;
    }

    & .footer-info-list {
        margin: 35px 0px 22px;
    }

    & .footer-info-list .info {
        position: relative;
        margin-bottom: 21px;
        padding-left: 30px;
        max-width: 250px;
    }

    & .footer-info-list .info i: first-child {
        position: absolute;
        left: 0px;
        top: 4px;
        color: var(--vs-theme-color1);
    }

    & .newsletter-form2 .form_text {
        margin: -0.3em 0px 22px;
        display: block;
        max-width: 300px;
    }

    & .newsletter-form2 input {
        background-color: rgb(235, 236, 241);
        margin-bottom: 15px;
        border-radius: 7px;
    }

    @media (max-width: 1399px) {
        & .menu-all-pages-container.footer-links {
            width: 330px;
            max-width: 100%;
        }

        & .footer-number::before {
            display: none;
        }
    }

    @media (max-width: 1199px) {
        & .footer-widget {
            margin-bottom: 40px;
        }

        & .footer-widget .widget_title {
            font-size: 26px;
        }

        & .footer-number {
            padding: 27px 0px 0px;
            margin: 17px 0px 0px;
        }

        & .footer-info {
            display: block;
            text-align: center;
        }

        & .footer-info_icon {
            margin: 0px 0px 20px;
        }

        & .footer-info_group {
            padding: 0px;
            border-width: medium;
            border-style: none;
            border-color: currentcolor;
            border-image: initial;
        }
    }

    @media (min-width: 991px) and (max-width: 1399px) {
        & .footer-newsletter {
            display: block;
        }

        & .footer-newsletter input {
            border-radius: 5px;
            margin-bottom: 20px;
        }

        & .footer-newsletter .vs-btn {
            border-radius: 5px;
        }
    }

    @media (max-width: 991px) {
        & .footer-widget .widget_title {
            font-size: 22px;
        }

        & .footer-layout1 .footer-widget.widget_meta a, & .footer-layout1 .footer-widget.widget_pages a, & .footer-layout1 .footer-widget.widget_archive a, & .footer-layout1 .footer-widget.widget_categories a, & .footer-layout1 .footer-widget.widget_nav_menu a {
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 767px) {
        & .footer-widget.widget_meta a, & .footer-widget.widget_pages a, & .footer-widget.widget_archive a, & .footer-widget.widget_categories a, & .footer-widget.widget_nav_menu a {
            font-size: 14px;
        }

        & .footer-newsletter {
            display: block;
        }

        & .footer-newsletter input {
            border-radius: 5px;
            margin-bottom: 20px;
        }

        & .footer-newsletter .vs-btn {
            border-radius: 5px;
        }
    }

    & .sidebar-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    & .sidebar-gallery .gallery-thumb {
        overflow: hidden;
        position: relative;
        border-radius: 20px;
        border: 3px solid rgba(255, 255, 255, 0.7);
        transition: 0.3s ease-in-out;
    }

    & .sidebar-gallery .gallery-thumb img {
        transition: 0.4s;
        width: 100%;
        transform: scale(1.055);
    }

    & .sidebar-gallery .gallery-thumb::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background-color: var(--vs-theme-color1);
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
    }

    & .sidebar-gallery .gallery-thumb .gal-btn {
        position: absolute;
        left: 50%;
        top: 50%;
        width: var(--icon-size, 35px);
        height: var(--icon-size, 35px);
        margin: calc(var(--icon-size, 35px) / -2) 0 0 calc(var(--icon-size, 35px) / -2);
        text-align: center;
        font-size: 18px;
        color: var(--vs-white-color);
        background-color: transparent;
        border-radius: 50%;
        transition: 0.4s;
        opacity: 0;
        visibility: hidden;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    & .sidebar-gallery .gallery-thumb .gal-btn:hover {
        transform: scale(1);
        background-color: var(--vs-white-color);
        color: var(--vs-theme-color1);
    }

    & .sidebar-gallery .gallery-thumb:hover {
        border-color: var(--vs-theme-color2);
    }

    & .sidebar-gallery .gallery-thumb:hover::before {
        opacity: 0.8;
        visibility: visible;
    }

    & .sidebar-gallery .gallery-thumb:hover .gal-btn {
        opacity: 1;
        visibility: visible;
        transition-delay: 0.1s;
    }

    & .sidebar-gallery .gallery-thumb:hover img {
        transform: scale(1.011);
    }

    & .vs-gallery {
        display: inline-flex;
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-radius: 20px;
    }

    & .vs-gallery::before, & .vs-gallery::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        border: 3px dashed rgba(255, 255, 255, 0.3);
        border-radius: 20px;
    }

    & .vs-gallery::after {
        background-color: var(--vs-theme-color1);
        opacity: 0.1;
        transform-origin: center center;
        transition: 0.4s;
    }

    & .vs-gallery::before {
        z-index: 1;
    }

    & .vs-gallery--row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
        height: 100%;
        gap: 24px;
    }

    @media (max-width: 767px) {
        & .vs-gallery--row {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
    }

    & .vs-gallery--row {
    }

    @media (max-width: 575px) {
        & .vs-gallery--row {
            grid-template-rows: repeat(9, 1fr);
            grid-template-columns: 1fr;
        }
    }

    & .vs-gallery--col1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    @media (max-width: 767px) {
        & .vs-gallery--col1 {
            grid-area: 1 / 1 / 3 / 2;
        }
    }

    & .vs-gallery--col1 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col1 {
            grid-area: 1 / 1 / 3 / 2;
        }
    }

    & .vs-gallery--col2 {
        grid-area: 1 / 2 / 2 / 3;
    }

    @media (max-width: 767px) {
        & .vs-gallery--col2 {
            grid-area: 1 / 2 / 3 / 3;
        }
    }

    & .vs-gallery--col2 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col2 {
            grid-area: 3 / 1 / 5 / 2;
        }
    }

    & .vs-gallery--col3 {
        grid-area: 1 / 3 / 3 / 4;
    }

    @media (max-width: 767px) {
        & .vs-gallery--col3 {
            grid-area: 3 / 1 / 7 / 3;
        }
    }

    & .vs-gallery--col3 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col3 {
            grid-area: 5 / 1 / 8 / 2;
        }
    }

    & .vs-gallery--col4 {
        grid-area: 2 / 1 / 3 / 3;
    }

    @media (max-width: 767px) {
        & .vs-gallery--col4 {
            grid-area: 8 / 1 / 7 / 3;
        }
    }

    & .vs-gallery--col4 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col4 {
            grid-area: 8 / 1 / 10 / 2;
        }
    }

    & .vs-gallery__figure {
        overflow: hidden;
        width: 100%;
        height: 100%;
    }

    & .vs-gallery__image {
        transition: 0.3s ease-in-out;
        transform: scale(1.04);
        transform-origin: center center;
        border-radius: 20px;
        object-fit: cover;
        width: 100%;
        height: 100% !important;
    }

    & .vs-gallery__image--link {
        display: inline-block;
        width: 100%;
        height: 100%;
    }

    & .vs-gallery__hover {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        z-index: 1;
        transform: translateY(20px);
    }

    & .vs-gallery__icon {
        --icon-size: 85px;
        width: var(--icon-size, 85px);
        height: var(--icon-size, 85px);
        position: relative;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        background-color: var(--vs-title-color);
        color: var(--vs-white-color);
        border-radius: 50%;
        margin: 0px 0px 29px;
        transition: 0.4s;
    }

    @media (max-width: 991px) {
        & .vs-gallery__icon {
            --icon-size: 60px;
            margin: 0px 0px 10px;
            font-size: 20px;
        }
    }

    & .vs-gallery__icon:hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
    }

    & .vs-gallery__cate {
        font-size: 30px;
        font-weight: 700;
        font-family: var(--vs-special-font);
        line-height: 1;
        color: var(--vs-white-color);
        margin-bottom: 8px;
        transition: 0.3s ease-in-out;
    }

    & .vs-gallery__cate:hover {
        color: var(--vs-theme-color1);
    }

    & .vs-gallery__cate {
    }

    @media (max-width: 991px) {
        & .vs-gallery__cate {
            font-size: 24px;
        }
    }

    & .vs-gallery__heading {
        color: var(--vs-white-color);
        font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
        margin-bottom: 0px;
        transition: 0.3s ease-in-out;
    }

    & .vs-gallery__heading:hover {
        color: var(--vs-theme-color1);
    }

    & .vs-gallery:hover::after {
        transform: scale(1.1);
        opacity: 0.9;
        background-color: var(--vs-theme-color2);
    }

    & .vs-gallery:hover .vs-gallery__image {
        transform: scale(1.01);
    }

    & .vs-gallery:hover .vs-gallery__hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }

    & .vs-header {
        position: relative;
        z-index: 41;
    }

    & .vs-header__ele1 {
        position: absolute;
        bottom: -7px;
        left: 0px;
        right: 0px;
        width: 100%;
    }

    @media (max-width: 1919px) {
        & .vs-header__ele1 {
            bottom: -21px;
        }
    }

    @media (max-width: 1499px) {
        & .vs-header__ele1 {
            display: none;
        }
    }

    & .vs-header__top {
        background-color: var(--vs-theme-color1);
        padding: 7px 0px;
    }

    & .vs-header__info {
        display: flex;
        align-items: center;
        gap: 13px;
        color: var(--vs-white-color);
    }

    & .vs-header__info span {
        font-weight: 100;
        font-family: var(--vs-title-font);
    }

    & .vs-header__info a {
        color: var(--vs-white-color);
        padding-left: 5px;
    }

    & .vs-header__info a: hover {
        color: var(--vs-theme-color5);
    }

    & .vs-header__action {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-left: 35px;
        align-items: center;
    }

    & .vs-header__action.style2 {
        margin-left: 0px;
    }

    & .vs-header__logo {
        padding: 5px 0px;
    }

    & .vs-header__logo img {
        height: 90px;
    }

    & .vs-header__logo.style2 img {
        opacity: 1;
    }

    @media (max-width: 767px) {
        & .vs-header__logo.style2 img {
            max-width: 180px;
        }
    }

    & .vs-header--style2::before {
        content: "";
        position: absolute;
        inset: 0px 0px 60px;
        background-color: var(--vs-theme-color1);
        z-index: -1;
    }

    & .vs-header--style2 .vs-header__box {
        background-color: var(--vs-white-color);
        padding: 0px 27px;
        border-radius: 20px;
    }

    @media (max-width: 991px) {
        & .vs-header--style2 .vs-header__box {
            padding: 0px 15px;
        }
    }

    & .vs-header--style2 .vs-header__ele1 {
        bottom: 32px;
        z-index: -1;
    }

    & .sideCartToggler {
        align-items: center;
        background-color: transparent;
        border: 0px;
        padding: 0px 0px 0px 23px;
        position: relative;
        margin-right: 17px;
        font-size: 21px;
    }

    & .sideCartToggler::before, & .sideCartToggler::after {
        position: absolute;
        content: "";
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 41px;
        background-color: rgba(var(--vs-title-color-rgb), 0.2);
        left: 0px;
    }

    & .sideCartToggler::before {
        left: 3px;
        height: 25px;
    }

    & .sideCartToggler span {
        position: absolute;
        top: -13px;
        right: -13px;
        width: 18px;
        height: 18px;
        background-color: var(--vs-theme-color2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--vs-white-color);
        font-size: 12px;
    }

    & .sideCartToggler:hover {
        color: var(--vs-theme-color2);
    }

    & .vs-balls {
        width: 100vw;
        height: 10px;
        display: flex;
        overflow: hidden;
        position: absolute;
        bottom: -8px;
        left: 0px;
        z-index: 2;
        pointer-events: none;
    }

    & .vs-balls__ball {
        width: 14px;
        height: 8px;
        background-color: rgb(255, 255, 255);
        border-radius: 0px 0px 20px 20px;
        position: absolute;
        transform: translateX(0px);
    }

    & .vs-balls--style2 {
        bottom: 50px;
        z-index: -1;
    }

    & .vs-balls--style2 .vs-balls__ball {
        background-color: var(--vs-theme-color1);
    }

    & .vs-balls--style3 {
        bottom: -14px;
    }

    & .vs-balls--screen {
        mix-blend-mode: screen;
    }

    & .main-menu a {
        display: block;
        position: relative;
        font-family: var(--vs-title-font);
        font-weight: 600;
        font-size: 17px;
        color: var(--vs-title-color);
    }

    & .main-menu a: hover {
        color: var(--vs-theme-color1) 1;
    }

    & .main-menu > ul > li {
        margin: 0px 18px;
    }

    @media (max-width: 1199px) {
        & .main-menu > ul > li {
            margin: 0px 10px;
        }
    }

    & .main-menu > ul > li > a {
        padding: 38px 0px;
        position: relative;
        z-index: 1;
    }

    & .main-menu > ul > li > a .new-label {
        position: absolute;
        top: -10px;
        right: -27px;
        font-size: 11px;
        border-radius: 3px;
    }

    & .main-menu > ul > li > a .has-new-lable {
        position: relative;
    }

    & .main-menu > ul > li > a.vs-svg-assets svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -54%);
        z-index: -1;
    }

    & .main-menu > ul > li > a.vs-svg-assets svg path {
        transform-origin: right center;
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    & .main-menu > ul > li > a: hover, & .main-menu > ul > li > a.active {
        color: var(--vs-theme-color2);
    }

    & .main-menu > ul > li > a: hover svg path, & .main-menu > ul > li > a.active svg path {
        transform: scaleX(1);
        transform-origin: left center;
    }

    & .main-menu > ul > li.menu-item-has-children.active > a.vs-svg-assets {
        color: var(--vs-theme-color2);
    }

    & .main-menu > ul > li.menu-item-has-children.active > a.vs-svg-assets svg path {
        transform: scaleX(1);
        transform-origin: left center;
    }

    & .main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets {
        color: var(--vs-title-color);
    }

    & .main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets svg path {
        transform-origin: right center;
        transform: scaleX(0);
    }

    & .main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets: hover {
        color: var(--vs-white-color);
    }

    & .main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets: hover svg path {
        transform: scaleX(1);
        transform-origin: left center;
    }

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

    & .main-menu ul li {
        list-style-type: none;
        display: inline-block;
        position: relative;
    }

    & .main-menu ul li.menu-item-has-children > a: :after {
        content: "";
        position: relative;
        font-family: var(--vs-icon-font);
        margin-left: 5px;
        font-size: 0.8rem;
        display: none;
    }

    & .main-menu ul li.menu-item-has-children.active > a {
        color: var(--vs-theme-color2);
    }

    & .main-menu ul li.menu-item-has-children.active > a: hover {
        color: var(--vs-white-color);
    }

    & .main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active > a {
        color: var(--vs-title-color);
    }

    & .main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active > a: hover {
        color: var(--vs-white-color);
    }

    & .main-menu ul li: last-child {
        margin-right: 0px;
    }

    & .main-menu ul li: first-child {
        margin-left: 0px;
    }

    & .main-menu ul.sub-menu, & .main-menu ul.mega-menu {
        position: absolute;
        text-align: left;
        top: 100%;
        background-color: var(--vs-white-color);
        visibility: hidden;
        min-width: 210px;
        width: max-content;
        padding: 7px;
        left: -14px;
        margin-top: 50px;
        opacity: 0;
        z-index: -1;
        border-bottom: 4px solid var(--vs-theme-color1) 1;
        box-shadow: rgba(0, 0, 0, 0.09) 0px 10px 60px 0px, rgba(231, 13, 60, 0.004) 0px 3px 0px 0px;
        transform-origin: center top;
        transition: margin-top 0.4s ease-in-out, visibility 0.4s ease-in-out, opacity 0.4s ease-in-out, z-index;
    }

    & .main-menu ul.sub-menu a, & .main-menu ul.mega-menu a {
        font-size: 16px;
        line-height: 30px;
    }

    & .main-menu ul.sub-menu {
        padding: 25px 20px;
        left: -20px;
        display: grid;
        gap: 3px;
    }

    & .main-menu ul.sub-menu li {
        display: block;
        margin: 0px;
    }

    & .main-menu ul.sub-menu li.menu-item-has-children > a: :after {
        content: "";
        float: right;
        top: 3px;
    }

    & .main-menu ul.sub-menu li a {
        position: relative;
        padding: 5px 0px;
    }

    & .main-menu ul.sub-menu li a: :after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0%;
        inset: auto 0px 0px;
        background-color: var(--vs-theme-color2);
        transition: 0.4s ease-in-out;
        border-radius: 5px;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        pointer-events: none;
    }

    & .main-menu ul.sub-menu li a: :before {
        content: "";
        font-family: var(--vs-icon-font);
        font-weight: 400;
        margin: 0px 10px 0px 0px;
    }

    & .main-menu ul.sub-menu li a: hover, & .main-menu ul.sub-menu li a.active {
        transform: translateX(15px);
        color: var(--vs-white-color);
    }

    & .main-menu ul.sub-menu li a: hover::after, & .main-menu ul.sub-menu li a.active::after {
        top: 0px;
        height: 100%;
        opacity: 1;
        visibility: visible;
        transform: translateX(-15px);
    }

    & .main-menu ul.sub-menu li ul.sub-menu {
        left: 100%;
        right: auto;
        top: 0px;
        margin: 0px 0px 0px 20px;
    }

    & .main-menu ul.sub-menu li ul.sub-menu li ul {
        left: 100%;
        right: auto;
    }

    & .main-menu .mega-menu-wrap {
        position: static;
    }

    & .main-menu ul.mega-menu {
        display: flex;
        justify-content: space-between;
        text-align: left;
        width: 100%;
        max-width: var(--vs-main-container);
        padding: 20px 15px 23px;
        left: 50%;
        transform: translateX(-50%);
    }

    & .main-menu ul.mega-menu .main-menu ul.mega-menu > li > ul > li > a {
        position: relative;
    }

    & .main-menu ul.mega-menu li {
        display: block;
        width: 100%;
        padding: 0px 15px;
    }

    & .main-menu ul.mega-menu li li {
        padding: 0px;
    }

    & .main-menu ul.mega-menu li a {
        display: block;
        padding: 5px 0px;
        position: relative;
        z-index: 1;
    }

    & .main-menu ul.mega-menu > li > a {
        display: block;
        padding: 0px 0px 15px;
        margin-bottom: 10px;
        letter-spacing: 1px;
        font-weight: 800;
        color: var(--vs-theme-color1);
        border-color: var(--vs-theme-color1);
        text-transform: uppercase;
        font-family: var(--vs-title-font);
    }

    & .main-menu ul.mega-menu > li > a: :after, & .main-menu ul.mega-menu > li > a::before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 15px;
        height: 1px;
        background-color: var(--vs-theme-color1);
    }

    & .main-menu ul.mega-menu > li > a: :after {
        width: calc(100% - 20px);
        left: 20px;
    }

    & .main-menu ul.mega-menu > li > a: hover {
        padding-left: 0px;
    }

    & .main-menu ul.mega-menu > li > ul {
        display: grid;
        gap: 3px;
    }

    & .main-menu ul.mega-menu > li > ul > li > a {
        z-index: 1;
        position: relative;
    }

    & .main-menu ul.mega-menu > li > ul > li > a: :before {
        content: "";
        font-family: var(--vs-icon-font);
        font-weight: 400;
        margin: 0px 10px 0px 0px;
    }

    & .main-menu ul.mega-menu > li > ul > li > a: :after {
        content: "";
        position: absolute;
        bottom: 0px;
        right: 0px;
        width: 0%;
        height: 42px;
        background: var(--vs-theme-color2);
        opacity: 0;
        visibility: hidden;
        transition: 0.6s;
        z-index: -1;
        pointer-events: none;
        border-radius: 10px;
    }

    & .main-menu ul.mega-menu > li > ul > li > a: hover {
        color: var(--vs-white-color);
        transform: translateX(15px);
    }

    & .main-menu ul.mega-menu > li > ul > li > a: hover::after {
        width: 90%;
        left: 0px;
        opacity: 1;
        visibility: visible;
        transition: 0.6s;
        transform: translateX(-15px);
    }

    & .main-menu > ul > li: hover > ul.sub-menu, & .main-menu > ul > li:hover > ul.mega-menu {
        visibility: visible;
        opacity: 1;
        margin-top: 0px;
        z-index: 9;
    }

    & .main-menu ul li {
        list-style-type: none;
        display: inline-block;
        position: relative;
    }

    & .main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active .mega-menu li.active ul li.active a.active, & .main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active .mega-menu li.active ul li.active a: hover {
        color: var(--vs-white-color);
        transform: translateX(15px);
    }

    & .main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active .mega-menu li.active ul li.active a.active: :after, & .main-menu ul li.menu-item-has-children.menu-item-has-children.mega-menu-wrap.active .mega-menu li.active ul li.active a:hover::after {
        width: 90%;
        left: 0px;
        opacity: 1;
        visibility: visible;
        transition: 0.6s;
        transform: translateX(-15px);
    }

    & .vs-footer {
        overflow: hidden;
    }

    & .vs-footer__ele1, & .vs-footer__ele2, & .vs-footer__ele3, & .vs-footer__ele4 {
        position: absolute;
        bottom: 0px;
        z-index: -1;
    }

    @media (max-width: 767px) {
        & .vs-footer__ele1, & .vs-footer__ele2, & .vs-footer__ele3, & .vs-footer__ele4 {
            display: none;
        }
    }

    & .vs-footer__ele1 {
        left: 142px;
    }

    & .vs-footer__ele2 {
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.03;
    }

    & .vs-footer__ele3 {
        right: 176px;
    }

    & .vs-footer__ele4 {
        top: 0px;
        left: 0px;
        right: 0px;
        width: 100%;
    }

    & .vs-footer__desc {
        font-weight: 700;
        color: var(--vs-text-color);
        padding-right: 9%;
        text-transform: capitalize;
    }

    @media (max-width: 767px) {
        & .vs-footer__desc {
            padding-right: 0px;
        }
    }

    & .vs-footer__title {
        color: var(--vs-white-color);
        font-size: 24px;
        position: relative;
        padding: 0px 0px 17px;
        margin: 0px 0px 30px;
    }

    @media (max-width: 767px) {
        & .vs-footer__title {
            text-align: center;
        }
    }

    & .vs-footer__title::after, & .vs-footer__title::before {
        position: absolute;
        content: "";
        height: 2.5px;
        width: 65%;
        background-color: rgba(255, 255, 255, 0.2);
        left: 0px;
        bottom: 0px;
    }

    @media (max-width: 767px) {
        & .vs-footer__title::after, & .vs-footer__title::before {
            width: 100%;
        }
    }

    & .vs-footer__title::after {
        width: 80px;
        background-color: var(--vs-theme-color2);
    }

    @media (max-width: 767px) {
        & .vs-footer__title::after {
            left: 50%;
            transform: translateX(-50%);
        }
    }

    & .vs-footer__menu {
        column-count: 2;
    }

    @media (max-width: 767px) {
        & .vs-footer__menu {
            column-count: 1;
            display: grid;
            gap: 15px;
        }
    }

    & .vs-footer__menu--list {
        list-style: none;
        padding: 0px;
        margin: 0px;
        overflow: hidden;
    }

    @media (max-width: 767px) {
        & .vs-footer__menu--list {
            text-align: center;
        }
    }

    & .vs-footer__menu--list > li {
        margin: 0px 0px 15px;
        transition: 0.3s ease-in-out;
    }

    & .vs-footer__menu--list > li: last-child {
        margin: 0px;
    }

    & .vs-footer__menu--list > li > a {
        color: var(--vs-text-color);
        font-size: 16px;
        font-weight: 600;
        transition: 0.3s ease-in-out;
        display: block;
        position: relative;
        padding: 0px 0px 0px 25px;
        letter-spacing: 0.48px;
    }

    @media (max-width: 1199px) {
        & .vs-footer__menu--list > li > a {
            font-size: 14px;
        }
    }

    & .vs-footer__menu--list > li > a {
    }

    @media (max-width: 767px) {
        & .vs-footer__menu--list > li > a {
            display: inline-block;
        }
    }

    & .vs-footer__menu--list > li > a: :before {
        position: absolute;
        content: "";
        font-family: "Font Awesome 6 Pro";
        font-weight: 700;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
    }

    & .vs-footer__menu--list > li > a: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-footer__menu--list > li: hover {
        transform: translateX(5px);
    }

    & .vs-footer__bottom {
        padding: 29px 0px;
    }

    & .vs-footer__bottom--menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0px;
        margin: 0px;
        list-style: none;
        column-gap: 37px;
    }

    @media (max-width: 767px) {
        & .vs-footer__bottom--menu {
            justify-content: center;
        }
    }

    & .vs-footer__bottom--menu > li > a {
        color: var(--vs-text-color);
        font-weight: 700;
        letter-spacing: 0.48px;
        position: relative;
    }

    & .vs-footer__bottom--menu > li > a: :before {
        position: absolute;
        content: "";
        width: 0%;
        left: auto;
        right: 0px;
        bottom: -2px;
        opacity: 0;
        visibility: hidden;
        height: 2px;
        background-color: var(--vs-theme-color5);
        transition: 0.3s ease-in-out;
    }

    & .vs-footer__bottom--menu > li > a: hover {
        color: var(--vs-theme-color5);
    }

    & .vs-footer__bottom--menu > li > a: hover::before {
        left: 0px;
        right: auto;
        opacity: 1;
        visibility: visible;
        width: 100%;
        transition: 0.3s ease-in-out;
    }

    & .vs-footer__copyright {
        color: var(--vs-text-color);
        font-weight: 700;
        letter-spacing: 0.48px;
        text-transform: capitalize;
    }

    @media (max-width: 767px) {
        & .vs-footer__copyright {
            text-align: center;
        }
    }

    & .vs-footer__copyright a {
        color: var(--vs-theme-color5);
        position: relative;
        text-transform: uppercase;
    }

    & .vs-footer__copyright a: :before {
        position: absolute;
        content: "";
        width: 0%;
        left: auto;
        right: 0px;
        bottom: -2px;
        opacity: 0;
        visibility: hidden;
        height: 2px;
        background-color: var(--vs-theme-color5);
        transition: 0.3s ease-in-out;
    }

    & .vs-footer__copyright a: hover {
        color: var(--vs-theme-color5);
    }

    & .vs-footer__copyright a: hover::before {
        left: 0px;
        right: auto;
        opacity: 1;
        visibility: visible;
        width: 100%;
        transition: 0.3s ease-in-out;
    }

    & .breadcrumb-wrapper {
        padding-top: 140px;
        padding-bottom: 200px;
        background-color: var(--vs-title-color);
        min-height: 530px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-position: center bottom;
        position: relative;
        overflow: hidden;
    }

    @media (max-width: 991px) {
        & .breadcrumb-wrapper {
            padding-top: 40px;
            padding-bottom: 40px;
            min-height: 325px;
        }
    }

    & .breadcrumb-wrapper__bg {
        position: absolute;
        inset: 0px;
        z-index: -1;
    }

    & .breadcrumb-wrapper__bg > img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    & .breadcrumb-wrapper__ele1 {
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0px;
        width: 100%;
    }

    & .breadcrumb-wrapper__content {
        text-align: center;
    }

    & .breadcrumb-wrapper__title {
        color: var(--vs-white-color);
        width: 100%;
        text-transform: capitalize;
        font-size: clamp(1.875rem, 1.563rem + 1.56vw, 3.438rem);
        margin: 0px 0px 5px;
    }

    @media (max-width: 991px) {
        & .breadcrumb-wrapper__title {
            margin: 0px 0px 10px;
        }
    }

    & .breadcrumb-wrapper__menu {
        max-width: 100%;
        margin: -0.35em 0px;
        padding: 0px;
        list-style-type: none;
    }

    & .breadcrumb-wrapper__menu--item {
        display: inline-block;
        list-style: none;
        position: relative;
    }

    & .breadcrumb-wrapper__menu--item::after {
        content: "";
        font-family: var(--vs-icon-font);
        display: inline-block;
        margin: 0px 3px 0px 7px;
        position: relative;
        font-size: 16px;
        color: var(--vs-theme-color2);
    }

    & .breadcrumb-wrapper__menu--item:last-child::after {
        content: "";
    }

    & .breadcrumb-wrapper__menu li, & .breadcrumb-wrapper__menu a, & .breadcrumb-wrapper__menu span {
        white-space: normal;
        word-break: break-word;
        font-weight: 700;
        font-size: 22px;
        font-family: var(--vs-title-font);
        color: var(--vs-white-color);
        text-transform: capitalize;
    }

    & .breadcrumb-wrapper__menu a {
        color: var(--vs-theme-color2);
    }

    & .breadcrumb-wrapper__menu a: hover {
        color: var(--vs-white-color);
    }

    & .vs-pagination {
        margin-bottom: 30px;
        padding-top: 30px;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    & .vs-pagination ul {
        margin: 0px;
        padding: 0px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    & .vs-pagination li {
        display: inline-block;
        margin: 0px;
        list-style-type: none;
    }

    & .vs-pagination li: last-child {
        margin-right: 0px;
    }

    & .vs-pagination li: first-child {
        margin-left: 0px;
    }

    & .vs-pagination span, & .vs-pagination a {
        font-family: var(--vs-title-font);
        color: var(--vs-body-color);
        text-align: center;
        min-width: 57px;
        height: 56px;
        line-height: 56px;
        font-weight: 700;
        font-size: 18px;
        z-index: 1;
        border-radius: 15px;
        position: relative;
        background-color: rgba(var(--vs-title-color-rgb), 0.1);
        border: 2px solid rgba(var(--vs-title-color-rgb), 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @media (max-width: 767px) {
        & .vs-pagination span, & .vs-pagination a {
            min-width: 40px;
        }
    }

    & .vs-pagination span: :before, & .vs-pagination a::before {
        content: "";
        display: block;
        position: absolute;
        inset: 0px;
        background-color: var(--bg-color3);
        border: 1px solid var(--vs-stroke-color);
        border-radius: 5px;
        transition: 0.3s;
        opacity: 0.7;
        z-index: -1;
    }

    & .vs-pagination span.active, & .vs-pagination span: hover, & .vs-pagination a.active, & .vs-pagination a:hover {
        box-shadow: none;
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color1);
    }

    & .vs-pagination .pagi-btn {
        font-size: 15px;
    }

    & .vs-pagination .pagi-btn--next {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
        border-color: var(--vs-theme-color2);
    }

    & blockquote {
        display: block;
        position: relative;
        overflow: hidden;
        font-size: 24px;
        line-height: 30px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        color: var(--vs-title-color);
        background-color: var(--quote-bg, #eff1f5);
        border-left: 4px solid var(--vs-theme-color1);
        padding: 43px 50px 42px 35px;
        margin: 35px 0px;
    }

    & blockquote p {
        font-family: inherit;
        color: inherit;
        z-index: 3;
        width: 100%;
        line-height: 1.5;
        position: relative;
        margin-bottom: 0px !important;
    }

    & blockquote: :before {
        content: "";
        font-family: var(--vs-icon-font);
        position: absolute;
        right: 40px;
        bottom: 30px;
        font-size: 3.5rem;
        font-weight: 300;
        line-height: 1;
        color: var(--vs-theme-color1);
        opacity: 0.3;
    }

    & blockquote p {
        margin-bottom: 0px;
    }

    & blockquote p a {
        color: inherit;
    }

    & blockquote cite {
        color: var(--vs-theme-color1);
        font-family: var(--vs-title-font);
        font-size: 18px;
        font-weight: 600;
        display: inline-block;
        position: relative;
        padding-left: 45px;
        line-height: 1;
        margin-top: 20px;
        font-style: normal;
    }

    & blockquote cite: :before {
        content: "";
        position: absolute;
        left: 0px;
        bottom: 6px;
        width: 25px;
        height: 4px;
        border-top: 4px solid var(--vs-theme-color2);
        border-radius: 3px;
    }

    & blockquote.vs-quote {
        text-align: left;
        padding: 0px 35px 20px 127px;
        border-left: 0px;
        border-radius: 30px;
        box-shadow: 0 8px 0 var(--vs-theme-color2);
        background-color: transparent;
    }

    & blockquote.vs-quote: :before {
        position: absolute;
        inset: 0px auto auto 45px;
        line-height: 1;
        opacity: 1;
        width: auto;
        height: auto;
        text-align: center;
        background-color: transparent;
        color: var(--vs-theme-color2);
        font-size: 60px;
        display: inline-block;
        margin: 0px;
        border-radius: 0%;
        font-weight: 700;
    }

    & blockquote.vs-quote cite {
        padding: 0px 0px 0px 34px;
        margin-top: 18px;
        position: relative;
        color: var(--vs-theme-color2);
        font-family: var(--vs-body-font);
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700;
    }

    & blockquote.vs-quote cite: :before {
        display: inline-block;
    }

    & blockquote.vs-quote p {
        font-weight: 900;
        text-transform: capitalize;
    }

    & blockquote.vs-quote .quote-author {
        font-size: 14px;
        color: rgb(116, 120, 124);
        font-family: var(--vs-title-font);
        display: block;
        font-weight: 400;
    }

    & .blog-meta span, & .blog-meta a {
        display: inline-block;
        margin-right: 16px;
        font-size: 16px;
        color: rgb(139, 145, 156);
    }

    & .blog-meta span: last-child, & .blog-meta a:last-child {
        margin-right: 0px;
    }

    & .blog-meta span i, & .blog-meta a i {
        margin-right: 10px;
        color: var(--vs-theme-color1);
    }

    & .blog-meta a: hover {
        color: var(--vs-theme-color1);
    }

    & .blog-category {
        margin-bottom: -10px;
    }

    & .blog-category a {
        display: inline-block;
        color: var(--vs-white-color);
        padding: 4.5px 24.5px;
        margin-right: 5px;
        margin-bottom: 10px;
        border: 1px solid transparent;
        background-color: var(--vs-theme-color1);
    }

    & .blog-category a: hover {
        background-color: var(--vs-white-color);
        color: var(--vs-body-color);
        border-color: var(--vs-theme-color1);
    }

    & .blog-title a {
        color: inherit;
    }

    & .blog-title a: hover {
        color: var(--vs-theme-color1);
    }

    & .vs-blog {
        margin-bottom: 50px;
        position: relative;
    }

    & .vs-blog__ele1 {
        position: absolute;
        bottom: 0px;
        right: 0px;
        left: 0px;
    }

    & .vs-blog__img {
        border-radius: 20px;
        transform: scale(1.05);
        transition: 0.3s ease-in-out;
    }

    & .vs-blog__img--figure {
        overflow: hidden;
        border-radius: 20px;
    }

    & .vs-blog__img--link {
        display: inline-block;
    }

    & .vs-blog__content {
        padding: 0px;
    }

    & .vs-blog__meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin: 0px 0px 9px;
    }

    & .vs-blog__meta--link {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        font-family: var(--vs-body-font);
        font-weight: 500;
        color: var(--vs-body-color);
        text-transform: capitalize;
    }

    & .vs-blog__meta--link::after {
        content: "/";
        padding-right: 9px;
    }

    & .vs-blog__meta--link:first-child i {
        color: var(--vs-theme-color2);
    }

    & .vs-blog__meta--link:last-child::after {
        display: none;
    }

    & .vs-blog__meta--link:hover {
        color: var(--vs-theme-color2);
    }

    & .vs-blog__heading {
        font-size: 2rem;
        text-transform: capitalize;
        transition: 0.3s ease-in-out;
        font-weight: 800;
        margin-bottom: 20px;
    }

    & .vs-blog__heading--link {
        display: inline-block;
    }

    & .vs-blog__heading--link:hover .vs-blog__heading {
        color: var(--vs-theme-color2);
    }

    & .vs-blog__desc {
        font-weight: 500;
    }

    & .vs-blog__link {
        display: inline-flex;
        align-items: center;
        font-weight: 700;
        color: var(--vs-title-color);
        gap: 9px;
        text-transform: capitalize;
        font-family: var(--vs-title-font);
        font-size: 18px;
    }

    & .vs-blog__link i {
        color: var(--vs-theme-color2);
    }

    & .vs-blog__link:hover {
        color: var(--vs-theme-color2);
    }

    & .vs-blog:hover .vs-blog__img {
        transform: scale(1);
        transition: 0.3s ease-in-out;
    }

    & .vs-blog--style2 {
        margin: 0px 0px 30px;
        padding: 0px 8px 8px 0px;
        position: relative;
        z-index: 1;
    }

    & .vs-blog--style2::before {
        position: absolute;
        content: "";
        width: 94%;
        height: 94%;
        background-color: var(--vs-title-color);
        z-index: -1;
        border-radius: 21px;
        right: 0px;
        bottom: 0px;
        transition: 0.3s ease-in-out;
    }

    & .vs-blog--style2 .vs-blog__inner {
        background-color: var(--vs-theme-color6);
        border: 1.5px dashed rgba(var(--vs-title-color-rgb), 0.4);
        border-radius: 25px;
        padding: 20px;
        transition: 0.3s ease-in-out;
    }

    & .vs-blog--style2 .vs-blog__meta {
        margin: 0px 0px 11px;
    }

    & .vs-blog--style2 .vs-blog__meta--link {
        display: inline-block;
    }

    & .vs-blog--style2 .vs-blog__meta--link i {
        margin-right: 11px;
        color: var(--vs-body-color);
    }

    & .vs-blog--style2 .vs-blog__img {
        transform: scale(1);
        border-radius: 24px;
        overflow: hidden;
    }

    & .vs-blog--style2 .vs-blog__img a {
        width: 100%;
        display: inline-block;
    }

    & .vs-blog--style2 .vs-blog__img img {
        width: 100%;
        object-fit: cover;
        transition: transform 0.6s;
        transform-origin: center center;
        transform: scale3d(1.01, 1.01, 1.01) rotateY(0deg) rotateX(0deg);
    }

    & .vs-blog--style2 .vs-blog__content {
        padding: 30px 15px 10px;
    }

    @media (max-width: 991px) {
        & .vs-blog--style2 .vs-blog__content {
            padding: 20px 15px 10px;
        }
    }

    & .vs-blog--style2 .vs-blog__heading {
        font-size: clamp(1.3rem, 0.818rem + 0.91vw, 1.5rem);
        margin: 0px 0px 12px;
    }

    & .vs-blog--style2 .vs-blog__desc {
        text-transform: capitalize;
        margin: 0px 0px 8px;
        font-weight: 500;
    }

    & .vs-blog--style2 .vs-blog__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    & .vs-blog--style2 .vs-blog__share ul {
        list-style: none;
        padding-left: 0px;
        margin-bottom: 0px;
    }

    & .vs-blog--style2 .vs-blog__share > ul > li {
        position: relative;
        padding: 10px 0px;
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > a {
        color: var(--vs-white-color);
        --icon-size: 41px;
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--vs-title-color);
        border-radius: 50%;
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > ul {
        flex-direction: column-reverse;
        background-color: transparent;
        gap: 8px;
        padding: 0px;
        left: 50%;
        bottom: 100%;
        transform: translate(-50%, 0%);
        position: absolute;
        display: flex;
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > ul > li {
        transform-origin: center center;
        transition: 0.4s linear;
        transform: translateY(50%) scale(0);
        opacity: 0;
        visibility: hidden;
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > ul > li: nth-of-type(1) {
        transition-delay: 0.4s;
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > ul > li: nth-of-type(2) {
        transition-delay: 0.5s;
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > ul > li: nth-of-type(3) {
        transition-delay: 0.6s;
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > ul > li: nth-of-type(4) {
        transition-delay: 0.7s;
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > ul > li > a {
        --icon-size: 42px;
        min-height: var(--icon-size);
        min-width: var(--icon-size);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 16px;
        background: var(--vs-theme-color2);
        transition: 0.3s ease-in-out;
        z-index: 1;
        position: relative;
        color: var(--vs-white-color);
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > ul > li > a: :before {
        --icon-size: 50px;
        position: absolute;
        content: "";
        width: var(--icon-size);
        height: var(--icon-size);
        border-radius: 50%;
        z-index: -1;
        background-color: var(--vs-theme-color2);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
        transform-origin: center center;
        transform: scale(0.8);
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > ul > li > a: hover {
        color: var(--vs-white-color);
    }

    & .vs-blog--style2 .vs-blog__share > ul > li > ul > li > a: hover::before {
        opacity: 0.5;
        visibility: visible;
        transform: scale(1);
    }

    & .vs-blog--style2 .vs-blog__share > ul > li.active > ul li {
        transform: translateY(0px) scale(1);
        opacity: 1;
        visibility: visible;
    }

    & .vs-blog--style2:hover::before {
        background-color: var(--vs-theme-color2);
        transition: 0.3s ease-in-out;
    }

    & .vs-blog--style2:hover .vs-blog__inner {
        background-color: var(--vs-theme-color8);
        border: 1.5px dashed rgba(0, 0, 0, 0.4);
        transition: 0.3s ease-in-out;
    }

    & .vs-blog--style2:hover .vs-blog__img img {
        transform: scale3d(1.1, 1.1, 1.1) rotateY(10deg) rotateX(5deg);
        transition: transform 0.6s;
    }

    & .vs-blog--style2:hover .vs-blog__share > ul > li > a {
        background-color: var(--vs-theme-color2);
        transition: 0.3s ease-in-out;
    }

    & .vs-blog--single {
        margin-bottom: 70px;
    }

    & .vs-blog--single p {
        line-height: 28px;
    }

    & .vs-blog--single h4 {
        line-height: 1.2;
        font-size: 1.5rem;
        text-transform: capitalize;
        font-weight: 700;
        margin-bottom: 20px;
    }

    & .vs-blog--single figure {
        margin: 0.5rem 0px 1.5rem;
    }

    & .vs-blog--single figure img {
        border-radius: 20px;
        width: 100%;
    }

    & .vs-blog--single .vs-blog__content {
        padding-bottom: 0px;
    }

    & .vs-blog--single .vs-blog__footer {
        padding: 25px 0px 0px;
        position: relative;
        margin-top: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
    }

    @media (max-width: 767px) {
        & .vs-blog--single .vs-blog__footer {
            justify-content: center;
        }
    }

    & .vs-blog--single .vs-blog__footer--ele1 {
        position: absolute;
        top: 0px;
    }

    & .vs-blog--single .vs-blog__footer--cloud, & .vs-blog--single .vs-blog__footer--share {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    & .vs-blog--single .vs-blog__footer--share {
        display: flex;
        position: relative;
        cursor: pointer;
        padding: 10px 0px;
    }

    & .vs-blog--single .vs-blog__footer--share__list {
        display: flex;
        align-items: center;
        flex-direction: column;
        list-style: none;
        margin-bottom: 0px;
        position: absolute;
        right: 0px;
        top: auto;
        bottom: 100%;
        padding: 15px 12px;
        gap: 10px;
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
        border-radius: 5px;
        transform: scaleY(0) translateY(0%);
        transform-origin: center bottom;
        transition: 0.3s;
        will-change: transform;
    }

    & .vs-blog--single .vs-blog__footer--share__list li {
        transform: translateY(20px);
        transform-origin: center bottom;
        transition: 0.3s;
        will-change: transform;
        opacity: 0;
        visibility: hidden;
    }

    & .vs-blog--single .vs-blog__footer--share__list li: nth-of-type(1) {
        transition-delay: 0.4s;
    }

    & .vs-blog--single .vs-blog__footer--share__list li: nth-of-type(2) {
        transition-delay: 0.5s;
    }

    & .vs-blog--single .vs-blog__footer--share__list li: nth-of-type(3) {
        transition-delay: 0.6s;
    }

    & .vs-blog--single .vs-blog__footer--share__list li: nth-of-type(4) {
        transition-delay: 0.7s;
    }

    & .vs-blog--single .vs-blog__footer--share__list a {
        color: var(--vs-white-color);
        font-size: 14px;
    }

    & .vs-blog--single .vs-blog__footer--share__list a: hover {
        color: var(--vs-theme-color1);
    }

    & .vs-blog--single .vs-blog__footer--share.active ul {
        transform: scaleY(1) translateY(0%);
        transform-origin: center bottom;
        transition: 0.3s;
    }

    & .vs-blog--single .vs-blog__footer--share.active ul li {
        transform: translateY(0px);
        transform-origin: center bottom;
        transition: 0.3s;
        will-change: transform;
        opacity: 1;
        visibility: visible;
    }

    & .vs-blog--single .vs-blog__footer--share.active ul li: nth-of-type(1) {
        transition-delay: 0.4s;
    }

    & .vs-blog--single .vs-blog__footer--share.active ul li: nth-of-type(2) {
        transition-delay: 0.5s;
    }

    & .vs-blog--single .vs-blog__footer--share.active ul li: nth-of-type(3) {
        transition-delay: 0.6s;
    }

    & .vs-blog--single .vs-blog__footer--share.active ul li: nth-of-type(4) {
        transition-delay: 0.7s;
    }

    & .vs-blog--single .vs-blog__footer--title {
        display: inline-flex;
        align-items: center;
        font-size: 18px;
        font-weight: 900;
        color: var(--vs-title-color);
        line-height: 1.1;
        gap: 9px;
        font-family: var(--vs-title-font);
        text-transform: capitalize;
    }

    & .vs-blog--single .vs-blog__footer--title i {
        color: var(--vs-theme-color1);
    }

    & .vs-blog--single .vs-blog__footer--list {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    & .vs-blog--single .vs-blog__footer--links {
        letter-spacing: 0.48px;
        font-weight: 500;
        font-size: 16px;
        color: var(--vs-body-color);
        text-transform: capitalize;
        line-height: 1.1;
    }

    & .vs-blog--single .vs-blog__footer--links::after {
        content: ",";
    }

    & .vs-blog--single .vs-blog__footer--links:last-child::after {
        content: "";
    }

    & .vs-blog--single .vs-blog__footer--links:hover {
        color: var(--vs-theme-color2);
    }

    & .blog-single-author {
        display: flex;
        align-items: center;
        gap: 30px;
        border-radius: 20px;
        background-color: var(--vs-theme-color1);
        overflow: hidden;
        padding: 35px 52px 35px 30px;
        margin-top: 50px;
    }

    @media (max-width: 1199px) {
        & .blog-single-author {
            gap: 20px;
            border-radius: 10px;
            padding: 25px 20px;
            margin-top: 30px;
        }
    }

    @media (max-width: 767px) {
        & .blog-single-author {
            flex-direction: column;
        }
    }

    & .blog-single-author .media-img {
        width: 140px;
        height: 140px;
        flex-shrink: 0;
        border: 4px solid var(--vs-theme-color2);
        border-radius: 50%;
        overflow: hidden;
    }

    @media (max-width: 1199px) {
        & .blog-single-author .media-img {
            width: 100px;
            height: 100px;
        }
    }

    & .blog-single-author .media-body {
    }

    @media (max-width: 767px) {
        & .blog-single-author .media-body {
            text-align: center;
        }
    }

    & .blog-single-author .media-body .author-name {
        font-weight: 700;
        text-transform: capitalize;
        color: var(--vs-white-color);
        margin-bottom: 10px;
        font-size: 24px;
    }

    & .blog-single-author .media-body .author-text {
        color: var(--vs-white-color);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 162.5%;
        text-transform: capitalize;
        margin-bottom: 0px;
    }

    @media (max-width: 767px) {
        & .blog-single-author .media-body .author-text {
            font-size: 14px;
        }
    }

    @media (max-width: 1199px) {
        & .vs-comments-wrap {
            margin-top: 40px;
        }
    }

    & .vs-comments-wrap .vs-post-comment {
        margin: 40px 0px;
    }

    & .vs-comments-wrap .vs-post-comment-inner {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    @media (max-width: 991px) {
        & .vs-comments-wrap .vs-post-comment-inner {
            flex-direction: column;
            align-items: start;
            gap: 0px;
        }
    }

    & .vs-comments-wrap .comment-content {
        border: 1px dashed rgba(6, 47, 52, 0.4);
        padding: 30px 25px;
        border-radius: 10px;
    }

    & .vs-comments-wrap .reply_and_edit {
        margin-left: 138px;
    }

    & .vs-comments-wrap .reply_and_edit .replay-btn {
        margin-left: 0px;
        margin-top: 20px;
        color: var(--vs-theme-color2);
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.48px;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    @media (max-width: 991px) {
        & .vs-comments-wrap .reply_and_edit {
            margin-left: 0px;
        }
    }

    & .vs-comments-wrap .children {
        margin-left: 60px;
    }

    @media (max-width: 991px) {
        & .vs-comments-wrap .children {
            margin-left: 40px;
        }
    }

    & .vs-comments-wrap .comment-avater {
        width: 118px;
        height: 118px;
        border: 4px solid var(--vs-theme-color2);
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    & .vs-comments-wrap .comment-avater img {
        transform: scale(1.08);
    }

    @media (max-width: 991px) {
        & .vs-comments-wrap .comment-avater {
            width: 90px;
            height: 90px;
        }
    }

    & .vs-comments-wrap .comment-content .content-header {
        display: flex;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 5px;
        flex-wrap: wrap;
    }

    @media (max-width: 1199px) {
        & .vs-comments-wrap .comment-content .content-header {
            margin-bottom: 8px;
        }
    }

    & .vs-comments-wrap .comment-content .content-header .name {
        font-weight: 900;
        text-transform: capitalize;
        line-height: 1;
        font-size: 24px;
    }

    & .vs-comments-wrap .comment-content .content-header .commented-on {
        display: inline-block;
        color: var(--vs-theme-color1);
        font-size: 16px;
        font-style: normal;
        font-weight: 800;
        letter-spacing: 0.48px;
        text-transform: uppercase;
        line-height: 1;
        font-family: var(--vs-body-font);
    }

    & .vs-comments-wrap .comment-content .text {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 175%;
        text-transform: capitalize;
    }

    @media (max-width: 991px) {
        & .vs-comments-wrap .comment-content .text {
            font-size: 14px;
            font-weight: 400;
        }
    }

    & .blog-inner-title {
        font-size: 30px;
        margin-top: -0.2em;
        margin-bottom: 8px;
    }

    & .blog-single {
        position: relative;
        margin-bottom: 40px;
        background: var(--vs-white-color);
        box-shadow: rgba(169, 177, 193, 0.17) 0px 10px 31px;
        border-radius: 5px;
        padding: 0.1px 0px;
    }

    & .blog-single .blog-meta {
        margin: -0.2em 0px 10px;
    }

    & .blog-single .blog-title {
        font-size: 30px;
        margin-bottom: 17px;
    }

    & .blog-single .link-btn {
        width: fit-content;
        display: block;
        margin-top: 26px;
    }

    & .blog-single .blog-date {
        color: var(--vs-body-color);
    }

    & .blog-single .blog-date i {
        color: var(--vs-theme-color1);
        margin: 0px 10px 0px 0px;
    }

    & .blog-single .share-links-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--vs-title-color);
        font-family: var(--vs-title-font);
        margin: 0px 15px 0px 0px;
        display: inline-block;
    }

    & .blog-single .share-links {
        margin: 16px 0px 0px;
    }

    & .blog-single .share-links .row {
        align-items: center;
        --bs-gutter-y: 15px;
    }

    & .blog-single .share-links .tagcloud {
        display: inline-block;
    }

    & .blog-single .share-links .tagcloud a {
        padding: 0px;
        border-radius: 0px;
        color: var(--vs-body-color);
    }

    & .blog-single .share-links .tagcloud a: not(:last-child)::after {
        content: ",";
    }

    & .blog-single .social-links {
        padding: 0px;
        margin: 0px;
        list-style-type: none;
        display: inline-block;
    }

    & .blog-single .social-links li {
        display: inline-block;
        margin-right: 13px;
    }

    & .blog-single .social-links li: last-child {
        margin-right: 0px;
    }

    & .blog-single .social-links a {
        line-height: 1;
        font-size: 16px;
        color: var(--vs-body-color);
        text-align: center;
        display: block;
    }

    & .blog-single .social-links a: hover {
        color: var(--vs-theme-color1);
    }

    & .blog-single .blog-content {
        margin: var(--blog-space-y, 40px) var(--blog-space-x, 40px) var(--blog-space-y, 40px) var(--blog-space-x, 40px);
        padding: 0px;
        position: relative;
        border-radius: 0px 0px 5px 5px;
    }

    & .blog-single .blog-audio {
        line-height: 1;
    }

    & .blog-single .blog-audio, & .blog-single .blog-img {
        position: relative;
        background-color: var(--vs-smoke-color);
    }

    & .blog-single .blog-audio img, & .blog-single .blog-audio > *, & .blog-single .blog-img img, & .blog-single .blog-img > * {
        border-radius: 5px 5px 0px 0px;
    }

    & .blog-single .blog-img .slick-arrow {
        --pos-x: 30px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        border-radius: 5px;
    }

    & .blog-single .blog-img .slick-arrow:hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
    }

    & .blog-single .blog-img .play-btn {
        --icon-size: 80px;
        --vs-icon-font-size: 24px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin: calc(var(--icon-size) / -2) 0 0 calc(var(--icon-size) / -2);
    }

    & .blog-single:hover .blog-img .slick-arrow {
        opacity: 1;
        visibility: visible;
    }

    & .blog-author {
        background-color: var(--vs-smoke-color);
        padding: 30px;
        display: flex;
        align-items: center;
        margin: var(--blog-space-y, 60px) 0;
    }

    & .blog-author .media-img {
        width: 189px;
        margin: 0px 30px 0px 0px;
    }

    & .blog-author .author-name {
        font-size: 24px;
        font-weight: 700;
        margin: -0.3em 0px 0px;
    }

    & .blog-author .author-degi {
        color: var(--vs-theme-color1);
    }

    & .blog-author .author-text {
        margin: 0px 0px -0.1em;
    }

    & .blog-details .blog-single {
        background: transparent;
        box-shadow: none;
        padding: 0px;
    }

    & .blog-details .blog-img {
        margin: 0px 0px 40px;
    }

    & .blog-details .blog-img img {
        border-radius: 0px;
    }

    & .blog-details .blog-content {
        margin: 0px;
    }

    & .blog-style1 {
        background-color: var(--vs-white-color);
        box-shadow: rgba(169, 177, 193, 0.07) 0px 10px 31px;
        border-radius: 5px;
    }

    & .blog-style1 .blog-meta {
        margin: 0px 0px 10px;
    }

    & .blog-style1 .blog-content {
        padding: 35px 40px 33px;
    }

    & .blog-style2 {
        background-color: var(--vs-white-color);
        box-shadow: none;
    }

    & .blog-style2 .blog-meta {
        margin: 0px 0px 15px;
    }

    & .blog-style2 .blog-text {
        margin: 0px 0px 20px;
    }

    & .blog-style2 .blog-content {
        border-width: medium 2px 2px;
        border-style: none solid solid;
        border-color: currentcolor rgb(236, 242, 253) rgb(236, 242, 253);
        border-image: initial;
        padding: 35px 40px 40px;
    }

    & .blog-style3 .blog-img {
        overflow: hidden;
        margin: -2px;
    }

    & .blog-style3 .blog-img img {
        transform: scale(1);
        transition: 0.4s;
    }

    & .blog-style3 .blog-body {
        border: 2px solid rgb(244, 245, 248);
    }

    & .blog-style3:nth-child(2n+1) .blog-body {
        display: flex;
        flex-direction: column-reverse;
    }

    & .blog-style3 .blog-content {
        padding: 35px 40px 30px;
    }

    & .blog-style3 .blog-meta {
        margin-bottom: 15px;
    }

    & .blog-style3 .blog-meta i {
        color: var(--vs-body-color);
    }

    & .blog-style3 .blog-meta a {
        position: relative;
        line-height: 1;
        border-right: 1px solid rgb(200, 200, 200);
        margin-right: 12px;
        padding: 0px 15px 0px 0px;
    }

    & .blog-style3 .blog-meta a: last-child {
        margin-right: 0px;
        padding-right: 0px;
        border-right-width: medium;
        border-right-style: none;
        border-right-color: currentcolor;
    }

    & .blog-style3 .blog-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
    }

    & .blog-style3 .link-btn {
        text-transform: capitalize;
    }

    & .blog-style3:hover .blog-img img {
        transform: scale(1.1);
    }

    & .blog-style4 {
        box-shadow: rgba(166, 170, 184, 0.05) 8.5px 0px 60px 0px;
        border-radius: 20px;
        padding: 20px;
        border: 2px solid rgb(239, 242, 251);
    }

    & .blog-style4 .blog-content {
        padding: 0px 20px 10px;
    }

    & .blog-style4 .blog-img {
        overflow: hidden;
        border-radius: 20px;
        margin: 0px 0px 32px;
    }

    & .blog-style4 .blog-img img {
        transform: scale(1);
        transition: 0.4s;
    }

    & .blog-style4 .blog-meta {
        margin-bottom: 4px;
    }

    & .blog-style4 .blog-meta i {
        color: var(--vs-body-color);
    }

    & .blog-style4 .blog-meta a {
        font-size: 14px;
    }

    & .blog-style4 .blog-title {
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 22px;
    }

    & .blog-style4:hover .blog-img img {
        transform: scale(1.2);
    }

    @media (min-width: 1199px) {
        & .blog-style4-slider {
            max-width: 775px;
        }
    }

    @media (max-width: 1399px) {
        & .blog-style2 .blog-content {
            padding: 30px 25px 35px;
        }

        & .blog-style1 .blog-content {
            padding: 35px 25px 33px;
        }

        & .blog-style1 .blog-title {
            font-size: 18px;
        }
    }

    @media (max-width: 1199px) {
        & blockquote {
            font-size: 20px;
            padding: 23px 30px 26px;
        }

        & blockquote cite {
            font-size: 16px;
        }

        & .blog-single {
            --blog-space-y: 40px;
            --blog-space-x: 30px;
        }

        & .blog-single .blog-title {
            font-size: 24px;
        }

        & .blog-meta span, & .blog-meta a {
            font-size: 14px;
        }

        & .blog-style3 .blog-content {
            padding: 25px 25px 30px;
        }

        & .blog-style4 {
            padding: 10px;
        }

        & .blog-style4 .blog-content {
            padding: 0px 15px 20px;
        }

        & .blog-style4 .blog-title {
            margin-bottom: 15px;
            font-size: 20px;
        }
    }

    @media (max-width: 767px) {
        & blockquote.vs-quote {
            padding: 70px 15px 40px;
        }

        & blockquote.vs-quote p {
            line-height: 1.8;
        }

        & .blog-inner-title {
            font-size: 26px;
        }

        & .blog-single {
            --blog-space-y: 40px;
            --blog-space-x: 20px;
        }

        & .blog-single .blog-title {
            font-size: 20px;
        }

        & .blog-single .blog-img .play-btn {
            --icon-size: 60px;
            --vs-icon-font-size: 20px;
        }

        & .blog-author {
            display: block;
            padding: 30px 15px;
        }

        & .blog-author .media-img {
            margin: 0px 0px 30px;
            width: 100%;
        }

        & .blog-author .media-img img {
            width: 100%;
        }

        & .blog-author .author-name {
            font-size: 18px;
        }

        & .blog-author .author-degi {
            margin-bottom: 10px;
        }
    }

    & .comment-respond {
        margin: 0px;
        position: relative;
    }

    & .comment-respond .form-title a#cancel-comment-reply-link {
        font-size: 0.7em;
        text-decoration: underline;
    }

    & .comment-respond .custom-checkbox.notice {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    & .comment-respond .custom-checkbox input[type="checkbox"] {
        display: none;
    }

    & .comment-respond .custom-checkbox label {
        position: relative;
        padding-left: 30px;
        padding-top: 0px;
        cursor: pointer;
        user-select: none;
        font-size: 16px;
        color: var(--vs-body-color);
        font-weight: 500;
    }

    & .comment-respond .custom-checkbox label: :before {
        display: none !important;
    }

    & .comment-respond .custom-checkbox label .checkmark {
        position: absolute;
        top: 3px;
        left: 0px;
        height: 20px;
        width: 20px;
        background-color: var(--vs-white-color);
        border: 1px dashed rgba(6, 47, 52, 0.4);
        border-radius: 4px;
        transition: 0.2s;
    }

    & .comment-respond .custom-checkbox label .checkmark: :after {
        content: "";
        position: absolute;
        display: none;
        left: 7px;
        top: 3px;
        width: 5px;
        height: 10px;
        border-style: solid;
        border-color: white;
        border-image: initial;
        border-width: 0px 2px 2px 0px;
        transform: rotate(45deg);
    }

    & .comment-respond .custom-checkbox input[type="checkbox"]: checked + label .checkmark {
        background-color: var(--vs-theme-color2);
        border-color: var(--vs-theme-color2);
    }

    & .comment-respond .custom-checkbox input[type="checkbox"]: checked + label .checkmark::after {
        display: block;
    }

    & .comment-respond .row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    & .comment-respond .form-control {
        background-color: var(--vs-white-color);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        height: 55px;
    }

    & .comment-respond .form-group > i {
        top: 20.5px;
    }

    & .comment-respond input[type="checkbox"] ~ label: :before {
        background-color: var(--vs-white-color);
        border: 1px solid var(--vs-white-color);
        border-radius: 3px;
    }

    & .comment-respond input[type="checkbox"]: checked ~ label::before {
        background-color: var(--vs-theme-color1);
        border-color: transparent;
    }

    & .comment-respond .blog-inner-title {
        margin-bottom: 0px;
    }

    & .comment-respond .form-text {
        margin-bottom: 25px;
    }

    & .comment-respond .form-inner {
        background-color: var(--vs-smoke-color);
        padding: 30px;
    }

    & .question-form .comment-respond, & .review-form .comment-respond {
        margin: 0px;
    }

    & .question-form .form-control, & .review-form .form-control {
        background-color: transparent;
        border: 1px solid rgb(228, 228, 228);
    }

    & .question-form .rating-select, & .review-form .rating-select {
        display: flex;
        align-items: center;
    }

    & .question-form .rating-select label, & .review-form .rating-select label {
        font-weight: 500;
        color: var(--vs-title-color);
    }

    & .vs-comments-wrap + .vs-comment-form {
        margin: var(--blog-space-y, 85px) 0 30px 0;
    }

    & .vs-comments-wrap {
        margin: var(--blog-space-y, 60px) 0 var(--blog-space-y, 0px) 0;
    }

    & .vs-comments-wrap ul {
        list-style: none;
        padding-left: 0px;
    }

    & .vs-comments-wrap .description p: last-child {
        margin-bottom: 0px;
    }

    & .vs-comments-wrap .comment-respond {
        margin: 30px 0px;
    }

    & .vs-comments-wrap pre {
        background: rgb(237, 237, 237);
        color: rgb(102, 102, 102);
        font-size: 14px;
        margin: 20px 0px;
        overflow: auto;
        padding: 20px;
        white-space: pre-wrap;
        overflow-wrap: break-word;
    }

    & .vs-comments-wrap blockquote {
        background-color: rgb(234, 248, 249);
    }

    & .vs-comments-wrap li {
        margin: 0px;
    }

    & .vs-comments-wrap li.vs-comment-item: last-child .vs-post-comment {
        margin-bottom: 30px;
    }

    & .vs-comments-wrap .vs-post-comment {
        border-bottom: 0px solid rgb(240, 240, 240);
        position: relative;
        padding: 0px;
        margin: 30px 0px 40px;
    }

    & .vs-comments-wrap ul.comment-list {
        list-style: none;
        margin: -10px 0px 0px;
        padding: 0px;
    }

    & .vs-comments-wrap ul.comment-list ul ul, & .vs-comments-wrap ul.comment-list ul ol, & .vs-comments-wrap ul.comment-list ol ul, & .vs-comments-wrap ul.comment-list ol ol {
        margin-bottom: 0px;
    }

    & .vs-comments-wrap .comment-avater {
        width: 110px;
        height: 110px;
        margin-right: 0px;
        overflow: hidden;
        background-color: var(--vs-white-color);
    }

    & .vs-comments-wrap .comment-avater img {
        width: 100%;
    }

    & .vs-comments-wrap .comment-content {
        flex: 1 1 0%;
        position: relative;
    }

    & .vs-comments-wrap .commented-on {
        font-size: 14px;
        display: block;
        margin-bottom: 3px;
        margin-top: -0.25em;
        font-weight: 700;
        color: var(--vs-body-color);
        font-family: var(--vs-title-font);
    }

    & .vs-comments-wrap .commented-on i {
        margin-right: 7px;
        font-size: 0.9rem;
    }

    & .vs-comments-wrap .name {
        margin-bottom: 7px;
        font-size: 20px;
        font-weight: 700;
        text-transform: capitalize;
    }

    & .vs-comments-wrap .comment-top {
        display: flex;
        justify-content: space-between;
    }

    & .vs-comments-wrap .text:last-of-type {
        margin-bottom: 0px;
    }

    & .vs-comments-wrap .children {
        margin: 0px 0px 0px 70px;
        padding: 0px;
        list-style-type: none;
    }

    & .vs-comments-wrap .reply_and_edit {
        position: static;
        line-height: 1;
        margin-left: 166px;
        color: var(--vs-theme-color2);
    }

    & .vs-comments-wrap .replay-btn {
        font-weight: 600;
        font-size: 16px;
        display: inline-block;
        font-family: var(--vs-title-font);
        color: var(--vs-theme-color1);
    }

    & .vs-comments-wrap .replay-btn i {
        margin-right: 7px;
        font-size: 0.8em;
    }

    & .vs-comments-wrap .replay-btn:hover {
        color: var(--vs-title-color);
    }

    & .vs-comments-wrap .star-rating {
        font-size: 12px;
        margin-bottom: 10px;
        position: absolute;
        top: 5px;
        right: 0px;
        width: 80px;
    }

    & .vs-comments-wrap.vs-comment-form {
        margin: 0px;
    }

    & .vs-comment-form {
        margin-top: 55px;
        border-radius: 15px;
        border: 1px solid rgba(var(--vs-title-color-rgb), 0.1);
        background: var(--vs-theme-color6);
        padding: 50px 36px;
    }

    @media (max-width: 991px) {
        & .vs-comment-form {
            padding: 20px;
        }
    }

    & .vs-comment-form .form-text {
        color: var(--vs-body-color);
        font-family: var(--vs-body-font);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        text-transform: capitalize;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    @media (max-width: 1199px) {
        & .vs-comment-form .form-text {
            margin-top: 10px;
            margin-bottom: 20px;
        }
    }

    & .vs-comment-form .form-group .form-control {
        background-color: var(--vs-white-color);
        border: 1px dashed rgba(6, 47, 52, 0.4);
        padding: 25px;
        border-radius: 10px;
    }

    & .vs-comment-form .form-group textarea.form-control {
        height: 141px;
    }

    & .vs-comment-form .form-group textarea.form-control: focus {
        box-shadow: none;
    }

    & .vs-comment-form .form-group input.form-control {
        height: 60px;
        padding: 10px 26px;
    }

    & .vs-comment-form .form-group input.form-control: focus {
        box-shadow: none;
    }

    @media (max-width: 991px) {
        & .vs-comment-form .form-group input.form-control {
            height: 55px;
        }
    }

    & .vs-comment-form .custom-checkbox {
        margin: 24px 0px 38px;
    }

    @media (max-width: 991px) {
        & .vs-comment-form .custom-checkbox {
            margin: 20px 0px;
        }
    }

    & .vs-comment-form .custom-checkbox label: :before {
        border: 1px dashed rgba(6, 47, 52, 0.4);
    }

    & .vs-comment-form .vs-btn {
        border-radius: 50px;
    }

    @media (max-width: 767px) {
        & .vs-comment-form .vs-btn {
            width: 100%;
        }
    }

    @media (max-width: 1199px) {
        & .vs-comments-wrap .vs-post-comment {
            display: block;
        }

        & .vs-comments-wrap .star-rating {
            top: 0px;
            right: 0px;
        }

        & .vs-comments-wrap .comment-top {
            display: block;
        }

        & .vs-comments-wrap .comment-avater {
            margin-right: 0px;
            margin-bottom: 20px;
        }

        & .vs-comments-wrap .children {
            margin-left: 40px;
        }

        & .vs-comments-wrap .reply_and_edit {
            position: relative;
            top: 0px;
            margin: 15px 0px 0px;
        }
    }

    @media (max-width: 767px) {
        & .vs-comments-wrap .children {
            margin-left: 20px;
        }

        & .vs-comments-wrap .name {
            font-size: 18px;
        }

        & .comment-respond .form-inner {
            padding: 30px 15px;
        }
    }

    & .vs-hero {
        position: relative;
        z-index: 9;
    }

    & .vs-hero__active--zoom {
        display: flex;
        justify-content: center;
    }

    & .vs-hero__active--zoom .swiper-slide {
        overflow: hidden;
    }

    & .vs-hero__ele1, & .vs-hero__ele2 {
        position: absolute;
        z-index: 2;
    }

    @media (max-width: 991px) {
        & .vs-hero__ele1, & .vs-hero__ele2 {
            display: none;
        }
    }

    & .vs-hero__ele1 {
        top: 150px;
        left: 163px;
    }

    & .vs-hero__ele2 {
        right: 20%;
        top: 16%;
    }

    @media (max-width: 1199px) {
        & .vs-hero__ele2 {
            display: none;
        }
    }

    & .vs-hero__shape-bg {
        position: absolute;
        height: 100%;
        width: 1020px;
        right: 0px;
    }

    @media (max-width: 1500px) {
        & .vs-hero__shape-bg {
            width: 988px;
            right: -15%;
        }
    }

    & .vs-hero__shape-bg {
    }

    @media (max-width: 1199px) {
        & .vs-hero__shape-bg {
            display: none;
        }
    }

    & .vs-hero__bg {
        position: absolute;
        height: 100%;
        width: 100%;
        z-index: -1;
        animation: 20s ease-in-out 0s infinite normal none running zoom;
    }

    & .vs-hero__shape {
        max-height: 485.92px;
        padding: 70px 360px 136px 50px;
        max-width: 803.04px;
        position: relative;
    }

    @media (max-width: 1199px) {
        & .vs-hero__shape {
            padding: 70px 360px 70px 50px;
            max-width: 100%;
            position: relative;
            background-color: rgb(255, 255, 255);
            border-radius: 20px;
            overflow: hidden;
        }
    }

    & .vs-hero__shape {
    }

    @media (max-width: 991px) {
        & .vs-hero__shape {
            padding: 70px 336px 70px 50px;
        }
    }

    & .vs-hero__shape {
    }

    @media (max-width: 767px) {
        & .vs-hero__shape {
            padding: 18px;
        }
    }

    & .vs-hero__shape--bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        z-index: -1;
    }

    @media (max-width: 767px) {
        & .vs-hero__shape--bg {
            left: 15px;
        }
    }

    & .vs-hero__content {
        padding: 177px 0px 160px;
    }

    @media (max-width: 991px) {
        & .vs-hero__content {
            padding: 100px 0px;
        }
    }

    & .vs-hero__title--sub {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        font-size: 18px;
        font-weight: 600;
        color: var(--vs-theme-color1);
        text-transform: capitalize;
        line-height: 1.1;
        margin: 0px 0px 15px;
    }

    & .vs-hero__title--main {
        font-size: clamp(1.875rem, 1.307rem + 2.84vw, 3.438rem);
        line-height: 0.9;
        margin: 0px 0px 15px;
    }

    & .vs-hero__title--main span {
        color: var(--vs-theme-color1);
    }

    & .vs-hero__desc {
        font-size: 18px;
        font-weight: 500;
        color: var(--vs-body-color);
        text-transform: capitalize;
        margin: 0px 0px 30px;
    }

    & .vs-hero__character {
        position: absolute;
        right: 41px;
        top: 48px;
    }

    @media (max-width: 767px) {
        & .vs-hero__character {
            display: none;
        }
    }

    & .vs-hero .vs-hero__active--zoom .swiper-slide-active:not(.swiper-slide-duplicate) .vs-hero__anim.manimated {
        animation-fill-mode: both;
        animation-name: fadeInUp;
        opacity: 1;
        animation-duration: 1s;
    }

    & .vs-hero__direction {
        position: absolute;
        right: 206px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    @media (max-width: 1199px) {
        & .vs-hero__direction {
            right: 50px;
        }
    }

    & .vs-hero__direction {
    }

    @media (max-width: 991px) {
        & .vs-hero__direction {
            right: 50px;
        }
    }

    & .vs-hero__direction {
    }

    @media (max-width: 767px) {
        & .vs-hero__direction {
            display: none;
        }
    }

    & .vs-hero__direction .vs-swiper-button-next, & .vs-hero__direction .vs-swiper-button-prev {
        --circle-size: 55px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(2px);
        width: var(--circle-size);
        height: var(--circle-size);
        min-width: var(--circle-size);
        min-height: var(--circle-size);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--vs-white-color);
        transition: 0.3s ease-in-out;
    }

    @media (max-width: 1199px) {
        & .vs-hero__direction .vs-swiper-button-next, & .vs-hero__direction .vs-swiper-button-prev {
            background-color: var(--vs-theme-color2);
        }
    }

    & .vs-hero__direction .vs-swiper-button-next:hover, & .vs-hero__direction .vs-swiper-button-prev:hover {
        background-color: var(--vs-theme-color1);
    }

    & .vs-hero--style2 .vs-hero__content {
        padding: 223px 0px 240px;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style2 .vs-hero__content {
            padding: 100px 0px 20px;
        }
    }

    & .vs-hero--style2 .vs-hero__title--sub {
        color: var(--vs-white-color);
    }

    & .vs-hero--style2 .vs-hero__title--main {
        color: var(--vs-white-color);
        font-size: clamp(1.875rem, 0.511rem + 6.82vw, 5.625rem);
        text-transform: capitalize;
    }

    & .vs-hero--style2 .vs-hero__title--main span {
        color: var(--vs-white-color);
    }

    & .vs-hero--style2 .vs-hero__desc {
        color: var(--vs-white-color);
        font-weight: 600;
    }

    & .vs-hero--style2 .vs-hero__btn {
        background-color: var(--vs-white-color);
        color: var(--vs-theme-color1);
    }

    & .vs-hero--style2 .vs-hero__btn .vs-btn__border {
        border-color: var(--vs-theme-color1);
    }

    & .vs-hero--style2 .vs-hero__btn:hover {
        color: var(--vs-white-color);
    }

    & .vs-hero--style2 .vs-hero__btn:hover .vs-btn__border {
        border-color: var(--vs-white-color);
    }

    & .vs-hero--style3 {
        margin-top: -60px;
    }

    & .vs-hero--style3 .vs-hero__content {
        padding: 227px 0px 250px;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style3 .vs-hero__content {
            padding: 100px 0px 20px;
        }
    }

    & .vs-hero--style3 .vs-hero__content {
    }

    @media (max-width: 991px) {
        & .vs-hero--style3 .vs-hero__content {
            text-align: center;
        }
    }

    & .vs-hero--style3 .vs-hero__title--main {
        font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
        margin: 0px 0px 15px;
        line-height: 1.15;
        text-transform: capitalize;
    }

    @media (max-width: 767px) {
        & .vs-hero--style3 .vs-hero__title--main {
            font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style3 .vs-hero__title--main span {
        display: block;
        color: var(--vs-theme-color2);
        font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
    }

    @media (max-width: 767px) {
        & .vs-hero--style3 .vs-hero__title--main span {
            font-size: clamp(2.2rem, 1.2rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style3 .vs-hero__title--sub {
        font-size: 40px;
        font-family: var(--vs-special-font);
        margin: 0px 0px 15px;
    }

    & .vs-hero--style3 .vs-hero__desc {
        color: var(--vs-title-color);
        font-size: 20px;
    }

    & .vs-hero--style3 .vs-hero__ele1, & .vs-hero--style3 .vs-hero__ele2, & .vs-hero--style3 .vs-hero__ele3, & .vs-hero--style3 .vs-hero__ele4 {
        position: absolute;
        z-index: 2;
    }

    @media (max-width: 991px) {
        & .vs-hero--style3 .vs-hero__ele1, & .vs-hero--style3 .vs-hero__ele2, & .vs-hero--style3 .vs-hero__ele3, & .vs-hero--style3 .vs-hero__ele4 {
            display: none;
        }
    }

    & .vs-hero--style3 .vs-hero__ele1 {
        top: 163px;
        left: 163px;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style3 .vs-hero__ele1 {
            top: 100px;
        }
    }

    & .vs-hero--style3 .vs-hero__ele1 {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style3 .vs-hero__ele1 {
            top: 0px;
            left: 0px;
        }
    }

    & .vs-hero--style3 .vs-hero__ele2 {
        inset: auto auto 0px 98px;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style3 .vs-hero__ele2 {
            bottom: auto;
            left: 98px;
            right: auto;
        }
    }

    & .vs-hero--style3 .vs-hero__ele3 {
        top: 137px;
        left: 50%;
    }

    & .vs-hero--style3 .vs-hero__ele4 {
        top: 90px;
        right: 270px;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style3 .vs-hero__ele4 {
            top: auto;
            right: 0px;
            bottom: 0px;
        }
    }

    & .vs-hero--style3 .vs-hero__direction {
        z-index: 99;
    }

    & .vs-hero--style3 .vs-hero__direction .vs-swiper-button-next, & .vs-hero--style3 .vs-hero__direction .vs-swiper-button-prev {
        color: var(--vs-title-color);
    }

    & .vs-hero--style3 .vs-hero__direction .vs-swiper-button-next:hover, & .vs-hero--style3 .vs-hero__direction .vs-swiper-button-prev:hover {
        color: var(--vs-white-color);
    }

    & .vs-hero--style2 .vs-hero__main-img, & .vs-hero--style3 .vs-hero__main-img {
        position: absolute;
        bottom: 0px;
        right: 0px;
    }

    & .vs-hero--style2 .vs-hero__main-img {
        right: 15%;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style2 .vs-hero__main-img {
            right: 0px;
        }
    }

    & .vs-hero--style2 .vs-hero__main-img {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style2 .vs-hero__main-img {
            position: static;
            margin: 0px auto;
            display: flex;
        }
    }

    & .vs-hero--style2 .vs-hero__direction {
        left: 0px;
        right: 30px;
    }

    & .vs-hero--style2 .vs-hero__direction .vs-swiper-button-next, & .vs-hero--style2 .vs-hero__direction .vs-swiper-button-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.4);
    }

    & .vs-hero--style2 .vs-hero__direction .vs-swiper-button-next:hover, & .vs-hero--style2 .vs-hero__direction .vs-swiper-button-prev:hover {
        background-color: var(--vs-title-color);
    }

    & .vs-hero--style2 .vs-hero__direction .vs-swiper-button-prev {
        left: 153px;
    }

    & .vs-hero--style2 .vs-hero__direction .vs-swiper-button-next {
        right: 153px;
    }

    & .vs-hero--style3 .vs-hero__main-img {
        right: 0%;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style3 .vs-hero__main-img {
            right: 0px;
        }
    }

    & .vs-hero--style3 .vs-hero__main-img {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style3 .vs-hero__main-img {
            position: static;
            margin: 0px auto;
            display: flex;
        }
    }

    & .vs-hero--style3 .vs-hero-pagination {
        position: absolute;
        z-index: 9;
        max-width: calc(var(--vs-main-container) + var(--vs-container-gutters));
        padding-left: calc(var(--vs-container-gutters) / 2);
        padding-right: calc(var(--vs-container-gutters) / 2);
        margin: 0px auto;
        transform: translateX(-50%);
        bottom: 110px !important;
        left: 50% !important;
    }

    @media (max-width: 991px) {
        & .vs-hero--style3 .vs-hero-pagination {
            text-align: center;
        }
    }

    & .vs-hero--style3 .vs-hero-pagination .swiper-pagination-bullet {
        width: auto;
        height: auto;
        background-color: transparent;
        font-size: 22px;
        color: var(--vs-theme-color1);
        opacity: 1;
        outline: none;
        cursor: pointer;
        transition: 0.3s ease-in-out;
        will-change: transform;
    }

    & .vs-hero--style3 .vs-hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        color: var(--vs-theme-color2);
    }

    & .vs-hero--style3 .vs-hero-pagination .swiper-pagination-bullet:hover {
        transform: scale(1.1);
        transition: 0.3s ease-in-out;
        color: var(--vs-theme-color2);
    }

    & .error-area__content {
        text-align: center;
    }

    & .error-area__title {
        font-size: 40px;
        font-weight: 700;
        font-family: var(--vs-special-font);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        gap: 17px;
    }

    & .error-area__title span {
        height: 3px;
        width: 60px;
        background-color: var(--vs-theme-color1);
    }

    & .vs-feature {
        display: flex;
        align-items: center;
        border: 3px dashed rgba(var(--vs-white-color-rgb), 25%);
        gap: 15px;
        padding: 25px 30px;
        border-radius: 18px;
        position: relative;
    }

    @media (max-width: 1199px) {
        & .vs-feature {
            padding: 20px 15px;
            gap: 10px;
        }
    }

    & .vs-feature__top {
        position: absolute;
        top: -23px;
        left: 30px;
    }

    & .vs-feature__title {
        font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
        color: var(--vs-white-color);
    }

    & .vs-feature__text {
        color: var(--vs-white-color);
        font-weight: 500;
        margin-bottom: 0px;
    }

    & .vs-feature__icon {
        --icon-size: 90px;
        width: var(--icon-size);
        height: var(--icon-size);
        min-width: var(--icon-size);
        min-height: var(--icon-size);
    }

    @media (max-width: 1199px) {
        & .vs-feature__icon {
            --icon-size: 65px;
        }
    }

    & .vs-feature.style2 {
        background: var(--vs-theme-color2);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
        border-radius: 20px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        z-index: 1;
        align-items: flex-start;
        padding: 33px 30px;
        transition: 0.3s ease-in-out;
    }

    & .vs-feature.style2::before {
        content: "";
        position: absolute;
        inset: 0px 0px 0px -1px;
        width: 96%;
        height: 100%;
        border-radius: 20px;
        background-color: var(--vs-white-color);
        z-index: -1;
    }

    & .vs-feature.style2 .vs-feature__icon {
        --icon-size: 60px;
    }

    & .vs-feature.style2 .vs-feature__title {
        color: var(--vs-title-color);
    }

    & .vs-feature.style2 .vs-feature__text {
        color: var(--vs-body-color);
        margin-bottom: 20px;
        text-transform: capitalize;
        font-weight: 500;
    }

    & .vs-feature.style2 .vs-feature__link {
        color: var(--vs-body-color);
        font-weight: 800;
        font-family: var(--vs-title-font);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    & .vs-feature.style2 .vs-feature__link:hover {
        color: var(--vs-theme-color2);
    }

    & .vs-feature.style2:hover {
        background-color: var(--vs-theme-color1);
    }

    & .vs-featureh3 {
        display: flex;
        align-items: center;
        gap: 21px;
        text-align: right;
        margin-bottom: 40px;
    }

    @media (max-width: 767px) {
        & .vs-featureh3 {
            gap: 15px;
        }
    }

    & .vs-featureh3 {
    }

    @media (max-width: 991px) {
        & .vs-featureh3 {
            justify-content: flex-end;
        }
    }

    & .vs-featureh3__heading {
        font-size: 24px;
    }

    @media (max-width: 767px) {
        & .vs-featureh3__heading {
            font-size: 22px;
        }
    }

    & .vs-featureh3__icon {
        --icon-size: 95px;
        width: var(--icon-size);
        height: var(--icon-size);
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        background-color: var(--vs-theme-color2);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--vs-white-color);
        font-size: 30px;
        padding: 10px;
        position: relative;
        z-index: 1;
        transition: 0.3s ease-in-out;
    }

    @media (max-width: 767px) {
        & .vs-featureh3__icon {
            --icon-size: 80px;
        }
    }

    & .vs-featureh3__icon::before {
        --border-size: 100%;
        content: "";
        position: absolute;
        inset: 0px;
        width: var(--border-size);
        height: var(--border-size);
        border-radius: 50%;
        border: 2px dashed var(--vs-white-color);
        z-index: -1;
        transition: 0.3s ease-in-out;
        scale: 0.9;
    }

    & .vs-featureh3__text {
        margin-bottom: 0px;
        text-transform: capitalize;
    }

    & .vs-featureh3__image {
        margin-bottom: 40px;
    }

    @media (max-width: 991px) {
        & .vs-featureh3__image {
            text-align: center;
        }
    }

    & .vs-featureh3:hover .vs-featureh3__icon {
        background-color: var(--vs-theme-color1);
    }

    & .vs-about--ele1, & .vs-about--ele1h3 {
        position: absolute;
        right: 10%;
        bottom: 0px;
    }

    @media (max-width: 767px) {
        & .vs-about--ele1, & .vs-about--ele1h3 {
            right: 0px;
        }
    }

    & .vs-about--ele1h3 {
        inset: 139px auto auto 0px;
    }

    & .vs-about--story__tab {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        column-gap: 27px;
    }

    @media (max-width: 767px) {
        & .vs-about--story__tab {
            gap: 15px;
        }
    }

    & .vs-about--story__tab .nav-tabs {
        border-bottom: 0px;
    }

    & .vs-about--story__tab .nav-tabs button {
        font-size: 18px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        color: var(--vs-title-color);
        text-transform: capitalize;
        padding: 10px 25px;
        border-radius: 30px;
        background-color: transparent;
        line-height: 1;
        border: 2px dashed transparent;
    }

    @media (max-width: 767px) {
        & .vs-about--story__tab .nav-tabs button {
            padding: 10px 15px;
        }
    }

    & .vs-about--story__tab .nav-tabs button: hover {
        border-color: transparent;
        color: var(--vs-theme-color2);
    }

    & .vs-about--story__tab .nav-tabs button.active {
        border: 2px dashed var(--vs-theme-color2);
        background-color: rgba(var(--vs-theme-color2-rgb), 0.1);
        color: var(--vs-theme-color2);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px inset;
    }

    & .vs-about--story__title {
        font-size: 18px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        color: var(--vs-title-color);
        text-transform: capitalize;
    }

    & .vs-about--image {
        min-height: 607px;
        max-width: 607px;
        width: 100%;
        position: relative;
    }

    @media (max-width: 1199px) {
        & .vs-about--image {
            min-height: 607px;
        }
    }

    & .vs-about--image {
    }

    @media (max-width: 991px) {
        & .vs-about--image {
            min-height: 607px;
            margin: 0px auto;
        }
    }

    & .vs-about--image {
    }

    @media (max-width: 767px) {
        & .vs-about--image {
            display: grid;
            gap: 15px;
        }
    }

    & .vs-about--image__figure1, & .vs-about--image__figure2, & .vs-about--image__ele1, & .vs-about--image__ele2, & .vs-about--image__ele3 {
        position: absolute;
        top: 0px;
        left: 0px;
    }

    @media (max-width: 767px) {
        & .vs-about--image__figure1, & .vs-about--image__figure2, & .vs-about--image__ele1, & .vs-about--image__ele2, & .vs-about--image__ele3 {
            position: static;
        }
    }

    & .vs-about--image__figure1, & .vs-about--image__figure2 {
        display: inline-block;
    }

    & .vs-about--image__figure1::before, & .vs-about--image__figure2::before {
        position: absolute;
        content: "";
        inset: 0px;
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.4);
        border-radius: 21px;
    }

    & .vs-about--image__figure1 img, & .vs-about--image__figure2 img {
        border-radius: 21px;
    }

    @media (max-width: 767px) {
        & .vs-about--image__figure1 img, & .vs-about--image__figure2 img {
            width: 100%;
            object-fit: cover;
        }
    }

    & .vs-about--image__figure1 {
        left: 13px;
    }

    & .vs-about--image__figure2 {
        left: 145px;
        top: 146px;
    }

    & .vs-about--image__ele1 {
        top: 266px;
        left: -96px;
    }

    @media (max-width: 767px) {
        & .vs-about--image__ele1 {
            display: none;
        }
    }

    & .vs-about--image__ele2 {
        top: 267px;
        left: 45px;
    }

    @media (max-width: 767px) {
        & .vs-about--image__ele2 {
            display: none;
        }
    }

    & .vs-about--image__ele3 {
        --circle-size: 309px;
        min-width: var(--circle-size);
        min-height: var(--circle-size);
        background-color: rgba(var(--vs-theme-color2-rgb), 0.3);
        border-radius: 50%;
        z-index: -1;
        left: -68px;
        top: 188px;
    }

    @media (max-width: 767px) {
        & .vs-about--image__ele3 {
            display: none;
        }
    }

    & .vs-about--image.style2 {
        min-height: auto;
    }

    & .vs-about--yoe {
        position: absolute;
        top: 34px;
        left: 241px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    @media (max-width: 767px) {
        & .vs-about--yoe {
            max-width: 80%;
            margin: 0px auto;
            position: static;
            padding-top: 30px;
        }
    }

    & .vs-about--yoe__number {
        --icon-size: 88px;
        width: var(--icon-size);
        height: var(--icon-size);
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        background-color: var(--vs-theme-color1);
        border-radius: 50%;
        color: var(--vs-white-color);
        position: relative;
    }

    & .vs-about--yoe__number::before {
        position: absolute;
        content: "";
        inset: 0px;
        border-radius: 50%;
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.5);
        opacity: 0.4;
    }

    & .vs-about--yoe__text {
        font-weight: 900;
        color: var(--vs-title-color);
        text-transform: capitalize;
        font-size: 20px;
        padding-right: 210px;
        font-family: var(--vs-title-font);
    }

    @media (max-width: 767px) {
        & .vs-about--yoe__text {
            padding-right: 0px;
        }
    }

    & .vs-service {
        margin-bottom: 0px;
    }

    & .vs-service__details-img > img {
        height: 100%;
        object-fit: cover;
    }

    & .vs-service--ele1, & .vs-service--ele2 {
        position: absolute;
        top: 22%;
        z-index: -1;
    }

    @media (max-width: 767px) {
        & .vs-service--ele1, & .vs-service--ele2 {
            display: none;
        }
    }

    & .vs-service--ele1 {
        left: 0px;
    }

    & .vs-service--ele2 {
        left: auto;
        right: 0px;
    }

    & .vs-service__figure {
        position: relative;
        overflow: hidden;
        border-radius: 22px;
    }

    & .vs-service__figure::before, & .vs-service__figure::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        border-radius: 22px;
        transition: 0.3s ease-in-out;
    }

    & .vs-service__figure::before {
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.7);
        z-index: 1;
    }

    & .vs-service__figure::after {
        background-color: rgba(var(--vs-title-color-rgb), 0.2);
    }

    & .vs-service__image {
        transform: scale(1.05);
        transition: 0.3s ease-in-out;
        transform-origin: center center;
    }

    & .vs-service__image--link {
        display: inline-block;
    }

    & .vs-service__content {
        background-color: var(--vs-theme-color6);
        margin: -35px 23px 0px;
        position: relative;
        z-index: 1;
        padding: 20px 30px;
        border-radius: 22px;
        text-align: center;
    }

    & .vs-service__icon {
        display: inline-block;
        margin: 0px 0px 22px;
    }

    & .vs-service__heading {
        font-size: 1.4rem;
        margin-bottom: 0px;
        transition: 0.3s ease-in-out;
        font-weight: 700;
    }

    & .vs-service__heading:hover {
        color: var(--vs-theme-color2);
        transition: 0.3s ease-in-out;
    }

    & .vs-service__heading--link {
        display: inline-block;
    }

    & .vs-service__link {
        --icon-size: 53px;
        width: var(--icon-size);
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        position: absolute;
        right: 30px;
        top: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border-radius: 50%;
        border: 2px dashed rgba(var(--vs-title-color-rgb), 0.3);
        color: var(--vs-title-color);
    }

    & .vs-service__link svg {
        transform: translateX(-9px) translateY(9px);
        transition: 0.3s ease-in-out;
        transform-origin: center center;
    }

    & .vs-service:hover .vs-service__figure::after {
        background-color: rgba(var(--vs-theme-color2-rgb), 0.4);
    }

    & .vs-service:hover .vs-service__image {
        transform: scale(1.01);
    }

    & .vs-service:hover .vs-service__link {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
        border: 2px dashed rgba(var(--vs-white-color-rgb), 0.5);
    }

    & .vs-service:hover .vs-service__link svg {
        transform: translateX(0px) translateY(0px);
        transition: 0.3s ease-in-out;
        transform-origin: center center;
    }

    & .vs-service--tab {
        padding-top: 56px;
    }

    & .vs-service--tab__sidebar {
        border-radius: 25px;
        overflow: hidden;
        border: rgba(var(--vs-title-color-rgb), 0.2) 1px solid;
    }

    & .vs-service--tab__sidebar .nav {
        padding: 10px 25px;
    }

    & .vs-service--tab__sidebar .nav button {
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
        border-image: initial;
        text-align: left;
        background-color: transparent;
        font-weight: 700;
        color: var(--vs-body-color);
        border-bottom: rgba(var(--vs-title-color-rgb), 0.2) 1px solid;
        border-radius: 0px;
        padding: 16px 0px;
    }

    & .vs-service--tab__sidebar .nav button: last-child {
        border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
    }

    & .vs-service--tab__sidebar .nav button.active {
        background-color: transparent;
        color: var(--vs-theme-color2);
    }

    & .vs-service--tab__title {
        font-size: 24px;
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
        padding: 20px 28px;
        margin: -1px;
    }

    & .vs-service--tab__title--main {
        font-size: 40px;
    }

    @media (max-width: 991px) {
        & .vs-service--tab__title--main {
            font-size: 30px;
        }
    }

    & .vs-service--tab__title--sub {
        font-size: 24px;
    }

    & .sidebar-contact {
        background-color: var(--vs-title-color);
        text-align: center;
        padding: 55px;
        border-radius: 25px;
        position: relative;
        z-index: 1;
        border: 1px solid rgba(191, 191, 191, 0.2);
        overflow: hidden;
    }

    @media (max-width: 991px) {
        & .sidebar-contact {
            padding: 28px;
        }
    }

    & .sidebar-contact__title {
        color: var(--vs-white-color);
        font-size: 40px;
        line-height: 1.1;
        text-transform: capitalize;
        margin-bottom: 20px;
    }

    & .sidebar-contact__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        --icon-size: 95px;
        width: var(--icon-size);
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        background-color: var(--vs-theme-color2);
        border-radius: 50%;
        margin-bottom: 20px;
    }

    & .sidebar-contact__text {
        font-size: 18px;
        font-family: var(--vs-title-font);
        font-weight: 800;
        text-transform: capitalize;
        color: var(--vs-theme-color2);
        margin-bottom: 5px;
    }

    & .sidebar-contact__call {
        font-size: 24px;
        font-weight: 700;
        color: var(--vs-white-color);
        font-family: var(--vs-title-font);
        text-transform: capitalize;
    }

    & .sidebar-contact__call:hover {
        color: var(--vs-theme-color2);
    }

    & .sidebar-contact__map {
        position: absolute;
        bottom: 2%;
        left: -62%;
        z-index: -1;
    }

    & .vs-team {
        background: var(--vs-white-color);
        border-radius: 30px;
        padding: 18px;
        position: relative;
        margin-bottom: 30px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 4px;
    }

    & .vs-team--area {
        padding-bottom: 130px;
    }

    & .vs-team__heading {
        font-size: 24px;
    }

    & .vs-team__role {
        font-weight: 700;
        letter-spacing: 0.48px;
        text-transform: capitalize;
        transition: 0.3s ease-in-out;
    }

    & .vs-team__img {
        border-radius: 20px;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    & .vs-team__img::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0%;
        bottom: 0px;
        left: 0px;
        background: linear-gradient(0deg, rgba(var(--vs-theme-color1-rgb), 0.1), rgba(var(--vs-theme-color1-rgb), 0.1));
        border-radius: 20px;
        z-index: 1;
        transition: 0.3s ease-in-out;
    }

    & .vs-team__img img {
        border-radius: 20px;
        width: 100%;
        transform: scale(1.1);
        transform-origin: center center;
        transition: 0.3s ease-in-out;
    }

    & .vs-team__content {
        padding: 30px 15px 15px;
    }

    & .vs-team__heading {
        text-transform: capitalize;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    & .vs-team__heading a {
        color: var(--vs-title-color);
    }

    & .vs-team__heading a: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-team__heading .vs-team__share--hover {
        font-size: 20px;
        padding-top: 4px;
        color: var(--vs-theme-color1);
    }

    & .vs-team__share {
        position: absolute;
        bottom: -0.99px;
        right: -0.99px;
    }

    & .vs-team__share > ul {
        list-style: none;
        padding-left: 0px;
        margin-bottom: 0px;
    }

    & .vs-team__share > ul > li {
        position: relative;
    }

    & .vs-team__share > ul > li > a {
        color: var(--vs-theme-color1);
        --icon-size: 65px;
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 20px;
        background: var(--vs-theme-color6);
        transition: 0.3s ease-in-out;
    }

    & .vs-team__share > ul > li > a: hover, & .vs-team__share > ul > li > a.active {
        transition: 0.3s ease-in-out;
        color: var(--vs-theme-color2);
        background: transparent;
    }

    & .vs-team__share > ul > li: hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) scaleX(1);
        transition: 0.3s ease-in-out;
    }

    & .vs-team__share--list {
        list-style: none;
        margin-bottom: 0px;
        position: absolute;
        display: flex;
        align-items: center;
        gap: 20px;
        background-color: var(--vs-theme-color1);
        padding: 15px 30px;
        border-radius: 10px;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%) translateY(50%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
        z-index: 2;
    }

    & .vs-team__share--list > li {
        transform: translateY(50%) scale(0);
        transform-origin: center center;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s linear;
    }

    & .vs-team__share--list > li: nth-of-type(1) {
        transition-delay: 0.4s;
    }

    & .vs-team__share--list > li: nth-of-type(2) {
        transition-delay: 0.5s;
    }

    & .vs-team__share--list > li: nth-of-type(3) {
        transition-delay: 0.6s;
    }

    & .vs-team__share--list > li: nth-of-type(4) {
        transition-delay: 0.7s;
    }

    & .vs-team__share--list > li > a {
        color: var(--vs-white-color);
    }

    & .vs-team__share--list > li > a: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-team__share--list.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0px);
    }

    & .vs-team__share--list.active > li {
        transform: translateY(0%) scale(1);
        transform-origin: center center;
        opacity: 1;
        visibility: visible;
    }

    & .vs-team:hover .vs-team__role, & .vs-team.active .vs-team__role {
        color: var(--vs-theme-color2);
    }

    & .vs-team:hover .vs-team__img::before, & .vs-team.active .vs-team__img::before {
        height: 100%;
        top: 0px;
        bottom: auto;
    }

    & .vs-team:hover .vs-team__img img, & .vs-team.active .vs-team__img img {
        transform: scale(1.02);
        transition: 0.3s ease-in-out;
    }

    & .vs-team--style2 {
        box-shadow: none;
        padding: 20px 20px 28px;
    }

    & .vs-team--style2 .vs-team__content {
        padding: 20px 15px 0px;
    }

    @media (max-width: 1199px) {
        & .vs-team--style2 .vs-team__content {
            padding: 20px 0px 0px;
        }
    }

    & .vs-team--style2 .vs-team__share--hover {
        color: var(--vs-theme-color1);
        --icon-size: 65px;
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 60%;
        font-size: 22px;
        background: var(--vs-theme-color6);
        position: absolute;
        bottom: -5.35px;
        right: -9.58px;
        transition: 0.3s ease-in-out;
    }

    & .vs-team--style2 .vs-team__share--hover::before, & .vs-team--style2 .vs-team__share--hover::after {
        --circle-size: 70%;
        content: "";
        display: block;
        width: var(--circle-size);
        height: var(--circle-size);
        position: absolute;
        border-radius: 20px;
        box-shadow: inset -20px 30px 0 0 var(--vs-theme-color6);
        transform: rotate(90deg);
    }

    & .vs-team--style2 .vs-team__share--hover::before {
        top: -27px;
        right: -20px;
    }

    & .vs-team--style2 .vs-team__share--hover::after {
        bottom: -20px;
        left: -15px;
    }

    & .vs-team--style2 .vs-team__share--hover:hover, & .vs-team--style2 .vs-team__share--hover.active {
        color: var(--vs-theme-color2);
    }

    & .vs-team--style2 .vs-team__share--hover:hover i: :before, & .vs-team--style2 .vs-team__share--hover.active i::before {
        display: block;
    }

    & .vs-team--style2 .vs-team__share--hover:hover i: :before, & .vs-team--style2 .vs-team__share--hover.active i::before {
        animation: 0.5s ease 0s 1 normal forwards running toTopFromBottom;
    }

    & .vs-team--style2 .vs-team__share--list {
        flex-direction: column-reverse;
        background-color: transparent;
        gap: 8px;
        padding: 0px;
        left: auto;
        right: 18px;
        bottom: 78px;
        transform: translate(0px, 0px);
    }

    & .vs-team--style2 .vs-team__share--list > li > a {
        --icon-size: 42px;
        min-height: var(--icon-size);
        min-width: var(--icon-size);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 16px;
        background: var(--vs-theme-color2);
        transition: 0.3s ease-in-out;
        z-index: 1;
    }

    & .vs-team--style2 .vs-team__share--list > li > a i: :before {
        display: block;
    }

    & .vs-team--style2 .vs-team__share--list > li > a: :before {
        --icon-size: 50px;
        position: absolute;
        content: "";
        width: var(--icon-size);
        height: var(--icon-size);
        border-radius: 50%;
        z-index: -1;
        background-color: var(--vs-theme-color2);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
        transform-origin: center center;
        transform: scale(0.8);
    }

    & .vs-team--style2 .vs-team__share--list > li > a: hover {
        color: var(--vs-white-color);
    }

    & .vs-team--style2 .vs-team__share--list > li > a: hover i::before {
        animation: 0.3s ease 0s 1 normal forwards running toTopFromBottom;
    }

    & .vs-team--style2 .vs-team__share--list > li > a: hover::before {
        opacity: 0.5;
        visibility: visible;
        transform: scale(1);
    }

    & .progress-box {
        margin: 0px 0px 25px;
    }

    & .progress-box:last-child {
        margin: 0px;
    }

    & .progress-box__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 20px;
    }

    & .progress-box__number, & .progress-box__title {
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
        font-family: var(--vs-title-font);
        color: var(--vs-title-color);
        display: inline-block;
        margin: 0px;
        text-transform: uppercase;
    }

    & .progress-box__number {
        float: right;
        color: var(--vs-theme-color1);
    }

    & .progress-box__progress {
        height: 9px;
        border-radius: 10px;
        background-color: rgba(var(--vs-title-color-rgb), 0.15);
        overflow: hidden;
    }

    & .progress-box__bar {
        height: 100%;
        background-color: var(--vs-theme-color2);
        box-shadow: rgba(169, 177, 193, 0.17) 0px 10px 31px;
        border-radius: 5px;
    }

    & .progress-box__bar.bg-color1 {
        background-color: var(--vs-theme-color1);
    }

    & .teacher-awards {
        display: flex;
        flex-wrap: wrap;
        gap: 26px;
        border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 20%);
        margin-bottom: 15px;
    }

    @media (max-width: 991px) {
        & .teacher-awards {
            flex-direction: column;
        }
    }

    & .teacher-awards__content {
        flex: 1 1 0%;
    }

    & .teacher-awards__logo {
        align-items: stretch;
        height: 100%;
    }

    & .teacher-awards__year {
        font-size: 18px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        color: var(--vs-theme-color2);
    }

    & .teacher-awards__heading {
        font-size: 24px;
        margin-bottom: 0px;
    }

    & .sidemenu-wrapper {
        position: fixed;
        z-index: 999999;
        right: 0px;
        top: 0px;
        height: 100%;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.5);
        visibility: hidden;
    }

    & .sidemenu-wrapper .sidemenu-content {
        --sidebarPosition: 589px;
        background-color: var(--vs-theme-color1);
        width: var(--sidebarPosition);
        margin-left: auto;
        padding: 40px 55px 55px;
        height: 100%;
        overflow-y: auto;
        position: relative;
        right: calc(-1 * var(--sidebarPosition));
        cursor: auto;
        transform-origin: right center;
    }

    @media (max-width: 767px) {
        & .sidemenu-wrapper .sidemenu-content {
            --sidebarPosition: 300px;
            padding: 20px 15px;
        }
    }

    & .sidemenu-wrapper .sidemenu-content {
    }

    & .sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
        width: 5px;
    }

    & .sidemenu-wrapper .sidemenu-content {
    }

    & .sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px var(--vs-white-color);
        border-radius: 0px;
    }

    & .sidemenu-wrapper .sidemenu-content {
    }

    & .sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-thumb {
        background: var(--vs-white-color);
        border-radius: 10px;
    }

    & .sidemenu-wrapper .sidemenu-content {
    }

    & .sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-thumb:hover {
        background: var(--vs-theme-color2);
    }

    & .sidemenu-wrapper .sidemenu-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    & .sidemenu-wrapper .closeButton {
        display: inline-block;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        color: var(--vs-white-color);
        background-color: transparent;
        font-size: 40px;
        padding: 0px;
        border-radius: 50%;
        transform: rotate(0deg);
        transition: 0.4s;
        font-family: var(--title-font);
        font-weight: 700;
        cursor: pointer;
    }

    & .sidemenu-wrapper .closeButton:hover {
        color: var(--vs-white-color);
        transform: rotate(180deg);
    }

    & .sidemenu-wrapper .sidemenu-hr {
        height: 4px;
        border-top: 1px solid var(--vs-white-color);
        border-bottom: 1px solid var(--vs-white-color);
        opacity: 1;
        margin: 30px 0px 35px;
    }

    & .sidemenu-wrapper .sidemenu-inner {
        display: flex;
        flex-direction: column;
        height: 75vh;
        justify-content: space-between;
    }

    & .sidemenu-wrapper .sidemenu-title {
        font-size: clamp(1rem, 0.75rem + 1.25vw, 2.25rem);
        color: var(--vs-white-color);
        text-transform: uppercase;
        margin: -0.23em 0px 30px;
        letter-spacing: 0.9px;
    }

    & .sidemenu-wrapper .sidemenu-subtitle {
        font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
        color: var(--vs-white-color);
        letter-spacing: 0.2px;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    & .sidemenu-wrapper .sidemenu-subtitle::after {
        position: absolute;
        content: "";
        width: 20px;
        height: 4px;
        bottom: 0px;
        left: 0px;
        background-color: var(--vs-white-color);
    }

    & .sidemenu-wrapper .sidemenu-text {
        color: var(--vs-white-color);
        font-size: 15px;
        font-weight: 600;
        font-family: var(--title-font);
        margin-bottom: 0px;
    }

    & .sidemenu-wrapper .sidemenu-footer {
        padding-bottom: 30px;
    }

    & .sidemenu-wrapper .email-subscription__form {
        background-color: var(--vs-white-color);
        border-radius: 10px;
    }

    & .sidemenu-wrapper .email-subscription__right::before {
        width: 5px;
        height: 40px;
        background-color: transparent;
        border: 1px solid rgb(56, 60, 74);
        left: -5px;
        border-radius: 4px;
    }

    @media (max-width: 767px) {
        & .sidemenu-wrapper .email-subscription__right::before {
            display: none;
        }
    }

    & .sidemenu-wrapper .email-subscription__input {
        color: var(--body-color);
        font-family: var(--title-font);
        padding: 10px 20px;
        text-align: left;
    }

    & .sidemenu-wrapper .email-subscription__input::placeholder {
        color: var(--body-color);
    }

    & .sidemenu-wrapper .email-subscription__btn {
        background-color: var(--vs-white-color);
        clip-path: none;
        padding: 13px 27px 13px 17px;
    }

    @media (max-width: 767px) {
        & .sidemenu-wrapper .email-subscription__btn {
            padding: 0px;
            background-color: transparent;
            width: auto;
            position: absolute;
            right: 0px;
            top: 50%;
            transform: translateY(-50%);
        }
    }

    & .sidemenu-wrapper .email-subscription__btn::before, & .sidemenu-wrapper .email-subscription__btn::after {
        clip-path: none;
    }

    & .sidemenu-wrapper .email-subscription__btn svg path {
        transition: 0.3s ease-in-out;
    }

    & .sidemenu-wrapper .email-subscription__btn:hover svg path {
        fill: var(--vs-white-color);
    }

    & .sidemenu-wrapper .footer-social span {
        color: var(--vs-white-color);
        font-weight: 700;
        font-family: var(--title-font);
        text-transform: uppercase;
        margin-right: auto;
        display: none;
    }

    & .sidemenu-wrapper .footer-social a {
        background-color: var(--vs-white-color);
        color: var(--vs-theme-color1);
    }

    & .sidemenu-wrapper .footer-social a: hover {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
    }

    & .sidemenu-wrapper .sidemenu-item {
        opacity: 0;
    }

    & .sidemenu-wrapper.show .sidemenu-content {
        right: 0px;
        opacity: 1;
        visibility: visible;
    }

    @media (max-width: 767px) {
        & .email-subscription__right {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
        }
    }

    & .sidemenu-contact {
        margin: 0px 0px 20px;
        display: grid;
        gap: 10px;
    }

    & .sidemenu-contact ul {
        padding: 0px;
        margin: 0px;
        list-style: none;
    }

    & .sidemenu-contact ul li {
        margin-bottom: 10px;
    }

    & .sidemenu-contact ul li: last-child {
        margin-bottom: 0px;
    }

    & .sidemenu-contact a, & .sidemenu-contact .sidemenu-link {
        display: inline-block;
        color: var(--vs-white-color);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.4px;
        font-family: var(--title-font);
        padding: 0px 0px 0px 19px;
        position: relative;
    }

    & .sidemenu-contact a: :before, & .sidemenu-contact a::after, & .sidemenu-contact .sidemenu-link::before, & .sidemenu-contact .sidemenu-link::after {
        position: absolute;
        content: "";
    }

    & .sidemenu-contact a: :before, & .sidemenu-contact .sidemenu-link::before {
        top: 7px;
        left: 0px;
        width: 8px;
        height: 8px;
        background-color: var(--vs-white-color);
    }

    & .sidemenu-contact a: :after, & .sidemenu-contact .sidemenu-link::after {
        top: auto;
        bottom: 0px;
        right: 0px;
        width: 0%;
        height: 1px;
        background-color: var(--vs-white-color);
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
    }

    & .sidemenu-contact .sidemenu-link:hover::after {
        width: 90%;
        left: 10%;
        opacity: 1;
        visibility: visible;
        transition: 0.4s;
    }

    & .sidemenu-contact.style2 {
        text-align: left;
    }

    & .sidemenu-contact.style2 a, & .sidemenu-contact.style2 .sidemenu-link {
        color: var(--vs-body-color);
        font-size: 15px;
        font-weight: 700;
        font-family: var(--vs-title-font);
    }

    & .sidemenu-contact.style2 a: :before, & .sidemenu-contact.style2 a::after, & .sidemenu-contact.style2 .sidemenu-link::before, & .sidemenu-contact.style2 .sidemenu-link::after {
        background-color: var(--vs-theme-color2);
        transition: 0.3s ease-in-out;
    }

    & .sidemenu-contact.style2 a: hover::before, & .sidemenu-contact.style2 .sidemenu-link:hover::before {
        background-color: var(--vs-theme-color1);
    }

    & .offcanvas-wrapper {
        position: fixed;
        z-index: 99999;
        right: 0px;
        top: 0px;
        height: 100%;
        width: 0px;
        background-color: rgba(0, 0, 0, 0.75);
        opacity: 0;
        visibility: hidden;
        transition: 0.8s;
    }

    & .offcanvas-wrapper .closeButton {
        display: inline-block;
        position: absolute;
        top: 10px;
        right: 20px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
        padding: 0px;
        background-color: var(--vs-theme-color1);
        color: var(--white-color);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        border-radius: 50%;
        transform: rotate(0deg);
        transition: 0.4s;
        z-index: 33;
    }

    & .offcanvas-wrapper .closeButton i {
        line-height: inherit;
    }

    & .offcanvas-wrapper .closeButton:hover {
        color: var(--vs-white-color);
        border-color: transparent;
        transform: rotate(90deg);
        background-color: var(--sec-color);
    }

    & .offcanvas-wrapper .sidemenu-content {
        background-color: var(--vs-white-color);
        width: 450px;
        margin-left: auto;
        padding: 50px 30px;
        height: 100%;
        overflow: scroll;
        position: relative;
        right: -500px;
        cursor: auto;
        transition: right 1s;
    }

    & .offcanvas-wrapper .sidemenu-content::-webkit-scrollbar-track {
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 1px inset;
        background-color: rgb(245, 245, 245);
    }

    & .offcanvas-wrapper .sidemenu-content::-webkit-scrollbar {
        width: 2px;
        background-color: rgb(245, 245, 245);
    }

    & .offcanvas-wrapper .widget {
        padding: 0px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        background-color: transparent;
        margin-bottom: 50px;
    }

    & .offcanvas-wrapper .footer-text {
        max-width: 100%;
    }

    & .offcanvas-wrapper.show {
        opacity: 1;
        visibility: visible;
        width: 100%;
        transition: 0.8s;
    }

    & .offcanvas-wrapper.show .sidemenu-content {
        right: 0px;
        opacity: 1;
        visibility: visible;
    }

    & .sideCart-wrapper {
        position: fixed;
        z-index: 999999;
        left: 0px;
        top: 0px;
        height: 100%;
        width: 0px;
        background-color: rgba(255, 255, 255, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: none;
        backdrop-filter: blur(0px);
    }

    @media (max-width: 991px) {
        & .sideCart-wrapper {
            mask: none;
        }
    }

    & .sideCart-wrapper .cart-sidebar-content {
        background-color: var(--vs-white-color);
        width: 400px;
        padding: 40px 25px;
        height: 100%;
        overflow-y: auto;
        position: relative;
        left: -100%;
        opacity: 0;
        visibility: hidden;
        transition: none;
    }

    @media (max-width: 991px) {
        & .sideCart-wrapper .cart-sidebar-content {
            width: 300px;
            padding: 25px 15px;
        }
    }

    & .sideCart-wrapper .cart-sidebar-content {
    }

    & .sideCart-wrapper .cart-sidebar-content::-webkit-scrollbar {
        width: 5px;
    }

    & .sideCart-wrapper .cart-sidebar-content {
    }

    & .sideCart-wrapper .cart-sidebar-content::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px var(--vs-theme-color1);
        border-radius: 0px;
    }

    & .sideCart-wrapper .cart-sidebar-content {
    }

    & .sideCart-wrapper .cart-sidebar-content::-webkit-scrollbar-thumb {
        background: var(--vs-theme-color1);
        border-radius: 10px;
    }

    & .sideCart-wrapper .cart-sidebar-content {
    }

    & .sideCart-wrapper .cart-sidebar-content::-webkit-scrollbar-thumb:hover {
        background: var(--vs-theme-color2);
    }

    & .sideCart-wrapper.cartshow {
        opacity: 1;
        visibility: visible;
        width: 100%;
        transition: none;
    }

    & .sideCart-wrapper.cartshow .cart-sidebar-content {
        left: 0px;
        opacity: 1;
        visibility: visible;
    }

    & .sideCart-wrapper .sidemenu-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0px 0px 30px;
    }

    & .sideCart-wrapper .cart-close-button {
        background: var(--vs-theme-color1);
        color: var(--vs-white-color);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s;
        font-family: var(--title-font);
        font-weight: 600;
    }

    & .sideCart-wrapper .cart-close-button:hover {
        background: var(--vs-theme-color2);
    }

    & .sideCart-wrapper .cart-animation-item {
        opacity: 0;
    }

    & .sideCart-wrapper .cart-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 0px 0px 20px;
    }

    & .sideCart-wrapper .cart-item .item-details {
        flex: 1 1 0%;
    }

    & .sideCart-wrapper .cart-item__image {
        --image-size: 80px;
        width: var(--image-size);
        height: var(--image-size);
        object-fit: cover;
        background: var(--vs-theme-color6);
        border: 2px solid var(--vs-theme-color2);
        border-radius: 10px;
        padding: 10px;
    }

    @media (max-width: 991px) {
        & .sideCart-wrapper .cart-item__image {
            display: none;
        }
    }

    & .sideCart-wrapper .cart-item .item-details h3 {
        font-size: 17px;
        line-height: 25px;
        margin-bottom: 0px;
    }

    & .sideCart-wrapper .cart-item .item-details h3 a {
        color: var(--vs-body-color);
    }

    & .sideCart-wrapper .item-controls {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    & .sideCart-wrapper .item-controls .quantity__field {
        position: relative;
    }

    & .sideCart-wrapper .item-controls input[type="number"] {
        --input-size: 90px;
        width: var(--input-size);
        min-width: var(--input-size);
        height: 45px;
        min-height: 45px;
        padding: 10px;
        border: 2px solid rgba(56, 60, 74, 0.5);
        background-color: var(--bg-color3);
        color: var(--white-color);
        appearance: none;
    }

    @media (max-width: 991px) {
        & .sideCart-wrapper .item-controls input[type="number"] {
            width: 100%;
        }
    }

    & .sideCart-wrapper .item-controls .quantity__buttons {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 12px;
        display: flex;
        flex-direction: column;
        background-color: var(--vs-white-color);
    }

    & .sideCart-wrapper .item-controls .quantity__buttons .qty-btn {
        font-size: 16px;
        background-color: transparent;
        border: 0px;
        padding: 0px;
        height: auto;
        line-height: 1;
    }

    & .sideCart-wrapper .cart-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    & .sideCart-wrapper .cart-actions button {
        clip-path: none;
    }

    & .sideCart-wrapper .subtotal {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 20px;
        font-size: 16px;
        font-weight: 600;
        font-family: var(--title-font);
        color: var(--body-color);
        text-transform: uppercase;
    }

    & .sideCart-wrapper .subtotal .total-amount {
        color: var(--vs-theme-color1);
    }

    & .sideCart-wrapper .item-price {
        font-weight: 600;
        color: var(--white-color);
    }

    & .sideCart-wrapper .remove-item {
        background-color: transparent;
        border: 0px;
        padding: 0px;
    }

    & .sideCart-wrapper .remove-item:hover {
        color: var(--vs-theme-color2);
    }

    & .sideCart-wrapper .social-style {
        gap: 10px;
        flex-wrap: wrap;
    }

    & .sideCart-wrapper .social-style ul {
        padding-left: 0px;
        margin-bottom: 0px;
        display: flex;
        align-items: center;
        gap: 5px;
        list-style: none;
    }

    & .sideCart-wrapper .social-style ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .sideCart-wrapper .social-style__title {
        font-size: 24px;
    }

    & .mfp-wrap, & .mfp-bg {
        z-index: 9999999;
    }

    & .sidemenu-text--footer {
        font-weight: 700;
        text-transform: capitalize;
    }

    & .form-style {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
        padding: 0px;
    }

    & .form-style .row:not([class*="gx-"]) {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 15px;
    }

    & .form-style textarea, & .form-style input {
        height: 60px;
        background-color: transparent;
        font-size: 16px;
        font-family: var(--vs-body-font);
        color: var(--vs-body-color);
        border-radius: 50px;
        border: 1.5px solid rgba(var(--vs-white-color-rgb), 0.2);
        padding: 10px 31px;
        font-weight: 500;
        box-shadow: none;
        outline: none;
        transition: 0.3s ease-in-out;
    }

    & .form-style textarea: :placeholder, & .form-style input::placeholder {
        color: var(--vs-white-color);
        opacity: 1;
        visibility: visible;
        transition: 0.3s ease-in-out;
    }

    & .form-style textarea: focus, & .form-style input:focus {
        box-shadow: none;
    }

    & .form-style textarea: focus::placeholder, & .form-style input:focus::placeholder {
        color: var(--vs-title-color);
        opacity: 0;
        visibility: hidden;
    }

    & .form-style textarea {
        min-height: 180px;
        resize: none;
    }

    & .form-style2 .form-group {
        margin-bottom: var(--bs-gutter-x);
        position: relative;
    }

    & .form-style2 .form-control {
        background-color: var(--vs-theme-color6);
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
        min-height: 69px;
        border-radius: 15px;
        font-weight: 700;
        letter-spacing: 0.8px;
        padding: 19px 20px;
        box-shadow: none;
        outline: none;
    }

    & .form-style2 textarea.form-control {
        min-height: 169px;
    }

    & .custom-checkbox input[type="checkbox"] ~ label: :before, & .custom-checkbox input[type="radio"] ~ label::before, & .wc_payment_method input[type="checkbox"] ~ label::before, & .wc_payment_method input[type="radio"] ~ label::before, & .woocommerce-shipping-methods input[type="checkbox"] ~ label::before, & .woocommerce-shipping-methods input[type="radio"] ~ label::before, & #ship-to-different-address input[type="checkbox"] ~ label::before, & #ship-to-different-address input[type="radio"] ~ label::before {
        content: "";
        background-color: transparent;
        border: 1px solid var(--vs-theme-color2);
        border-radius: 0px;
        height: 20px;
        width: 20px;
        min-width: 20px;
        line-height: 20px;
        font-family: var(--icon-font);
        text-align: center;
        color: var(--bg-color);
        font-size: 0px;
        transition: 0.3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .custom-checkbox, & .wc_payment_method, & .woocommerce-shipping-methods, & #ship-to-different-address {
        padding: 10px 0px 20px;
        display: flex;
        align-items: center;
    }

    @media (max-width: 1199px) {
        & .custom-checkbox, & .wc_payment_method, & .woocommerce-shipping-methods, & #ship-to-different-address {
            padding: 0px 0px 20px;
        }
    }

    & .custom-checkbox label, & .wc_payment_method label, & .woocommerce-shipping-methods label, & #ship-to-different-address label {
        margin-bottom: 0px;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    & .custom-checkbox input[type="checkbox"], & .custom-checkbox input[type="radio"], & .wc_payment_method input[type="checkbox"], & .wc_payment_method input[type="radio"], & .woocommerce-shipping-methods input[type="checkbox"], & .woocommerce-shipping-methods input[type="radio"], & #ship-to-different-address input[type="checkbox"], & #ship-to-different-address input[type="radio"] {
        display: none;
    }

    & .custom-checkbox input[type="checkbox"] ~ label: :before, & .custom-checkbox input[type="radio"] ~ label::before, & .wc_payment_method input[type="checkbox"] ~ label::before, & .wc_payment_method input[type="radio"] ~ label::before, & .woocommerce-shipping-methods input[type="checkbox"] ~ label::before, & .woocommerce-shipping-methods input[type="radio"] ~ label::before, & #ship-to-different-address input[type="checkbox"] ~ label::before, & #ship-to-different-address input[type="radio"] ~ label::before {
        content: "";
        background-color: transparent;
        border: 1px solid var(--vs-theme-color2);
        border-radius: 0px;
        height: 20px;
        width: 20px;
        min-width: 20px;
        line-height: 20px;
        font-family: var(--vs-icon-font);
        text-align: center;
        color: var(--vs-white-color);
        font-size: 0px;
        transition: 0.3s ease-in-out;
    }

    & .custom-checkbox input[type="checkbox"]: checked ~ label::before, & .custom-checkbox input[type="radio"]:checked ~ label::before, & .wc_payment_method input[type="checkbox"]:checked ~ label::before, & .wc_payment_method input[type="radio"]:checked ~ label::before, & .woocommerce-shipping-methods input[type="checkbox"]:checked ~ label::before, & .woocommerce-shipping-methods input[type="radio"]:checked ~ label::before, & #ship-to-different-address input[type="checkbox"]:checked ~ label::before, & #ship-to-different-address input[type="radio"]:checked ~ label::before {
        background-color: var(--vs-theme-color2);
        border-color: transparent;
        font-size: 16px;
        transition: 0.3s ease-in-out;
    }

    & .form-messages {
        font-weight: 700;
    }

    & .vs-contact--ele1, & .vs-contact--ele2, & .vs-contact--ele3 {
        position: absolute;
        top: 0px;
        right: 0px;
    }

    @media (max-width: 1199px) {
        & .vs-contact--ele1, & .vs-contact--ele2, & .vs-contact--ele3 {
            display: none;
        }
    }

    & .vs-contact--ele1 {
        top: 92px;
        right: 92px;
    }

    & .vs-contact--ele2 {
        top: auto;
        bottom: 148px;
        right: 166px;
    }

    & .vs-contact--ele3 {
        top: auto;
        bottom: 69px;
        right: 66px;
    }

    & .vs-map .mapouter {
        filter: grayscale(80%);
    }

    & .vs-map .mapouter {
        position: relative;
        text-align: right;
        width: 100%;
        height: 447px !important;
    }

    & .vs-map .gmap_canvas {
        overflow: hidden;
        width: 100%;
        position: relative;
        background: none !important;
        height: 447px !important;
    }

    & .vs-map .gmap_canvas__credit {
        position: absolute;
        bottom: 0px;
        left: 15%;
        color: var(--bg-color);
        text-transform: capitalize;
    }

    & .vs-map .gmap_canvas__credit:hover {
        color: var(--vs-theme-color);
    }

    & .vs-map .gmap_iframe {
        height: 447px !important;
    }

    & .contact-info {
        max-width: 100%;
    }

    & .contact-info span {
        color: var(--vs-theme-color2);
    }

    & .address-info {
        --icon-size: 60px;
        display: flex;
        align-items: center;
        gap: 25px;
        font-family: var(--title-font);
        letter-spacing: 0.4px;
        font-size: 15px;
        font-weight: 500;
        margin: 0px 0px 15px;
    }

    @media (max-width: 767px) {
        & .address-info {
            --icon-size: 60px;
            font-size: 14px;
        }
    }

    & .address-info:last-child {
        margin: 0px;
    }

    & .address-info__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: var(--icon-size);
        width: var(--icon-size);
        height: var(--icon-size);
        background-color: var(--vs-theme-color1);
        font-size: 24px;
        border-radius: 50%;
        color: var(--vs-white-color);
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.3);
    }

    & .address-info span {
        color: var(--vs-theme-color1);
        text-transform: capitalize;
        display: block;
        margin: 0px 0px 3px;
        font-weight: 800;
        font-size: 16px;
    }

    & .address-info a {
        display: inline-block;
        text-transform: capitalize;
        color: var(--vs-body-color);
    }

    & .address-info a: hover {
        color: var(--vs-theme-color2);
    }

    & .contact-divider {
        width: 100%;
    }

    & .vs-event {
        display: flex;
        align-items: stretch;
        gap: 40px;
        background-color: var(--vs-white-color);
        border: 1.5px dashed rgba(var(--vs-title-color-rgb), 0.2);
        border-radius: 25px;
        overflow: hidden;
        padding: 21px 40px 21px 21px;
        margin-bottom: 20px;
    }

    @media (max-width: 1199px) {
        & .vs-event {
            gap: 20px;
            padding: 15px;
        }
    }

    & .vs-event {
    }

    @media (max-width: 991px) {
        & .vs-event {
            flex-wrap: wrap;
            gap: 20px;
        }
    }

    & .vs-event--ele1, & .vs-event--ele2 {
        position: absolute;
        top: 105px;
        left: 0px;
        z-index: -1;
    }

    & .vs-event--ele2 {
        right: 0px;
        left: auto;
    }

    & .vs-event__figure {
        position: relative;
        height: auto;
        border-radius: 20px;
        overflow: hidden;
        min-width: 411px;
    }

    @media (max-width: 991px) {
        & .vs-event__figure {
            min-width: 100%;
        }
    }

    & .vs-event__figure--img {
        height: 100%;
        object-fit: cover;
        transform: scale(1.05);
        transition: transform 0.3s ease-in-out;
    }

    @media (max-width: 991px) {
        & .vs-event__figure--img {
            width: 100%;
        }
    }

    & .vs-event__figure--date {
        position: absolute;
        top: 21px;
        right: 21px;
        display: flex;
        flex-direction: column;
        text-align: center;
        border: 1.5px dashed rgba(var(--vs-white-color-rgb), 0.3);
        border-radius: 15px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        color: var(--vs-white-color);
        overflow: hidden;
    }

    & .vs-event__figure--day {
        display: flex;
        flex-direction: column;
        padding: 6px 21px;
        font-size: 40px;
        line-height: 1;
        background-color: var(--vs-theme-color2);
    }

    @media (max-width: 767px) {
        & .vs-event__figure--day {
            font-size: 30px;
        }
    }

    & .vs-event__figure--month {
        font-size: 18px;
        line-height: 1;
        text-transform: uppercase;
    }

    & .vs-event__figure--year {
        background-color: var(--vs-theme-color1);
        padding: 4px 0px 2px;
        font-size: 18px;
    }

    & .vs-event__content {
        align-self: center;
    }

    & .vs-event__title {
        font-size: clamp(1.625rem, 1.45rem + 0.88vw, 2.5rem);
    }

    & .vs-event__title a {
        color: var(--vs-title-color);
        text-transform: capitalize;
    }

    & .vs-event__title a: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-event .vs-time__features {
        margin-bottom: 20px;
    }

    & .vs-event .vs-time__features ul {
        justify-content: flex-start;
        gap: 20px;
    }

    @media (max-width: 991px) {
        & .vs-event .vs-time__features ul {
            gap: 5px;
        }
    }

    & .vs-event .vs-time__features ul li {
        color: var(--vs-title-color);
    }

    & .vs-event .vs-time__features ul li i {
        color: var(--vs-theme-color1);
    }

    & .vs-event__text {
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0.48px;
    }

    @media (max-width: 1199px) {
        & .vs-event__text {
            margin-bottom: 0px;
        }
    }

    & .vs-event__footer {
        display: flex;
        gap: 34px;
        padding-top: 20px;
    }

    @media (max-width: 767px) {
        & .vs-event__footer {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
    }

    & .vs-event__user {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    & .vs-event__user--name {
        font-size: 20px;
        margin-bottom: 0px;
        text-transform: capitalize;
    }

    & .vs-event__user--role {
        text-transform: capitalize;
        font-weight: 500;
    }

    & .vs-event__user--img {
        border-radius: 50%;
        border: 3px solid rgba(var(--vs-theme-color2-rgb), 0.5);
    }

    & .vs-event__btn {
        padding-left: 15px;
        position: relative;
    }

    @media (max-width: 767px) {
        & .vs-event__btn {
            padding-left: 0px;
        }
    }

    & .vs-event__btn::before {
        position: absolute;
        content: "";
        top: 50%;
        transform: translateY(-50%);
        left: 0px;
        width: 1px;
        height: 55px;
        background-color: rgba(var(--vs-title-color-rgb), 0.3);
    }

    @media (max-width: 767px) {
        & .vs-event__btn::before {
            display: none;
        }
    }

    & .vs-event:hover .vs-event__figure--img {
        transform: scale(1.01);
    }

    & .vs-event--speaker .vs-event__footer {
        padding-top: 0px;
        align-items: center;
        flex-wrap: wrap;
    }

    & .vs-event--speaker .social-style {
        color: var(--vs-body-color);
        font-family: var(--vs-body-font);
        letter-spacing: 0.48px;
        font-weight: 500;
        padding-left: 20px;
        position: relative;
        flex: 1 1 0%;
    }

    @media (max-width: 767px) {
        & .vs-event--speaker .social-style {
            padding-left: 0px;
        }
    }

    & .vs-event--speaker .social-style::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 55px;
        background-color: rgba(var(--vs-title-color-rgb), 0.3);
        left: 0px;
    }

    @media (max-width: 767px) {
        & .vs-event--speaker .social-style::before {
            display: none;
        }
    }

    & .vs-event--speaker .social-style a {
        --icon-size: 36px;
        color: var(--vs-theme-color2);
        border: 2px solid rgba(var(--vs-title-color-rgb), 0.3);
    }

    & .vs-event--speaker .social-style a: hover {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
        border-color: var(--vs-theme-color2);
    }

    & .vs-side-form--reg {
        padding: 55px;
        border: 1px dashed rgba(var(--vs-title-color-rgb), 0.3);
        border-radius: 25px;
    }

    @media (max-width: 991px) {
        & .vs-side-form--reg {
            padding: 15px;
        }
    }

    & .vs-side-form--reg .wp-block-heading {
        font-size: 20px;
        text-transform: capitalize;
        padding: 10px 0px;
    }

    & .vs-side-form--reg .vs-side-form__group {
        position: relative;
        border: 1px solid rgba(var(--vs-title-color-rgb), 0.4);
        border-radius: 10px;
    }

    & .vs-side-form--reg .vs-side-form__group--inline .vs-side-form__group {
        flex: 1 1 auto;
    }

    @media (max-width: 991px) {
        & .vs-side-form--reg .vs-side-form__group--inline .vs-side-form__group {
            width: 100%;
        }
    }

    & .vs-side-form--reg .vs-side-form__group--checkbox {
        border: 0px;
    }

    & .vs-side-form--reg .vs-side-form__input {
        letter-spacing: 0.8px;
        font-size: 14px;
    }

    @media (max-width: 991px) {
        & .vs-side-form--reg .vs-side-form__input {
            width: 100%;
        }
    }

    & .vs-side-form--reg .vs-side-form__icon-wrapper {
        position: absolute;
        right: 0px;
        border-right: 0px;
    }

    & .feedback--ele1 {
        position: absolute;
        right: 76px;
        top: 92px;
    }

    @media (max-width: 1199px) {
        & .feedback--ele1 {
            display: none;
        }
    }

    & .feedback-wrapper {
        padding: 0px 0px 0px 100px;
    }

    @media (max-width: 1199px) {
        & .feedback-wrapper {
            padding-left: 40px;
        }
    }

    & .feedback-wrapper {
    }

    @media (max-width: 991px) {
        & .feedback-wrapper {
            padding-left: 0px;
        }
    }

    & .feedback-wrapper.admission-form {
        padding-left: 70px;
    }

    @media (max-width: 991px) {
        & .feedback-wrapper.admission-form {
            padding-left: 0px;
        }
    }

    & .feedback-slider .swiper-wrapper {
        margin-left: 0px;
    }

    & .feedback-slider .vs-feedback-pagination {
        padding: 54px 0px 0px;
    }

    @media (max-width: 991px) {
        & .feedback-slider .vs-feedback-pagination {
            text-align: center;
        }
    }

    & .feedback-slider .vs-feedback-pagination .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
        background: rgba(var(--vs-white-color-rgb), 0.6);
        opacity: 1;
    }

    & .feedback-slider .vs-feedback-pagination .swiper-pagination-bullet-active {
        background-color: var(--vs-theme-color2);
    }

    & .feedback-image {
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 45%;
        height: 100%;
        background-position: right center;
    }

    @media (max-width: 991px) {
        & .feedback-image {
            position: static;
            width: 100%;
            height: 722px;
            margin-top: calc(-1 * var(--vs-section-space-mobile));
            margin-bottom: 50px;
        }
    }

    & .feedback-image--right {
        position: absolute;
        left: auto;
        right: 0px;
        bottom: 0px;
        width: 55%;
        height: 100%;
        z-index: -1;
    }

    & .feedback-block {
        display: inline-flex;
        gap: 62px;
    }

    @media (max-width: 767px) {
        & .feedback-block {
            flex-direction: column;
            gap: 30px;
            text-align: center;
            align-items: center;
        }
    }

    & .feedback-block__image {
        --image-size: 145px;
        position: relative;
        height: max-content;
        width: var(--image-size);
    }

    & .feedback-block__image > img {
        width: var(--image-size);
        min-width: var(--image-size);
        height: var(--image-size);
        min-height: var(--image-size);
        object-fit: cover;
        border-radius: 50%;
    }

    & .feedback-block__icon--quote {
        --icon-quote: 77px;
        width: var(--icon-quote);
        min-width: var(--icon-quote);
        height: var(--icon-quote);
        min-height: var(--icon-quote);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--vs-theme-color2);
        position: absolute;
        bottom: -17px;
        right: -28px;
        border: 3px solid var(--vs-white-color);
    }

    & .feedback-block__title {
        color: var(--vs-white-color);
        font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
        text-transform: capitalize;
        line-height: 1.1;
        margin-bottom: 0.5em;
    }

    & .feedback-block__title--sub {
        font-weight: 700;
        color: var(--vs-theme-color2);
        text-transform: capitalize;
        display: inline-block;
        margin: 0px 0px 18px;
    }

    & .feedback-block__rating {
        padding-left: 0px;
        display: flex;
        align-items: center;
        font-size: 16px;
        letter-spacing: 3.2px;
        color: var(--vs-theme-color2);
        margin-bottom: 30px;
    }

    @media (max-width: 767px) {
        & .feedback-block__rating {
            justify-content: center;
        }
    }

    & .feedback-block__desc {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0.48px;
        color: var(--vs-white-color);
        margin-bottom: 0px;
    }

    & .vs-class {
        border: 1.5px dashed rgba(var(--vs-title-color-rgb), 0.4);
        border-radius: 21px;
        padding: 20px 20px 0px;
        text-align: center;
        position: relative;
        z-index: 1;
        margin-bottom: 60px;
        transition: 0.3s ease-in-out;
    }

    & .vs-class::before, & .vs-class::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        z-index: -1;
        left: 0px;
        top: 0px;
        border-radius: 21px;
        transition: 0.3s ease-in-out;
    }

    & .vs-class::after {
        background-color: var(--vs-white-color);
    }

    & .vs-class::before {
        background-color: var(--vs-title-color);
        left: 13px;
        top: 23px;
        height: 96%;
        width: 98%;
    }

    & .vs-class--slider__direction {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 115%;
    }

    @media (max-width: 991px) {
        & .vs-class--slider__direction {
            display: none;
        }
    }

    & .vs-class--ele1 {
        position: absolute;
        bottom: 10px;
        right: 134px;
    }

    @media (max-width: 991px) {
        & .vs-class--ele1 {
            display: none;
        }
    }

    & .vs-class--slider {
        padding-right: 0px;
        padding-left: 15px;
    }

    & .vs-class__figure {
        border-radius: 20px;
        position: relative;
    }

    & .vs-class__figure--link {
        display: inline-block;
        width: 100%;
    }

    & .vs-class__figure--img {
        width: 100%;
        height: 188px;
        object-fit: cover;
        transition: 0.3s ease-in-out;
        border-radius: 20px;
    }

    & .vs-class__icon {
        --icon-size: 68px;
        min-width: var(--icon-size);
        width: var(--icon-size);
        min-height: var(--icon-size);
        height: var(--icon-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--vs-theme-color1);
        border-radius: 50%;
        border: 2px dashed rgba(var(--vs-white-color-rgb), 0.5);
        position: relative;
        z-index: 1;
    }

    & .vs-class__icon--wrap {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -33px;
        background: var(--vs-white-color);
        width: 88px;
        height: 78px;
        line-height: 78px;
        text-align: center;
        padding: 10px 10px 0px;
        border-radius: 60% 60% 0px 0px;
    }

    & .vs-class__icon--wrap::before, & .vs-class__icon--wrap::after {
        content: "";
        display: block;
        width: 80%;
        height: 80%;
        position: absolute;
        border-radius: 24px;
    }

    & .vs-class__icon--wrap::before {
        bottom: -5px;
        right: -29px;
        box-shadow: inset -19px -48px 0px 0px var(--vs-white-color);
        transform: rotate(56deg);
    }

    & .vs-class__icon--wrap::after {
        bottom: -6px;
        left: -32px;
        box-shadow: inset -24px 45px 0px 0px var(--vs-white-color);
        transform: rotate(121deg);
    }

    & .vs-class__icon--color2 {
        background-color: var(--vs-theme-color4);
    }

    & .vs-class__icon--color3 {
        background-color: var(--vs-theme-color3);
    }

    & .vs-class__icon--color4 {
        background-color: var(--vs-theme-color2);
    }

    & .vs-class__content {
        padding: 60px 0px 0px;
        position: relative;
        z-index: 1;
    }

    & .vs-class__heading {
        font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
        line-height: 1.1;
        margin: 0px 0px 14px;
        text-transform: capitalize;
        transition: 0.3s ease-in-out;
    }

    & .vs-class__heading--link {
        display: inline-block;
    }

    & .vs-class__heading:hover {
        color: var(--vs-theme-color2);
    }

    & .vs-class__text {
        letter-spacing: 0.48px;
        font-weight: 500;
        text-transform: capitalize;
        margin: 0px 0px 20px;
    }

    & .vs-class__bottom {
        margin-bottom: -23px;
    }

    & .vs-class__link {
        display: inline-flex;
        padding: 13px 42px;
        background-color: var(--vs-title-color);
        color: var(--vs-white-color);
        border-radius: 999px;
        margin-bottom: 0px;
    }

    & .vs-class__link:hover {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
    }

    & .vs-class:hover {
        border: 1.5px dashed rgba(var(--vs-theme-color2-rgb), 1);
    }

    & .vs-class:hover .vs-class__link {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
    }

    & .vs-class:hover::before {
        background-color: var(--vs-theme-color2);
    }

    & .vs-class--details {
        background-color: var(--vs-white-color);
        border-radius: 22px;
        overflow: hidden;
    }

    & .vs-class--details p {
        font-weight: 500;
        letter-spacing: 0.48px;
    }

    & .vs-class--details .vs-blog__img {
        border-radius: 20px 20px 0px 0px;
    }

    & .vs-class--details .vs-blog__img--figure {
        border-radius: 20px 20px 0px 0px;
    }

    & .vs-class--details .vs-class__price {
        position: absolute;
        top: 40px;
        right: 35px;
        font-size: 40px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        color: var(--vs-theme-color2);
    }

    @media (max-width: 767px) {
        & .vs-class--details .vs-class__price {
            position: static;
            margin-bottom: 15px;
            display: block;
        }
    }

    & .vs-class--details .vs-class__price span {
        font-family: var(--vs-body-font);
        font-size: 16px;
        color: var(--vs-body-color);
        padding-left: 9px;
    }

    & .vs-class--details .vs-class__row, & .vs-class--details .vs-class__table {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    & .vs-class--details .vs-class__row {
        opacity: 1;
    }

    @media (max-width: 767px) {
        & .vs-class--details .vs-class__row {
            display: inline-grid;
            gap: 15px;
        }
    }

    & .vs-class--details .vs-class__table tbody {
        opacity: 1;
    }

    @media (max-width: 767px) {
        & .vs-class--details .vs-class__table tbody {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
    }

    & .vs-class--details .vs-class__heading--sub {
        font-size: 24px;
        text-transform: capitalize;
    }

    & .vs-class--details .vs-class__data {
        padding: 0px;
        font-weight: bold;
        text-align: left;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    & .vs-class--details .vs-class__data--heading {
        padding: 0px;
        font-weight: bold;
        text-align: left;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        font-size: 18px;
    }

    & .vs-class--details .vs-class__data--time {
        color: rgb(224, 164, 11);
    }

    & .vs-class--details .vs-class__data--location {
        color: rgb(224, 164, 11);
    }

    & .vs-class--details .vs-blog__content {
        padding: 40px 35px 65px;
        position: relative;
    }

    @media (max-width: 991px) {
        & .vs-class--details .vs-blog__content {
            padding: 40px 20px;
        }
    }

    & .vs-class--details .vs-blog__meta {
        gap: 30px;
    }

    & .vs-class--details .vs-blog__meta--link {
        gap: 7px;
    }

    & .vs-class--details .vs-blog__meta--link i {
        color: var(--vs-body-color);
        margin-top: -5px;
    }

    & .vs-class--details .vs-blog__meta--link::after {
        display: none;
    }

    & .vs-class--sidebar .widget {
        border: 0px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 10px;
        border-radius: 15px;
        overflow: hidden;
    }

    & .vs-session {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        padding: 30px 35px;
        margin-bottom: 30px;
    }

    @media (max-width: 1199px) {
        & .vs-session {
            background-color: var(--vs-white-color);
            border-radius: 15px;
            padding: 18px 20px;
            margin-bottom: 24px;
        }
    }

    & .vs-session__bg {
        position: absolute;
        right: 0px;
        z-index: -1;
        width: 100%;
        top: 0px;
        height: 100% !important;
    }

    @media (max-width: 1199px) {
        & .vs-session__bg {
            display: none;
        }
    }

    & .vs-session--bg-image {
        position: absolute;
        right: 0px;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        opacity: 0.05;
    }

    & .vs-session__title {
        font-size: 24px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    & .vs-session__time {
        font-weight: 700;
        letter-spacing: 0.48px;
        color: var(--vs-theme-color-1);
        display: inline-block;
        transition: 0.3s ease-in-out;
    }

    & .vs-session__icon {
        --icon-size: 77px;
        display: inline-flex;
        align-items: center;
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        justify-content: center;
        border-radius: 50%;
        background-color: var(--vs-theme-color1);
        transition: 0.3s ease-in-out;
    }

    & .vs-session--ele1, & .vs-session--ele2 {
        position: absolute;
        top: 0px;
        left: 0px;
    }

    @media (max-width: 991px) {
        & .vs-session--ele1, & .vs-session--ele2 {
            display: none;
        }
    }

    & .vs-session--ele1 {
        left: 5%;
    }

    @media (max-width: 1199px) {
        & .vs-session--ele1 {
            left: 0px;
        }
    }

    & .vs-session--ele2 {
        left: auto;
        top: 173px;
        right: 185px;
    }

    @media (max-width: 1199px) {
        & .vs-session--ele2 {
            right: 0px;
        }
    }

    & .vs-session:hover .vs-session__icon {
        background-color: var(--vs-theme-color2);
    }

    & .vs-session:hover .vs-session__time {
        color: var(--vs-theme-color2);
    }

    & .vs-pro {
        padding: 40px;
        text-align: center;
        z-index: 1;
        position: relative;
    }

    & .vs-pro::before, & .vs-pro::after {
        position: absolute;
        content: "";
        --image-size: 212px;
        min-width: var(--image-size);
        min-height: var(--image-size);
        background-color: var(--vs-white-color);
        z-index: -1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

    @media (max-width: 1199px) {
        & .vs-pro::before, & .vs-pro::after {
            --image-size: 180px;
        }
    }

    & .vs-pro::before, & .vs-pro::after {
    }

    @media (max-width: 991px) {
        & .vs-pro::before, & .vs-pro::after {
            --image-size: 200px;
        }
    }

    & .vs-pro::after {
        --image-size: 230px;
        min-width: var(--image-size);
        min-height: var(--image-size);
        border: 3px dashed rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        height: var(--image-size);
        width: var(--image-size);
        background-color: transparent;
    }

    @media (max-width: 1199px) {
        & .vs-pro::after {
            --image-size: 190px;
        }
    }

    & .vs-pro::after {
    }

    @media (max-width: 991px) {
        & .vs-pro::after {
            --image-size: 220px;
        }
    }

    & .vs-pro--ele1, & .vs-pro--ele2, & .vs-pro--ele3 {
        position: absolute;
        z-index: 4;
    }

    @media (max-width: 991px) {
        & .vs-pro--ele1, & .vs-pro--ele2, & .vs-pro--ele3 {
            display: none;
        }
    }

    & .vs-pro--ele1 {
        top: 94px;
        left: 90px;
    }

    @media (max-width: 1500px) {
        & .vs-pro--ele1 {
            top: 0px;
            left: 0px;
        }
    }

    & .vs-pro--ele1 {
    }

    @media (max-width: 1199px) {
        & .vs-pro--ele1 {
            display: none;
        }
    }

    & .vs-pro--ele2 {
        right: 129px;
        top: 94px;
    }

    & .vs-pro--ele3 {
        right: 69px;
        bottom: -88px;
    }

    @media (max-width: 991px) {
        & .vs-pro--ele3 {
            display: none;
        }
    }

    & .vs-pro--area {
        padding: 190px 0px 170px;
    }

    & .vs-pro--area::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 50%;
        background-color: var(--vs-theme-color7);
        bottom: 0px;
        z-index: -1;
    }

    & .vs-pro--area.layout-h2 {
        margin: -65px 0px;
        z-index: 3;
    }

    @media (max-width: 1199px) {
        & .vs-pro--area.layout-h2 {
            margin: -98px 0px -65px;
        }
    }

    & .vs-pro--area.layout-h2::before {
        display: none;
    }

    & .vs-pro--area.layout-h3 {
        margin: -85px 0px 0px;
    }

    @media (max-width: 767px) {
        & .vs-pro--area.layout-h3 {
            margin: -150px 0px 0px;
        }
    }

    & .vs-pro--area.layout-h3::before {
        display: none;
    }

    & .vs-pro__grade {
        --grade-size: 75px;
        min-width: var(--grade-size);
        min-height: var(--grade-size);
        width: var(--grade-size);
        height: var(--grade-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 50%;
        color: var(--vs-white-color);
        font-weight: 700;
        text-transform: uppercase;
        font-family: var(--vs-title-font);
        font-size: 13px;
        line-height: 1;
        gap: 4px;
        padding: 20px 10px 10px;
        margin-bottom: 12px;
    }

    & .vs-pro__grade span {
        font-size: 26px;
    }

    & .vs-pro__title {
        font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
        margin-bottom: 5px;
        line-height: 1;
        font-weight: 900;
    }

    & .vs-pro__age {
        font-weight: 700;
    }

    & .vs-pro--slider {
        padding: 10px 0px;
        display: flex;
        justify-content: flex-end;
        margin-left: -20px;
    }

    & .vs-pro--slider__direction {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    @media (max-width: 767px) {
        & .vs-pro--slider__direction {
            margin-bottom: 30px;
        }
    }

    & .vs-pro--slider__next, & .vs-pro--slider__prev {
        --circle-size: 55px;
        background: rgb(255, 255, 255);
        backdrop-filter: blur(2px);
        width: var(--circle-size);
        height: var(--circle-size);
        min-width: var(--circle-size);
        min-height: var(--circle-size);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--vs-title-color);
        transition: 0.3s ease-in-out;
        position: relative;
    }

    & .vs-pro--slider__next::before, & .vs-pro--slider__prev::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        border: 3px dashed var(--vs-theme-color2);
        border-radius: 50%;
    }

    & .vs-pro--slider__next:hover, & .vs-pro--slider__prev:hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
    }

    & .vs-grade {
        position: relative;
        background-color: var(--vs-white-color);
        border-radius: 21px;
        overflow: hidden;
        margin-bottom: 30px;
        filter: drop-shadow(rgba(0, 0, 0, 0.07) 0px 4px 15px);
        transition: 0.3s ease-in-out;
    }

    & .vs-grade::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        border: 3px dashed rgba(30, 30, 30, 0.15);
        border-radius: 21px;
    }

    & .vs-grade__figure {
        margin-bottom: 0px;
        position: relative;
        overflow: hidden;
    }

    & .vs-grade__body {
        padding: 0px 12px 20px;
        position: relative;
        z-index: 1;
    }

    & .vs-grade__header {
        padding: 10px;
        background-color: var(--vs-white-color);
        margin-top: -23px;
        border-radius: 10px;
    }

    & .vs-grade__header ul {
        list-style: none;
        padding-left: 0px;
        margin-bottom: 0px;
        column-count: 3;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    & .vs-grade__header ul li {
        flex: 1 1 auto;
    }

    & .vs-grade__header ul {
        margin: 0px;
    }

    @media (max-width: 1199px) {
        & .vs-grade__header ul {
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
    }

    & .vs-grade__feature {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        padding: 9px 15px;
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.3);
        border-radius: 10px;
        min-width: 100%;
        min-height: 67px;
    }

    & .vs-grade__age, & .vs-grade__size {
        color: var(--vs-white-color);
        display: inline-block;
    }

    & .vs-grade__age {
        font-size: 20px;
        font-weight: 900;
        font-family: var(--vs-title-font);
        line-height: 1.1;
    }

    & .vs-grade__size {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.48px;
        text-transform: capitalize;
    }

    & .vs-grade__content {
        padding: 15px 25px;
    }

    & .vs-grade__heading {
        font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
        text-transform: capitalize;
        line-height: 1.1;
        margin-bottom: 7px;
        transition: 0.3s ease-in-out;
    }

    & .vs-grade__heading:hover {
        color: var(--vs-theme-color2);
    }

    & .vs-grade__heading--link {
        display: block;
    }

    & .vs-grade__price {
        font-weight: 600;
        color: var(--vs-theme-color2);
        font-size: 20px;
        display: inline-block;
        margin-bottom: 13px;
    }

    & .vs-grade__price span {
        font-size: 16px;
    }

    & .vs-grade__text {
        margin-bottom: 0px;
        text-transform: capitalize;
        font-weight: 500;
        letter-spacing: 0.48px;
    }

    & .vs-grade:hover {
        background-color: var(--vs-theme-color8);
    }

    & .vs-room {
        text-align: center;
        padding: 42px 20px;
        border-radius: 17px;
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.25);
        overflow: hidden;
    }

    & .vs-room--area {
        z-index: 4;
    }

    & .vs-room__ele1, & .vs-room__ele2 {
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: -1;
    }

    @media (max-width: 991px) {
        & .vs-room__ele1, & .vs-room__ele2 {
            display: none;
        }
    }

    & .vs-room__ele1 {
        top: 106px;
        left: 183px;
    }

    @media (max-width: 1500px) {
        & .vs-room__ele1 {
            top: 20px;
            left: 100px;
        }
    }

    & .vs-room__ele2 {
        inset: auto 119px -70px auto;
    }

    @media (max-width: 1500px) {
        & .vs-room__ele2 {
            right: 0px;
        }
    }

    & .vs-room__ele2 {
    }

    @media (max-width: 1199px) {
        & .vs-room__ele2 {
            display: none;
        }
    }

    & .vs-room__icon {
        margin-bottom: 23px;
    }

    & .vs-room__title {
        font-size: 24px;
        text-transform: capitalize;
        color: var(--vs-white-color);
        margin-bottom: 10px;
    }

    & .vs-room__text {
        color: var(--vs-white-color);
        text-transform: capitalize;
        font-weight: 500;
        margin-bottom: 0px;
    }

    & .vs-room--video {
        border-radius: 17px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: stretch;
    }

    @media (max-width: 767px) {
        & .vs-room--video {
            flex-wrap: wrap;
            gap: 35px;
            padding: 0px 0px 35px;
        }
    }

    & .vs-room--ex {
        text-align: center;
        background-color: var(--vs-theme-color1);
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.3);
        border-radius: 17px;
        padding: 40px 10px;
        min-width: 233px;
        box-shadow: 0 0 0px 7px var(--vs-white-color);
    }

    & .vs-room--ex__num, & .vs-room--ex__title {
        color: var(--vs-white-color);
    }

    & .vs-room--ex__num {
        font-size: 55px;
        font-family: var(--vs-title-font);
        font-weight: 900;
        display: inline-flex;
        line-height: 1;
        margin-bottom: 10px;
    }

    & .vs-room--ex__title {
        font-size: 20px;
        text-transform: capitalize;
        line-height: 1.1;
        margin: 0px 0px 30px;
    }

    & .vs-room--icon {
        width: 100%;
        text-align: center;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .vs-room--play {
        --icon-size: 80px;
        width: var(--icon-size);
        height: var(--icon-size);
        border-radius: 50%;
        border: 8px solid rgba(var(--vs-white-color-rgb), 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 26px;
        color: rgba(var(--vs-white-color-rgb), 0.8);
    }

    & .vs-room--play:hover {
        color: var(--vs-theme-color1);
        border-color: var(--vs-white-color);
        background-color: var(--vs-white-color);
    }

    & .vs-client {
        display: flex;
        align-items: stretch;
        position: relative;
        gap: 27px;
        padding: 25px 60px 40px;
    }

    @media (max-width: 1199px) {
        & .vs-client {
            background-color: var(--vs-white-color);
            border-radius: 20px;
            padding: 20px;
        }
    }

    & .vs-client {
    }

    @media (max-width: 767px) {
        & .vs-client {
            flex-wrap: wrap;
            gap: 0px;
        }
    }

    & .vs-client--slider {
        padding-left: 0px;
        display: flex;
        justify-content: center;
    }

    & .vs-client__image {
        align-self: self-start;
        border-radius: 50%;
        overflow: hidden;
        border: 7px solid var(--vs-theme-color1);
        min-width: 91px;
    }

    & .vs-client__content {
        padding-top: 10px;
    }

    & .vs-client__title {
        font-size: 24px;
        margin-bottom: 0px;
        text-transform: capitalize;
    }

    & .vs-client__quote {
        position: absolute;
        right: 80px;
        bottom: 55px;
    }

    @media (max-width: 991px) {
        & .vs-client__quote {
            right: 15px;
            bottom: 25px;
        }
    }

    & .vs-client__desc {
        font-weight: 500;
        text-transform: capitalize;
    }

    & .vs-time {
        background-color: var(--vs-theme-color6);
        border-radius: 20px;
        overflow: hidden;
        border: 4px dashed rgba(var(--vs-theme-color1-rgb), 0.2);
        margin-bottom: 30px;
    }

    & .vs-time--ele1 {
        position: absolute;
        right: 90px;
        top: 107px;
    }

    @media (max-width: 767px) {
        & .vs-time--ele1 {
            display: none;
        }
    }

    & .vs-time__figure {
        margin: 2px 3px 0px;
        border-radius: 15px 15px 0px 0px;
        position: relative;
    }

    & .vs-time__image {
        border-radius: 15px 15px 0px 0px;
    }

    & .vs-time__image--link {
        display: block;
        border-radius: 15px 15px 0px 0px;
        overflow: hidden;
    }

    & .vs-time__price {
        --price-size: 63px;
        width: var(--price-size);
        height: var(--price-size);
        background-color: var(--vs-theme-color2);
        position: absolute;
        bottom: -23px;
        right: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: var(--vs-white-color);
        padding: 10px;
        font-family: var(--vs-title-font);
        font-weight: 700;
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.5);
    }

    & .vs-time__content {
        padding: 30px;
    }

    & .vs-time__rating {
        margin: 0px 0px 15px;
    }

    & .vs-time__rating ul {
        padding-left: 0px;
        margin-bottom: 0px;
        list-style: none;
        display: flex;
        align-items: center;
        font-size: 14px;
        color: var(--vs-theme-color2);
    }

    & .vs-time__heading {
        font-size: 20px;
        font-weight: 800;
        line-height: 1.5;
        margin-bottom: 10px;
        text-transform: capitalize;
    }

    & .vs-time__heading a {
        display: inline-block;
        color: var(--vs-title-color);
    }

    & .vs-time__heading a: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-time__heading:hover {
        color: var(--vs-theme-color2);
    }

    & .vs-time__features ul {
        padding-left: 0px;
        margin-bottom: 0px;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        color: var(--vs-body-color);
    }

    & .vs-time__features ul li span {
        font-weight: 600;
        display: inline-block;
    }

    & .vs-time__features ul li span i {
        margin-right: 9px;
    }

    & .vs-time__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    & .vs-time__teacher--link {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--vs-title-font);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.48px;
        color: var(--vs-theme-color1);
    }

    & .vs-time__topic {
        font-family: var(--vs-title-font);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.48px;
        color: var(--vs-title-color);
    }

    & .vs-time__divider {
        margin: 25px 0px 16px;
        color: inherit;
        background-color: transparent;
        border-top: 1px solid rgb(217, 217, 217);
        opacity: 1;
    }

    & .vs-time--class {
        border: 0px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    }

    & .vs-time--class .vs-time__figure {
        margin: 8px;
    }

    & .vs-video--ele1, & .vs-video--ele2 {
        position: absolute;
        inset: 0px;
        z-index: -1;
    }

    @media (max-width: 991px) {
        & .vs-video--ele1, & .vs-video--ele2 {
            display: none;
        }
    }

    & .vs-video--ele1 {
        left: 134px;
        top: 85px;
    }

    & .vs-video--ele2 {
        top: 64px;
        right: 264px;
        left: auto;
    }

    & .vs-video--bg-image, & .vs-video--bg-image--overlay {
        position: absolute;
        width: 100%;
        height: 104%;
        z-index: -3;
        inset: 0px;
        opacity: 0.05;
    }

    & .vs-video--bg-image img {
        height: 104%;
        object-fit: cover;
        width: 100%;
    }

    & .vs-video--bg-image--overlay {
        z-index: -2;
    }

    & .vs-video__content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    & .vs-video__content .vs-btn:hover {
        color: var(--vs-white-color);
    }

    & .vs-video__content .vs-btn::before, & .vs-video__content .vs-btn::after {
        background-color: var(--vs-title-color);
    }

    & .vs-video__button {
        margin-bottom: 42px;
    }

    & .vs-video__divider {
        background-color: var(--vs-white-color);
        opacity: 0.3;
        min-width: 878px;
        margin-bottom: 45px;
        height: 1.5px;
        border: 0px;
        border-radius: 100%;
    }

    @media (max-width: 991px) {
        & .vs-video__divider {
            min-width: 100%;
        }
    }

    & .vs-why--ele1, & .vs-why--ele2 {
        position: absolute;
        top: 0px;
        left: 0px;
    }

    @media (max-width: 1199px) {
        & .vs-why--ele1, & .vs-why--ele2 {
            display: none;
        }
    }

    & .vs-why--ele1 {
        top: 84px;
        left: 63px;
    }

    @media (max-width: 1500px) {
        & .vs-why--ele1 {
            top: 5px;
        }
    }

    & .vs-why--ele2 {
        top: auto;
        bottom: 104px;
        left: 0px;
    }

    & .accordion .accordion-item {
        margin: 0px 0px 15px;
        border-radius: 20px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        border: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
    }

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

    & .accordion .accordion-item:first-of-type .accordion-button {
        border-radius: 0px;
    }

    & .accordion .accordion-item:last-of-type .accordion-button.collapsed, & .accordion .accordion-item:last-of-type .accordion-collapse {
        border-radius: 0px;
    }

    & .accordion .accordion-item:not(:first-of-type) {
        border-top: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
    }

    & .accordion .accordion-header {
        margin: 0px;
    }

    & .accordion .accordion-button {
        background: transparent;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        border-radius: 0px;
        padding: 19.5px 25px;
        font-size: 20px;
        font-weight: 900;
        font-family: var(--vs-title-font);
        color: var(--vs-title-color);
        text-align: left;
        text-transform: capitalize;
        box-shadow: none;
        line-height: 1.3;
    }

    & .accordion .accordion-button::after {
        content: "";
        font-family: var(--vs-icon-font);
        font-weight: 400;
        color: var(--vs-title-color);
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 2px dashed transparent;
        border-radius: 50%;
    }

    & .accordion .accordion-button:hover {
        color: var(--vs-theme-color);
    }

    & .accordion .accordion-button:hover::after {
        color: var(--vs-theme-color);
    }

    & .accordion .accordion-button:focus {
        box-shadow: none;
    }

    & .accordion .accordion-button:not(.collapsed) {
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color2);
    }

    & .accordion .accordion-button:not(.collapsed)::after {
        color: var(--vs-white-color);
        content: "";
    }

    & .accordion .accordion-body {
        padding: 18px 25px 35px;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.75;
        color: var(--vs-body-color);
    }

    & .accordion .accordion-body p: last-child {
        margin-bottom: 0px;
    }

    & .accordion .accordion-collapse {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    & .accordion__reaction {
        display: flex;
        align-items: center;
        max-width: 485px;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 700;
        text-transform: capitalize;
        background: rgba(18, 21, 31, 0.7);
        box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 4px inset;
        border-radius: 29.5px;
        padding: 0px 30px;
        min-height: 55px;
        margin-top: 39px;
        color: var(--body-color);
    }

    & .accordion__reaction--btns {
        display: flex;
        align-items: center;
    }

    & .accordion__reaction--btn {
        padding-right: 22px;
        margin-right: 22px;
        position: relative;
    }

    & .accordion__reaction--btn::after {
        position: absolute;
        content: "";
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        height: 36px;
        width: 1px;
        opacity: 0.15;
        background-color: rgb(217, 217, 217);
        border-radius: 100%;
    }

    & .accordion__reaction--btn:last-child {
        padding-right: 0px;
        margin-right: 0px;
    }

    & .accordion__reaction--btn:last-child::after {
        display: none;
    }

    & .accordion__reaction--btn:hover {
        color: var(--vs-theme-color);
    }

    & .vs-filter--area {
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.05);
        padding: 15px 25px;
        border-radius: 10px;
    }

    & .vs-filter--item, & .vs-filter--select {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
        text-transform: capitalize;
        flex-wrap: wrap;
    }

    & .vs-filter--item {
        gap: 27px;
    }

    @media (max-width: 767px) {
        & .vs-filter--item {
            gap: 15px;
        }
    }

    & .vs-filter--select {
        gap: 15px;
    }

    & .vs-filter--select select {
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
        min-height: 40px;
        padding: 0px 17px;
        border-radius: 6px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
        background-position: right 17px center;
        background-repeat: no-repeat;
        background-size: 16px 12px;
        appearance: none;
        cursor: pointer;
        min-width: 85px;
        font-size: 14px;
        font-weight: 700;
        color: var(--vs-body-color);
        outline: none;
        text-transform: capitalize;
    }

    & .vs-filter--select select option {
        font-size: 14px;
        font-weight: 700;
    }

    & .vs-shop {
        margin-bottom: 40px;
    }

    & .vs-shop__img {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 287px;
        background-color: var(--vs-theme-color6);
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
        border-radius: 10px;
        margin-bottom: 25px;
        overflow: hidden;
        transition: 0.3s ease-in-out;
        position: relative;
    }

    & .vs-shop__img::before {
        content: "";
        position: absolute;
        left: 0px;
        width: 100%;
        height: 0%;
        bottom: auto;
        top: 0px;
        background-color: rgb(246, 241, 228);
        border-radius: 10px;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    & .vs-shop__img img {
        transform: scale(1.05);
        transform-origin: center center;
        transition: 0.3s ease-in-out;
    }

    & .vs-shop__tags {
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }

    & .vs-shop__tags--link {
        display: inline-flex;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        color: var(--vs-body-color);
        text-transform: capitalize;
    }

    & .vs-shop__heading {
        font-size: 20px;
    }

    & .vs-shop__heading a {
        color: var(--vs-title-color);
    }

    & .vs-shop__heading a: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-shop__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    & .vs-shop__pricing {
        font-size: 18px;
        font-weight: 700;
        font-family: var(--vs-title-font);
    }

    & .vs-shop__hover {
        display: flex;
        align-items: center;
        gap: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    & .vs-shop__btn {
        --icon-size: 50px;
        display: inline-flex;
        min-width: var(--icon-size);
        width: var(--icon-size);
        height: var(--icon-size);
        min-height: var(--icon-size);
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        border: 3px dashed rgba(var(--vs-white-color-rgb), 0.3);
        position: relative;
        z-index: 1;
        transition: 0.3s ease-in-out;
    }

    & .vs-shop__btn::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 0%;
        border-radius: 50%;
        background-color: transparent;
        z-index: -1;
        transition: 0.3s ease-in-out;
    }

    & .vs-shop__btn:hover {
        color: var(--vs-white-color);
    }

    & .vs-shop__btn:hover::before {
        background-color: var(--vs-theme-color2);
        height: 100%;
    }

    & .vs-shop:hover .vs-shop__img::before {
        visibility: visible;
        height: 100%;
        opacity: 0.8;
        bottom: 0px;
        top: auto;
        transition: 0.3s ease-in-out;
    }

    & .vs-shop:hover .vs-shop__img img {
        transform: scale(1.01);
        transition: 0.3s ease-in-out;
    }

    & .vs-shop:hover .vs-shop__hover {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
    }

    & .vs-shop:hover .vs-shop__heading a {
        color: var(--vs-theme-color2);
    }

    & .star-rating {
        overflow: hidden;
        position: relative;
        width: 92px;
        height: 1.2em;
        line-height: 1.2em;
        display: block;
        font-family: var(--vs-icon-font);
        font-weight: 700;
        font-size: 14px;
    }

    & .star-rating::before {
        content: "";
        color: var(--vs-theme-color2);
        float: left;
        letter-spacing: 3px;
        font-weight: 700;
    }

    & .star-rating span {
        overflow: hidden;
        float: left;
        top: 0px;
        left: 0px;
        position: absolute;
        padding-top: 1.5em;
    }

    & .star-rating span: :before {
        content: "";
        top: 0px;
        position: absolute;
        left: 0px;
        color: var(--vs-theme-color2);
        letter-spacing: 3px;
        font-weight: 700;
    }

    & .shop-sidebar .widget__toggle__expand {
        max-height: 0px;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, border 0.5s ease-in-out;
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0);
        border-radius: 10px;
        background-color: var(--vs-white-color);
    }

    & .shop-sidebar .widget__toggle__expand.expanded {
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.14);
        background-color: var(--vs-white-color);
    }

    & .shop-sidebar .widget-arrow-icon {
        float: right;
        transform: rotate(180deg);
        transition: transform 0.3s ease-in-out;
    }

    & .shop-sidebar .widget-arrow-icon.expanded-arrow {
        transform: rotate(0deg);
    }

    & .shop-sidebar .widget__toggle {
        cursor: pointer;
    }

    & .shop-sidebar .wp-block-heading {
        text-transform: uppercase;
        justify-content: space-between;
        margin-bottom: 0px;
        width: 100%;
    }

    & .shop-sidebar .wp-block-heading svg {
        margin-left: auto;
    }

    & .shop-sidebar .widget {
        padding: 0px;
        background-color: transparent;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        margin-bottom: 45px;
    }

    & .shop-sidebar .widget__toggle {
        width: 100%;
        display: flex;
    }

    & .shop-sidebar .widget ul {
        padding: 10px 0px;
        margin-bottom: 0px;
        list-style: none;
        border-radius: 10px;
    }

    & .shop-sidebar .widget ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--vs-body-color);
        text-transform: capitalize;
        font-weight: 600;
        letter-spacing: 0.48px;
        padding: 18px 25px;
        border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.14);
    }

    & .shop-sidebar .widget ul li a: :after {
        content: "+";
        margin-left: auto;
        font-size: 16px;
        font-weight: 600;
    }

    & .shop-sidebar .widget ul li: last-child a {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    & .shop-sidebar .widget ul li: hover a {
        color: var(--vs-theme-color2);
    }

    & .shop-sidebar .widget__toggle {
        background-color: transparent;
        border: 0px;
        padding: 0px;
    }

    & .price-slider-container {
        padding: 5px 0px 30px;
        border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.14);
    }

    & .price-slider-container .slider-wrapper {
        position: relative;
        height: 5px;
        margin: 5px 10px 30px;
        border-radius: 5px;
        background-color: var(--vs-theme-color2);
    }

    & .price-slider-container .slider-wrapper .slider-track {
        position: absolute;
        height: 5px;
        background-color: var(--vs-title-color);
        border-radius: 5px;
    }

    & .price-slider-container .slider-wrapper .thumb {
        position: absolute;
        width: 19px;
        height: 19px;
        background-color: var(--vs-white-color);
        border-radius: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
        border: 3.5px solid rgb(37, 40, 62);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
        transition: 0.3s, transform 0.3s;
    }

    & .price-slider-container .slider-wrapper .thumb:hover {
        border-color: var(--vs-theme-color2);
        transform: translate(-50%, -50%) scale(1.1);
    }

    & .price-slider-container .slider-wrapper .min-thumb {
        left: 0px;
    }

    & .price-slider-container .slider-wrapper .max-thumb {
        right: 0px;
    }

    & .price-slider-container .price-display {
        font-size: 16px;
        font-weight: 600;
        color: var(--vs-title-color);
    }

    & .price-slider-container .price-display span {
        color: var(--vs-body-color);
    }

    & .price-slider-container .filter-button {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        padding: 12px 27px;
        border-radius: 10px;
        cursor: pointer;
        font-family: var(--vs-title-font);
        font-weight: 600;
        font-size: 16px;
    }

    & .price-slider-container .filter-button:hover {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
    }

    & .price-slider-container .price-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
        gap: 15px;
    }

    & .side-product {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 0px;
        border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.14);
    }

    & .side-product__img {
        max-width: 91px;
        min-width: 91px;
        max-height: 80px;
        min-height: 80px;
        background-color: var(--vs-theme-color6);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.15);
        transition: 0.3s ease-in-out;
        overflow: hidden;
    }

    & .side-product__title {
        font-size: 18px;
        margin: 3px 0px 1px;
        text-transform: capitalize;
    }

    & .side-product__title a {
        color: var(--vs-title-color);
    }

    & .side-product__title a: hover {
        color: var(--vs-theme-color2);
        transition: 0.3s ease-in-out;
    }

    & .side-product__price {
        font-weight: 800;
        font-family: var(--vs-title-font);
        font-size: 18px;
    }

    & .side-product:hover .side-product__img {
        border-color: var(--vs-theme-color2);
    }

    & .side-product:hover .side-product__img img {
        transform: scale(1.01);
        transition: 0.3s ease-in-out;
    }

    & .side-product:hover .side-product__title a {
        color: var(--vs-theme-color2);
    }

    & .sidebar-offer {
        background-color: var(--vs-theme-color1);
        padding: 35px 40px;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    & .sidebar-offer__bg {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        opacity: 0.03;
        z-index: -1;
    }

    & .sidebar-offer__title {
        color: var(--vs-white-color);
        font-size: 24px;
        text-transform: uppercase;
    }

    & .sidebar-offer__title--sub {
        color: var(--vs-white-color);
        font-size: 26px;
        font-weight: 700;
        font-family: var(--vs-special-font);
        letter-spacing: 0.48px;
        margin-bottom: 3px;
        display: inline-block;
    }

    & .sidebar-offer__btn {
        font-size: 18px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        color: var(--vs-white-color);
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    & .sidebar-offer__btn i {
        font-size: 14px;
    }

    & .sidebar-offer__btn:hover {
        color: var(--vs-theme-color2);
    }

    & .product-swatches-container {
        display: flex;
        gap: 10px;
        margin-bottom: 25px;
    }

    & .product-swatches-container .swatch {
        --border-size: 3px;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        border: var(--border-size) solid transparent;
        cursor: pointer;
        transition: 0.3s ease-in-out;
        box-shadow: rgba(255, 69, 0, 0) 0px 0px 0px 0px;
    }

    & .product-swatches-container .swatch.swatch1 {
        background-color: rgb(44, 36, 33);
    }

    & .product-swatches-container .swatch.swatch1.active {
        border: var(--border-size) solid var(--vs-theme-color2);
    }

    & .product-swatches-container .swatch.swatch2 {
        background-color: rgb(230, 59, 63);
    }

    & .product-swatches-container .swatch.swatch2.active {
        border: var(--border-size) solid var(--vs-theme-color2);
    }

    & .product-swatches-container .swatch.swatch3 {
        background-color: rgb(79, 131, 14);
    }

    & .product-swatches-container .swatch.swatch3.active {
        border: var(--border-size) solid var(--vs-theme-color2);
    }

    & .product-swatches-container .swatch.swatch4 {
        background-color: rgb(83, 161, 175);
    }

    & .product-swatches-container .swatch.swatch4.active {
        border: var(--border-size) solid var(--vs-theme-color2);
    }

    & .product-swatches-container {
    }

    & .product-swatches-container .swatch.active {
        border: var(--border-size) solid var(--vs-theme-color2);
    }

    & .product-slide-row .myShopSwiperThumbs .swiper-slide {
        width: 25%;
        background-color: var(--vs-theme-color6);
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 116px;
        cursor: pointer;
        transition: 0.3s ease-in-out;
    }

    & .product-slide-row .myShopSwiperThumbs .swiper-slide-thumb-active {
        opacity: 1;
        border-color: var(--vs-theme-color2);
    }

    & .product-slide-row .myShopSwiperMain {
        background-color: var(--vs-theme-color6);
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 18px;
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
        padding: 15px;
    }

    & .product-slide-row .myShopSwiperMain .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .product-about__tag {
        display: inline-block;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.48px;
    }

    & .product-about .product-title {
        font-size: 40px;
        margin-bottom: 15px;
    }

    & .product-about .product-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 20px;
    }

    & .product-about .product-desc {
        font-weight: 500;
    }

    & .product-about .product-price {
        font-size: 24px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        text-transform: uppercase;
        color: var(--vs-theme-color2);
        display: flex;
        align-items: center;
    }

    & .product-about .product-price span {
        font-family: var(--vs-body-font);
        font-size: 16px;
        color: var(--vs-body-color);
        padding-left: 15px;
        margin-left: 15px;
        position: relative;
    }

    & .product-about .product-price span: :before {
        position: absolute;
        content: "";
        width: 4px;
        height: 4px;
        background-color: var(--vs-body-color);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        left: 0px;
    }

    & .product-about__title--sub {
        font-size: 18px;
        font-weight: 600;
        color: var(--vs-title-color);
        margin-bottom: 6px;
        display: inline-block;
    }

    & .product-about__actions {
        display: flex;
        align-items: center;
        gap: 11px;
        flex-wrap: wrap;
    }

    & .product-about__actions .quantity__field {
        display: flex;
        align-items: center;
        position: relative;
        min-width: 120px;
        justify-content: center;
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
        border-radius: 6px;
    }

    & .product-about__actions .quantity__field input {
        min-height: 46px;
        text-align: center;
        border-top: 0px;
        border-bottom: 0px;
        border-image: initial;
        padding: 0px;
        position: relative;
        z-index: 9;
        min-width: 50px;
        border-right: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
        border-left: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
        appearance: none;
        font-weight: 700;
        background-color: transparent;
    }

    & .product-about__actions .quantity__field input: :-webkit-outer-spin-button, & .product-about__actions .quantity__field input::-webkit-inner-spin-button {
        appearance: none;
        margin: 0px;
    }

    & .product-about__actions .quantity__buttons {
        position: absolute;
        inset: 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    & .product-about__actions .quantity__buttons .qty-btn {
        min-height: 50px;
        min-width: 34px;
        background-color: transparent;
        border: 0px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

    & .product-about__actions .quantity__buttons .qty-btn:hover {
        color: var(--vs-theme-color2);
    }

    & .product-about__actions .vs-btn {
        padding: 15px 24px;
        border-radius: 6px;
    }

    & .product-about__actions .wish-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0px 19px;
        min-height: 48px;
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
        border-radius: 6px;
        text-transform: uppercase;
        color: var(--vs-body-color);
        font-weight: 700;
    }

    & .product-about__actions .wish-btn:hover {
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color2);
        border-color: var(--vs-theme-color2);
    }

    & .product-about .product_meta ul {
        padding-left: 0px;
        margin-bottom: 0px;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    & .product-about .product_meta ul li {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    & .product-about .product_meta ul li > span {
        display: flex;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        color: var(--vs-title-color);
        margin-right: 10px;
    }

    & .product-about .product_meta ul li > span i {
        margin-right: 10px;
        color: var(--vs-body-color);
        min-width: 20px;
    }

    & .product-about .product_meta ul li a {
        color: var(--vs-body-color);
        font-weight: 500;
        text-transform: capitalize;
        margin-right: 5px;
    }

    & .product-about .product_meta ul li a: hover {
        color: var(--vs-theme-color2);
    }

    & .product-description {
        border-radius: 10px;
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.2);
        overflow: hidden;
    }

    & .product-description .nav-pills {
        background-color: var(--vs-theme-color1);
    }

    & .product-description .nav-pills .nav-link {
        padding: 19px 30px;
        font-weight: 700;
        color: var(--vs-white-color);
        font-family: var(--vs-title-font);
    }

    @media (max-width: 767px) {
        & .product-description .nav-pills .nav-link {
            padding: 6px 10px;
        }
    }

    & .product-description .nav-pills .nav-link.active, & .product-description .nav-pills .nav-link:hover {
        background-color: transparent;
        color: var(--vs-theme-color5);
    }

    & .product-description .tab-content {
        padding: 30px 30px 40px;
    }

    @media (max-width: 767px) {
        & .product-description .tab-content {
            padding: 30px 15px 15px;
        }
    }

    & .product-description .product-information {
        display: grid;
        gap: 15px;
    }

    & .product-description .product-information__item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    & .product-description .product-information__name {
        font-weight: 700;
    }

    & .product-description .vs-comment-form {
        margin-top: 30px;
    }

    & .product-description .vs-comment-form .inner-title {
        font-size: 30px;
        text-transform: capitalize;
    }

    & .product-description .vs-comment-form .vs-post-comment {
        display: flex;
        gap: 20px;
    }

    & .product-description .vs-comment-form .custom-checkbox {
        margin-bottom: 0px;
        margin-top: 0px;
    }

    & .product-description .vs-comment-form .custom-checkbox .form-check-input:checked + .form-check-label .vs-side-form__custom-box {
        background-color: var(--vs-theme-color2);
    }

    & .product-description .vs-comments-wrap .inner-title {
        font-size: 30px;
        text-transform: capitalize;
        margin-bottom: 20px;
    }

    & .product-description .vs-comments-wrap .star-rating {
        top: 29px;
        right: 30px;
    }

    @media (max-width: 991px) {
        & .product-description .vs-comments-wrap .star-rating {
            position: absolute;
            top: 30px;
        }
    }

    & .product-description .vs-comments-wrap .vs-post-comment {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    @media (max-width: 991px) {
        & .product-description .vs-comments-wrap .vs-post-comment {
            flex-direction: column;
        }
    }

    & .product-description .vs-comments-wrap + .vs-comment-form {
        margin-bottom: 0px;
    }

    & .rating-select {
        margin-top: -0.4em;
    }

    & .rating-select label {
        margin: 0px 10px 0px 0px;
        display: inline-block;
    }

    & .rating-select p.stars {
        margin-bottom: 0px;
        line-height: 1;
        display: inline-block;
    }

    & .rating-select p.stars a {
        position: relative;
        height: 14px;
        width: 18px;
        text-indent: -999em;
        display: inline-block;
        text-decoration: none;
    }

    @media (max-width: 991px) {
        & .rating-select p.stars a {
            width: 14px;
        }
    }

    & .rating-select p.stars a: :before {
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        width: 18px;
        height: 14px;
        line-height: 1;
        font-family: var(--vs-icon-font);
        content: "";
        font-weight: 400;
        text-indent: 0px;
        color: var(--vs-theme-color2);
    }

    & .rating-select p.stars a: hover ~ a::before {
        content: "";
        font-weight: 400;
    }

    & .rating-select p.stars: hover a::before {
        content: "";
        font-weight: 700;
    }

    & .rating-select p.stars.selected a.active: :before {
        content: "";
        font-weight: 700;
    }

    & .rating-select p.stars.selected a.active ~ a: :before {
        content: "";
        font-weight: 400;
    }

    & .rating-select p.stars.selected a: not(.active)::before {
        content: "";
        font-weight: 700;
    }

    & .product-sizes-container {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    & .product-sizes-container .size {
        background-color: var(--vs-theme-color6);
        border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
        border-radius: 6px;
        padding: 9px 23px;
        font-size: 14px;
        font-weight: 600;
        color: var(--vs-body-color);
        cursor: pointer;
        transition: 0.3s;
        text-transform: capitalize;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .product-sizes-container .size.active {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        border-color: var(--vs-theme-color1);
    }

    & .product-description .custom-checkbox, & .product-description .wc_payment_method, & .product-description .woocommerce-shipping-methods, & .product-description #ship-to-different-address {
        padding: 10px 0px 20px;
        display: flex;
        align-items: center;
    }

    & .product-description .custom-checkbox label, & .product-description .wc_payment_method label, & .product-description .woocommerce-shipping-methods label, & .product-description #ship-to-different-address label {
        margin-bottom: 0px;
        padding-left: 0px;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    & .product-description .custom-checkbox input[type="checkbox"], & .product-description .custom-checkbox input[type="radio"], & .product-description .wc_payment_method input[type="checkbox"], & .product-description .wc_payment_method input[type="radio"], & .product-description .woocommerce-shipping-methods input[type="checkbox"], & .product-description .woocommerce-shipping-methods input[type="radio"], & .product-description #ship-to-different-address input[type="checkbox"], & .product-description #ship-to-different-address input[type="radio"] {
        display: none;
    }

    & .product-description .custom-checkbox input[type="checkbox"] ~ label: :before, & .product-description .custom-checkbox input[type="radio"] ~ label::before, & .product-description .wc_payment_method input[type="checkbox"] ~ label::before, & .product-description .wc_payment_method input[type="radio"] ~ label::before, & .product-description .woocommerce-shipping-methods input[type="checkbox"] ~ label::before, & .product-description .woocommerce-shipping-methods input[type="radio"] ~ label::before, & .product-description #ship-to-different-address input[type="checkbox"] ~ label::before, & .product-description #ship-to-different-address input[type="radio"] ~ label::before {
        content: "";
        background-color: transparent;
        border: 1px solid var(--vs-theme-color2);
        border-radius: 0px;
        height: 20px;
        width: 20px;
        min-width: 20px;
        line-height: 20px;
        font-family: var(--vs-icon-font);
        text-align: center;
        color: var(--vs-white-color);
        font-size: 0px;
        transition: 0.3s ease-in-out;
    }

    & .product-description .custom-checkbox input[type="checkbox"]: checked ~ label::before, & .product-description .custom-checkbox input[type="radio"]:checked ~ label::before, & .product-description .wc_payment_method input[type="checkbox"]:checked ~ label::before, & .product-description .wc_payment_method input[type="radio"]:checked ~ label::before, & .product-description .woocommerce-shipping-methods input[type="checkbox"]:checked ~ label::before, & .product-description .woocommerce-shipping-methods input[type="radio"]:checked ~ label::before, & .product-description #ship-to-different-address input[type="checkbox"]:checked ~ label::before, & .product-description #ship-to-different-address input[type="radio"]:checked ~ label::before {
        background-color: var(--vs-theme-color2);
        border-color: transparent;
        font-size: 16px;
        transition: 0.3s ease-in-out;
    }

    & .woocommerce-message, & .woocommerce-info {
        position: relative;
        border: transparent;
        padding: 15px 25px;
        background-color: var(--vs-theme-color1);
        margin-bottom: 10px;
        color: var(--vs-white-color);
        letter-spacing: 0.5px;
        text-transform: capitalize;
        font-weight: 600;
        line-height: 30px;
    }

    & .woocommerce-message a, & .woocommerce-info a {
        color: inherit;
        text-decoration: underline;
    }

    & .woocommerce-message a: hover, & .woocommerce-info a:hover {
        text-decoration: underline;
        color: var(--vs-theme-color2);
    }

    & .woocommerce-message::before, & .woocommerce-info::before {
        content: "";
        font-family: var(--vs-icon-font);
        font-weight: 900;
        margin-right: 10px;
        color: var(--vs-white-color);
    }

    & .cart_table {
        border: 1px solid var(--vs-border-color);
        margin-bottom: 45px;
        background: var(--vs-theme-color6);
    }

    & .cart_table thead {
        background-color: var(--vs-theme-color2);
    }

    & .cart_table thead th {
        text-align: center;
        font-size: 16px;
        font-weight: 700;
        padding: 26.75px 15px;
        color: var(--vs-white-color);
        border-width: medium !important;
        border-style: none !important;
        border-color: currentcolor !important;
        border-image: initial !important;
    }

    & .cart_table td: :before, & .cart_table th {
        font-family: var(--title-font);
        color: var(--title-color);
        font-weight: 600;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        padding: 27px 15px;
    }

    & .cart_table td: :before {
        content: attr(data-title);
        position: absolute;
        left: 15px;
        top: 50%;
        padding: 0px;
        transform: translateY(-50%);
        display: none;
    }

    & .cart_table td {
        border-bottom: 1px solid var(--vs-border-color);
        color: var(--vs-body-color);
        padding: 20px;
        position: relative;
        vertical-align: middle;
        text-align: center;
        font-family: var(--vs-title-font);
    }

    @media (max-width: 991px) {
        & .cart_table td {
            padding: 5px;
        }
    }

    & .cart_table td.cart_table__product-name {
        text-align: left;
    }

    @media (max-width: 767px) {
        & .cart_table td.cart_table__product-name {
            text-align: right;
        }
    }

    & .cart_table td .amount {
        font-weight: 700;
    }

    & .cart_table .icon-btn {
        --btn-size: 50px;
        font-size: var(--btn-font-size, 17px);
    }

    & .cart_table .icon-btn:hover {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
    }

    & .cart_table .product-quantity {
        color: var(--title-color);
    }

    & .cart_table .product-quantity input {
        position: relative;
        top: -2px;
    }

    & .cart_table .cart-productname {
        font-weight: 700;
        font-family: var(--title-font);
        color: var(--title-color);
        text-transform: uppercase;
    }

    & .cart_table .cart-productname:hover {
        color: var(--vs-theme-color);
    }

    & .cart_table .cart-productimage {
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--vs-white-color);
        border-radius: 10px;
    }

    @media (max-width: 991px) {
        & .cart_table .cart-productimage {
            margin-left: auto;
        }
    }

    & .cart_table .cart-productimage > img {
        object-fit: cover;
        width: 100%;
        padding: 5px;
    }

    & .cart_table .remove {
        color: var(--vs-theme-color1);
        font-size: 18px;
    }

    & .cart_table .remove:hover {
        color: var(--vs-theme-color2);
    }

    & .cart_table .quantity {
        display: inline-flex;
        align-items: center;
    }

    & .cart_table .quantity__buttons {
        display: flex;
        align-items: center;
    }

    & .cart_table .qut-btn {
        border: 2px solid var(--vs-border-color);
        background-color: transparent;
        color: rgb(184, 198, 208);
        padding: 0px;
        width: 30px;
        height: 30px;
        line-height: 25px;
        font-size: 16px;
        border-radius: 4px;
    }

    & .cart_table .qut-btn:hover {
        background-color: var(--vs-theme-color);
        color: var(--white-color);
    }

    & .cart_table .qty-input {
        vertical-align: middle;
        border: 1px solid var(--vs-border-color);
        width: 70px;
        min-height: 45px;
        font-size: 16px;
        text-align: center;
        color: var(--vs-title-color);
        font-family: var(--vs-title-font);
        font-weight: 700;
        margin: 0px 10px;
        border-radius: 4px;
        padding: 0px 15px;
        appearance: none;
    }

    @media (max-width: 991px) {
        & .cart_table .qty-input {
            width: 60px;
        }
    }

    & .cart_table input[type="number"]: :-webkit-outer-spin-button, & .cart_table input[type="number"]::-webkit-inner-spin-button {
        appearance: none;
        margin: 0px;
    }

    & .cart_table .actions {
        text-align: right;
        vertical-align: middle;
        padding: 20px;
    }

    & .cart_table .actions > .vs-btn {
        font-size: 16px;
        padding: 17px 28px;
        margin-right: 15px;
    }

    & .cart_table .actions > .vs-btn:last-child {
        margin-right: 0px;
    }

    & .cart_table .vs-cart-coupon {
        float: left;
        display: inline-flex;
        margin: 0px;
    }

    & .cart_table .vs-cart-coupon input {
        height: 54px;
        width: calc(100% - 200px);
        margin-right: 10px;
        border: 1px solid var(--bg-color2);
        padding: 10px 20px;
        background-color: var(--vs-border-color);
        color: var(--vs-body-color);
        transition: 0.3s ease-in-out;
        border-radius: 50px;
    }

    @media (max-width: 991px) {
        & .cart_table .vs-cart-coupon input {
            flex: 1 1 0%;
        }
    }

    & .cart_table .vs-cart-coupon input: :placeholder {
        color: var(--vs-body-color);
    }

    & .cart_table .vs-cart-coupon input: focus {
        border-color: var(--vs-theme-color);
        transition: 0.3s ease-in-out;
    }

    & .cart_table .vs-cart-coupon .vs-btn {
        flex: 0 0 auto;
    }

    & .quantity.style2 .quantity__field {
        background-color: transparent;
    }

    & .quantity.style2 .qty-btn {
        width: 45px;
        height: 45px;
        background-color: var(--vs-white-color);
        border: 1px solid var(--vs-border-color);
        border-radius: 4px;
        color: var(--vs-body-color);
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @media (max-width: 991px) {
        & .quantity.style2 .qty-btn {
            width: 36px;
        }
    }

    & .quantity.style2 .qty-btn:hover {
        background-color: var(--vs-theme-color2);
        border-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
    }

    & .cart-footer-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px;
    }

    @media (max-width: 991px) {
        & .cart-footer-actions {
            justify-content: center;
            flex-wrap: wrap;
        }
    }

    & .cart-footer-actions-right {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    & .cart_totals {
        border: 1px solid var(--border-color);
    }

    & .cart_totals th, & .cart_totals td {
        vertical-align: top;
        padding: 20px;
        border: 1px solid var(--vs-theme-color6);
        font-size: 14px;
        color: var(--vs-theme-color2);
        width: 55%;
    }

    & .cart_totals th: first-child, & .cart_totals td:first-child {
        width: 45%;
        background-color: var(--vs-theme-color6);
        font-weight: 700;
        font-size: 14px;
        color: var(--vs-title-color);
    }

    & .cart_totals .shipping-calculator-button {
        display: inline-block;
        border-bottom: 1px solid;
        color: var(--title-color);
        font-weight: 700;
    }

    & .cart_totals .shipping-calculator-button:hover {
        color: var(--vs-theme-color);
    }

    & .cart_totals .woocommerce-shipping-destination {
        margin-bottom: 10px;
    }

    & .cart_totals .woocommerce-shipping-methods {
        margin-bottom: 5px;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0px;
    }

    & .cart_totals .woocommerce-shipping-methods > li {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 13px;
    }

    & .cart_totals .woocommerce-shipping-methods input[type="radio"] {
        display: none;
    }

    & .cart_totals .woocommerce-shipping-methods input[type="radio"] ~ label {
        display: flex;
        align-items: center;
        font-family: var(--vs-title-font);
        gap: 15px;
        text-transform: capitalize;
    }

    & .cart_totals .woocommerce-shipping-methods input[type="radio"] ~ label: :before {
        content: "";
        background-color: transparent;
        border: 1px solid var(--vs-theme-color2);
        border-radius: 0px;
        height: 25px;
        width: 25px;
        min-width: 25px;
        line-height: 25px;
        font-family: var(--vs-icon-font);
        text-align: center;
        color: var(--vs-theme-color1);
        font-size: 0px;
        transition: 0.3s ease-in-out;
    }

    & .cart_totals .woocommerce-shipping-methods input[type="radio"]: checked ~ label::before {
        background-color: var(--vs-theme-color2);
    }

    & .cart_totals .shipping-calculator-form {
        display: none;
    }

    & .cart_totals .shipping-calculator-form p: first-child {
        margin-top: 20px;
    }

    & .cart_totals .shipping-calculator-form p: last-child {
        margin-bottom: 0px;
    }

    & .cart_totals .shipping-calculator-form .vs-btn {
        padding: 10px 30px;
        height: 50px;
        align-items: center;
    }

    & .cart_totals .amount {
        font-weight: 700;
    }

    & .cart_totals .order-total .amount {
        color: var(--vs-theme-color);
    }

    & .shipping-calculator-form .nice-select.form-select, & .shipping-calculator-form .form-control {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        height: 50px;
        border: 0px;
        color: var(--vs-body-color);
        box-shadow: none;
    }

    & .shipping-calculator-form .nice-select.form-select::after, & .shipping-calculator-form .form-control::after {
        display: none;
    }

    & .shipping-calculator-form .form-select {
        min-height: 50px;
        border: 0px;
        color: var(--vs-body-color);
        box-shadow: none;
    }

    & .cart-footer-right {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    & .cart-footer-right .vs-btn {
        flex: 1 1 auto;
    }

    @media (max-width: 991px) {
        & .cart_table th {
            padding: 23px 8px;
            font-size: 14px;
        }

        & .cart_table .cart-productname {
            font-size: 14px;
        }

        & .cart_table .vs-cart-coupon {
            width: 100%;
            margin-bottom: 20px;
        }

        & .cart_table .actions {
            text-align: center;
        }
    }

    @media (max-width: 767px) {
        & .cart_table {
            text-align: left;
            border-collapse: separate;
            border-spacing: 0px;
            border-top-width: medium;
            border-right-width: medium;
            border-left-width: medium;
            border-top-style: none;
            border-right-style: none;
            border-left-style: none;
            border-top-color: currentcolor;
            border-right-color: currentcolor;
            border-left-color: currentcolor;
            border-image: initial;
            border-bottom: 1px solid var(--vs-border-color);
        }

        & .cart_table thead {
            display: none;
        }

        & .cart_table td {
            padding: 15px;
            display: block;
            width: 100%;
            text-align: right;
            border-bottom-width: medium;
            border-bottom-style: none;
            border-bottom-color: currentcolor;
        }

        & .cart_table td::before {
            display: block;
        }

        & .cart_table td:last-child {
            border-bottom: 1px solid rgb(243, 243, 243);
        }

        & .cart_table td.actions {
            padding-left: 15px;
            text-align: center;
        }

        & .cart_table td.actions > .vs-btn {
            display: block;
            width: max-content;
            margin: 10px auto 0px;
        }

        & .cart_table .vs-cart-coupon {
            width: 100%;
            display: flex;
            text-align: center;
            padding-bottom: 10px;
            justify-content: center;
            float: none;
            gap: 10px;
        }

        & .cart_table .vs-cart-coupon input {
            width: 100%;
            margin-bottom: 0px;
            margin-right: 0px;
        }

        & .cart_totals th, & .cart_totals td {
            padding: 15px 10px;
        }

        & .cart_totals th:first-child, & .cart_totals td:first-child {
            width: 40%;
            line-height: 1.4;
        }
    }

    @media (max-width: 767px) {
        & .cart_table .vs-cart-coupon {
            flex-wrap: wrap;
            gap: 15px;
        }

        & .cart_table .vs-cart-coupon .vs-btn {
            width: 100%;
        }
    }

    & .checkout-ordertable th, & .checkout-ordertable td {
        border: 1px solid var(--vs-border-color);
        vertical-align: top;
        text-align: right;
        padding: 15px 20px;
        font-size: 14px;
        font-weight: 700;
        color: var(--vs-body-color);
    }

    & .checkout-ordertable th {
        text-align: left;
    }

    & .checkout-ordertable ul {
        margin: 0px;
        padding: 0px;
    }

    & .checkout-ordertable .order-total .amount {
        color: var(--vs-theme-color1);
    }

    & .checkout-ordertable input[type="hidden"] ~ label {
        color: var(--vs-theme-color1);
    }

    & .woocommerce-checkout .form-group input: not(:last-child) {
        margin-bottom: var(--bs-gutter-x);
    }

    & .woocommerce-checkout-payment {
        text-align: left;
    }

    & .woocommerce-checkout-payment ul {
        margin: 0px;
        padding: 0px;
        list-style-type: none;
    }

    & .woocommerce-checkout-payment ul li {
        border-bottom: 1px solid var(--vs-border-color);
        border-radius: 0px;
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0px;
    }

    & .woocommerce-checkout-payment ul input[type="radio"] {
        display: none;
    }

    & .woocommerce-checkout-payment ul input[type="radio"] ~ label {
        margin-bottom: 0px;
        color: var(--vs-title-color);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    & .woocommerce-checkout-payment ul input[type="radio"] ~ label img {
        margin-bottom: -2px;
        margin-left: 10px;
    }

    & .woocommerce-checkout-payment ul input[type="radio"]: checked ~ label::before {
        background-color: var(--vs-theme-color2);
    }

    & .woocommerce-checkout-payment .place-order {
        padding-top: 30px;
    }

    & .woocommerce-checkout-payment .payment_box {
        display: none;
        background-color: var(--vs-theme-color1);
        border-top-color: ;
        border-top-style: ;
        border-top-width: ;
        border-right-color: ;
        border-right-style: ;
        border-right-width: ;
        border-left-color: ;
        border-left-style: ;
        border-left-width: ;
        border-image-source: ;
        border-image-slice: ;
        border-image-width: ;
        border-image-outset: ;
        border-image-repeat: ;
        color: var(--vs-white-color);
        border-bottom-width: medium;
        border-bottom-style: none;
        border-bottom-color: currentcolor;
        font-size: 15px;
        padding: 15px 20px;
        border-radius: 4px;
        margin-top: 20px;
    }

    & .woocommerce-checkout-payment .payment_box p {
        margin: 0px;
        color: var(--vs-white-color);
        font-weight: 500;
        text-transform: capitalize;
    }

    & .vs-checkout-wrapper form.woocommerce-form {
        margin-bottom: 25px;
    }

    & .vs-checkout-wrapper .vs-btn {
        text-transform: capitalize;
        font-weight: 700;
        font-size: 16px;
    }

    & .vs-checkout-wrapper .vs-btn--style3::before, & .vs-checkout-wrapper .vs-btn--style3::after {
        background-color: var(--vs-theme-color);
    }

    & .vs-cart-wrapper .vs-btn {
        text-transform: capitalize;
        font-weight: 700;
        font-size: 16px;
    }

    & .vs-cart-wrapper .vs-btn--style3::before, & .vs-cart-wrapper .vs-btn--style3::after {
        background-color: var(--vs-theme-color);
    }

    @media (max-width: 767px) {
        & tfoot.checkout-ordertable th {
            display: none;
        }

        & .woocommerce-checkout-payment ul input[type="radio"] ~ label img {
            max-width: 150px;
        }

        & .woocommerce-form-coupon, & .woocommerce-form-login {
            padding: 25px 0px 0px;
            margin-bottom: 0px;
        }
    }

    & .woocommerce-checkout .row:not([class*="gx-"]), & .woocommerce-form-login .row: not([class*="gx-"]), & .woocommerce-form-coupon .row:not([class*="gx-"]) {
        --bs-gutter-x: 15px;
    }

    & .woocommerce-checkout .form-select, & .woocommerce-checkout .select2-container, & .woocommerce-checkout .form-control, & .woocommerce-form-login .form-select, & .woocommerce-form-login .select2-container, & .woocommerce-form-login .form-control, & .woocommerce-form-coupon .form-select, & .woocommerce-form-coupon .select2-container, & .woocommerce-form-coupon .form-control {
        --bs-gutter-x: 15px;
        margin-bottom: var(--bs-gutter-x);
        display: flex;
        align-items: center;
        border: 1px solid var(--vs-border-color);
        min-height: 50px;
        padding: 10px 25px;
        outline: none;
        box-shadow: none;
    }

    & .woocommerce-checkout .form-select::after, & .woocommerce-checkout .select2-container::after, & .woocommerce-checkout .form-control::after, & .woocommerce-form-login .form-select::after, & .woocommerce-form-login .select2-container::after, & .woocommerce-form-login .form-control::after, & .woocommerce-form-coupon .form-select::after, & .woocommerce-form-coupon .select2-container::after, & .woocommerce-form-coupon .form-control::after {
        display: none;
    }

    & .woocommerce-checkout .form-select .list, & .woocommerce-checkout .select2-container .list, & .woocommerce-checkout .form-control .list, & .woocommerce-form-login .form-select .list, & .woocommerce-form-login .select2-container .list, & .woocommerce-form-login .form-control .list, & .woocommerce-form-coupon .form-select .list, & .woocommerce-form-coupon .select2-container .list, & .woocommerce-form-coupon .form-control .list {
        width: 100%;
    }

    & .woocommerce-checkout .form-select::placeholder, & .woocommerce-checkout .select2-container::placeholder, & .woocommerce-checkout .form-control::placeholder, & .woocommerce-form-login .form-select::placeholder, & .woocommerce-form-login .select2-container::placeholder, & .woocommerce-form-login .form-control::placeholder, & .woocommerce-form-coupon .form-select::placeholder, & .woocommerce-form-coupon .select2-container::placeholder, & .woocommerce-form-coupon .form-control::placeholder {
        transition: 0.3s ease-in-out;
        opacity: 1;
        visibility: visible;
    }

    & .woocommerce-checkout .form-select:focus, & .woocommerce-checkout .select2-container:focus, & .woocommerce-checkout .form-control:focus, & .woocommerce-form-login .form-select:focus, & .woocommerce-form-login .select2-container:focus, & .woocommerce-form-login .form-control:focus, & .woocommerce-form-coupon .form-select:focus, & .woocommerce-form-coupon .select2-container:focus, & .woocommerce-form-coupon .form-control:focus {
        border-color: var(--vs-theme-color2);
        transition: 0.3s ease-in-out;
    }

    & .woocommerce-checkout .form-select:focus::placeholder, & .woocommerce-checkout .select2-container:focus::placeholder, & .woocommerce-checkout .form-control:focus::placeholder, & .woocommerce-form-login .form-select:focus::placeholder, & .woocommerce-form-login .select2-container:focus::placeholder, & .woocommerce-form-login .form-control:focus::placeholder, & .woocommerce-form-coupon .form-select:focus::placeholder, & .woocommerce-form-coupon .select2-container:focus::placeholder, & .woocommerce-form-coupon .form-control:focus::placeholder {
        opacity: 0;
        visibility: hidden;
    }

    & .woocommerce-checkout .form-select, & .woocommerce-form-login .form-select, & .woocommerce-form-coupon .form-select {
        color: var(--vs-body-color);
    }

    & .woocommerce-checkout textarea.form-control, & .woocommerce-form-login textarea.form-control, & .woocommerce-form-coupon textarea.form-control {
        height: 150px;
    }

    & .woocommerce-checkout .select2-container--open .select2-dropdown--below, & .woocommerce-form-login .select2-container--open .select2-dropdown--below, & .woocommerce-form-coupon .select2-container--open .select2-dropdown--below {
        margin-top: 30px;
    }

    & .woocommerce-checkout .select2-container--open .select2-dropdown--above, & .woocommerce-form-login .select2-container--open .select2-dropdown--above, & .woocommerce-form-coupon .select2-container--open .select2-dropdown--above {
        position: relative;
        bottom: -30px;
    }

    & .woocommerce-checkout .select2-dropdown, & .woocommerce-form-login .select2-dropdown, & .woocommerce-form-coupon .select2-dropdown {
        border-width: medium 1px 1px;
        border-style: none solid solid;
        border-color: currentcolor rgb(227, 230, 233) rgb(227, 230, 233);
        border-image: initial;
    }

    & .woocommerce-checkout .select2-container--default .select2-selection--single, & .woocommerce-form-login .select2-container--default .select2-selection--single, & .woocommerce-form-coupon .select2-container--default .select2-selection--single {
        height: 60px;
        border: 1px solid rgb(227, 230, 233);
    }

    & .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered, & .woocommerce-form-login .select2-container--default .select2-selection--single .select2-selection__rendered, & .woocommerce-form-coupon .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 60px;
        padding-left: 30px;
        padding-right: 25px;
    }

    & .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow, & .woocommerce-form-login .select2-container--default .select2-selection--single .select2-selection__arrow, & .woocommerce-form-coupon .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 60px;
        line-height: 60px;
        margin-right: 18px;
    }

    & .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b, & .woocommerce-form-login .select2-container--default .select2-selection--single .select2-selection__arrow b, & .woocommerce-form-coupon .select2-container--default .select2-selection--single .select2-selection__arrow b {
        margin: 0px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        top: 0px;
    }

    & .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b: :before, & .woocommerce-form-login .select2-container--default .select2-selection--single .select2-selection__arrow b::before, & .woocommerce-form-coupon .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
        content: "ÃƒÂ¯Ã¢â‚¬Å¾Ã¢â‚¬Â¡";
        font-family: var(--icon-font);
    }

    & .woocommerce-checkout .form-control:focus, & .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered, & .woocommerce-form-login .form-control:focus, & .woocommerce-form-login .select2-container--default .select2-selection--single .select2-selection__rendered, & .woocommerce-form-coupon .form-control:focus, & .woocommerce-form-coupon .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: var(--body-color);
    }

    & .woocommerce-billing-fields .form-row {
        margin-bottom: 0px;
    }

    & span.select2-selection.select2-selection--single: focus {
        outline: none;
    }

    & .shipping-calculator-form .form-select, & .shipping-calculator-form .form-control {
        height: 50px;
        padding-left: 20px;
        font-size: 14px;
        border-radius: 0px;
        background-position: right 13px center;
        background-color: var(--vs-theme-color6);
        border-color: transparent;
    }

    & .shipping-calculator-form .vs-btn {
        font-size: 14px;
        padding: 0px 20px;
        width: max-content;
        height: 40px;
    }

    & .vs-checkbox {
        display: inline-block;
        margin: 10px;
    }

    & .vs-checkbox__input {
        display: none;
    }

    & .vs-checkbox__input:checked + .vs-checkbox__label {
        background-color: var(--vs-theme-color2);
        border-color: var(--vs-theme-color2);
    }

    & .vs-checkbox__input:checked + .vs-checkbox__label::after {
        opacity: 1;
    }

    & .vs-checkbox__label {
        width: 20px;
        height: 20px;
        display: inline-block;
        border: 2px solid var(--vs-theme-color2);
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        transition: 0.2s;
    }

    & .vs-checkbox__label::after {
        content: "";
        position: absolute;
        top: 1px;
        left: 5px;
        width: 6px;
        height: 12px;
        border-style: solid;
        border-color: rgb(255, 255, 255);
        border-image: initial;
        border-width: 0px 2px 2px 0px;
        transform: rotate(45deg);
        opacity: 0;
        transition: opacity 0.2s;
    }

    & .vs-checkbox.style2 .vs-checkbox__label {
        border-color: var(--vs-white-color);
    }

    & .vs-checkbox.style2 .vs-checkbox__input:checked + .vs-checkbox__label {
        background-color: var(--vs-theme-color1);
        border-color: var(--vs-theme-color1);
    }

    & .vs-auth {
        max-width: 450px;
        margin: 0px auto;
        padding: 30px;
        background-color: rgb(255, 255, 255);
        border-radius: 16px;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 15px 35px;
    }

    & .vs-auth__tabs {
        margin-bottom: 25px;
    }

    & .vs-auth__tabs .nav-link {
        color: var(--vs-body-color);
        font-weight: 500;
        border-width: medium medium 2px;
        border-style: none none solid;
        border-color: currentcolor currentcolor transparent;
        border-image: initial;
    }

    & .vs-auth__tabs .nav-link.active {
        color: var(--vs-theme-color1);
        border-bottom: 2px solid var(--vs-theme-color1);
        background-color: transparent;
    }

    & .vs-auth__form .form-label {
        color: var(--vs-body-color);
    }

    & .vs-auth__form .form-control {
        border-radius: 8px;
        padding: 10px 15px;
    }

    & .vs-auth .form-check-input {
        margin-top: 2px;
    }

    & .vs-auth__title {
        color: var(--vs-title-color);
        margin-bottom: 20px;
        font-size: 1.75rem;
        font-weight: 700;
        text-align: center;
    }

    & .vs-auth__btn {
        background: linear-gradient(135deg, var(--vs-theme-color1), var(--vs-theme-color2));
        color: rgb(255, 255, 255);
        width: 100%;
        padding: 12px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        transition: 0.3s;
    }

    & .vs-auth__btn:hover {
        transform: translateY(-2px);
        box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 20px;
        color: var(--vs-white-color);
    }

    & .vs-auth__btn--signup {
        background: linear-gradient(135deg, var(--vs-theme-color2), var(--vs-theme-color1));
    }

    & .vs-auth__divider {
        text-align: center;
        margin: 20px 0px;
        position: relative;
    }

    & .vs-auth__divider span {
        background-color: rgb(255, 255, 255);
        padding: 0px 10px;
        position: relative;
        z-index: 1;
        color: var(--vs-body-color);
        font-size: 0.9rem;
    }

    & .vs-auth__divider::before {
        content: "";
        position: absolute;
        height: 1px;
        background-color: rgb(204, 204, 204);
        width: 100%;
        top: 50%;
        left: 0px;
        z-index: 0;
    }

    & .vs-auth__socials {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    & .vs-auth__social-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        border-radius: 8px;
        padding: 10px;
        font-weight: 500;
        font-size: 0.95rem;
        transition: 0.2s;
        border: 1px solid rgb(204, 204, 204);
        background-color: rgb(249, 249, 249);
        color: rgb(51, 51, 51);
    }

    & .vs-auth__social-btn i {
        font-size: 1.2rem;
    }

    & .vs-auth__social-btn:hover {
        background-color: rgb(241, 241, 241);
        transform: translateY(-1px);
    }

    & .vs-auth__social-btn--google {
        color: rgb(219, 68, 55);
        border-color: rgb(219, 68, 55);
    }

    & .vs-auth__social-btn--facebook {
        color: rgb(24, 119, 242);
        border-color: rgb(24, 119, 242);
    }

    & .vs-auth__link {
        color: var(--vs-theme-color1);
        text-decoration: none;
        font-size: 0.875rem;
    }

    & .vs-auth__link:hover {
        text-decoration: underline;
    }

    & .vs-dashboard__sidebar .vs-dashboard__card {
        background: rgb(255, 255, 255);
        border-radius: 12px;
        padding: 20px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px;
    }

    & .vs-dashboard__sidebar .vs-dashboard__username {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--vs-title-color);
        margin-bottom: 20px;
    }

    & .vs-dashboard__sidebar .vs-dashboard__nav .nav-link {
        color: var(--vs-body-color);
        border-radius: 8px;
        padding: 10px 15px;
        transition: 0.3s;
    }

    & .vs-dashboard__sidebar .vs-dashboard__nav .nav-link:hover {
        background-color: rgb(243, 243, 243);
    }

    & .vs-dashboard__sidebar .vs-dashboard__nav .nav-link.active {
        background: linear-gradient(135deg, var(--vs-theme-color1), var(--vs-theme-color2));
        color: rgb(255, 255, 255);
    }

    & .vs-dashboard__content .tab-pane {
        animation: 0.4s ease-in-out 0s 1 normal none running fadeIn;
    }

    & .vs-dashboard__content .vs-dashboard__card {
        background: rgb(255, 255, 255);
        padding: 25px;
        border-radius: 12px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px;
        margin-bottom: 30px;
    }

    & .vs-dashboard__content .vs-dashboard__title {
        color: var(--vs-title-color);
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    & .vs-dashboard__content .vs-dashboard__btn {
        background: linear-gradient(135deg, var(--vs-theme-color2), var(--vs-theme-color1));
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        padding: 10px 20px;
        color: rgb(255, 255, 255);
        font-weight: 500;
        border-radius: 8px;
        transition: 0.3s;
    }

    & .vs-dashboard__content .vs-dashboard__btn:hover {
        transform: scale(1.02);
        box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
    }

    & .offer-counter {
        margin: 0px 0px 30px;
        padding: 0px;
        list-style-type: none;
        display: flex;
        justify-content: center;
        background: var(--vs-theme-color1);
        min-height: 175px;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 767px) {
        & .offer-counter {
            flex-direction: column;
        }
    }

    & .offer-counter > li {
        line-height: 1;
        padding: 16px 30px;
        position: relative;
        color: var(--vs-white-color);
    }

    & .offer-counter > li: :before {
        content: "";
        position: absolute;
        height: 37px;
        width: 1px;
        background: var(--vs-theme-color);
        right: -1px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 0.49px;
    }

    @media (max-width: 767px) {
        & .offer-counter > li::before {
            display: none;
        }
    }

    & .offer-counter > li: first-child {
        padding-left: 0px;
    }

    & .offer-counter > li: last-child {
        padding-right: 0px;
        margin-right: 0px;
    }

    & .offer-counter > li: last-child::before {
        display: none;
    }

    & .offer-counter > li {
    }

    @media (max-width: 767px) {
        & .offer-counter > li {
            padding-right: 0px;
            padding-left: 0px;
        }
    }

    & .offer-counter .count-number {
        font-size: 40px;
        font-weight: 700;
        color: var(--vs-theme-color);
        font-family: var(--title-font);
        margin-bottom: 10px;
    }

    & .offer-counter .count-name {
        font-size: 16px;
        color: var(--white-color);
        font-family: var(--title-font);
        font-weight: 800;
        text-transform: uppercase;
        display: inline-block;
    }

    & .popup-search-box {
        position: fixed;
        top: 0px;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(10px);
        height: 0%;
        width: 100%;
        overflow: hidden;
        z-index: 999999;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s 0.9s;
        padding: 0px 20px;
    }

    & .popup-search-box button.searchClose {
        width: 60px;
        height: 60px;
        line-height: 60px;
        position: absolute;
        top: 0px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
        font-size: 30px;
        border-radius: 50%;
        transition: 0.4s 0.5s;
    }

    & .popup-search-box button.searchClose i {
        line-height: inherit;
        transition: 1s;
        rotate: 360deg;
    }

    & .popup-search-box button.searchClose: hover {
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color1);
    }

    & .popup-search-box button.searchClose: hover i {
        transition: 1s;
        rotate: 0deg;
    }

    & .popup-search-box form {
        position: absolute;
        top: 50%;
        left: 50%;
        display: inline-block;
        cursor: auto;
        width: 100%;
        max-width: 700px;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.4s;
        padding: 0px 20px;
    }

    @media (max-width: 1199px) {
        & .popup-search-box form {
            max-width: 600px;
        }
    }

    & .popup-search-box form input {
        font-size: 14px;
        height: 70px;
        width: 100%;
        border: 2px solid var(--vs-theme-color2);
        background-color: rgba(18, 21, 31, 0.5);
        backdrop-filter: blur(10px);
        padding-left: 30px;
        color: var(--vs-white-color);
        border-radius: 50px;
        box-shadow: none;
        transition: 0.3s ease-in-out;
    }

    & .popup-search-box form input: focus {
        outline: none;
        border-color: var(--vs-theme-color2);
    }

    & .popup-search-box form button {
        position: absolute;
        top: 50%;
        background-color: transparent;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        font-size: 20px;
        right: 45px;
        color: var(--vs-white-color);
        cursor: pointer;
        width: auto;
        height: auto;
        transition: 0.4s;
        transform: scale(1.001) translateY(-50%);
    }

    & .popup-search-box form button: hover {
        transform: scale(1.1) translateY(-50%);
        color: var(--vs-theme-color2);
    }

    & .popup-search-box.show {
        opacity: 1;
        visibility: visible;
        height: 100%;
        transition: 0.4s;
    }

    & .popup-search-box.show button.searchClose {
        top: 40px;
        transition-delay: 0.5s;
    }

    & .popup-search-box.show form {
        transition-delay: 0.5s;
        transform: translate(-50%, -50%) scale(1);
    }

    & .px-5 {
        padding-right: 5px;
        padding-left: 5px;
    }

    & .px-10 {
        padding-right: 10px;
        padding-left: 10px;
    }

    & .px-15 {
        padding-right: 15px;
        padding-left: 15px;
    }

    & .px-20 {
        padding-right: 20px;
        padding-left: 20px;
    }

    & .px-25 {
        padding-right: 25px;
        padding-left: 25px;
    }

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

    & .px-35 {
        padding-right: 35px;
        padding-left: 35px;
    }

    & .px-40 {
        padding-right: 40px;
        padding-left: 40px;
    }

    & .px-45 {
        padding-right: 45px;
        padding-left: 45px;
    }

    & .px-50 {
        padding-right: 50px;
        padding-left: 50px;
    }

    & .py-5 {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    & .py-10 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    & .py-15 {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    & .py-20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    & .py-25 {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    & .py-30 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    & .py-35 {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    & .py-40 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    & .py-45 {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    & .py-50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    & .pt-5 {
        padding-top: 5px;
    }

    & .pt-10 {
        padding-top: 10px;
    }

    & .pt-15 {
        padding-top: 15px;
    }

    & .pt-20 {
        padding-top: 20px;
    }

    & .pt-25 {
        padding-top: 25px;
    }

    & .pt-30 {
        padding-top: 30px;
    }

    & .pt-35 {
        padding-top: 35px;
    }

    & .pt-40 {
        padding-top: 40px;
    }

    & .pt-45 {
        padding-top: 45px;
    }

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

    & .pt-200 {
        padding-top: 200px;
    }

    & .pb-5 {
        padding-bottom: 5px;
    }

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

    & .pb-15 {
        padding-bottom: 15px;
    }

    & .pb-20 {
        padding-bottom: 20px;
    }

    & .pb-25 {
        padding-bottom: 25px;
    }

    & .pb-30 {
        padding-bottom: 30px;
    }

    & .pb-35 {
        padding-bottom: 35px;
    }

    & .pb-40 {
        padding-bottom: 40px;
    }

    & .pb-45 {
        padding-bottom: 45px;
    }

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

    & .pl-5 {
        padding-left: 5px;
    }

    & .pl-10 {
        padding-left: 10px;
    }

    & .pl-15 {
        padding-left: 15px;
    }

    & .pl-20 {
        padding-left: 20px;
    }

    & .pl-25 {
        padding-left: 25px;
    }

    & .pl-30 {
        padding-left: 30px;
    }

    & .pl-35 {
        padding-left: 35px;
    }

    & .pl-40 {
        padding-left: 40px;
    }

    & .pl-45 {
        padding-left: 45px;
    }

    & .pl-50 {
        padding-left: 50px;
    }

    & .pr-5 {
        padding-right: 5px;
    }

    & .pr-10 {
        padding-right: 10px;
    }

    & .pr-15 {
        padding-right: 15px;
    }

    & .pr-20 {
        padding-right: 20px;
    }

    & .pr-25 {
        padding-right: 25px;
    }

    & .pr-30 {
        padding-right: 30px;
    }

    & .pr-35 {
        padding-right: 35px;
    }

    & .pr-40 {
        padding-right: 40px;
    }

    & .pr-45 {
        padding-right: 45px;
    }

    & .pr-50 {
        padding-right: 50px;
    }

    & .mx-5 {
        margin-right: 5px;
        margin-left: 5px;
    }

    & .mx-10 {
        margin-right: 10px;
        margin-left: 10px;
    }

    & .mx-15 {
        margin-right: 15px;
        margin-left: 15px;
    }

    & .mx-20 {
        margin-right: 20px;
        margin-left: 20px;
    }

    & .mx-25 {
        margin-right: 25px;
        margin-left: 25px;
    }

    & .mx-30 {
        margin-right: 30px;
        margin-left: 30px;
    }

    & .mx-35 {
        margin-right: 35px;
        margin-left: 35px;
    }

    & .mx-40 {
        margin-right: 40px;
        margin-left: 40px;
    }

    & .mx-45 {
        margin-right: 45px;
        margin-left: 45px;
    }

    & .mx-50 {
        margin-right: 50px;
        margin-left: 50px;
    }

    & .my-5 {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    & .my-10 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    & .my-15 {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    & .my-20 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    & .my-25 {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    & .my-30 {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    & .my-35 {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    & .my-40 {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    & .my-45 {
        margin-top: 45px;
        margin-bottom: 45px;
    }

    & .my-50 {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    & .mt-5 {
        margin-top: 5px;
    }

    & .mt-10 {
        margin-top: 10px;
    }

    & .mt-15 {
        margin-top: 15px;
    }

    & .mt-20 {
        margin-top: 20px;
    }

    & .mt-25 {
        margin-top: 25px;
    }

    & .mt-30 {
        margin-top: 30px;
    }

    & .mt-35 {
        margin-top: 35px;
    }

    & .mt-40 {
        margin-top: 40px;
    }

    & .mt-45 {
        margin-top: 45px;
    }

    & .mt-50 {
        margin-top: 50px;
    }

    & .mb-5 {
        margin-bottom: 5px;
    }

    & .mb-10 {
        margin-bottom: 10px;
    }

    & .mb-15 {
        margin-bottom: 15px;
    }

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

    & .mb-25 {
        margin-bottom: 25px;
    }

    & .mb-30 {
        margin-bottom: 30px;
    }

    & .mb-35 {
        margin-bottom: 35px;
    }

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

    & .mb-45 {
        margin-bottom: 45px;
    }

    & .mb-50 {
        margin-bottom: 50px;
    }

    & .ml-5 {
        margin-left: 5px;
    }

    & .ml-10 {
        margin-left: 10px;
    }

    & .ml-15 {
        margin-left: 15px;
    }

    & .ml-20 {
        margin-left: 20px;
    }

    & .ml-25 {
        margin-left: 25px;
    }

    & .ml-30 {
        margin-left: 30px;
    }

    & .ml-35 {
        margin-left: 35px;
    }

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

    & .ml-45 {
        margin-left: 45px;
    }

    & .ml-50 {
        margin-left: 50px;
    }

    & .mr-5 {
        margin-right: 5px;
    }

    & .mr-10 {
        margin-right: 10px;
    }

    & .mr-15 {
        margin-right: 15px;
    }

    & .mr-20 {
        margin-right: 20px;
    }

    & .mr-25 {
        margin-right: 25px;
    }

    & .mr-30 {
        margin-right: 30px;
    }

    & .mr-35 {
        margin-right: 35px;
    }

    & .mr-40 {
        margin-right: 40px;
    }

    & .mr-45 {
        margin-right: 45px;
    }

    & .mr-50 {
        margin-right: 50px;
    }

    & .mt-n1 {
        margin-top: -0.25rem;
    }

    & .mt-n2 {
        margin-top: -0.5rem;
    }

    & .mt-n3 {
        margin-top: -1rem;
    }

    & .mt-n4 {
        margin-top: -1.5rem;
    }

    & .mt-n5 {
        margin-top: -3rem;
    }

    & .mb-n1 {
        margin-bottom: -0.25rem;
    }

    & .mb-n2 {
        margin-bottom: -0.5rem;
    }

    & .mb-n3 {
        margin-bottom: -1rem;
    }

    & .mb-n4 {
        margin-bottom: -1.5rem;
    }

    & .mb-n5 {
        margin-bottom: -3rem;
    }

    & .mb-50 {
        margin-bottom: 50px;
    }

    & .space, & .space-top {
        padding-top: var(--vs-section-space);
    }

    & .space, & .space-bottom {
        padding-bottom: var(--vs-section-space);
    }

    & .space-extra, & .space-extra-top {
        padding-top: calc(var(--vs-section-space) - 40px);
    }

    & .space-extra, & .space-extra-bottom {
        padding-bottom: calc(var(--vs-section-space) - 40px);
    }

    @media (max-width: 991px) {
        & .space, & .space-top {
            padding-top: var(--vs-section-space-mobile);
        }

        & .space, & .space-bottom {
            padding-bottom: var(--vs-section-space-mobile);
        }

        & .space-extra, & .space-extra-top {
            padding-top: calc(var(--vs-section-space-mobile) - 30px);
        }

        & .space-extra, & .space-extra-bottom {
            padding-bottom: calc(var(--vs-section-space-mobile) - 30px);
        }

        & .space-top-md-none {
            padding-top: 0px;
        }
    }

    & .icon-call {
        display: flex;
        align-items: center;
    }

    & .icon-call__icon {
        --icon-size: 52px;
        font-size: 20px;
        margin-right: 14px;
        position: relative;
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color2);
        transition: 0.4s;
        border: 3px dashed rgba(255, 255, 255, 0.4);
    }

    & .icon-call__title {
        display: block;
        color: var(--vs-text-color);
        font-size: 16px;
        letter-spacing: 0.48px;
        font-weight: 600;
        text-transform: capitalize;
        margin: 0px 0px 3px;
    }

    & .icon-call__number {
        display: block;
        color: var(--vs-white-color);
        font-size: 22px;
        font-weight: 700;
        line-height: 1;
        font-family: var(--vs-title-font);
    }

    & .icon-call__number:hover {
        color: var(--vs-theme-color2);
    }

    & body {
        transition: background-color 0.3s, color 0.3s;
    }

    & body.light-mode {
        background-color: rgb(255, 255, 255);
        color: rgb(34, 34, 34);
    }

    & body.dark-mode {
        background-color: var(--vs-title-color);
        color: var(--vs-white-color);
    }

    & body.dark-mode .main-menu a {
        color: var(--vs-white-color);
    }

    & body.dark-mode .main-menu ul.sub-menu, & body.dark-mode .main-menu ul.mega-menu {
        background-color: var(--vs-title-color);
    }

    & body.color-mode {
        color: rgb(42, 42, 42);
    }

    & .theme-toggle-icon {
        position: fixed;
        top: 50%;
        left: 0px;
        transform: translateY(-50%);
        background: var(--vs-title-color);
        color: var(--vs-white-color);
        padding: 12px 14px;
        cursor: pointer;
        z-index: 999;
        font-size: 20px;
        transition: 0.3s;
        border-radius: 50%;
        width: 57px;
        height: 57px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .theme-toggle-icon:hover {
        background: var(--vs-theme-color1);
    }

    & .theme-panel {
        position: fixed;
        top: 50%;
        right: -250px;
        transform: translateY(-50%);
        background: rgb(255, 255, 255);
        border-radius: 10px 0px 0px 10px;
        padding: 20px;
        width: 220px;
        box-shadow: rgba(0, 0, 0, 0.15) -4px 4px 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        transition: right 0.35s;
        z-index: 999;
    }

    & .theme-panel.open {
        right: 0px;
    }

    & .theme-panel .close-btn {
        align-self: flex-end;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        background: transparent;
        font-size: 18px;
        cursor: pointer;
        margin-bottom: 8px;
        padding: 2px;
    }

    & .theme-panel .mode-btn, & .theme-panel .reset-btn {
        background: rgb(243, 243, 243);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        padding: 10px;
        border-radius: 6px;
        cursor: pointer;
        text-align: left;
        transition: background 0.3s;
    }

    & .theme-panel .mode-btn:hover, & .theme-panel .reset-btn:hover {
        background: rgb(225, 225, 225);
    }

    & .theme-panel .color-mode-label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
    }

    & .theme-panel .color-mode-label input[type="color"] {
        width: 30px;
        height: 30px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        cursor: pointer;
    }

    & .back-to-top {
        padding: 0px;
    }

    & .back-to-top.visible {
        bottom: 15px;
        right: 10px;
    }

    & .vs-hero--style4 .vs-hero__active--zoom .swiper-slide-active:not(.swiper-slide-duplicate) .vs-hero__anim.manimated {
        animation-name: slideinup;
    }

    & .vs-hero--style4 .vs-hero__shape-bg {
        position: absolute;
        top: 0px;
        right: -20px;
        left: auto;
        width: 1100px;
        height: 830px;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA1NyIgaGVpZ2h0PSI4MjgiIHZpZXdCb3g9IjAgMCAxMDU3IDgyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI1MiA0MTBMMzU4IDBIMTA4NkwxMDk4IDgzNkgwTDE5MCA2NjJMNjYgMzA2TDI1MiA0MTBaIiBmaWxsPSIjRjg5MzFGIi8+Cjwvc3ZnPgo=");
        background-color: var(--vs-theme-color2);
        mask-position: center center;
        mask-size: contain;
        mask-repeat: no-repeat;
        z-index: 1;
    }

    & .vs-hero--style4 .vs-hero__main-img {
        position: absolute;
        bottom: 0px;
        right: 0%;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style4 .vs-hero__main-img {
            right: 0px;
            height: 650px;
            object-fit: cover;
        }
    }

    & .vs-hero--style4 .vs-hero__main-img {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style4 .vs-hero__main-img {
            position: static;
            margin: 0px auto;
            display: flex;
        }
    }

    & .vs-hero--style4 .vs-hero__main-img {
    }

    @media (max-width: 991px) {
        & .vs-hero--style4 .vs-hero__main-img {
            height: 500px;
        }
    }

    & .vs-hero--style4 .vs-hero__main-img {
    }

    @media (max-width: 575px) {
        & .vs-hero--style4 .vs-hero__main-img {
            height: 400px;
        }
    }

    & .vs-hero--style4 .vs-hero__shape-img {
        right: -45px;
        position: absolute;
        bottom: 14%;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style4 .vs-hero__shape-img {
            width: 500px;
            right: 0px;
            object-fit: cover;
        }
    }

    & .vs-hero--style4 .vs-hero__shape-img {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style4 .vs-hero__shape-img {
            left: 0px;
            bottom: 7%;
            margin: 0px auto;
        }
    }

    & .vs-hero--style4 .vs-hero__shape-img {
    }

    @media (max-width: 991px) {
        & .vs-hero--style4 .vs-hero__shape-img {
            width: 400px;
            bottom: 5%;
        }
    }

    & .vs-hero--style4 .vs-hero__content {
        padding: 185px 0px 230px;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style4 .vs-hero__content {
            padding: 100px 0px 0px;
        }
    }

    & .vs-hero--style4 .vs-hero__content {
    }

    @media (max-width: 991px) {
        & .vs-hero--style4 .vs-hero__content {
            padding: 100px 0px 30px;
            text-align: center;
        }
    }

    & .vs-hero--style4 .vs-hero__title--main {
        font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
        margin: 0px 0px 15px;
        line-height: 1.15;
        text-transform: capitalize;
        color: var(--vs-white-color);
    }

    @media (max-width: 1500px) {
        & .vs-hero--style4 .vs-hero__title--main {
            font-size: 80px;
        }
    }

    & .vs-hero--style4 .vs-hero__title--main {
    }

    @media (max-width: 991px) {
        & .vs-hero--style4 .vs-hero__title--main {
            font-size: 70px;
        }
    }

    & .vs-hero--style4 .vs-hero__title--main {
    }

    @media (max-width: 575px) {
        & .vs-hero--style4 .vs-hero__title--main {
            font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style4 .vs-hero__title--main span {
        display: block;
        color: var(--vs-white-color);
        font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
    }

    @media (max-width: 1199px) {
        & .vs-hero--style4 .vs-hero__title--main span {
            font-size: 45px;
        }
    }

    & .vs-hero--style4 .vs-hero__title--main span {
    }

    @media (max-width: 991px) {
        & .vs-hero--style4 .vs-hero__title--main span {
            font-size: 40px;
        }
    }

    & .vs-hero--style4 .vs-hero__title--main span {
    }

    @media (max-width: 575px) {
        & .vs-hero--style4 .vs-hero__title--main span {
            font-size: 30px;
        }
    }

    & .vs-hero--style4 .vs-hero__title--sub {
        font-size: 40px;
        font-family: var(--vs-special-font);
        margin: 0px 0px 15px;
        color: var(--vs-white-color);
    }

    & .vs-hero--style4 .vs-hero__desc {
        color: var(--vs-white-color);
        font-size: 20px;
    }

    & .vs-hero--style4 .vs-hero__ele1 {
        top: 85px;
        right: 160px;
        left: auto;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style4 .vs-hero__ele1 {
            top: 30px;
            right: 25px;
            width: 130px;
        }
    }

    & .vs-hero--style4 .vs-hero__ele1 {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style4 .vs-hero__ele1 {
            display: none;
        }
    }

    & .vs-hero--style4 .vs-hero__ele2 {
        inset: auto auto 0px 98px;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style4 .vs-hero__ele2 {
            bottom: auto;
            left: 98px;
            right: auto;
        }
    }

    & .vs-hero--style4 .vs-hero__direction {
        z-index: 99;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style4 .vs-hero__direction {
            right: 25px;
        }
    }

    & .vs-hero--style4 .vs-hero__direction .vs-swiper-button-next, & .vs-hero--style4 .vs-hero__direction .vs-swiper-button-prev {
        color: var(--vs-white-color);
    }

    & .vs-hero--style4 .vs-hero__direction .vs-swiper-button-next:hover, & .vs-hero--style4 .vs-hero__direction .vs-swiper-button-prev:hover {
        color: var(--vs-theme-color2);
        background-color: var(--vs-white-color);
    }

    & .vs-featureh4 {
        display: flex;
        align-items: center;
        gap: 30px;
        text-transform: capitalize;
        background: rgb(255, 255, 255);
        padding: 50px;
        border-radius: 30px;
    }

    & .vs-featureh4__title {
        font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
        color: var(--vs-title-color);
        text-transform: capitalize;
    }

    @media (max-width: 1199px) {
        & .vs-featureh4__title {
            font-size: 22px;
        }
    }

    & .vs-featureh4__text {
        font-weight: 500;
        margin-bottom: 0px;
        letter-spacing: 0.5px;
    }

    & .vs-featureh4__icon {
        position: relative;
        margin-left: 15px;
    }

    & .vs-featureh4__icon .feature-shape {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--vs-theme-color4);
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04OS41MjA4IDg5LjA5NzRDODYuNzEwMSA5MS44OTY2IDg1LjI3OTUgOTkuNTI3IDgwLjk4OTYgOTkuNTI3QzY1LjQ5NDggOTkuNTI3IDY1LjQ5NDggOTIuNjE1NCA1MCA5Mi42MTU0QzM0LjUwNTIgOTIuNjE1NCAzNC41MDUyIDk5LjUyNyAxOS4wMTA0IDk5LjUyN0MxNC43MjA1IDk5LjUyNyAxMy4yODk5IDkxLjg5NjYgMTAuNDc5MiA4OS4wOTc0QzcuNjY2NjcgODYuMyAwIDg0Ljg3NjIgMCA4MC42MDY1QzAgNjUuMTg1IDYuOTQ0NDQgNjUuMTg1IDYuOTQ0NDQgNDkuNzYzNUM2Ljk0NDQ0IDM0LjM0MiAwIDM0LjM0MiAwIDE4LjkyMDVDMCAxNC42NTA5IDcuNjY2NjcgMTMuMjI3MSAxMC40NzkyIDEwLjQyOTZDMTMuMjg5OSA3LjYzMDM5IDE0LjcyMDUgLTEuNTI1ODhlLTA1IDE5LjAxMDQgLTEuNTI1ODhlLTA1QzM0LjUwNTIgLTEuNTI1ODhlLTA1IDM0LjUwNTIgNi45MTE1OSA1MCA2LjkxMTU5QzY1LjQ5NDggNi45MTE1OSA2NS40OTQ4IC0xLjUyNTg4ZS0wNSA4MC45ODk2IC0xLjUyNTg4ZS0wNUM4NS4yNzk1IC0xLjUyNTg4ZS0wNSA4Ni43MTAxIDcuNjMwMzkgODkuNTIwOCAxMC40Mjk2QzkyLjMzMzMgMTMuMjI3MSAxMDAgMTQuNjUwOSAxMDAgMTguOTIwNUMxMDAgMzQuMzQyIDkzLjA1NTUgMzQuMzQyIDkzLjA1NTUgNDkuNzYzNUM5My4wNTU1IDY1LjE4NSAxMDAgNjUuMTg1IDEwMCA4MC42MDY1QzEwMCA4NC44NzYyIDkyLjMzMzMgODYuMyA4OS41MjA4IDg5LjA5NzRaIiBmaWxsPSIjNEY4MzBFIi8+CjxwYXRoIGQ9Ik04MC44Mzg2IDMuOTc0M0M3NC4wNDg3IDMuOTk1MDQgNzAuODQwNCA1LjQyNzQ2IDY3LjEyODYgNy4wODI3OUM2My4xMzIgOC44NjU5OCA1OC42MDI1IDEwLjg4NTkgNTAuMDAwMSAxMC44ODU5QzQxLjM5NzcgMTAuODg1OSAzNi44NjgxIDguODY1OTggMzIuODcxNiA3LjA4Mjc5QzI5LjE1OTggNS40Mjc0NiAyNS45NTE1IDMuOTk1MDQgMTkuMTYxNSAzLjk3NDNDMTguNDc5MiA0LjQ3MzY2IDE3LjM2ODEgNi42NjQ2NCAxNi43NjA1IDcuODYyMDdDMTUuNzg0OCA5Ljc4NTIyIDE0Ljc3NjEgMTEuNzcyMyAxMy4zMDM5IDEzLjIzNzZDMTEuODI5OSAxNC43MDI4IDkuODMxNjggMTUuNzA4NSA3LjkwMTEyIDE2LjY3OTVDNi42OTYyNiAxNy4yODQzIDQuNDk2NjEgMTguMzkxOSAzLjk5NDg3IDE5LjA2OTJDNC4wMTU3MSAyNS44MjcgNS40NTQ5NCAyOS4wMjAyIDcuMTE4MTQgMzIuNzE0NUM4LjkwOTggMzYuNjkyMSAxMC45MzkzIDQxLjIwMDIgMTAuOTM5MyA0OS43NjE5QzEwLjkzOTMgNTguMzIzNyA4LjkwOTggNjIuODMxOCA3LjExODE0IDY2LjgwOTRDNS40NTQ5NCA3MC41MDM2IDQuMDE1NzEgNzMuNjk2OCAzLjk5NDg3IDgwLjQ1NDZDNC40OTY2MSA4MS4xMzM3IDYuNjk4IDgyLjIzOTUgNy45MDExMiA4Mi44NDQzQzkuODMzNDEgODMuODE1NCAxMS44Mjk5IDg0LjgxOTMgMTMuMzAyMiA4Ni4yODQ2QzE0Ljc3NDQgODcuNzUxNSAxNS43ODQ4IDg5Ljc0MDQgMTYuNzYwNSA5MS42NjE4QzE3LjM2ODEgOTIuODYwOSAxOC40ODEgOTUuMDUwMiAxOS4xNjE1IDk1LjU0OTZDMjUuOTUxNSA5NS41Mjg4IDI5LjE1OTggOTQuMDk2NCAzMi44NzE2IDkyLjQ0MTFDMzYuODY4MSA5MC42NTc5IDQxLjM5NzcgODguNjM4IDUwLjAwMDEgODguNjM4QzU4LjYwMjUgODguNjM4IDYzLjEzMiA5MC42NTc5IDY3LjEyODYgOTIuNDQxMUM3MC44NDA0IDk0LjA5NjQgNzQuMDQ4NyA5NS41Mjg4IDgwLjgzODYgOTUuNTQ5NkM4MS41MjA5IDk1LjA1MDIgODIuNjMyIDkyLjg1OTIgODMuMjM5NyA5MS42NjE4Qzg0LjIxNTQgODkuNzM4NiA4NS4yMjQgODcuNzUxNSA4Ni42OTYzIDg2LjI4NjNDODguMTcwMiA4NC44MjEgOTAuMTY4NSA4My44MTU0IDkyLjA5OSA4Mi44NDQzQzkzLjMwMzkgODIuMjM5NSA5NS41MDM2IDgxLjEzMiA5Ni4wMDUzIDgwLjQ1NDZDOTUuOTg0NSA3My42OTY4IDk0LjU0NTIgNzAuNTAzNiA5Mi44ODIgNjYuODA5NEM5MS4wOTA0IDYyLjgzMTggODkuMDYwOCA1OC4zMjM3IDg5LjA2MDggNDkuNzYxOUM4OS4wNjA4IDQxLjIwMDIgOTEuMDkwNCAzNi42OTIxIDkyLjg4MiAzMi43MTQ1Qzk0LjU0NTIgMjkuMDIwMiA5NS45ODQ1IDI1LjgyNyA5Ni4wMDUzIDE5LjA2OTJDOTUuNTAzNiAxOC4zOTAyIDkzLjMwMjIgMTcuMjg0MyA5Mi4wOTkgMTYuNjc5NUM5MC4xNjY3IDE1LjcwODUgODguMTcwMiAxNC43MDQ2IDg2LjY5OCAxMy4yMzkzQzg1LjIyNTggMTEuNzcyMyA4NC4yMTU0IDkuNzgzNSA4My4yMzk3IDcuODYyMDdDODIuNjMyIDYuNjYyOTEgODEuNTE5MiA0LjQ3MzY2IDgwLjgzODYgMy45NzQzWiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSI1IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KPC9zdmc+Cg==");
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
        position: relative;
        z-index: 1;
        --icon-size: 90px;
        min-width: var(--icon-size);
        min-height: var(--icon-size);
    }

    @media (max-width: 1199px) {
        & .vs-featureh4__icon .feature-shape {
            --icon-size: 70px;
        }
    }

    & .vs-featureh4__icon::after {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--vs-theme-color4);
        transform: scale(1.1);
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04MS4xNTMzIDk5LjI1QzgxLjk2MzMgOTkuMjUgODIuNjcxMiA5OC44OTM1IDgzLjM1MTYgOTguMjIzNkM4NC4wNDQ1IDk3LjU0MTIgODQuNjY0OSA5Ni41NzUyIDg1LjI3MzQgOTUuNDU3Qzg1LjU3NTMgOTQuOTAyNCA4NS44NjcxIDk0LjMyMzEgODYuMTYxMSA5My43MzYzQzg2LjQ1MzMgOTMuMTUzMiA4Ni43NDkxIDkyLjU1OTkgODcuMDQ5OCA5MS45OTMyQzg3LjY0NSA5MC44NzE1IDg4LjI5ODUgODkuNzgwMSA4OS4wNzgxIDg4Ljk5MzJMODkuMDc5MSA4OC45OTIyQzg5Ljg1OTYgODguMjA1NiA5MC45NDIzIDg3LjU0NTkgOTIuMDU0NyA4Ni45NDUzQzkyLjYxNjYgODYuNjQxOSA5My4yMDUzIDg2LjM0MzUgOTMuNzgzMiA4Ni4wNDg4Qzk0LjM2NDggODUuNzUyMyA5NC45Mzg4IDg1LjQ1NzYgOTUuNDg4MyA4NS4xNTMzQzk2LjU5NjEgODQuNTM5OCA5Ny41NTMyIDgzLjkxNDYgOTguMjI5NSA4My4yMTU4Qzk4Ljg5MzIgODIuNTMwMSA5OS4yNSA4MS44MTMgOTkuMjUgODAuOTg5M0M5OS4yNSA3My4zNzQ1IDk3Ljc4IDY5LjU5OTkgOTYuMjkgNjUuNzY2NkM5NC43Njg3IDYxLjg1MjYgOTMuMjI3NSA1Ny44Nzk3IDkzLjIyNzUgNTBDOTMuMjI3NSA0Mi4xMjAzIDk0Ljc2ODcgMzguMTQ3NCA5Ni4yOSAzNC4yMzM0Qzk3Ljc4IDMwLjQwMDEgOTkuMjUgMjYuNjI1NSA5OS4yNSAxOS4wMTA3Qzk5LjI1IDE4LjIwNDkgOTguOTEwNSAxNy42MTg0IDk4LjI5MyAxNy4xMTIzQzk3LjY0MjUgMTYuNTc5NCA5Ni43MTAxIDE2LjE2MTMgOTUuNTk1NyAxNS43NTc4Qzk0LjU0NjEgMTUuMzc3OCA5My4yMzUyIDE0Ljk3OTYgOTIuMTM1NyAxNC41NDY5QzkxLjAwNzIgMTQuMTAyNyA4OS44ODkzIDEzLjU0ODEgODkuMDc5MSAxMi43MzE0SDg5LjA3ODFDODguMjgwNiAxMS45MjY1IDg3LjYyMzUgMTAuNzAzOSA4Ny4wMzEyIDkuNDI1NzhDODYuNzMwMiA4Ljc3NjE0IDg2LjQzNTggOC4wODcyNSA4Ni4xNDI2IDcuNDAxMzdDODUuODQ3OCA2LjcxMTc4IDg1LjU1MzkgNi4wMjM5MyA4NS4yNSA1LjM1OTM4Qzg0LjYzNzIgNC4wMTk0NiA4NC4wMDg2IDIuODM1NTYgODMuMzAyNyAxLjk5MzE2QzgyLjYwMSAxLjE1NTY5IDgxLjkwNTIgMC43NSA4MS4xNTMzIDAuNzVDNzMuNjIyNCAwLjc1MDAyMSA2OS42NzY2IDIuNDQxMiA2NS42NTYyIDQuMTYyMTFDNjEuNTY1MSA1LjkxMzM1IDU3LjM5OTIgNy42OTQyOCA0OS41NjkzIDcuNjk0MzRDNDEuNzM1IDcuNjk0MzQgMzcuNzgwOSA1LjkxMDQyIDMzLjg5ODQgNC4xNTUyN0MzMC4xMDA0IDIuNDM4MjggMjYuMzczMiAwLjc1MDAyMiAxOC44NDY3IDAuNzVDMTguMDM2NyAwLjc1IDE3LjMyODggMS4xMDY0NiAxNi42NDg0IDEuNzc2MzdDMTUuOTU1NSAyLjQ1ODgxIDE1LjMzNTEgMy40MjQ4NSAxNC43MjY2IDQuNTQyOTdDMTQuNDI0NyA1LjA5NzU5IDE0LjEzMjkgNS42NzY4NSAxMy44Mzg5IDYuMjYzNjdDMTMuNTQ2NyA2Ljg0Njc2IDEzLjI1MDkgNy40NDAxIDEyLjk1MDIgOC4wMDY4NEMxMi4zNTUgOS4xMjg0OSAxMS43MDE1IDEwLjIxOTkgMTAuOTIxOSAxMS4wMDY4TDEwLjkyMDkgMTEuMDA3OEMxMC4xNDA0IDExLjc5NDQgOS4wNTc2NyAxMi40NTQxIDcuOTQ1MzEgMTMuMDU0N0M3LjM4MzM5IDEzLjM1ODEgNi43OTQ3MyAxMy42NTY1IDYuMjE2OCAxMy45NTEyQzUuNjM1MTggMTQuMjQ3NyA1LjA2MTI1IDE0LjU0MjQgNC41MTE3MiAxNC44NDY3QzMuNDAzODUgMTUuNDYwMiAyLjQ0NjgzIDE2LjA4NTQgMS43NzA1MSAxNi43ODQyQzEuMTA2ODQgMTcuNDcgMC43NSAxOC4xODcgMC43NSAxOS4wMTA3QzAuNzUwMDQ4IDI2LjYwNjYgMi40MjU1MSAzMC4zNjg2IDQuMTI3OTMgMzQuMjAwMkM1Ljg2NzczIDM4LjExNTkgNy42MzQ3NyA0Mi4xMDE1IDcuNjM0NzcgNTBDNy42MzQ3NyA1Ny44OTg1IDUuODY3NzMgNjEuODg0MSA0LjEyNzkzIDY1Ljc5OThDMi40MjU1MSA2OS42MzE0IDAuNzUwMDQ4IDczLjM5MzQgMC43NSA4MC45ODkzQzAuNzUgODEuODEzIDEuMTA2ODQgODIuNTMwMSAxLjc3MDUxIDgzLjIxNThDMi40NDY4MyA4My45MTQ2IDMuNDAzODUgODQuNTM5OCA0LjUxMTcyIDg1LjE1MzNDNS4wNjEyNSA4NS40NTc2IDUuNjM1MTggODUuNzUyMyA2LjIxNjggODYuMDQ4OEM2Ljc5NDczIDg2LjM0MzUgNy4zODMzOSA4Ni42NDE5IDcuOTQ1MzEgODYuOTQ1M0M5LjA1NzY3IDg3LjU0NTkgMTAuMTQwNCA4OC4yMDU2IDEwLjkyMDkgODguOTkyMkwxMC45MjE5IDg4Ljk5MzJDMTEuNzAxNSA4OS43ODAxIDEyLjM1NSA5MC44NzE1IDEyLjk1MDIgOTEuOTkzMkMxMy4yNTA5IDkyLjU1OTkgMTMuNTQ2NyA5My4xNTMyIDEzLjgzODkgOTMuNzM2M0MxNC4xMzI5IDk0LjMyMzEgMTQuNDI0NyA5NC45MDI0IDE0LjcyNjYgOTUuNDU3QzE1LjMzNTEgOTYuNTc1MiAxNS45NTU1IDk3LjU0MTIgMTYuNjQ4NCA5OC4yMjM2QzE3LjMyODggOTguODkzNSAxOC4wMzY3IDk5LjI1IDE4Ljg0NjcgOTkuMjVDMjYuMzczMiA5OS4yNSAzMC4xMDA0IDk3LjU2MTcgMzMuODk4NCA5NS44NDQ3QzM3Ljc4MDkgOTQuMDg5NiA0MS43MzUgOTIuMzA1NyA0OS41NjkzIDkyLjMwNTdDNTcuMzk5MiA5Mi4zMDU3IDYxLjU2NTEgOTQuMDg2NyA2NS42NTYyIDk1LjgzNzlDNjkuNjc2NiA5Ny41NTg4IDczLjYyMjQgOTkuMjUgODEuMTUzMyA5OS4yNVoiIHN0cm9rZT0iIzRGODMwRSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPC9zdmc+Cg==");
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
    }

    & .vs-featureh4__icon {
    }

    @media (max-width: 1199px) {
        & .vs-featureh4__icon {
            margin-left: 0px;
        }
    }

    & .vs-featureh4__icon {
    }

    @media (max-width: 991px) {
        & .vs-featureh4__icon {
            margin-left: 5px;
        }
    }

    & .vs-featureh4__icon.Fshape1::after {
        background-color: var(--vs-theme-color2);
    }

    & .vs-featureh4__icon.Fshape1 .feature-shape {
        background-color: var(--vs-theme-color2);
    }

    & .vs-featureh4__icon.Fshape2::after {
        background-color: var(--vs-theme-color1);
    }

    & .vs-featureh4__icon.Fshape2 .feature-shape {
        background-color: var(--vs-theme-color1);
    }

    & .vs-featureh4:hover img {
        animation: 0.5s ease 0s 1 normal forwards running toTopFromBottom;
    }

    & .vs-featureh4 {
    }

    @media (max-width: 1199px) {
        & .vs-featureh4 {
            gap: 15px;
        }
    }

    & .vs-about2--image {
        width: 100%;
        position: relative;
    }

    & .vs-about2--image img.img-bg {
        width: 100%;
    }

    & .vs-about2--image img.main-img {
        position: absolute;
        top: 14px;
        left: 0px;
        height: 100%;
        width: 98%;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTkyIiBoZWlnaHQ9IjUwMyIgdmlld0JveD0iMCAwIDU5MiA1MDMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik01OTAuNzk1IDEzMC44MjJDNTg2LjI4MSA2NC4wNjIgNTMzLjcxMiA4LjYyNzQ1IDQ2Ny4yMzkgMC45NjQ0NzFDNDM5LjY1NSAtMi4yMTQzMyA0MTMuNDM4IDIuNjAxNDUgMzkwLjU5NSAxMy4zOTE1QzM2MS45MjYgMjYuOTM0OSAzMjkuMTA5IDMwLjIxNTkgMjk5Ljc1MiAxOC4yMzM4QzI4OC41NTMgMTMuNjYyOSAyNzYuMzAxIDExLjE0MTcgMjYzLjQ1IDExLjE0MTdDMjI1LjY1NyAxMS4xNDE3IDE5My4wMDcgMzIuODk2NiAxNzcuMTk2IDY0LjU1MDJDMTcxLjI0NyA3Ni40NTk2IDE1OC40ODcgODIuOTc5NSAxNDUuMTczIDgyLjk1MTVDMTQ1LjA4OSA4Mi45NTE1IDE0NS4wMDMgODIuOTUxNSAxNDQuOTE5IDgyLjk1MTVDNjQuODgyOCA4Mi45NTE1IDAgMTQ3LjgzNCAwIDIyNy44NzFDMCAyODQuMzg0IDMyLjM3NDIgMzMzLjI0NCA3OS41NzkxIDM1Ny4wODhDMTE0LjMzIDM3NC42NDEgMTQzLjU1MiA0MDAuODQ4IDE2Ny4wMzcgNDMxLjkwM0MxOTkuMjg5IDQ3NC41NTEgMjUwLjM3NyA1MDIuMTIyIDMwNy45ODcgNTAyLjEyMkMzNzEuODg5IDUwMi4xMjIgNDI3Ljc1NiA0NjguMTgyIDQ1OC44MTMgNDE3LjM4N0M0NjkuNTI5IDM5OS44NjIgNDg1LjUzNSAzODYuNSA1MDIuOTkyIDM3NS42NzJDNTM1LjI1OCAzNTUuNjU3IDU1Ni43NiAzMTkuOTc1IDU1Ni43NiAyNzkuMjA2QzU1Ni43NiAyNzYuNDU5IDU1Ni42NTggMjczLjczOCA1NTYuNDU4IDI3MS4wNDVDNTU0Ljk4OSAyNTEuMjE0IDU1OS40NyAyMzEuNjQxIDU2OS45NzkgMjE0Ljc1OEM1ODQuOTcyIDE5MC42NzUgNTkyLjg4NSAxNjEuNzI5IDU5MC43OTUgMTMwLjgyMloiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcl8xXzUxMTApIi8+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMV81MTEwIiB4MT0iNDU4LjkyMyIgeTE9IjM4LjM1NjkiIHgyPSI2Ni44Mzk1IiB5Mj0iNDkyLjkyNCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjRkY3NDFDIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0ZGMUMzQSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=");
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
        object-fit: cover;
    }

    & .vs-about2--image img.shape-img {
        position: absolute;
        left: 0px;
        top: 35px;
        width: 90%;
    }

    & .vs-about2__eleh4 {
        position: absolute;
        bottom: 35px;
        left: 12%;
    }

    @media (max-width: 1500px) {
        & .vs-about2__eleh4 {
            bottom: 20px;
            width: 140px;
        }
    }

    & .vs-about2__eleh4 {
    }

    @media (max-width: 1199px) {
        & .vs-about2__eleh4 {
            display: none;
        }
    }

    & .vs-list.style3 {
        flex-direction: unset;
        flex-wrap: wrap;
    }

    & .vs-list.style3 li {
        font-size: 16px;
        font-family: var(--vs-body-font);
        padding-left: 0px;
        display: flex;
        align-items: center;
        width: 85%;
    }

    @media (max-width: 575px) {
        & .vs-list.style3 li {
            width: 100%;
        }
    }

    & .vs-list.style3 li span {
        background-image: url("../img/ellipse-about2-h4.svg");
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 15px;
        color: var(--vs-white-color);
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    & .vs-list.style3 li: :before {
        display: none;
    }

    & .vs-featureh4-1--activity {
        padding: 200px 0px 195px;
        margin: -80px 0px 0px;
    }

    & .vs-featureh4-1--activity::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 50%;
        background-color: var(--vs-theme-color7);
        bottom: 0px;
        z-index: -1;
    }

    & .vs-featureh4-1--activity {
    }

    @media (max-width: 767px) {
        & .vs-featureh4-1--activity {
            margin: -150px 0px 0px;
        }
    }

    & .vs-featureh4-1--activity {
    }

    & .vs-featureh4-1--activity .custom-pagination {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
    }

    & .vs-featureh4-1--activity .custom-pagination .pg {
        width: 24px;
        height: 8px;
        border-radius: 10px;
        background: var(--vs-white-color);
        opacity: 0.8;
        transition: 0.3s;
        cursor: pointer;
    }

    & .vs-featureh4-1--activity .custom-pagination .pg.active {
        width: 35px;
        background: var(--vs-theme-color2);
        cursor: pointer;
    }

    & .vs-featureh4-1--content {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        text-align: center;
        transition: 0.4s;
    }

    & .vs-featureh4-1--content .vs-featureh4-1__image {
        padding: 30px 40px 0px;
    }

    @media (max-width: 1199px) {
        & .vs-featureh4-1--content .vs-featureh4-1__image {
            padding: 40px 40px 0px;
        }
    }

    & .vs-featureh4-1--content img.icon-img1 {
        width: 46px;
        height: 45px;
        transition: 0.4s;
    }

    & .vs-featureh4-1--content img.icon-img2 {
        width: 46px;
        height: 45px;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        left: 0px;
        right: 0px;
        margin: 0px auto;
        transition: 0.4s;
    }

    & .vs-featureh4-1--content .vs-featureh4-1__title {
        font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
        margin-bottom: 5px;
        line-height: 3;
        font-weight: 900;
        padding: 15px 30px 45px;
        transition: 0.4s;
    }

    & .vs-featureh4-1--content .vs-featureh4-1__title::after {
        content: "";
        position: absolute;
        width: 45px;
        height: 2px;
        left: 0px;
        right: 0px;
        background-color: rgba(var(--vs-title-color-rgb), 0.2);
        margin: 0px auto;
        transition: 0.4s;
    }

    & .vs-featureh4-1--content .vs-featureh4-1__arrow {
        position: absolute;
        z-index: 5;
        background-color: var(--vs-white-color);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        line-height: 45px;
        margin: 0px auto;
        left: 1px;
        right: 0px;
        bottom: -10px;
        transition: 0.4s;
    }

    @media (max-width: 1199px) {
        & .vs-featureh4-1--content .vs-featureh4-1__arrow {
            bottom: -12px;
        }
    }

    & .vs-featureh4-1--content::after {
        content: "";
        position: absolute;
        z-index: -1;
        background-color: var(--vs-white-color);
        width: 100%;
        height: 100%;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTc1IiBoZWlnaHQ9IjE4NyIgdmlld0JveD0iMCAwIDE3NSAxODciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xNzUgMTc3QzE3NSAxODIuNTIzIDE3MC41MjMgMTg3IDE2NSAxODdIMTIwLjM4QzExNy4yODEgMTg3IDExNSAxODQuMDk5IDExNSAxODFDMTE1IDE2Ni4wODggMTAyLjkxMiAxNTQgODggMTU0QzczLjA4ODMgMTU0IDYxIDE2Ni4wODggNjEgMTgxQzYxIDE4NC4wOTkgNTguNzE5NSAxODcgNTUuNjIwMSAxODdIMTBDNC40NzcxNSAxODcgMCAxODIuNTIzIDAgMTc3VjEwQzAgNC40NzcxNSA0LjQ3NzE1IDAgMTAgMEgxNjVDMTcwLjUyMyAwIDE3NSA0LjQ3NzE1IDE3NSAxMFYxNzdaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
        mask-position: center center;
        mask-size: contain;
        mask-repeat: no-repeat;
        left: 0px;
        top: 0px;
        transition: 0.4s;
    }

    & .vs-featureh4-1--content:hover::after {
        background-color: var(--vs-theme-color2);
    }

    & .vs-featureh4-1--content:hover img.icon-img1 {
        opacity: 0;
        visibility: hidden;
    }

    & .vs-featureh4-1--content:hover img.icon-img2 {
        opacity: 1;
        visibility: visible;
    }

    & .vs-featureh4-1--content:hover .vs-featureh4-1__title {
        color: var(--vs-white-color);
    }

    & .vs-featureh4-1--content:hover .vs-featureh4-1__title::after {
        background-color: var(--vs-white-color);
    }

    & .vs-featureh4-1--content:hover .vs-featureh4-1__arrow {
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color2);
    }

    & .vs-time--activity .vs-image-effect {
        border: 2px dashed rgba(var(--vs-theme-color1-rgb), 0.3);
    }

    & .vs-time--activity .vs-image-effect:hover .vs-time__teacher--link {
        color: var(--vs-theme-color2);
    }

    & .vs-time__figure {
        margin: 15px 15px 0px;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
    }

    & .vs-time__figure .vs-time__image {
        border-radius: 20px;
        width: 100%;
    }

    & .vs-time__teacher--link {
        color: var(--vs-title-color);
    }

    & .vs-time__teacher--link i {
        color: var(--vs-theme-color2);
        font-size: 20px;
    }

    & .vs-time__footer .vs-time__price2 {
        color: var(--vs-theme-color2);
        font-size: 20px;
        font-family: var(--vs-title-font);
        font-weight: 700;
    }

    & .vs-time__eleh4 {
        position: absolute;
        left: 8%;
        bottom: -5px;
    }

    @media (max-width: 1500px) {
        & .vs-time__eleh4 {
            display: none;
        }
    }

    & .vs-about__eleh4 {
        position: absolute;
        bottom: 100px;
        left: 10%;
    }

    @media (max-width: 1500px) {
        & .vs-about__eleh4 {
            display: none;
        }
    }

    & .vs-about__eleh4-1 {
        position: absolute;
        right: 129px;
        top: 94px;
    }

    @media (max-width: 1500px) {
        & .vs-about__eleh4-1 {
            right: 50px;
            top: 50px;
            width: 70px;
        }
    }

    & .vs-about__eleh4-1 {
    }

    @media (max-width: 1199px) {
        & .vs-about__eleh4-1 {
            display: none;
        }
    }

    & .vs-about--right2 {
    }

    @media (max-width: 1199px) {
        & .vs-about--right2 {
            margin-left: 20px;
        }

        & .vs-about--right2 .vs-title__main {
            font-size: 40px;
        }

        & .vs-about--right2 .vs-room__icon {
            margin-bottom: 15px;
        }
    }

    & .vs-about--right2 {
    }

    @media (max-width: 991px) {
        & .vs-about--right2 {
            margin-left: 0px;
        }
    }

    @media (max-width: 1300px) {
        & .vs-about--right2 .h4-txt {
            margin: 0px !important;
        }
    }

    & .vs-about--image2 {
        position: relative;
        margin-right: 15px;
    }

    & .vs-about--image2 img {
        position: relative;
        width: 100%;
        height: 542px;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjY5IiBoZWlnaHQ9IjUyOSIgdmlld0JveD0iMCAwIDY2OSA1MjkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02NjkgMTk0QzY2OSAyMTAuNTY5IDY1NS41NjkgMjI0IDYzOSAyMjRINjAyQzU4NS40MzEgMjI0IDU3MiAyMzcuNDMxIDU3MiAyNTRWNDk5QzU3MiA1MTUuNTY5IDU1OC41NjkgNTI5IDU0MiA1MjlIMzBDMTMuNDMxNSA1MjkgMCA1MTUuNTY5IDAgNDk5VjMwQzAgMTMuNDMxNSAxMy40MzE1IDAgMzAgMEg2MzlDNjU1LjU2OSAwIDY2OSAxMy40MzE1IDY2OSAzMFYxOTRaIiBmaWxsPSIjOTIyNzhGIi8+Cjwvc3ZnPgo=");
        mask-size: contain;
        mask-position: center top;
        mask-repeat: no-repeat;
        object-fit: cover;
    }

    @media (max-width: 1500px) {
        & .vs-about--image2 img {
            height: 525px;
        }
    }

    & .vs-about--image2 img {
    }

    @media (max-width: 1199px) {
        & .vs-about--image2 img {
            height: 375px;
        }
    }

    & .vs-about--image2 img {
    }

    @media (max-width: 991px) {
        & .vs-about--image2 img {
            height: 542px;
        }
    }

    & .vs-about--image2 img {
    }

    @media (max-width: 767px) {
        & .vs-about--image2 img {
            height: 400px;
        }
    }

    & .vs-about--image2 img {
    }

    @media (max-width: 575px) {
        & .vs-about--image2 img {
            height: 100%;
            mask-position: left center;
            margin-left: 10px;
        }
    }

    & .vs-about--image2::before {
        position: absolute;
        content: "";
        top: -9px;
        left: -10px;
        width: 220px;
        height: 180px;
        background-color: var(--vs-theme-color4);
        border-radius: 30px;
    }

    @media (max-width: 1500px) {
        & .vs-about--image2::before {
            left: 0px;
        }
    }

    @media (max-width: 1300px) {
        & .vs-about--image2::before {
            left: -10px;
        }
    }

    & .vs-about--image2::before {
    }

    @media (max-width: 575px) {
        & .vs-about--image2::before {
            left: 0px;
            width: 125px;
            height: 125px;
        }
    }

    & .vs-about--image2 {
    }

    @media (max-width: 1199px) {
        & .vs-about--image2 {
            margin-right: -25px;
        }
    }

    & .vs-about--image2 {
    }

    @media (max-width: 991px) {
        & .vs-about--image2 {
            margin-bottom: 60px;
            margin-right: 10px;
        }
    }

    & .vs-about--content {
        margin-left: -95px;
    }

    & .vs-about--content .vs-room {
        text-align: left;
        padding: 40px 30px;
    }

    @media (max-width: 1300px) {
        & .vs-about--content .vs-room {
            padding: 33px;
        }
    }

    & .vs-about--content .vs-room {
    }

    @media (max-width: 1199px) {
        & .vs-about--content .vs-room {
            padding: 15px 25px;
        }
    }

    & .vs-about--content .vs-room {
    }

    @media (max-width: 991px) {
        & .vs-about--content .vs-room {
            padding: 33px;
        }
    }

    & .vs-about--content {
    }

    @media (max-width: 1199px) {
        & .vs-about--content {
            margin-left: -70px;
        }
    }

    & .vs-about--content {
    }

    @media (max-width: 991px) {
        & .vs-about--content {
            margin-left: 0px;
        }
    }

    & .vs-video--bg-image.extra, & .vs-video--bg-image-overlay.extra {
        opacity: 0.15;
    }

    & .vs-video__button2.play-btn {
        --icon-size: 50px;
        padding: 0px;
        background-color: var(--vs-theme-color4);
        border-radius: 50%;
    }

    & .vs-video__button2.play-btn > i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: var(--icon-size, 124px);
        height: var(--icon-size, 124px);
        line-height: var(--icon-size, 124px);
        font-size: var(--vs-icon-font-size);
        text-align: center;
        border: 2px dashed rgba(var(--vs-title-color-rgb), 0.5);
        background-color: transparent;
        margin: 3px;
    }

    & .vs-video__button2.play-btn::after, & .vs-video__button2.play-btn::before {
        content: "";
        position: absolute;
        inset: 0px;
        background-color: var(--vs-theme-color4);
        z-index: -1;
        border-radius: 50%;
        transition: 0.4s;
    }

    & .vs-video__button2.play-btn::after {
        animation-delay: 2s;
    }

    & .vs-video__button2.play-btn:hover {
        background-color: var(--vs-theme-color2);
    }

    & .vs-video__button2.play-btn:hover::after, & .vs-video__button2.play-btn:hover::before, & .vs-video__button2.play-btn:hover i {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
    }

    & .vs-balls--style4 {
        transform: rotate(180deg);
    }

    & .vs-team--style3 {
        background: transparent;
        border-radius: 0px;
        padding: 0px;
        position: relative;
        margin: 10px 10px 30px;
        box-shadow: none;
    }

    & .vs-team--style3 .vs-team__img {
        border-radius: 0px;
        overflow: initial;
    }

    & .vs-team--style3 .vs-team__img::before {
        display: none;
        content: "";
    }

    & .vs-team--style3 .vs-team__img::after {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        content: "";
        background-color: var(--vs-theme-color2);
        z-index: -1;
        transform: scale(1.1);
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjM3LjYyOTk5OTk5OTk5OTk5NSAzNy42Mjk5OTk5OTk5OTk5OTUgMjgwLjQ1IDI4MC40NSIgc3R5bGU9Im1heC1oZWlnaHQ6IDUwMHB4IiB3aWR0aD0iMjgwLjQ1IiBoZWlnaHQ9IjI4MC40NSI+CjxwYXRoIGZpbGw9IiM5MjI3OEYiIGQ9Ik0xOTYuMzQ0IDMwMi4wMUMxOTAuMDM4IDMxOS43NDIgMTY0Ljk2MiAzMTkuNzQyIDE1OC42NTYgMzAyLjAxTDE1MC45NTkgMjgwLjM2N0MxNDYuOTg4IDI2OS4yIDEzNC4yMzMgMjYzLjkxNyAxMjMuNTI5IDI2OS4wMDVMMTAyLjc4MyAyNzguODY3Qzg1Ljc4NTcgMjg2Ljk0NiA2OC4wNTM5IDI2OS4yMTQgNzYuMTMzNCAyNTIuMjE3TDg1Ljk5NTEgMjMxLjQ3MUM5MS4wODMxIDIyMC43NjcgODUuNzk5NyAyMDguMDEyIDc0LjYzMzIgMjA0LjA0MUw1Mi45ODk5IDE5Ni4zNDRDMzUuMjU4MiAxOTAuMDM4IDM1LjI1ODEgMTY0Ljk2MiA1Mi45ODk5IDE1OC42NTZMNzQuNjMzMiAxNTAuOTU5Qzg1Ljc5OTcgMTQ2Ljk4OCA5MS4wODMxIDEzNC4yMzMgODUuOTk1MSAxMjMuNTI5TDc2LjEzMzQgMTAyLjc4M0M2OC4wNTM5IDg1Ljc4NTcgODUuNzg1NyA2OC4wNTM5IDEwMi43ODMgNzYuMTMzNEwxMjMuNTI5IDg1Ljk5NTFDMTM0LjIzMyA5MS4wODMxIDE0Ni45ODggODUuNzk5NyAxNTAuOTU5IDc0LjYzMzJMMTU4LjY1NiA1Mi45ODk5QzE2NC45NjIgMzUuMjU4MiAxOTAuMDM4IDM1LjI1ODEgMTk2LjM0NCA1Mi45ODk5TDIwNC4wNDEgNzQuNjMzMkMyMDguMDEyIDg1Ljc5OTcgMjIwLjc2NyA5MS4wODMxIDIzMS40NzEgODUuOTk1MUwyNTIuMjE3IDc2LjEzMzRDMjY5LjIxNCA2OC4wNTM5IDI4Ni45NDYgODUuNzg1NyAyNzguODY3IDEwMi43ODNMMjY5LjAwNSAxMjMuNTI5QzI2My45MTcgMTM0LjIzMyAyNjkuMiAxNDYuOTg4IDI4MC4zNjcgMTUwLjk1OUwzMDIuMDEgMTU4LjY1NkMzMTkuNzQyIDE2NC45NjIgMzE5Ljc0MiAxOTAuMDM4IDMwMi4wMSAxOTYuMzQ0TDI4MC4zNjcgMjA0LjA0MUMyNjkuMiAyMDguMDEyIDI2My45MTcgMjIwLjc2NyAyNjkuMDA1IDIzMS40NzFMMjc4Ljg2NyAyNTIuMjE3QzI4Ni45NDYgMjY5LjIxNCAyNjkuMjE0IDI4Ni45NDYgMjUyLjIxNyAyNzguODY3TDIzMS40NzEgMjY5LjAwNUMyMjAuNzY3IDI2My45MTcgMjA4LjAxMiAyNjkuMiAyMDQuMDQxIDI4MC4zNjdMMTk2LjM0NCAzMDIuMDFaIi8+CjxwYXRoIGZpbGw9IiNEMUQyRDYiIGQ9Ik0xOTYuMzQ0IDI5MC4wMUMxOTAuMDM4IDMwNy43NDIgMTY0Ljk2MiAzMDcuNzQyIDE1OC42NTYgMjkwLjAxTDE1My4yNTYgMjc0LjgyNEMxNDkuMjg1IDI2My42NTcgMTM2LjUyOSAyNTguMzc0IDEyNS44MjUgMjYzLjQ2MkwxMTEuMjY4IDI3MC4zODFDOTQuMjcxIDI3OC40NjEgNzYuNTM5MiAyNjAuNzI5IDg0LjYxODcgMjQzLjczMkw5MS41Mzg0IDIyOS4xNzVDOTYuNjI2NCAyMTguNDcxIDkxLjM0MyAyMDUuNzE1IDgwLjE3NjUgMjAxLjc0NEw2NC45ODk5IDE5Ni4zNDRDNDcuMjU4MiAxOTAuMDM4IDQ3LjI1ODIgMTY0Ljk2MiA2NC45ODk5IDE1OC42NTZMODAuMTc2NSAxNTMuMjU1QzkxLjM0MyAxNDkuMjg1IDk2LjYyNjQgMTM2LjUyOSA5MS41Mzg0IDEyNS44MjVMODQuNjE4NyAxMTEuMjY4Qzc2LjUzOTIgOTQuMjcxIDk0LjI3MSA3Ni41MzkxIDExMS4yNjggODQuNjE4NkwxMjUuODI1IDkxLjUzODRDMTM2LjUyOSA5Ni42MjY0IDE0OS4yODUgOTEuMzQyOSAxNTMuMjU2IDgwLjE3NjRMMTU4LjY1NiA2NC45ODk5QzE2NC45NjIgNDcuMjU4MSAxOTAuMDM4IDQ3LjI1ODEgMTk2LjM0NCA2NC45ODk5TDIwMS43NDUgODAuMTc2NEMyMDUuNzE1IDkxLjM0MjkgMjE4LjQ3MSA5Ni42MjY0IDIyOS4xNzUgOTEuNTM4NEwyNDMuNzMyIDg0LjYxODZDMjYwLjcyOSA3Ni41MzkyIDI3OC40NjEgOTQuMjcxIDI3MC4zODEgMTExLjI2OEwyNjMuNDYyIDEyNS44MjVDMjU4LjM3NCAxMzYuNTI5IDI2My42NTcgMTQ5LjI4NSAyNzQuODI0IDE1My4yNTVMMjkwLjAxIDE1OC42NTZDMzA3Ljc0MiAxNjQuOTYyIDMwNy43NDIgMTkwLjAzOCAyOTAuMDEgMTk2LjM0NEwyNzQuODI0IDIwMS43NDRDMjYzLjY1NyAyMDUuNzE1IDI1OC4zNzQgMjE4LjQ3MSAyNjMuNDYyIDIyOS4xNzVMMjcwLjM4MSAyNDMuNzMyQzI3OC40NjEgMjYwLjcyOSAyNjAuNzI5IDI3OC40NjEgMjQzLjczMiAyNzAuMzgxTDIyOS4xNzUgMjYzLjQ2MkMyMTguNDcxIDI1OC4zNzQgMjA1LjcxNSAyNjMuNjU3IDIwMS43NDQgMjc0LjgyNEwxOTYuMzQ0IDI5MC4wMVoiLz4KPC9zdmc+");
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
    }

    & .vs-team--style3 .vs-team__img .ins-image {
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjM3LjYyOTk5OTk5OTk5OTk5NSAzNy42Mjk5OTk5OTk5OTk5OTUgMjgwLjQ1IDI4MC40NSIgc3R5bGU9Im1heC1oZWlnaHQ6IDUwMHB4IiB3aWR0aD0iMjgwLjQ1IiBoZWlnaHQ9IjI4MC40NSI+CjxwYXRoIGZpbGw9IiM5MjI3OEYiIGQ9Ik0xOTYuMzQ0IDMwMi4wMUMxOTAuMDM4IDMxOS43NDIgMTY0Ljk2MiAzMTkuNzQyIDE1OC42NTYgMzAyLjAxTDE1MC45NTkgMjgwLjM2N0MxNDYuOTg4IDI2OS4yIDEzNC4yMzMgMjYzLjkxNyAxMjMuNTI5IDI2OS4wMDVMMTAyLjc4MyAyNzguODY3Qzg1Ljc4NTcgMjg2Ljk0NiA2OC4wNTM5IDI2OS4yMTQgNzYuMTMzNCAyNTIuMjE3TDg1Ljk5NTEgMjMxLjQ3MUM5MS4wODMxIDIyMC43NjcgODUuNzk5NyAyMDguMDEyIDc0LjYzMzIgMjA0LjA0MUw1Mi45ODk5IDE5Ni4zNDRDMzUuMjU4MiAxOTAuMDM4IDM1LjI1ODEgMTY0Ljk2MiA1Mi45ODk5IDE1OC42NTZMNzQuNjMzMiAxNTAuOTU5Qzg1Ljc5OTcgMTQ2Ljk4OCA5MS4wODMxIDEzNC4yMzMgODUuOTk1MSAxMjMuNTI5TDc2LjEzMzQgMTAyLjc4M0M2OC4wNTM5IDg1Ljc4NTcgODUuNzg1NyA2OC4wNTM5IDEwMi43ODMgNzYuMTMzNEwxMjMuNTI5IDg1Ljk5NTFDMTM0LjIzMyA5MS4wODMxIDE0Ni45ODggODUuNzk5NyAxNTAuOTU5IDc0LjYzMzJMMTU4LjY1NiA1Mi45ODk5QzE2NC45NjIgMzUuMjU4MiAxOTAuMDM4IDM1LjI1ODEgMTk2LjM0NCA1Mi45ODk5TDIwNC4wNDEgNzQuNjMzMkMyMDguMDEyIDg1Ljc5OTcgMjIwLjc2NyA5MS4wODMxIDIzMS40NzEgODUuOTk1MUwyNTIuMjE3IDc2LjEzMzRDMjY5LjIxNCA2OC4wNTM5IDI4Ni45NDYgODUuNzg1NyAyNzguODY3IDEwMi43ODNMMjY5LjAwNSAxMjMuNTI5QzI2My45MTcgMTM0LjIzMyAyNjkuMiAxNDYuOTg4IDI4MC4zNjcgMTUwLjk1OUwzMDIuMDEgMTU4LjY1NkMzMTkuNzQyIDE2NC45NjIgMzE5Ljc0MiAxOTAuMDM4IDMwMi4wMSAxOTYuMzQ0TDI4MC4zNjcgMjA0LjA0MUMyNjkuMiAyMDguMDEyIDI2My45MTcgMjIwLjc2NyAyNjkuMDA1IDIzMS40NzFMMjc4Ljg2NyAyNTIuMjE3QzI4Ni45NDYgMjY5LjIxNCAyNjkuMjE0IDI4Ni45NDYgMjUyLjIxNyAyNzguODY3TDIzMS40NzEgMjY5LjAwNUMyMjAuNzY3IDI2My45MTcgMjA4LjAxMiAyNjkuMiAyMDQuMDQxIDI4MC4zNjdMMTk2LjM0NCAzMDIuMDFaIi8+CjxwYXRoIGZpbGw9IiNEMUQyRDYiIGQ9Ik0xOTYuMzQ0IDI5MC4wMUMxOTAuMDM4IDMwNy43NDIgMTY0Ljk2MiAzMDcuNzQyIDE1OC42NTYgMjkwLjAxTDE1My4yNTYgMjc0LjgyNEMxNDkuMjg1IDI2My42NTcgMTM2LjUyOSAyNTguMzc0IDEyNS44MjUgMjYzLjQ2MkwxMTEuMjY4IDI3MC4zODFDOTQuMjcxIDI3OC40NjEgNzYuNTM5MiAyNjAuNzI5IDg0LjYxODcgMjQzLjczMkw5MS41Mzg0IDIyOS4xNzVDOTYuNjI2NCAyMTguNDcxIDkxLjM0MyAyMDUuNzE1IDgwLjE3NjUgMjAxLjc0NEw2NC45ODk5IDE5Ni4zNDRDNDcuMjU4MiAxOTAuMDM4IDQ3LjI1ODIgMTY0Ljk2MiA2NC45ODk5IDE1OC42NTZMODAuMTc2NSAxNTMuMjU1QzkxLjM0MyAxNDkuMjg1IDk2LjYyNjQgMTM2LjUyOSA5MS41Mzg0IDEyNS44MjVMODQuNjE4NyAxMTEuMjY4Qzc2LjUzOTIgOTQuMjcxIDk0LjI3MSA3Ni41MzkxIDExMS4yNjggODQuNjE4NkwxMjUuODI1IDkxLjUzODRDMTM2LjUyOSA5Ni42MjY0IDE0OS4yODUgOTEuMzQyOSAxNTMuMjU2IDgwLjE3NjRMMTU4LjY1NiA2NC45ODk5QzE2NC45NjIgNDcuMjU4MSAxOTAuMDM4IDQ3LjI1ODEgMTk2LjM0NCA2NC45ODk5TDIwMS43NDUgODAuMTc2NEMyMDUuNzE1IDkxLjM0MjkgMjE4LjQ3MSA5Ni42MjY0IDIyOS4xNzUgOTEuNTM4NEwyNDMuNzMyIDg0LjYxODZDMjYwLjcyOSA3Ni41MzkyIDI3OC40NjEgOTQuMjcxIDI3MC4zODEgMTExLjI2OEwyNjMuNDYyIDEyNS44MjVDMjU4LjM3NCAxMzYuNTI5IDI2My42NTcgMTQ5LjI4NSAyNzQuODI0IDE1My4yNTVMMjkwLjAxIDE1OC42NTZDMzA3Ljc0MiAxNjQuOTYyIDMwNy43NDIgMTkwLjAzOCAyOTAuMDEgMTk2LjM0NEwyNzQuODI0IDIwMS43NDRDMjYzLjY1NyAyMDUuNzE1IDI1OC4zNzQgMjE4LjQ3MSAyNjMuNDYyIDIyOS4xNzVMMjcwLjM4MSAyNDMuNzMyQzI3OC40NjEgMjYwLjcyOSAyNjAuNzI5IDI3OC40NjEgMjQzLjczMiAyNzAuMzgxTDIyOS4xNzUgMjYzLjQ2MkMyMTguNDcxIDI1OC4zNzQgMjA1LjcxNSAyNjMuNjU3IDIwMS43NDQgMjc0LjgyNEwxOTYuMzQ0IDI5MC4wMVoiLz4KPC9zdmc+");
        transform: none;
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
    }

    & .vs-team--style3 .vs-team__img.shape1::after {
        background-color: var(--vs-theme-color1);
    }

    & .vs-team--style3 .vs-team__img.shape2::after {
        background-color: var(--vs-theme-color3);
    }

    & .vs-team--style3 .vs-team__img.shape3::after {
        background-color: var(--vs-theme-color4);
    }

    & .vs-team--style3 .vs-team__heading {
        justify-content: center;
    }

    & .vs-team--style3 .vs-team__share {
        position: relative;
    }

    & .vs-team--style3 .vs-team__share--list {
        list-style: none;
        margin-bottom: 0px;
        position: relative;
        justify-content: center;
        gap: 10px;
        background-color: transparent;
        padding: 0px;
        border-radius: 0px;
        left: 0px;
        transform: none;
        opacity: 1;
        visibility: visible;
        transition: 0.4s;
    }

    & .vs-team--style3 .vs-team__share--list > li {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    & .vs-team--style3 .vs-team__share--list > li > a {
        color: var(--vs-title-color);
        background-color: rgba(var(--vs-title-color-rgb), 0.2);
        --icon-size: 40px;
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 16px;
        transition: 0.4s;
    }

    & .vs-team--style3 .vs-team__share--list > li > a: hover {
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color2);
    }

    & .vs-team--style3:hover .vs-team__role {
        color: var(--vs-body-color);
    }

    & .vs-team--style3:hover .vs-team__share--list > li > a {
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color2);
    }

    & .vs-team--style3:hover .vs-team__share--list.vs-color1 > li > a {
        background-color: var(--vs-theme-color1);
    }

    & .vs-team--style3:hover .vs-team__share--list.vs-color2 > li > a {
        background-color: var(--vs-theme-color3);
    }

    & .vs-team--style3:hover .vs-team__share--list.vs-color3 > li > a {
        background-color: var(--vs-theme-color4);
    }

    & .vs-team--style3 {
    }

    @media (max-width: 1199px) {
        & .vs-team--style3 {
            margin-bottom: 50px;
        }
    }

    & .vs-team--style3 {
    }

    @media (max-width: 991px) {
        & .vs-team--style3 {
            margin-bottom: 50px;
        }
    }

    & .vs-team--style3 {
    }

    @media (max-width: 575px) {
        & .vs-team--style3 {
            margin: 20px 21px 50px;
        }
    }

    & .vs-blog--style3 .vs-blog__inner {
        padding: 35px 25px;
    }

    & .vs-blog--style3 .vs-blog__img {
        margin: 10px 0px 25px;
    }

    & .vs-hero--style5 .vs-hero__anim1.manimated {
        animation-name: slideinright;
        animation-fill-mode: both;
        opacity: 1;
        animation-duration: 1s;
    }

    & .vs-hero--style5 .vs-hero__bg {
        animation: 2s ease-in-out 0s 1 normal none running slideinright;
    }

    & .vs-hero--style5 .vs-hero__content {
        padding: 245px 0px 280px;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style5 .vs-hero__content {
            padding: 120px 0px;
        }
    }

    & .vs-hero--style5 .vs-hero__content {
    }

    @media (max-width: 991px) {
        & .vs-hero--style5 .vs-hero__content {
            text-align: center;
        }
    }

    & .vs-hero--style5 .vs-hero__title--main {
        font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
        margin: 0px 0px 15px;
        line-height: 1.15;
        text-transform: capitalize;
        color: var(--vs-title-color);
    }

    @media (max-width: 991px) {
        & .vs-hero--style5 .vs-hero__title--main {
            color: var(--vs-white-color);
        }
    }

    & .vs-hero--style5 .vs-hero__title--main {
    }

    @media (max-width: 767px) {
        & .vs-hero--style5 .vs-hero__title--main {
            font-size: 70px;
        }
    }

    & .vs-hero--style5 .vs-hero__title--main {
    }

    @media (max-width: 575px) {
        & .vs-hero--style5 .vs-hero__title--main {
            font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style5 .vs-hero__title--main span {
        display: block;
        color: var(--vs-title-color);
        font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
    }

    @media (max-width: 991px) {
        & .vs-hero--style5 .vs-hero__title--main span {
            color: var(--vs-white-color);
        }
    }

    & .vs-hero--style5 .vs-hero__title--main span {
    }

    @media (max-width: 767px) {
        & .vs-hero--style5 .vs-hero__title--main span {
            font-size: clamp(2.2rem, 1.2rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style5 .vs-hero__title--sub {
        font-size: 40px;
        font-family: var(--vs-special-font);
        margin: 0px 0px 15px;
        color: var(--vs-title-color);
    }

    @media (max-width: 991px) {
        & .vs-hero--style5 .vs-hero__title--sub {
            color: var(--vs-white-color);
        }
    }

    & .vs-hero--style5 .vs-hero__desc {
        color: var(--vs-title-color);
        font-size: 20px;
    }

    @media (max-width: 991px) {
        & .vs-hero--style5 .vs-hero__desc {
            color: var(--vs-white-color);
        }
    }

    & .vs-hero--style5 .vs-hero__ele1 {
        top: 85px;
        right: -15%;
        left: 0px;
        text-align: center;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style5 .vs-hero__ele1 {
            top: 150px;
        }
    }

    & .vs-hero--style5 .vs-hero__ele1 {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style5 .vs-hero__ele1 {
            display: none;
        }
    }

    & .vs-hero--style5 .vs-hero__ele2 {
        top: 100px;
        left: 100px;
        right: auto;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style5 .vs-hero__ele2 {
            left: 50px;
        }
    }

    & .vs-hero--style5 .vs-hero__ele2 {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style5 .vs-hero__ele2 {
            display: none;
        }
    }

    & .vs-hero--style5 .vs-hero__ele3 {
        position: absolute;
        bottom: 85px;
        right: auto;
        left: 100px;
        z-index: 2;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style5 .vs-hero__ele3 {
            left: 50px;
        }
    }

    & .vs-hero--style5 .vs-hero__ele3 {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style5 .vs-hero__ele3 {
            display: none;
        }
    }

    & .vs-featureh5 {
        display: flex;
        align-items: center;
        gap: 15px;
        text-transform: capitalize;
        position: relative;
    }

    & .vs-featureh5__title {
        font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
        color: var(--vs-title-color);
        text-transform: capitalize;
        margin-bottom: 6px;
        transition: 0.4s;
    }

    & .vs-featureh5__text {
        font-weight: 500;
        margin-bottom: 0px;
        letter-spacing: 0.3px;
        max-width: 240px;
    }

    & .vs-featureh5__icon img {
        width: 110px;
    }

    & .vs-featureh5-txt {
        position: relative;
        top: 5px;
    }

    @media (max-width: 1199px) {
        & .vs-featureh5-txt {
            top: 0px;
        }
    }

    & .vs-featureh5::after {
        content: "";
        position: absolute;
        width: 0%;
        left: 10px;
        bottom: -20px;
        height: 2px;
        background-color: var(--vs-theme-color2);
        margin: 0px auto;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
    }

    & .vs-featureh5:hover::after {
        width: 92%;
        opacity: 1;
        visibility: visible;
    }

    & .vs-featureh5 {
    }

    @media (max-width: 1199px) {
        & .vs-featureh5 {
            gap: 10px;
        }
    }

    & .vs-about3 .vs-text {
    }

    @media (max-width: 1199px) {
        & .vs-about3 .vs-text {
            letter-spacing: normal;
            margin-bottom: 10px;
        }
    }

    & .vs-about3--image {
        position: relative;
    }

    @media (max-width: 575px) {
        & .vs-about3--image {
            max-width: 400px;
            margin-left: 2px;
        }
    }

    & .vs-about3--image img {
        border-radius: 20px;
        width: 100%;
        object-fit: cover;
    }

    & .vs-about3--image img.img-right {
        height: 460px;
    }

    @media (max-width: 1500px) {
        & .vs-about3--image img.img-right {
            height: 458px;
        }
    }

    @media (max-width: 1300px) {
        & .vs-about3--image img.img-right {
            height: 418px;
        }
    }

    & .vs-about3--image img.img-right {
    }

    @media (max-width: 1199px) {
        & .vs-about3--image img.img-right {
            height: 350px;
        }
    }

    & .vs-about3--image img.img-right {
    }

    @media (max-width: 991px) {
        & .vs-about3--image img.img-right {
            height: 535px;
        }
    }

    & .vs-about3--image img.img-right {
    }

    @media (max-width: 767px) {
        & .vs-about3--image img.img-right {
            height: 397px;
        }
    }

    & .vs-about3--image img.img-right {
    }

    @media (max-width: 575px) {
        & .vs-about3--image img.img-right {
            height: 100%;
            margin-left: 12px;
            margin-top: 15px;
            width: 97%;
        }
    }

    & .vs-about3--image .img-bottom {
        position: relative;
    }

    & .vs-about3--yoe {
        position: absolute;
        bottom: 15px;
        left: 0px;
        right: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        background-color: var(--vs-white-color);
        width: 245px;
        height: 80px;
        margin: 0px auto;
        border-radius: 15px;
        font-family: var(--vs-title-font);
    }

    & .vs-about3--yoe__number {
        font-size: 40px;
        font-weight: 700;
        color: var(--vs-theme-color2);
    }

    & .vs-about3--yoe__text {
        font-weight: 900;
        font-size: 18px;
        color: var(--vs-title-color);
        width: 120px;
    }

    @media (max-width: 1199px) {
        & .vs-about3--yoe__text {
            width: 90px;
        }
    }

    & .vs-about3--yoe {
    }

    @media (max-width: 1199px) {
        & .vs-about3--yoe {
            width: 195px;
            height: 75px;
            gap: 10px;
        }
    }

    & .vs-about3__ele1-h5 {
        position: absolute;
        top: -35px;
        right: -12%;
        width: auto;
    }

    @media (max-width: 1500px) {
        & .vs-about3__ele1-h5 {
            right: -5%;
            top: 0px;
            width: 80px;
        }
    }

    & .vs-about3__ele1-h5 {
    }

    @media (max-width: 1199px) {
        & .vs-about3__ele1-h5 {
            display: none;
        }
    }

    & .vs-about3__ele2-h5 {
        position: absolute;
        top: 100px;
        left: -15%;
        width: auto;
    }

    @media (max-width: 1500px) {
        & .vs-about3__ele2-h5 {
            left: -7%;
            width: 80px;
        }
    }

    & .vs-about3__ele2-h5 {
    }

    @media (max-width: 1199px) {
        & .vs-about3__ele2-h5 {
            display: none;
        }
    }

    & .vs-featureh5-1--provide {
        margin-bottom: -15px;
    }

    & .vs-featureh5-1--provide .swiper-pagination-bullet {
        background: var(--vs-white-color);
        opacity: 0.8;
    }

    & .vs-featureh5-1--provide .swiper-pagination-bullet-active {
        background: var(--vs-theme-color2);
        opacity: 1;
    }

    & .vs-featureh5-1--content {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 50% 50% 15px 15px;
        padding: 10px;
        background-color: var(--vs-white-color);
        text-align: center;
        transition: 0.4s;
    }

    @media (max-width: 575px) {
        & .vs-featureh5-1--content {
            max-width: 320px;
            margin: 0px auto;
        }
    }

    & .vs-featureh5-1--content .vs-featureh5-1__border {
        border: 1px dashed rgba(var(--vs-title-color-rgb), 0.5);
        padding: 30px 20px;
        border-radius: 50% 50% 15px 15px;
        transition: 0.4s;
    }

    & .vs-featureh5-1--content .vs-featureh5-1__image {
        width: 68px;
        height: 70px;
        margin: 10px auto;
    }

    & .vs-featureh5-1--content .vs-featureh5-1__title {
        font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
        margin-bottom: 5px;
        line-height: 1.5;
        font-weight: 900;
        text-transform: capitalize;
        transition: 0.4s;
    }

    & .vs-featureh5-1--content .vs-featureh5-1__des {
        letter-spacing: 0.3px;
        font-weight: 500;
    }

    & .vs-featureh5-1--content .vs-featureh5-1__arrow {
        display: inline-block;
        background-color: var(--vs-title-color);
        color: var(--vs-white-color);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        line-height: 45px;
        margin: 5px auto 0px;
        transition: 0.4s;
    }

    & .vs-featureh5-1--content:hover .vs-featureh5-1__title {
        color: var(--vs-theme-color2);
    }

    & .vs-featureh5-1--content:hover .vs-featureh5-1__border {
        border-color: var(--vs-theme-color2);
    }

    & .vs-featureh5-1--content:hover .vs-featureh5-1__arrow {
        background-color: var(--vs-theme-color2);
    }

    & .vs-gallery--row.home5-row {
    }

    @media (max-width: 767px) {
        & .vs-gallery--row.home5-row {
            grid-template-rows: repeat(3, 1fr);
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
    }

    & .vs-gallery--row.home5-row {
    }

    @media (max-width: 575px) {
        & .vs-gallery--row.home5-row {
            grid-template-rows: 1fr;
            grid-template-columns: 1fr;
        }
    }

    & .vs-gallery--col1.home5-col1 {
    }

    @media (max-width: 767px) {
        & .vs-gallery--col1.home5-col1 {
            grid-area: auto;
        }
    }

    & .vs-gallery--col1.home5-col1 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col1.home5-col1 {
            grid-area: auto;
        }
    }

    & .vs-gallery--col2.home5-col2 {
    }

    @media (max-width: 767px) {
        & .vs-gallery--col2.home5-col2 {
            grid-area: auto;
        }
    }

    & .vs-gallery--col2.home5-col2 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col2.home5-col2 {
            grid-area: auto;
        }
    }

    & .vs-gallery--col3.home5-col3 {
    }

    @media (max-width: 767px) {
        & .vs-gallery--col3.home5-col3 {
            grid-area: 1 / 2 / 3 / 3;
        }
    }

    & .vs-gallery--col3.home5-col3 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col3.home5-col3 {
            grid-area: auto;
        }
    }

    & .vs-gallery--col4.home5-col4 {
    }

    @media (max-width: 767px) {
        & .vs-gallery--col4.home5-col4 {
            grid-area: 3 / 1 / 3 / 3;
        }
    }

    & .vs-gallery--col4.home5-col4 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col4.home5-col4 {
            grid-area: auto;
        }
    }

    & .vs-team--style4 {
        background: transparent;
        border-radius: 0px;
        padding: 0px;
        position: relative;
        box-shadow: none;
        text-transform: capitalize;
    }

    & .vs-team--style4 .vs-team__img {
        border-radius: 50%;
        overflow: initial;
    }

    @media (max-width: 991px) {
        & .vs-team--style4 .vs-team__img {
            display: flex;
            justify-content: center;
        }
    }

    & .vs-team--style4 .vs-team__img img {
        border-radius: 50%;
        transform: none;
    }

    @media (max-width: 991px) {
        & .vs-team--style4 .vs-team__img img {
            width: auto;
        }
    }

    & .vs-team--style4 .vs-team__img::before {
        display: none;
        content: "";
    }

    & .vs-team--style4 .vs-team__heading {
        justify-content: center;
        font-size: 30px;
    }

    & .vs-team--style4 .vs-team__share {
        position: relative;
    }

    & .vs-team--style4 .vs-team__share--list {
        list-style: none;
        margin-bottom: 0px;
        position: relative;
        justify-content: center;
        gap: 10px;
        background-color: transparent;
        padding: 0px;
        border-radius: 0px;
        left: 0px;
        transform: none;
        opacity: 1;
        visibility: visible;
        transition: 0.4s;
    }

    & .vs-team--style4 .vs-team__share--list > li {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    & .vs-team--style4 .vs-team__share--list > li > a {
        color: var(--vs-title-color);
        background-color: rgba(var(--vs-title-color-rgb), 0.2);
        --icon-size: 40px;
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 16px;
        transition: 0.4s;
    }

    & .vs-team--style4 .vs-team__share--list > li > a: hover {
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color2);
    }

    & .vs-team--style4 .vs-team__share--list > li > a: hover {
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color2);
    }

    & .vs-team--style4:hover .vs-team__heading a {
        color: var(--vs-theme-color2);
    }

    & .vs-team--style4:hover .vs-team__img img {
        transform: none;
    }

    & .vs-team--style4:hover .vs-team__role {
        color: var(--vs-body-color);
    }

    & .vs-team--style4 {
    }

    @media (max-width: 1199px) {
        & .vs-team--style4 {
            margin-bottom: 50px;
        }
    }

    & .vs-team--style4 {
    }

    @media (max-width: 991px) {
        & .vs-team--style4 {
            margin-bottom: 50px;
        }
    }

    & .contact-img-overlay {
        position: absolute;
        inset: 0px;
        z-index: -1;
    }

    & .vs-contact--ele1.home-5 {
    }

    @media (max-width: 1500px) {
        & .vs-contact--ele1.home-5 {
            top: 50px;
            right: 50px;
            width: 80px;
        }
    }

    & .feedback-image.home-5 {
    }

    @media (max-width: 575px) {
        & .feedback-image.home-5 {
            height: 480px;
        }
    }

    @media (max-width: 374px) {
        & .feedback-image.home-5 {
            height: 400px;
        }
    }

    & .vs-blog--style4 {
        margin: 0px;
        padding: 0px;
    }

    @media (max-width: 767px) {
        & .vs-blog--style4 {
            display: flex;
            justify-content: center;
        }
    }

    & .vs-blog--style4 .vs-blog__inner {
        padding: 0px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        background-color: var(--vs-white-color);
    }

    & .vs-blog--style4 .vs-blog__img {
        margin: 0px;
    }

    & .vs-blog--style4 .vs-blog__img img {
        width: auto;
    }

    & .vs-blog--style4 .vs-blog__content {
        padding: 30px 0px 0px;
    }

    & .vs-blog--style4 .vs-blog__desc {
        max-width: 350px;
        letter-spacing: 0.3px;
    }

    & .vs-blog--style4::before {
        display: none;
    }

    & .vs-blog--style4:hover .vs-blog__inner {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        background-color: var(--vs-white-color);
    }

    & .vs-header.bg-transparent {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
    }

    & .vs-hero--style6 .vs-hero__shape-banner {
        position: absolute;
        left: 0px;
        bottom: -1px;
        width: 100%;
        z-index: 2;
    }

    & .vs-hero--style6 .vs-hero__shape-banner img {
        width: 100%;
    }

    & .vs-hero--style6 .vs-hero__anim1.manimated {
        animation-name: slideinleft;
        animation-fill-mode: both;
        opacity: 1;
        animation-duration: 1s;
    }

    & .vs-hero--style6 .vs-hero__bg {
        animation: 2s ease-in-out 0s 1 normal none running slideindown;
    }

    & .vs-hero--style6 .vs-hero__content {
        padding: 300px 0px 230px;
    }

    @media (max-width: 1300px) {
        & .vs-hero--style6 .vs-hero__content {
            margin-right: -50px;
            padding: 270px 0px 200px;
        }
    }

    & .vs-hero--style6 .vs-hero__content {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style6 .vs-hero__content {
            padding: 250px 0px 200px;
        }
    }

    & .vs-hero--style6 .vs-hero__content {
    }

    @media (max-width: 991px) {
        & .vs-hero--style6 .vs-hero__content {
            padding: 200px 0px 80px;
            margin: 0px;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        & .vs-hero--style6 .vs-hero__content {
            padding-bottom: 0px;
        }
    }

    & .vs-hero--style6 .vs-hero__title--main {
        font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
        margin: 0px 0px 15px;
        line-height: 1.15;
        text-transform: capitalize;
        color: var(--vs-title-color);
    }

    @media (max-width: 1199px) {
        & .vs-hero--style6 .vs-hero__title--main {
            font-size: 70px;
        }
    }

    & .vs-hero--style6 .vs-hero__title--main {
    }

    @media (max-width: 991px) {
        & .vs-hero--style6 .vs-hero__title--main {
            font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
        }
    }

    & .vs-hero--style6 .vs-hero__title--main {
    }

    @media (max-width: 575px) {
        & .vs-hero--style6 .vs-hero__title--main {
            font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style6 .vs-hero__title--main span.main-sub {
        color: var(--vs-theme-color1);
        font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
        display: inline;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style6 .vs-hero__title--main span.main-sub {
            font-size: 70px;
        }
    }

    & .vs-hero--style6 .vs-hero__title--main span.main-sub {
    }

    @media (max-width: 991px) {
        & .vs-hero--style6 .vs-hero__title--main span.main-sub {
            font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
        }
    }

    & .vs-hero--style6 .vs-hero__title--main span.main-sub {
    }

    @media (max-width: 575px) {
        & .vs-hero--style6 .vs-hero__title--main span.main-sub {
            font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style6 .vs-hero__title--main span {
        display: block;
        color: var(--vs-title-color);
        font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
    }

    @media (max-width: 1199px) {
        & .vs-hero--style6 .vs-hero__title--main span {
            font-size: 40px;
        }
    }

    & .vs-hero--style6 .vs-hero__title--main span {
    }

    @media (max-width: 767px) {
        & .vs-hero--style6 .vs-hero__title--main span {
            font-size: clamp(2.2rem, 1.2rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style6 .vs-hero__title--sub {
        font-size: 40px;
        font-family: var(--vs-special-font);
        margin: 0px 0px 15px;
        color: var(--vs-title-color);
    }

    @media (max-width: 1199px) {
        & .vs-hero--style6 .vs-hero__title--sub {
            font-size: 30px;
        }
    }

    & .vs-hero--style6 .vs-hero__title--sub {
    }

    @media (max-width: 767px) {
        & .vs-hero--style6 .vs-hero__title--sub {
            margin: 0px;
        }
    }

    & .vs-hero--style6 .vs-hero__desc {
        font-size: 20px;
        margin: 0px 0px 40px;
    }

    & .vs-hero--style6 .vs-hero__search {
        position: relative;
        width: 570px;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style6 .vs-hero__search {
            width: 90%;
        }
    }

    & .vs-hero--style6 .vs-hero__search {
    }

    @media (max-width: 991px) {
        & .vs-hero--style6 .vs-hero__search {
            margin: 0px auto;
        }
    }

    @media (max-width: 480px) {
        & .vs-hero--style6 .vs-hero__search {
            display: none;
        }
    }

    & .vs-hero--style6 .vs-hero__search form input {
        text-transform: capitalize;
        height: 80px;
        width: 100%;
        border: 2px dashed rgba(18, 21, 31, 0.1);
        background-color: var(--vs-white-color);
        padding-left: 30px;
        color: var(--vs-title-color);
        box-shadow: rgba(18, 21, 31, 0.2) 0px 4px 5px;
        border-radius: 50px;
        font-weight: 700;
        letter-spacing: 0.3px;
    }

    & .vs-hero--style6 .vs-hero__search form input: focus {
        outline: none;
    }

    & .vs-hero--style6 .vs-hero__search form button {
        position: absolute;
        top: 16%;
        background-color: var(--vs-theme-color2);
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        font-size: 18px;
        font-weight: 700;
        right: 12px;
        border-radius: 50px;
        color: var(--vs-white-color);
        font-family: var(--vs-title-font);
        text-transform: uppercase;
        cursor: pointer;
        width: 175px;
        height: 56px;
    }

    & .vs-hero--style6 .vs-hero__brand-profile {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: 80px;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style6 .vs-hero__brand-profile {
            margin-top: 50px;
            width: 90%;
        }
    }

    & .vs-hero--style6 .vs-hero__brand-profile {
    }

    @media (max-width: 991px) {
        & .vs-hero--style6 .vs-hero__brand-profile {
            width: auto;
            justify-content: center;
        }
    }

    & .vs-hero--style6 .vs-hero__brand-profile {
    }

    @media (max-width: 575px) {
        & .vs-hero--style6 .vs-hero__brand-profile {
            display: none;
        }
    }

    & .vs-hero--style6 .vs-hero__brand-profile .ms-n2 {
        margin-left: -15px;
    }

    & .vs-hero--style6 .vs-hero__brand-profile .ms-n3 {
        margin-left: -20px;
    }

    & .vs-hero--style6 .vs-hero__brand-profile ul {
        list-style-type: none;
        padding: 0px;
        margin: 0px;
        display: flex;
    }

    & .vs-hero--style6 .vs-hero__brand-profile ul.brand {
        display: flex;
        gap: 30px;
        margin-right: 25px;
    }

    & .vs-hero--style6 .vs-hero__brand-profile ul.profile li: nth-last-child(1) a {
        background-color: var(--vs-title-color);
        width: 60px;
        height: 60px;
        line-height: 58px;
        color: var(--vs-white-color);
        font-size: 20px;
        text-align: center;
        border: 3px solid var(--vs-white-color);
        border-radius: 50%;
        display: block;
        font-weight: 700;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style6 .vs-hero__brand-profile ul.profile li:nth-last-child(1) a {
            width: 50px;
            height: 50px;
            line-height: 48px;
            font-size: 16px;
        }
    }

    & .vs-hero--style6 .vs-hero__brand-profile ul.profile li: nth-last-child(1) a {
    }

    @media (max-width: 991px) {
        & .vs-hero--style6 .vs-hero__brand-profile ul.profile li:nth-last-child(1) a {
            width: 60px;
            height: 60px;
            line-height: 58px;
            font-size: 20px;
        }
    }

    & .vs-hero--style6 .vs-hero__img-shape {
        position: absolute;
        right: auto;
        left: 58%;
        top: 27%;
        animation: 2s ease-in-out 0s 1 normal none running slideinup;
    }

    @media (max-width: 1400px) {
        & .vs-hero--style6 .vs-hero__img-shape {
            left: 56%;
        }
    }

    @media (max-width: 1300px) {
        & .vs-hero--style6 .vs-hero__img-shape {
            width: 36%;
            left: 58%;
        }
    }

    & .vs-hero--style6 .vs-hero__img-shape {
    }

    @media (max-width: 991px) {
        & .vs-hero--style6 .vs-hero__img-shape {
            position: relative;
            width: 60%;
            left: auto;
            margin: 0px auto 150px;
        }
    }

    @media (max-width: 480px) {
        & .vs-hero--style6 .vs-hero__img-shape {
            width: 80%;
        }
    }

    & .vs-hero--style6 .vs-hero__img-shape img.main-img {
        position: relative;
        width: 100%;
        height: 470px;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTA1IiBoZWlnaHQ9IjQ3MCIgdmlld0JveD0iMCAwIDUwNSA0NzAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik00OTEuOTM2IDEyLjA1MTFDNDc0LjM2OSAtNy4wMTczMiA0NDUuOTA4IC0wLjA3NTY2MzIgMzk5LjExNyA5Ljc4MjQ0QzI0My43ODkgNDIuNTExMSAyOC4wMzI3IDEwMC4zNTcgOC45NDAxNCAxMzIuMTQxQy0xNi43NTgxIDE3NC45MjggMTcuNjgxNCAzODAuMDQ1IDUyLjM3MDkgNDIxLjgyMkM4Ny4wNjMxIDQ2My41OTcgMzU5LjYyMyA0OTQuMTQgNDE1LjY1MyA0NDMuMjE1QzQ1Ni43ODIgNDA1LjgzNSA0ODkuOTQ0IDIzMC4wNzUgNTAxLjAxNCA5Ni41ODg5QzUwMy44NCA2Mi40NzMzIDUwOS41NCAzMS4xNTU4IDQ5MS45MzYgMTIuMDUxMVoiIGZpbGw9IiNEMTgxMDkiLz4KPC9zdmc+Cg==");
        mask-size: contain;
        mask-position: center top;
        mask-repeat: no-repeat;
        object-fit: cover;
        z-index: 1;
    }

    @media (max-width: 1300px) {
        & .vs-hero--style6 .vs-hero__img-shape img.main-img {
            height: auto;
        }
    }

    & .vs-hero--style6 .vs-hero__img-shape img.border-img {
        position: absolute;
        inset: -2px 0px 0px;
        transform: scale(1.19);
    }

    @media (max-width: 1300px) {
        & .vs-hero--style6 .vs-hero__img-shape img.border-img {
            top: -3px;
            transform: scale(1.18);
        }
    }

    & .vs-hero--style6 .vs-hero__img-shape img.border-img {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style6 .vs-hero__img-shape img.border-img {
            top: -2px;
        }
    }

    & .vs-hero--style6 .vs-hero__img-shape::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        background-color: var(--vs-theme-color2);
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTA1IiBoZWlnaHQ9IjQ3MCIgdmlld0JveD0iMCAwIDUwNSA0NzAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik00OTEuOTM2IDEyLjA1MTFDNDc0LjM2OSAtNy4wMTczMiA0NDUuOTA4IC0wLjA3NTY2MzIgMzk5LjExNyA5Ljc4MjQ0QzI0My43ODkgNDIuNTExMSAyOC4wMzI3IDEwMC4zNTcgOC45NDAxNCAxMzIuMTQxQy0xNi43NTgxIDE3NC45MjggMTcuNjgxNCAzODAuMDQ1IDUyLjM3MDkgNDIxLjgyMkM4Ny4wNjMxIDQ2My41OTcgMzU5LjYyMyA0OTQuMTQgNDE1LjY1MyA0NDMuMjE1QzQ1Ni43ODIgNDA1LjgzNSA0ODkuOTQ0IDIzMC4wNzUgNTAxLjAxNCA5Ni41ODg5QzUwMy44NCA2Mi40NzMzIDUwOS41NCAzMS4xNTU4IDQ5MS45MzYgMTIuMDUxMVoiIGZpbGw9IiNEMTgxMDkiLz4KPC9zdmc+Cg==");
        mask-size: contain;
        mask-position: center top;
        mask-repeat: no-repeat;
        transform: scale(1.1);
    }

    & .vs-hero--style6 .vs-hero__img-shape img.rabbit-img {
        position: absolute;
        right: 70px;
        z-index: 1;
        bottom: 45px;
    }

    @media (max-width: 1300px) {
        & .vs-hero--style6 .vs-hero__img-shape img.rabbit-img {
            right: 14%;
            bottom: 14%;
            width: 80px;
        }
    }

    @media (max-width: 420px) {
        & .vs-hero--style6 .vs-hero__img-shape img.rabbit-img {
            right: 10%;
            width: 60px;
        }
    }

    & .vs-hero--style6 .vs-hero__ele1 {
        top: 26%;
        right: -130px;
        text-align: center;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style6 .vs-hero__ele1 {
            top: 22%;
        }
    }

    & .vs-hero--style6 .vs-hero__ele2 {
        right: -90px;
        top: -80px;
    }

    @media (max-width: 1300px) {
        & .vs-hero--style6 .vs-hero__ele2 {
            right: -65px;
        }
    }

    & .vs-hero--style6 .vs-hero__ele3 {
        position: absolute;
        top: 65%;
        right: auto;
        left: 100px;
        z-index: 2;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style6 .vs-hero__ele3 {
            top: 65%;
            left: 40px;
        }

        & .vs-hero--style6 .vs-hero__ele3 img {
            width: 50px;
        }
    }

    @media (max-width: 1400px) {
        & .vs-hero--style6 .vs-hero__ele3 {
            display: none;
        }
    }

    & .vs-hero--style6 .vs-hero__ele4 {
        position: absolute;
        top: 58%;
        right: 11%;
        z-index: 2;
    }

    & .vs-hero--style6 .vs-hero__ele4 img {
    }

    @media (max-width: 1500px) {
        & .vs-hero--style6 .vs-hero__ele4 img {
            width: 60px;
        }
    }

    & .vs-hero--style6 .vs-hero__ele4 {
    }

    @media (max-width: 1500px) {
        & .vs-hero--style6 .vs-hero__ele4 {
            top: 62%;
            right: 30px;
        }
    }

    & .vs-hero--style6 .vs-hero__ele4 {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style6 .vs-hero__ele4 {
            display: none;
        }
    }

    & .vs-hero--style6 .vs-hero__ele5 {
        position: absolute;
        bottom: 12%;
        right: 35%;
        z-index: 2;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style6 .vs-hero__ele5 {
            bottom: 12%;
            right: 35%;
        }
    }

    & .vs-hero--style6 .vs-hero__ele5 {
    }

    @media (max-width: 991px) {
        & .vs-hero--style6 .vs-hero__ele5 {
            bottom: 5%;
        }
    }

    & .vs-featureh5 {
        gap: 20px;
    }

    & .vs-featureh5 .vs-featureh5__icon.h6 img {
        width: auto;
    }

    @media (max-width: 991px) {
        & .vs-featureh5 .vs-featureh5__icon.h6 img {
            margin-right: 10px;
        }
    }

    & .vs-featureh5 {
    }

    @media (max-width: 1199px) {
        & .vs-featureh5 {
            gap: 10px;
        }
    }

    & .vs-about3__ele1-h6 {
        position: absolute;
        top: 65%;
        right: -4%;
        width: 52px;
        z-index: 2;
    }

    @media (max-width: 1199px) {
        & .vs-about3__ele1-h6 {
            display: none;
        }
    }

    & .vs-about3 {
    }

    @media (max-width: 1199px) {
        & .vs-about3 img.img-right.home6 {
            height: 95%;
        }
    }

    & .vs-course--category {
        margin-bottom: -10px;
    }

    @media (max-width: 575px) {
        & .vs-course--category .course-width {
            width: 50%;
        }
    }

    @media (max-width: 480px) {
        & .vs-course--category .course-width {
            width: 100%;
            margin-bottom: 20px;
        }
    }

    & .vs-course--content {
        position: relative;
        padding: 50px 40px 40px;
        background-color: var(--vs-white-color);
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjc4IiBoZWlnaHQ9IjE4OCIgdmlld0JveD0iMCAwIDI3OCAxODgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xOTUuODk0IDE2Ny42NzZDMTk0LjkyNSAxNjcuNjc2IDE5My45NDcgMTY3Ljc2MSAxOTIuOTg4IDE2Ny42NjNDMTgyLjczOSAxNjYuNjE2IDE3NC43NDYgMTY5LjAzIDE2Ni42OTMgMTc2LjkxNEMxNTAuNzY5IDE5Mi41MDQgMTI2Ljk2NCAxOTEuMzgyIDExMC4wMTIgMTc1LjI0MkMxMDMuODM3IDE2OS4zNjQgOTcuODAyNSAxNjcuMjcgODkuNTQzMiAxNjcuNDkzQzc1Ljg1ODQgMTY3Ljg2MiA2Mi4xNjIxIDE2OC42MDkgNDguNzA0NyAxNjMuNzc4QzE4LjEwMTIgMTUyLjc5IC0yLjExNTkzIDEyMi43NyAwLjE3Njc3NSA5MC40NDMxQzIuNjc0NTYgNTUuMjI2MyAyNi4zNjY4IDI3Ljg0NSA1OS40NDYyIDIxLjYzODFDNzEuOTc0MiAxOS4yODc0IDg0LjU2MDMgMjAuODU4NyA5Ny4xMTMyIDIwLjUyNzNDMTAxLjAxMiAyMC40MjQyIDEwMy43NTYgMTkuMzk5OCAxMDYuNTI4IDE2LjU1OUMxMjcuOTQzIC01LjM4NDMyIDE1MS4xMTMgLTUuNTMzMjIgMTcyLjYwNCAxNi4xOThDMTc1Ljc5MSAxOS40MjA4IDE3OC45NTQgMjAuNDc4MSAxODMuMzUyIDIwLjUzMjhDMTk2Ljg0MSAyMC43MDE3IDIxMC40NSAxOS4wMDEgMjIzLjc1NCAyMi44MDQ0QzI1OC4yNDkgMzIuNjY2NSAyNzguODU1IDYwLjc3NjIgMjc3Ljk3MyA5Ni44Nzk5QzI3Ny4xNDQgMTMwLjgxNCAyNTcuMDMzIDE1Ni41ODUgMjI0LjY4NyAxNjUuMzcyQzIxNS4yMDUgMTY3Ljk0OCAyMDUuNTU4IDE2Ny43MjYgMTk1Ljg5NCAxNjcuNjc2WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
        width: 100%;
        height: 190px;
        mask-size: contain;
        mask-position: center top;
        mask-repeat: no-repeat;
        object-fit: cover;
        text-align: center;
        transition: 0.4s;
    }

    @media (max-width: 1300px) {
        & .vs-course--content {
            padding: 38px 30px 0px;
        }
    }

    & .vs-course--content {
    }

    @media (max-width: 1199px) {
        & .vs-course--content {
            padding: 30px 13px 0px;
            height: 155px;
        }
    }

    & .vs-course--content {
    }

    @media (max-width: 767px) {
        & .vs-course--content {
            padding: 38px 30px 0px;
            height: 180px;
        }
    }

    @media (max-width: 480px) {
        & .vs-course--content {
            padding: 50px 40px 40px;
            height: 190px;
        }
    }

    & .vs-course--content::after {
        content: "";
        position: absolute;
        left: 10px;
        top: 10px;
        width: 93%;
        height: 170px;
        background-color: var(--vs-title-color);
        opacity: 1;
        mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQYAAACpCAYAAADJCJOzAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABY5SURBVHgB7d37UxtXlgfw2w91S0JYgBBIAoxAgIWArB128iCJi5nM1Nb+Afkr/fvObtXMFptJ7E12PZUdGxkciGULkAEBAglJ3eruuzqNm+BnMOahVn8/VYnUSBibbt2+99xzz5UYeMb8/Lzc5Nvd3TVv3PiiM9g9NDTQn/QXi88qw5NfxXt7r9/oCQ+ae3v5w1Tq9lBX/1BMjgzp1Z28Tu/v7lYF+l4GbU9k0NbGxsZUepydnQ3m1vXphpAYdV7z+2XlgGu6/dyyKoYgbFSrWuXoVUOj//dJe/aj5ZMGuRyb/uabbyQ67m02FAzalsCgbQ2NzaUUWez6eCb+0507d8yxj+YHLZ9c/uX+X/bZe8pk5kP7VlVdX/pxhxqZ0mFg0mKs/GTpu8cM2o7MoG3QUKFQaPRpmq+ayy2ULDlQqjRqZef1lX8srLEzymYXqCdh9ybu379fHZ3944pSqVl0nE5/HdGYFpGM509XVlY0Bq6HhqGNNBuFQHM4EJckPU/H60t/3aHHO6vs3J3sddT9pilpslKvR5tD0xUWj88GC4X7VQYAV6MZFEyMpj+fccb+zuNVGRv7VzWV/nI2mf4sycC1EHx0KRo20KMuqj7DlA4XFxftBoFiCewKraz8WWOKlZcaot1jcP6e4C4IProMfdDyRStuGVbADYG/0fTtGcYabHZmMHvVjRacHnoMLhONRjkzxbCkyK4Yw/u4meNM0tAoAFyAkZFP+1OpuT56ftVxhLOieMhI+ssJJ7cCWhd6DC5AWYfNUMKgpbAAHbv17muo3BAFWWniDADOhiL8zt01mpkPsTZC/7Z0+pMIg5aEHkOLog+OJR9OmHJsmI63jxKM2od/f7DBlCRSq1sTGoYWdetWyODM0hoVM8/a0MrDu6t1puaKy9+XGQC8G2UNDjWDdMxDUtO3h7z2b2516DG0EAoyqiF1QhF5j1tnHs5CMblB/+ZMJqMwAHgZNQYjk38Y9uIHJJP5xv4337w535VMzncxAK+iLEaa26fl0QxslOdAay2coCRSqq+GZ7qrhC4yTYv4K5VCg+7OhzwS6w0PBqliER1XrWvDwfBoZ3nv6QGN9aODqZFgOBl80zF1+zujA4lYb0IqFtdr9HpkaKy3e3BULj3P1Z3jWGRI2HlRASnUl4w4P4/+PnIoMWJxMSqIQuNPv/+0lM1mPT+/Xyo+2wn2juuby/9Vsr/gS3wUTYx07249LTrnLNQbU8tv+J1Tb8PfFYv1R4ZN+p3TcvBQb39/yD+kHRysGbSwq7s32ef8rqkR6o0Ndu1u5ffoz+odHB6IhK8rdH7ouL9/pNvv7+N0vdC1k8vlLOYRbR1joExBuhic8Xr+ufFPwXBg0nld5jzBFGZnEy4uMkkS/CFJMOwubeJFKCwQOHp0jn0KN+hRC/js9zdkf5COxXBXwP7z6vWuk8eaYNpz9XVRDNGx5ROPu8n1Et9Qxd0HtOYBKcO/cpaL03njsrR5WDuqA0HniH6HClPs3+mrv/NCWVfonGxqPvt8HzQaQTp2/lxZFl+7ERqGZf/e6fza7w3Idt6I0hUMM584FAyq9vevFfVh6skMDn5uXxHU6CRvYsjjChTZTk3OTztj9PHp25MnjweaJ3N09o9h5/1eCvDB+6Prw7lGqIIV1cV0ju2l5eNzN+k55ZzQDehGG+VkuHp1Ja0fYKovTHP9a2v3amPTcynTEKX6fm0NhULgIlEDce/emkLXHTUIGhdGBckqPXl09ykdC0JDMYzdilsrWrkqsOOULmv2M8uUGMPVQEBgBqt3iPa/g5JmGMAleDH0q9Hz5aMkrf+jxuLJI2fYqCTqck+u+XXNSWt3UyPhiq60E/iRryUTlsVjhsGrh80AUamYK1GwisqbM4Ar5gSP94vPKvG+T3f8wrq+vb1tdvVNZ5jYEe/wD5QoCMpcoKV7DHYXzeKp1TWdWuRVxYhuTc2wAgJ10Oqy2TvHNyu90ljx96iRtbXvakdrYEoTCjM3lpZ+3GEtquV6DPa8dVfyGk0//eEPn5mF7cPOqux7Xt3ONVvfrIkpPXAb6iXsbuYO6HlPz7jMJN5jCLw5NZvfP7kJEIO3o0gvRXwxYwDtzLm+k+n5JBXzbbUl6C2Rx0CzC06ApiEF8jS3j+ECtDPn+g6K0Q0uBA5EsWKvMm2VKc8rn66kFlNiRoS2R3v66G8FBuBRrbTD15X0GGhc5WSNUYt5IMrLaBTA62iHL6pRwf3yFh1T7+Gq6mNeeo+Bxlb3H2xmBGYpWsXMUoIIA4DXOKX3/eL+cjPo3r5T8sfppKm5PifnHADejJai00bE9Jx62ZfZe7iUHgPN3TKlktJ0U8uvIDsR4H1RlStuNLosv5rP/bRQYhfsUmIMihLinEuiFFJaNqEDoJWpVv+mJPuMoL7l/jVAJ6chAeB82HVBx+ZSF5nrc2E9Bpp1oE1SGr54DwOAcxMOdwUUWez6+9/X3bcvB7VmA9hQBOBCnOwtXESv/NyDj5Sw5GfVcisvEAFoF5OTX8VrhtmvVbTH51mD5FyHEjR8oCzGmqCiDDjAJRCE2I4gidXu7lprL+dutz0WAdyCgpL0HzsH5xLVpDnWQOdwmKon0/JoBgCXLp4cH2v2HvoTsc5dKhDDPsAHDyUoecnUjIhTPRkArobP6l+lqtotkz6N2gkArYU2MvqQ2Yozz0o4JapEY/uxWyvhArQj+mwawv6kyVn5rEsQzjyUMOXysCAIXFEUlFoDaCErK3/WWIeS43W+wS4bDR+wOzFAa6NZirPsmPXeQwla/6Cq3EACE0Dro02YDI11ynzr0fsM+d9rKEFjF1r/oAkychUAXECxBvI0U3HhcUAqsoIhBID7nFfy00vaacNOAK+h6UvamuG0U5inGkocTX8IE06ZKQBwF0lKFH2qrNXr0VN95k+1RZ0kHSg6E8oBY2uLAYDrvNgy7xEDAHhVOv11ZHz69uRvve83uxUj6S8nzjIPCgCth/O6bhlW8LeKKL1zjQO1LpyZ/bpRPygX17H/A4DL7ezk9Q7/QGn9lx8O2IcYaDYODADaCk0ovGskIL79G4+mNdaX/ooMR4A2Q2ud2KGefNvK6Lc2DJacmKD4AgOAtqNwXqCMyLftKv/G6UrqZnChxjVeR28BoA0tL39fbj6U3/b6pW9qCwCtwa6+1hxSlJu9h+JRQ3FMfNObMT0J0P5u3QoZ3LSCXaov/OprrzUMsqyHpLqRwkIpgPZG8QWjxpdv3YgWfvPN1FtIpj9LMgDwjPn5+VMtjwAAjxhN3555dQbypaEEZTqmsd8kgKeIirhnGNZL05YvdR901khwplClF0xTAnjEyj8W1l792nGPgTKgNObb4H4ZS6sBPIaqO6EYEwC8hGIMqcm5aef4uMdA+08ifwHAm3Sm7gg+peQcH8cYaP9JwbQbihIDAE95dbGk3WOg+IJ4LfikXtK2GQB40slZSbvH8GKF1T4DAM8y5UafYSjUFuzYDQOVljYMbqyu3sWMBIBHNWSxIKpHe9HaDYPlk8K6aVAVWTQMAB6V+2nh5eCjzxLztTo3GQB4lr1/jLwXNyrCpt0wZLMLFQYAnqYoIc6tcqQR0ssCZTtVTd7XqZTy2WxWZwDgWYOZf+m5xq5V5GbQMaD4xK6pqalcs2FgAOBda9n/2KVHWVUHSgfswHhbUUgA8A7KgK7VUPMRAE4Ym55LNTRZEamFSKXm+hgAeF60k2+YtUZOZqYY1gVG288hhwHA4+7du2dvRSmrAsupCuq+AkAzxkCjB0XpQ4wBAI4NT34VlzlPiFSgAXUeAYB8Mh3bUsXdB7LIWGdNUMsMADzvRdqCKauivKyyKDIeAQAxBgB43XGMYXz69uRk84ABgOcdxxgsU5RqvK4yAPC8X2MMwtbj7COsqgSAo5Rorc6YSEutsaElABDTECVZbv6XTM8n85t6qPm1hwwAPO2fZ+Kr9ChzwdQYU0IMADzPKb+A6UoAsNH+Mv/z0/oMayg5ib4wNjam9vT0yLu7uyjWAuBRptkdYqIYrSjitkitBJdj05z3hRkAeNby8vdlrWJm56ei9tLro51uUawFAAAATqIOQjL9WZKe25vaUh4D9RhoWMEAwJO4aQVlxW/Qc7thKJfLCvOJQ3cfPO1iAOBJv7s58EAxoi+XeBz7aH4wk5lHPgMAAAAcrZGgGINzfLxGwtnQssKlnWJz2oIBgGcITFaYYFSdY9F5cutWyGCm2NUhihhOAHjMzw+/fRQQBgpvfHEg/XUEMxMA3kKZz6d6I5ZhA3gHVXEbGptLnfya+OqbRtO3Z9Z2WYwBgCdQFTdLNkonv/ZawyAq4p5W1VHqDcAjVh8tPJybGS69802IMQB4x9s2m3qtEchms5xiDKo6ENvZyWPaEqBNJW/Od3FDGA32xvRycb128jXxTd9QKDQChiDEsXUdQHuzGCuvL/24c+pvoEVVmUwG22ADwOswdQnQfm7c+CLxrhGB+K5vTk3fHnr2XJtkANA27OUPzVCBJshvzXJ+Z8MgN8ySZUniqTOjAKDlraz8WaszNRcQSgV2Vpi+BGgf5xoaGBn5tH+oOSZhAOBqlPp8cnn124jsFPx+RVSaY5LBwc8DDABciWILik8J6Ew//fTku9BwIorqTgDwJtTi0LCCAYCr/Nb05KtONZRw+HyVHlH1Dfbe+KKTAYArONOThhI8dSjgvRqG6enYVvMHbPz+o0SVAYArONOTt25Ezz49eVo3b86j1DxAi7txxt79mXIU6IfVTT4eCCfl8t7TAwYALYfiCs0efrInPGju7eUP3+d732so4aDNL5vTlxsNVdxjANCSJClRpKH/6urdLXbZKLBxA8FIgJZBn8kPXcZwph7DS/z7g5rFU1iiDXD1qFGw5MMJU44Nsw/wwQ2DYg3k5YBSzGazOgOAK0X7w3BmaY2KmWetgpKfsBIT4PLR4qjkOc4UfvhQ4gVKmxb9gajgT4wyALhUa1vmhFQ3zm1If24Nw507d0xViD6ulRo5BgCXysfZno/pufMa0gvsAjgBEKFhbF7JVAmAB9DnTJMOIvnl7zfYOTu3HsNJihLikswMoUPBTAXABaGbryLyHtcWU6KK06gEBXA+nCpM8fhs8KLSBC5kKHESJT8ZgjBB9eufLH33mAHAmVCDkHvOBkWmdc7ODGYprscuyIUMJU6i9GmZ88fOvCq1cgwA3ls0GuU+2QoIDWHzIhuFS0fBkuT43M1k+rMkA4DfRL0E2saBhuN0fFlD8gvvMZxE68IDsrQpK36DjrGZDcC7/fxcCjPD6jMUyW4Q2qqn8DZUrZaq1iIwCfArp5fgfC6uogjzlX4gO3rHmU+0Or7/9t+LdEzp1Lu7u+3fIgK8g+AfHLMMfu3xVrlS3cnrBwdrBrtkFz4rcVrp9NcRnVUTll/N535aKDEAj6AeQqHQ6DMMblBCIAXou7trxlUuTLzUGMO7iGJPmQuBg0Od2a0jajyAVzQbhQAVa9UF1nl0fL+K1cpvQGOrVPrL2dH05zOIP0C7sa/vZgyBrm/na9jM6ZQymfnQwIs6+NR7oClO5ECAW9FwYaA5XHZudBR4H5mcG8aN7wPQLzQ1OT/tNBS07hx1H6DVnZyOH5ueS1EvuCvpjurqLRNjeJf1pb/urD5aeDg3M2wHJcW6NcTl2LTT2mIDHGg1VLQot65PO4lJUkPYOhDl5VLOHYF1V3VjmgEZTo/xvk9Kulqv3P3Pf6tRNqUq6ZNdvdc7S8VnO3QsRvuDn8ykrFwuZzGAC2SvX2heZ7TPSmfv9ZHOyHXffvFZpSOW9qt+saFVjBJNN+40px2r2znXBBRdOb7Z3s6apee5Oj3f3V0xu4cnqnqjqpWL67Xu7r6IXxJHy7oo7G7mDmi/vnAs1euXeo1KpdCgOEUs1iEiXwJOw/ng03Ma0vaF4520R8Ps7GxQDY1M7Vd5iG5I4fCAr8FZB/PL+3RtlotPanT9XUUOwnloi5TkX+7/Zd95/vHHAzuLi9tVZmzZrfMh9zU7FFaP0d25xwqM+cOBQc4CnZmM8oCmhManb0/S+35++O0jGpr874NCSpItc+Xh3VVqROQONW5yWd9Y/TZPQVC9Oa0kNqwSzTfb3URF6fPxamFp6cedVOr2kCkaES5Lm08f/a1AsRCfYcUbhl7LLf13jn4ODXuKy9+XGbwXOhc0jUfPKVuWtnOn4SUd09idHleXvrtPj3RO6w1z/7OPEpt0Pg3OK1TMhG4SGlMiKtN36Hw5x7wub+WaXXyaKWCmGNbK2ura2r0axbXyzw01k8nY14rPrA0xn0g3063R0VFtf3m7aPlk+1wuH53TtjmvbbdW4UUuecU5flHd5rjCTUCUNw6Yqnw8FTebJ5vRh9Z5bXHxqAdlGJbdm0gkGDvQZKV5u7AbGS3gk4S6cfyHm52Kzur1iukP2u+v+3zVgCJySWvYb6nUGmbA5Lro82l0THeZ0qEwERqfM393c+CBJ/Lez8Fo+vaMwCwl0330AVX9dI7qFWrI6XdIm6qcfH+9bug6Z4ZzPnWD23ftMutkCtPsx5PHFbVxdB5EQzMNq+Lk/fm4VNhr6NLHH0/Z10rQV8pOTU2Zq0vH19kaa1Mtk/noBXQh3/9lL2RWtSD1KOhrNG1FdzTV3NxZWVnRGNhZsPXm3bkiCqvUu6IuvCDK/POpa/toTC8HGoYrZA9dHu4MilzvVcXdB17OdqOx/NramkSN4+TkV/E6551Uw4O69AzAi5xpV5pRoR6E13I0MplvFBounMwEhKvlijyGdud0jyXpQBEFWeG+vnEvZMQ5CUDZ7B1dVMS9sqg+YQDwOrp7Onnz7VzIhmYZqJfgJABBa0GedouhHA1n7lsODqXDkevdf/r9pyUnuatdDAyM+rlohbUqf+7Wuf52htJqLYzLZlFssL7FxUVqwNsiGk+pwpK0U3ox7/+QQUvCrIRLUMrt5mZZd5J83IgSvmh/Rco7cKZroTUh+OgSh4YVD4YDk25cMObESn43Hi3XmZ5DowBwTmiWwll2TtOabpnSpL8rBRmHbnyRYOAaCD66BAUfaZEYPb/WNzhkcf9Q1/VU3VlM1qpUNawqAbH7UFQ23bS60OsQfHShoBjd0JVt41aza577iVKIP4nQoiDWIpzFZmXOCwUKMhYQZHQbBB9djtYVNJiWbKW9QVMfzfWZdTHeEPW19RZqsAA8hRYZUcSfnjfv1gnqQVxm5iT9rGR6PknbDzo/F7UM3Q0nrw1QURAn1nAtOhznTOrfLT7bbjKpwbiZThrnXc2KZhokKdHr9/fxH374i94bS0RMQSoN9IUOKR7SbglZXoOhRBvKZDIKrdSksb4hCBPOMINmCErSgTId99UWFhbeK9vQrmRUYiF6ThsC0QpInfNEpWHlN1fvbjFoK8hjaEPO8m3KLlRFeVlpBgHpmPP9cLjZUDzZNKN0TOsUqBqSU5af4hXDzQ+8Mwygkv1U3Zieb21FRUpOEuqGvbZhejq2RUvF0Si0J8xKtLlsduG4mpVT9k5lWy+mDWXV72dKSVFEKnunMS0ic9a5uLhIAUNTYLKi1Y+qWdEKyGhmfnl+Klp78msFIxRNaVP/D2xaYWjBZCo5AAAAAElFTkSuQmCC");
        mask-size: contain;
        mask-position: center top;
        mask-repeat: no-repeat;
        object-fit: cover;
        transition: 0.4s;
    }

    @media (max-width: 1199px) {
        & .vs-course--content::after {
            width: 91%;
        }
    }

    @media (max-width: 480px) {
        & .vs-course--content::after {
            width: 100%;
            margin: 0px auto;
            left: 0px;
        }
    }

    & .vs-course--content .vs-course__image {
        padding-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    @media (max-width: 1199px) {
        & .vs-course--content .vs-course__image {
            padding-bottom: 15px;
        }
    }

    & .vs-course--content img.icon-img1 {
        width: 46px;
        height: 45px;
        object-fit: contain;
        transition: 0.4s;
    }

    @media (max-width: 1199px) {
        & .vs-course--content img.icon-img1 {
            width: 40px;
            height: 39px;
        }
    }

    & .vs-course--content img.icon-img2 {
        width: 46px;
        height: 45px;
        object-fit: contain;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        left: 0px;
        right: 0px;
        margin: 0px auto;
        transition: 0.4s;
    }

    @media (max-width: 1199px) {
        & .vs-course--content img.icon-img2 {
            width: 40px;
            height: 39px;
        }
    }

    & .vs-course--content .vs-course__title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 0px;
        text-transform: uppercase;
        transition: 0.4s;
        position: relative;
        z-index: 1;
    }

    @media (max-width: 1199px) {
        & .vs-course--content .vs-course__title {
            font-size: 16px;
        }
    }

    & .vs-course--content:hover::after {
        background-color: var(--vs-white-color);
    }

    & .vs-course--content:hover {
        background-color: var(--vs-theme-color2);
    }

    & .vs-course--content:hover img.icon-img1 {
        opacity: 0;
        visibility: hidden;
    }

    & .vs-course--content:hover img.icon-img2 {
        opacity: 1;
        visibility: visible;
    }

    & .vs-course--content:hover .vs-course__title {
        color: var(--vs-white-color);
    }

    & .vs-course--content:hover .vs-course__border {
        border-color: var(--vs-theme-color2);
    }

    & .vs-masonry--area {
    }

    @media (max-width: 991px) {
        & .vs-masonry--area {
            padding-bottom: 80px;
        }
    }

    & .vs-masonry--area .filter-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }

    @media (max-width: 480px) {
        & .vs-masonry--area .filter-buttons {
            display: block;
            width: 200px;
            margin: 0px auto 50px;
        }
    }

    & .vs-masonry--area .filter-buttons button.active {
        background-color: var(--vs-theme-color2);
        color: var(--vs-white-color);
    }

    & .vs-masonry--area .filter-buttons button {
        width: 145px;
        height: 50px;
        border-radius: 50px;
        border: 0px;
        background-color: var(--vs-white-color);
        color: var(--vs-title-color);
        text-transform: capitalize;
        font-weight: 700;
        letter-spacing: 0.5px;
        box-shadow: rgb(217, 217, 217) 0px 0px 5px;
        margin: 0px 5px;
        transition: 0.4s;
    }

    @media (max-width: 480px) {
        & .vs-masonry--area .filter-buttons button {
            width: 90%;
            margin: 0px auto 15px;
        }
    }

    & .vs-masonry--area .masonry {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0px 30px;
    }

    @media (max-width: 991px) {
        & .vs-masonry--area .masonry {
            grid-template-columns: 1fr 1fr;
        }
    }

    & .vs-masonry--area .masonry {
    }

    @media (max-width: 767px) {
        & .vs-masonry--area .masonry {
            gap: 0px 15px;
        }
    }

    @media (max-width: 480px) {
        & .vs-masonry--area .masonry {
            grid-template-columns: 1fr;
        }
    }

    & .vs-masonry--content {
        background-color: var(--vs-white-color);
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 40px;
        padding: 15px;
        box-shadow: rgb(217, 217, 217) 0px 0px 5px;
        transition: 0.4s;
    }

    @media (max-width: 991px) {
        & .vs-masonry--content {
            margin-bottom: 0px;
        }
    }

    & .vs-masonry--content {
    }

    @media (max-width: 767px) {
        & .vs-masonry--content {
            padding: 10px;
            max-width: 250px;
        }
    }

    @media (max-width: 480px) {
        & .vs-masonry--content {
            padding: 15px;
            max-width: 100%;
            margin-bottom: 10px;
        }
    }

    & .vs-masonry--content .vs-masonry__figure {
        position: relative;
        margin: 0px;
        overflow: hidden;
    }

    & .vs-masonry--content .vs-masonry__figure img {
        width: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

    & .vs-masonry--content .vs-masonry__price {
        width: 65px;
        height: 55px;
        background-color: var(--vs-theme-color2);
        position: absolute;
        bottom: 0px;
        right: 15px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        color: var(--vs-white-color);
        padding: 10px;
        font-family: var(--vs-title-font);
        font-weight: 700;
        border-top: 4px solid var(--vs-white-color);
    }

    @media (max-width: 767px) {
        & .vs-masonry--content .vs-masonry__price {
            width: 50px;
            height: 40px;
            font-size: 20px;
        }
    }

    & .vs-masonry--content .vs-masonry__rating {
        margin: 30px 10px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    @media (max-width: 767px) {
        & .vs-masonry--content .vs-masonry__rating {
            margin: 20px 10px;
        }
    }

    & .vs-masonry--content .vs-masonry__rating a.category {
        display: block;
        width: 135px;
        height: 35px;
        border-radius: 20px;
        background-color: rgba(var(--vs-theme-color2-rgb), 0.3);
        color: var(--vs-title-color);
        text-align: center;
        line-height: 35px;
        font-weight: 600;
        text-transform: capitalize;
    }

    @media (max-width: 767px) {
        & .vs-masonry--content .vs-masonry__rating a.category {
            width: 110px;
        }
    }

    & .vs-masonry--content .vs-masonry__rating ul {
        padding: 0px;
        margin-bottom: 0px;
        list-style: none;
        display: flex;
        align-items: center;
        font-size: 14px;
        color: var(--vs-theme-color2);
    }

    @media (max-width: 575px) {
        & .vs-masonry--content .vs-masonry__rating ul {
            font-size: 10px;
        }
    }

    & .vs-masonry--content .vs-masonry__rating ul {
    }

    @media (max-width: 767px) {
        & .vs-masonry--content .vs-masonry__rating ul {
            font-size: 12px;
        }
    }

    & .vs-masonry--content .vs-masonry__heading {
        font-size: clamp(1.3rem, 0.818rem + 0.91vw, 1.5rem);
        font-weight: 900;
        line-height: 1.1;
        margin: 0px 10px 20px;
        text-transform: capitalize;
    }

    @media (max-width: 575px) {
        & .vs-masonry--content .vs-masonry__heading {
            font-size: 18px;
            margin: 0px 10px 10px;
        }
    }

    & .vs-masonry--content .vs-masonry__heading a {
        display: inline-block;
        color: var(--vs-title-color);
        transition: 0.4s;
    }

    & .vs-masonry--content .vs-masonry__features {
        padding: 0px;
        margin: 0px 10px;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--vs-body-color);
    }

    & .vs-masonry--content .vs-masonry__features li {
        font-weight: 600;
        display: inline-block;
    }

    & .vs-masonry--content .vs-masonry__features li i {
        margin-right: 9px;
    }

    & .vs-masonry--content .vs-masonry__divider {
        margin: 20px 10px;
        border-top: 1px solid rgb(217, 217, 217);
        opacity: 1;
    }

    @media (max-width: 767px) {
        & .vs-masonry--content .vs-masonry__divider {
            margin: 10px 5px;
        }
    }

    & .vs-masonry--content .vs-masonry__teacher {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: var(--vs-title-font);
        margin: 0px 10px;
    }

    & .vs-masonry--content .vs-masonry__teacher a {
        text-transform: capitalize;
        font-weight: 600;
        color: var(--vs-title-color);
        transition: 0.4s;
    }

    & .vs-masonry--content .vs-masonry__teacher a img {
        margin-right: 10px;
        border-radius: 50%;
    }

    & .vs-masonry--content .vs-masonry__teacher a: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-masonry--content .vs-masonry__teacher a.join-class {
        font-size: 18px;
        font-weight: 900;
        text-transform: uppercase;
        color: var(--vs-title-color);
        transition: 0.4s;
    }

    @media (max-width: 1199px) {
        & .vs-masonry--content .vs-masonry__teacher a.join-class span {
            display: none;
        }
    }

    @media (max-width: 480px) {
        & .vs-masonry--content .vs-masonry__teacher a.join-class {
            font-size: 15px;
        }

        & .vs-masonry--content .vs-masonry__teacher a.join-class span {
            display: inline-block;
        }
    }

    & .vs-masonry--content .vs-masonry__teacher a.join-class i {
        font-size: 22px;
        padding-left: 5px;
        position: relative;
        top: 2px;
        color: var(--vs-theme-color2);
    }

    & .vs-masonry--content .vs-masonry__teacher a.join-class: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-masonry--content:hover .vs-masonry__heading a {
        color: var(--vs-theme-color2);
    }

    & .vs--subcribe {
        padding: 175px 0px;
    }

    & .vs--subcribe__bg-image, & .vs--subcribe__bg-image-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        inset: 0px;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyMSIgaGVpZ2h0PSI1MDMiIHZpZXdCb3g9IjAgMCAxOTIxIDUwMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEwxMDM5LjM4IDU1LjQxMTRDMTE5Ny45OSA2My44NjY4IDEzNTcuMDEgNTkuNzEzNSAxNTE0Ljk2IDQyLjk5MDZMMTkyMSAwVjUwM0w3NTUuNzc2IDQ1NS44MzRDNjEyLjI5OCA0NTAuMDI2IDQ2OC41ODggNDU0LjUyNyAzMjUuNzU1IDQ2OS4zMDNMMCA1MDNWMFoiIGZpbGw9IiM3MDE2N0UiLz4KPC9zdmc+Cg==");
        mask-position: center center;
        mask-size: contain;
        mask-repeat: no-repeat;
    }

    @media (max-width: 1850px) {
        & .vs--subcribe__bg-image, & .vs--subcribe__bg-image-overlay {
            mask-size: cover;
        }
    }

    & .vs--subcribe__bg-image img {
        position: relative;
        height: 100%;
        object-fit: cover;
        width: 100%;
        z-index: -2;
    }

    & .vs--subcribe__bg-image-overlay {
        z-index: 1;
        opacity: 0.95;
    }

    & .vs--subcribe .vs__search {
        position: relative;
        margin-top: 30px;
    }

    & .vs--subcribe .vs__search form input {
        text-transform: capitalize;
        height: 70px;
        width: 100%;
        background-color: var(--vs-white-color);
        padding-left: 40px;
        color: var(--vs-title-color);
        border-radius: 50px;
        font-weight: 700;
        letter-spacing: 0.3px;
        box-shadow: none;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    @media (max-width: 420px) {
        & .vs--subcribe .vs__search form input {
            padding-left: 15px;
        }
    }

    & .vs--subcribe .vs__search form input: focus {
        outline: none;
    }

    & .vs--subcribe .vs__search form .vs-btn {
        position: absolute;
        top: 6%;
        font-weight: 600;
        right: 7px;
        width: 185px;
        height: 56px;
    }

    @media (max-width: 420px) {
        & .vs--subcribe .vs__search form .vs-btn {
            width: 120px;
            font-size: 15px;
        }
    }

    & .vs--subcribe .vs__search p {
        font-size: 18px;
        color: var(--vs-white-color);
        text-align-last: end;
        margin-top: 10px;
        text-transform: capitalize;
    }

    & .header-layout7 .will-sticky .sticky-active {
        background-color: var(--vs-title-color);
    }

    & .header-layout7 .main-menu a {
        font-weight: 700;
    }

    & .header-layout7 .main-menu > ul > li > a {
        color: var(--vs-white-color);
    }

    & .header-layout7 .main-menu > ul > li > a: hover, & .header-layout7 .main-menu > ul > li > a.active {
        color: var(--vs-theme-color2);
    }

    & .header-layout7 .main-menu > ul > li.menu-item-has-children.active > a {
        color: var(--vs-theme-color2);
    }

    & .header-layout7 .main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a {
        color: var(--vs-white-color);
    }

    & .header-layout7 .main-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a: hover {
        color: var(--vs-theme-color2);
    }

    & .header-layout7 .searchBoxTggler {
        background-color: var(--vs-theme-color4);
    }

    & .header-layout7 .sideMenuToggler {
        color: var(--vs-white-color);
    }

    & .vs-hero--style7 {
        background-color: black;
    }

    & .vs-hero--style7 .vs-hero__shape-banner {
        position: absolute;
        left: 0px;
        bottom: -4px;
        width: 100%;
        z-index: 2;
    }

    & .vs-hero--style7 .vs-hero__bg {
        animation: 1s ease-in-out 0s 1 reverse none running shutters;
    }

    & .vs-hero--style7 .vs-hero__content {
        padding: 200px 0px 270px;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style7 .vs-hero__content {
            padding: 200px 0px;
        }
    }

    & .vs-hero--style7 .vs-hero__content {
    }

    @media (max-width: 991px) {
        & .vs-hero--style7 .vs-hero__content {
            padding: 180px 0px 120px;
        }
    }

    & .vs-hero--style7 .vs-hero__content {
    }

    @media (max-width: 767px) {
        & .vs-hero--style7 .vs-hero__content {
            text-align: center;
        }
    }

    & .vs-hero--style7 .vs-hero__title--main {
        font-size: 5rem;
        margin: 0px 0px 15px;
        line-height: 1.15;
        font-weight: 700;
        text-transform: capitalize;
        color: var(--vs-white-color);
    }

    @media (max-width: 1300px) {
        & .vs-hero--style7 .vs-hero__title--main {
            font-size: 80px;
        }
    }

    & .vs-hero--style7 .vs-hero__title--main {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style7 .vs-hero__title--main {
            font-size: 70px;
        }
    }

    & .vs-hero--style7 .vs-hero__title--main {
    }

    @media (max-width: 767px) {
        & .vs-hero--style7 .vs-hero__title--main {
            font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style7 .vs-hero__title--main span {
        display: block;
        color: var(--vs-white-color);
        font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
    }

    @media (max-width: 767px) {
        & .vs-hero--style7 .vs-hero__title--main span {
            font-size: clamp(2.2rem, 1.2rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style7 .vs-hero__title--sub {
        font-size: 40px;
        font-family: var(--vs-special-font);
        margin: 0px 0px 15px;
        color: var(--vs-white-color);
    }

    @media (max-width: 767px) {
        & .vs-hero--style7 .vs-hero__title--sub {
            font-size: 30px;
        }
    }

    & .vs-hero--style7 .vs-hero__desc {
        font-size: 20px;
        margin: 0px 0px 40px;
        color: var(--vs-white-color);
    }

    & .vs-hero--style7 .vs-hero__ele1 {
        top: auto;
        bottom: 10%;
        left: 130px;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style7 .vs-hero__ele1 {
            bottom: 10%;
            left: 130px;
        }
    }

    & .vs-hero--style7 .vs-hero__ele1 {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style7 .vs-hero__ele1 {
            display: none;
        }
    }

    & .vs-hero--style7 .vs-hero__ele2 {
        top: auto;
        bottom: 10%;
        right: 130px;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style7 .vs-hero__ele2 {
            bottom: 10%;
            right: 20px;
        }
    }

    & .vs-hero--style7 .vs-hero__ele2 {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style7 .vs-hero__ele2 {
            display: none;
        }
    }

    & .vs-hero--style7 .vs-hero__direction {
        margin-left: auto;
        right: 17%;
    }

    @media (max-width: 1850px) {
        & .vs-hero--style7 .vs-hero__direction {
            right: 13%;
        }
    }

    @media (max-width: 1600px) {
        & .vs-hero--style7 .vs-hero__direction {
            right: 120px;
        }
    }

    @media (max-width: 1500px) {
        & .vs-hero--style7 .vs-hero__direction {
            right: 100px;
        }
    }

    & .vs-hero--style7 .vs-hero__direction {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style7 .vs-hero__direction {
            right: 80px;
        }
    }

    @media (max-width: 1024px) {
        & .vs-hero--style7 .vs-hero__direction {
            right: 30px;
        }
    }

    & .vs-hero--style7 .vs-hero__direction {
    }

    @media (max-width: 991px) {
        & .vs-hero--style7 .vs-hero__direction {
            right: 100px;
        }
    }

    @media (max-width: 768px) {
        & .vs-hero--style7 .vs-hero__direction {
            right: 30px;
        }
    }

    & .vs-hero--style7 .vs-hero__direction .vs-swiper-button-next, & .vs-hero--style7 .vs-hero__direction .vs-swiper-button-prev {
        color: var(--vs-white-color);
    }

    & .vs-hero--style7 .vs-hero__direction .vs-swiper-button-next:hover, & .vs-hero--style7 .vs-hero__direction .vs-swiper-button-prev:hover {
        color: var(--vs-theme-color2);
        background-color: var(--vs-white-color);
    }

    & .vs-countdown {
        position: relative;
        top: -75px;
        z-index: 10;
    }

    @media (max-width: 1199px) {
        & .vs-countdown {
            top: -65px;
        }
    }

    & .vs-countdown {
    }

    @media (max-width: 991px) {
        & .vs-countdown {
            top: 0px;
            margin: 80px 0px;
        }
    }

    & .vs-countdown__overlay {
        padding: 37px 37px 30px;
        border-radius: 20px;
        position: relative;
        margin: 0px 10px;
        overflow: hidden;
        z-index: 1;
    }

    @media (max-width: 1199px) {
        & .vs-countdown__overlay {
            padding: 27px 20px 20px;
            margin: 0px;
        }
    }

    & .vs-countdown__overlay {
    }

    @media (max-width: 575px) {
        & .vs-countdown__overlay {
            padding: 37px 20px 0px;
        }
    }

    & .vs-countdown__overlay::after {
        content: url("../img/home-7/time-bg-h7.png");
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    & .vs-countdown__title {
    }

    @media (max-width: 991px) {
        & .vs-countdown__title {
            text-align: center;
            margin-bottom: 30px;
        }
    }

    & .vs-countdown__title h5 {
        font-size: 40px;
        line-height: 1;
        margin: 0px 0px 7px;
    }

    @media (max-width: 1199px) {
        & .vs-countdown__title h5 {
            font-size: 35px;
        }
    }

    & .vs-countdown__title h6 {
        font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
        text-transform: capitalize;
        font-weight: 700;
        line-height: 1;
    }

    & .vs-countdown--content {
        display: flex;
        justify-content: end;
        margin-bottom: 30px;
    }

    @media (max-width: 1199px) {
        & .vs-countdown--content {
            margin-left: -100px;
        }
    }

    & .vs-countdown--content {
    }

    @media (max-width: 991px) {
        & .vs-countdown--content {
            justify-content: center;
            margin-left: -10px;
        }
    }

    & .vs-countdown--content .flipper {
        color: var(--vs-title-color);
        font-weight: 700;
        line-height: 100%;
        font-family: var(--vs-title-font);
        font-size: 34px !important;
    }

    & .vs-countdown--content .flipper-group {
        position: relative;
        display: inline-block;
        margin-left: 13px;
    }

    @media (max-width: 1199px) {
        & .vs-countdown--content .flipper-group {
            margin-left: 8px;
        }
    }

    & .vs-countdown--content .flipper-group {
    }

    @media (max-width: 575px) {
        & .vs-countdown--content .flipper-group {
            margin: 0px 10px 40px 0px;
        }
    }

    & .vs-countdown--content .flipper-group::after {
        top: -3px !important;
    }

    & .vs-countdown--content .flipper-group:nth-child(2n)::after, & .vs-countdown--content .flipper-group:nth-child(2n)::before {
        content: "";
        position: absolute;
        width: 4px;
        height: 4px;
        background-color: var(--vs-white-color);
        left: 5px;
        top: -20px;
    }

    @media (max-width: 575px) {
        & .vs-countdown--content .flipper-group:nth-child(2n)::after, & .vs-countdown--content .flipper-group:nth-child(2n)::before {
            background-color: transparent;
        }
    }

    & .vs-countdown--content label {
        font-size: 20px;
        font-weight: 600;
        color: var(--vs-white-color);
        font-family: var(--vs-title-font);
        text-transform: uppercase;
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: -30px;
        text-align: center;
    }

    & .vs-countdown--content .flipper-digit {
        position: relative;
        display: inline-block;
        overflow-y: hidden;
        margin-left: 7px;
        width: 54px;
        height: 76px;
        border-radius: 10px;
    }

    @media (max-width: 767px) {
        & .vs-countdown--content .flipper-digit {
            margin-left: 5px;
            width: 40px;
            height: 60px;
        }
    }

    & .vs-countdown--content .flipper-delimiter {
        display: inline-block;
        color: transparent;
    }

    & .vs-countdown--content .digit-next {
        height: 1.4em;
        background: var(--vs-white-color);
        padding-top: 0.62em;
    }

    @media (max-width: 767px) {
        & .vs-countdown--content .digit-next {
            padding-top: 0.42em;
        }
    }

    & .vs-countdown--content .digit-bottom {
        position: absolute;
        overflow: hidden;
        background: var(--vs-white-color);
        height: 50%;
        left: 0px;
        right: 0px;
        bottom: 0px;
        z-index: 9;
        line-height: 0em;
        padding-top: 0px;
        text-align: center;
    }

    & .vs-countdown--content .digit-top2 {
        visibility: hidden;
        position: absolute;
        height: 50%;
        left: 1px;
        right: 0px;
        background: rgb(204, 204, 204);
        padding-top: 0px;
        overflow: hidden;
        transition: transform linear;
        transform: rotateX(-90deg);
        z-index: 20;
        line-height: 0em !important;
        top: 50% !important;
        bottom: auto !important;
        transform-origin: 0px 0px 0px !important;
    }

    @media (max-width: 575px) {
        & .vs-countdown--content .digit-top2 {
            left: -1px;
        }
    }

    & .vs-countdown--content .digit-top {
        top: 0px;
        left: 0px;
        right: 0px;
        height: 50%;
        overflow: hidden;
        position: absolute;
        background: var(--vs-white-color);
        padding-top: 0.62em;
        padding-bottom: 0px;
        transition: transform linear;
        z-index: 20;
        transform-origin: 0px 0.6em 0px !important;
    }

    @media (max-width: 767px) {
        & .vs-countdown--content .digit-top {
            padding-top: 0.42em;
        }
    }

    & .vs-countdown--content .digit-top.r {
        transition: 0.2s linear;
        transform: rotateX(90deg);
        background: rgb(204, 204, 204);
    }

    & .vs-countdown--content .digit-top2.r {
        visibility: visible;
        transition: 0.2s linear 0.2s;
        transform: rotateX(0deg);
        background: var(--vs-white-color);
    }

    & .vs-countdown--content .digit-bottom.r {
        transition: 0.2s linear;
        background: rgb(204, 204, 204);
    }

    & .vs-countdown--content .digit-face {
        display: block;
        text-align: center;
    }

    & .vs-countdown__ele1 {
        position: absolute;
        right: 5%;
        bottom: -80px;
    }

    @media (max-width: 1650px) {
        & .vs-countdown__ele1 {
            right: 4%;
            bottom: -120px;
        }
    }

    @media (max-width: 1500px) {
        & .vs-countdown__ele1 {
            display: none;
        }
    }

    & .vs-featureh7__img {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
    }

    @media (max-width: 1300px) {
        & .vs-featureh7__img {
            padding: 0px 5px;
        }
    }

    & .vs-featureh7__img img.shape-bottom {
        width: 100%;
        height: 350px;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjk4IiBoZWlnaHQ9IjM1MCIgdmlld0JveD0iMCAwIDI5OCAzNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0yOTcuMDcyIDE1LjkyMDJDMjk3LjYwMiA3LjI5MDI5IDI5MC43NDYgMCAyODIuMSAwSDE1LjAwMDVDNi4zNTQzMSAwIC0wLjUwMTY0OCA3LjI5MDI3IDAuMDI4NzE3IDE1LjkyMDJMMTkuNjk1NyAzMzUuOTJDMjAuMTgyIDM0My44MzIgMjYuNzQwNSAzNTAgMzQuNjY3NSAzNTBIMjYyLjQzM0MyNzAuMzYgMzUwIDI3Ni45MTkgMzQzLjgzMiAyNzcuNDA1IDMzNS45MkwyOTcuMDcyIDE1LjkyMDJaIiBmaWxsPSIjMjUyODNFIi8+Cjwvc3ZnPgo=");
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
        object-fit: cover;
        transform: scale(1.03);
        transform-origin: center center;
        transition: 0.3s linear;
    }

    @media (max-width: 1199px) {
        & .vs-featureh7__img img.shape-bottom {
            height: 280px;
        }
    }

    & .vs-featureh7__img img.shape-bottom {
    }

    @media (max-width: 991px) {
        & .vs-featureh7__img img.shape-bottom {
            height: 210px;
        }
    }

    & .vs-featureh7__img img.shape-bottom {
    }

    @media (max-width: 767px) {
        & .vs-featureh7__img img.shape-bottom {
            height: 317px;
        }
    }

    & .vs-featureh7__img img.shape-top {
        width: 100%;
        height: 350px;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjk4IiBoZWlnaHQ9IjM1MCIgdmlld0JveD0iMCAwIDI5OCAzNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0yOTcuMDcyIDMzNC4wOEMyOTcuNjAyIDM0Mi43MSAyOTAuNzQ2IDM1MCAyODIuMSAzNTBIMTUuMDAwNUM2LjM1NDMxIDM1MCAtMC41MDE2NDggMzQyLjcxIDAuMDI4NzE3IDMzNC4wOEwxOS42OTU3IDE0LjA3OTlDMjAuMTgyIDYuMTY3ODggMjYuNzQwNSAzLjA1MTc2ZS0wNSAzNC42Njc1IDMuMDUxNzZlLTA1SDI2Mi40MzNDMjcwLjM2IDMuMDUxNzZlLTA1IDI3Ni45MTkgNi4xNjc4NSAyNzcuNDA1IDE0LjA3OTlMMjk3LjA3MiAzMzQuMDhaIiBmaWxsPSIjMjUyODNFIi8+Cjwvc3ZnPgo=");
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
        object-fit: cover;
        transform: scale(1.03);
        transform-origin: center center;
        transition: 0.3s linear;
    }

    @media (max-width: 1199px) {
        & .vs-featureh7__img img.shape-top {
            height: 280px;
        }
    }

    & .vs-featureh7__img img.shape-top {
    }

    @media (max-width: 991px) {
        & .vs-featureh7__img img.shape-top {
            height: 210px;
        }
    }

    & .vs-featureh7__img img.shape-top {
    }

    @media (max-width: 767px) {
        & .vs-featureh7__img img.shape-top {
            height: 317px;
        }
    }

    & .vs-featureh7__img:hover img.shape-top, & .vs-featureh7__img: hover img.shape-bottom {
        opacity: 0.8;
        transform: scale(1.01);
        transform-origin: center center;
    }

    & .vs-featureh7 .bg-color7 {
        background-color: rgb(255, 28, 58);
    }

    & .vs-featureh7__title {
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: -1px;
        font-size: clamp(1.3rem, 0.818rem + 0.91vw, 1.5rem);
        font-weight: 700;
        font-family: var(--vs-title-font);
        text-align: center;
        width: 200px;
        height: 60px;
        line-height: 63px;
        text-transform: uppercase;
        margin: 0px auto;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    @media (max-width: 1300px) {
        & .vs-featureh7__title {
            bottom: 7px;
        }
    }

    & .vs-featureh7__title {
    }

    @media (max-width: 1199px) {
        & .vs-featureh7__title {
            width: 170px;
            font-size: 20px;
            height: 55px;
            line-height: 58px;
            bottom: 0px;
        }
    }

    & .vs-featureh7__title {
    }

    @media (max-width: 991px) {
        & .vs-featureh7__title {
            width: 130px;
            font-size: 16px;
            height: 45px;
            line-height: 45px;
        }
    }

    & .vs-featureh7__title a {
        color: var(--vs-white-color);
    }

    & .vs-about3 .vs-texth7 {
        font-weight: 500;
        letter-spacing: 0.8px;
        text-transform: capitalize;
    }

    @media (max-width: 1199px) {
        & .vs-about3 .vs-texth7 {
            letter-spacing: 0.3px;
            margin-bottom: 0px;
        }
    }

    & .vs-about3 .vs-title {
    }

    @media (max-width: 1199px) {
        & .vs-about3 .vs-title {
            margin-bottom: 10px;
        }
    }

    & .vs-about3 .vs-list.style3 {
        margin: 0px;
    }

    @media (max-width: 1199px) {
        & .vs-about3 .vs-list.style3 {
            margin-bottom: 25px;
        }
    }

    & .vs-about3--image-h7 img {
        border-radius: 10px;
    }

    & .vs-about3--image-h7 {
    }

    @media (max-width: 991px) {
        & .vs-about3--image-h7 img {
            width: 100%;
            object-fit: cover;
        }

        & .vs-about3--image-h7 .ab-right-img {
            height: 280px;
        }
    }

    & .vs-about3--content-h7 {
        padding: 30px 25px 35px;
        border-radius: 10px;
        margin-bottom: 23px;
    }

    @media (max-width: 1300px) {
        & .vs-about3--content-h7 {
            padding: 23px 20px;
        }
    }

    & .vs-about3--content-h7 {
    }

    @media (max-width: 1199px) {
        & .vs-about3--content-h7 {
            padding: 18px 20px;
        }
    }

    & .vs-about3--content-h7 {
    }

    @media (max-width: 991px) {
        & .vs-about3--content-h7 {
            text-align: center;
        }
    }

    & .vs-about3--content-h7 {
    }

    @media (max-width: 767px) {
        & .vs-about3--content-h7 {
            margin-top: 23px;
        }
    }

    & .vs-about3--content-h7 .vs-about3__ab-text {
        display: flex;
        align-items: center;
    }

    & .vs-about3--content-h7 .vs-about3__yoe-number {
        font-size: 50px;
        line-height: 55px;
        font-weight: 700;
        color: var(--vs-white-color);
        font-family: var(--vs-title-font);
        display: block;
    }

    @media (max-width: 1199px) {
        & .vs-about3--content-h7 .vs-about3__yoe-number {
            font-size: 35px;
            line-height: 36px;
        }
    }

    & .vs-about3--content-h7 .vs-about3__yoe-text {
        font-size: 18px;
        font-weight: 700;
        color: var(--vs-white-color);
        text-transform: capitalize;
    }

    @media (max-width: 1199px) {
        & .vs-about3--content-h7 .vs-about3__yoe-text {
            font-size: 14px;
        }
    }

    & .vs-about3--content-h7 .vs-about3__profile {
        list-style-type: none;
        display: flex;
        padding: 0px;
        margin: 20px 0px 0px;
    }

    @media (max-width: 991px) {
        & .vs-about3--content-h7 .vs-about3__profile {
            justify-content: center;
        }
    }

    & .vs-about3--content-h7 .vs-about3__profile img {
        width: auto;
        border-radius: 50%;
    }

    & .vs-about3--content-h7 .ms-n2 {
        margin-left: -15px;
    }

    & .vs-about3--content-h7 .ms-n3 {
        margin-left: -20px;
    }

    & .vs-videoh7 {
        position: relative;
    }

    & .vs-videoh7::before {
        content: url("../img/home-7/video-bg-overlay.png");
        position: absolute;
        width: auto;
        height: 100%;
        background-color: var(--vs-theme-color4);
        top: 0px;
        left: -40px;
        z-index: -1;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTg4IiBoZWlnaHQ9IjM5MCIgdmlld0JveD0iMCAwIDk4OCAzOTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik05ODggMTkxLjk2OUw4NDEuMTMgMEgwVjM5MEg4MDEuMTNMOTg4IDE5MS45NjlaIiBmaWxsPSIjNEY4MzBFIi8+Cjwvc3ZnPgo=");
        mask-size: cover;
        mask-position: left center;
        mask-repeat: no-repeat;
        object-fit: cover;
    }

    @media (max-width: 1500px) {
        & .vs-videoh7::before {
            left: -9%;
        }
    }

    @media (max-width: 1400px) {
        & .vs-videoh7::before {
            left: -15%;
        }
    }

    & .vs-videoh7::before {
    }

    @media (max-width: 991px) {
        & .vs-videoh7::before {
            left: -20%;
            mask-size: contain;
        }
    }

    & .vs-videoh7::before {
    }

    @media (max-width: 767px) {
        & .vs-videoh7::before {
            left: -80%;
        }
    }

    & .vs-videoh7::before {
    }

    @media (max-width: 575px) {
        & .vs-videoh7::before {
            left: -115%;
        }
    }

    & .vs-videoh7 h2 {
        font-size: 48px;
    }

    @media (max-width: 991px) {
        & .vs-videoh7 h2 {
            font-size: 32px;
        }
    }

    & .vs-videoh7 {
    }

    @media (max-width: 575px) {
        & .vs-videoh7 .textCenter {
            text-align: center;
        }
    }

    & .vs-videoh7__content {
        justify-content: right;
        display: flex;
        align-items: center;
    }

    @media (max-width: 767px) {
        & .vs-videoh7__content {
            justify-content: center;
            margin-top: 30px;
        }
    }

    & .vs-videoh7__content span {
        font-size: 30px;
        font-weight: 700;
        font-family: var(--vs-special-font);
        letter-spacing: 0.48px;
        line-height: 1;
        display: inline-block;
        margin-left: 40px;
        color: var(--vs-white-color);
    }

    & .vs-videoh7__button2.play-btn {
        padding: 0px;
        background-color: var(--vs-theme-color2);
        border-radius: 50%;
        transition: 0.4s;
    }

    & .vs-videoh7__button2.play-btn > i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 115px;
        height: 115px;
        font-size: 28px;
        transition: 0.4s;
    }

    @media (max-width: 767px) {
        & .vs-videoh7__button2.play-btn > i {
            width: 90px;
            height: 90px;
        }
    }

    & .vs-videoh7__button2.play-btn::after, & .vs-videoh7__button2.play-btn::before {
        content: "";
        position: absolute;
        inset: 0px;
        background-color: var(--vs-theme-color2);
        z-index: -1;
        border-radius: 50%;
        transition: 0.4s;
    }

    & .vs-videoh7__button2.play-btn::after {
        animation-delay: 2s;
    }

    & .vs-videoh7__button2.play-btn:hover {
        background-color: var(--vs-theme-color4);
    }

    & .vs-videoh7__button2.play-btn:hover::after, & .vs-videoh7__button2.play-btn:hover::before, & .vs-videoh7__button2.play-btn:hover i {
        background-color: var(--vs-theme-color4);
    }

    & .vs-event-schedule .vs-event__button {
    }

    @media (max-width: 991px) {
        & .vs-event-schedule .vs-event__button {
            margin-bottom: 20px;
        }
    }

    & .vs-event-schedule .vs-event__button .nav-tabs {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    @media (max-width: 991px) {
        & .vs-event-schedule .vs-event__button .nav-tabs {
            justify-content: center;
            gap: 10px;
        }
    }

    & .vs-event-schedule .vs-event__button .nav-link#tab_one {
        background-color: var(--vs-theme-color4);
    }

    & .vs-event-schedule .vs-event__button .nav-link#tab_two {
        background-color: var(--vs-theme-color1);
    }

    & .vs-event-schedule .vs-event__button .nav-link#tab_three {
        background-color: var(--vs-theme-color2);
    }

    & .vs-event-schedule .vs-event__button .nav-link#tab_four {
        background-color: var(--vs-title-color);
    }

    & .vs-event-schedule .vs-event__button .nav-link {
        position: relative;
        width: 275px;
        height: 125px;
        color: var(--vs-white-color);
        text-align: center;
        font-family: var(--vs-title-font);
        padding: 0px;
        border-radius: 15px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        margin-bottom: 10px;
        transition: 0.3s ease-in-out;
    }

    @media (max-width: 991px) {
        & .vs-event-schedule .vs-event__button .nav-link {
            width: 165px;
            height: 80px;
        }
    }

    & .vs-event-schedule .vs-event__button .nav-link {
    }

    @media (max-width: 767px) {
        & .vs-event-schedule .vs-event__button .nav-link {
            width: 170px;
        }
    }

    & .vs-event-schedule .vs-event__button .nav-link {
    }

    @media (max-width: 767px) {
        & .vs-event-schedule .vs-event__button .nav-link {
            width: 180px;
        }
    }

    & .vs-event-schedule .vs-event__button .nav-link::after {
        content: "";
        position: absolute;
        inset: 5px;
        border-radius: 15px;
        border: 2px dashed var(--vs-white-color);
        z-index: 1;
        opacity: 0.4;
    }

    & .vs-event-schedule .vs-event__button .nav-link span.days {
        display: block;
        font-size: 32px;
        text-transform: uppercase;
        font-weight: 900;
        transition: 0.3s ease-in-out;
    }

    @media (max-width: 991px) {
        & .vs-event-schedule .vs-event__button .nav-link span.days {
            font-size: 24px;
        }
    }

    & .vs-event-schedule .vs-event__button .nav-link span.date {
        font-weight: 600;
        font-size: 20px;
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: 28px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    @media (max-width: 991px) {
        & .vs-event-schedule .vs-event__button .nav-link span.date {
            font-size: 14px;
            bottom: 16px;
        }
    }

    & .vs-event-schedule .vs-event__button .nav-link.active {
        background-color: transparent;
    }

    & .vs-event-schedule .vs-event__button .nav-link.active span.days {
        margin-bottom: 27px;
    }

    @media (max-width: 991px) {
        & .vs-event-schedule .vs-event__button .nav-link.active span.days {
            margin-bottom: 20px;
        }
    }

    & .vs-event-schedule .vs-event__button .nav-link.active span.date {
        opacity: 1;
        visibility: visible;
    }

    & .vs-event-schedule .vs-event__schedule-content {
        display: flex;
        justify-content: space-between;
        background-color: var(--vs-white-color);
        box-shadow: rgb(217, 217, 217) 0px 0px 5px;
        border-radius: 15px;
        padding: 20px;
    }

    @media (max-width: 1300px) {
        & .vs-event-schedule .vs-event__schedule-content {
            padding: 15px;
        }
    }

    & .vs-event-schedule .vs-event__schedule-content {
    }

    @media (max-width: 767px) {
        & .vs-event-schedule .vs-event__schedule-content {
            display: block;
        }
    }

    & .vs-event-schedule .vs-event__txt-left {
        border-right: 2px solid rgba(var(--vs-title-color-rgb), 0.2);
        padding: 20px 0px 20px 20px;
    }

    @media (max-width: 1199px) {
        & .vs-event-schedule .vs-event__txt-left {
            padding: 20px 0px 20px 10px;
        }
    }

    & .vs-event-schedule .vs-event__txt-left {
    }

    @media (max-width: 767px) {
        & .vs-event-schedule .vs-event__txt-left {
            border: 0px;
        }
    }

    & .vs-event-schedule .vs-event__img-txt {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    @media (max-width: 374px) {
        & .vs-event-schedule .vs-event__img-txt {
            display: block;
        }
    }

    & .vs-event-schedule .vs-event__img-txt img {
        border-radius: 10px;
        width: 145px;
        height: 130px;
    }

    @media (max-width: 1199px) {
        & .vs-event-schedule .vs-event__img-txt img {
            width: 130px;
            height: 115px;
        }
    }

    & .vs-event-schedule .vs-event__txt {
        width: 245px;
        padding-left: 25px;
    }

    @media (max-width: 1199px) {
        & .vs-event-schedule .vs-event__txt {
            padding-left: 15px;
        }
    }

    & .vs-event-schedule .vs-event__txt {
    }

    @media (max-width: 767px) {
        & .vs-event-schedule .vs-event__txt {
            width: 100%;
        }
    }

    @media (max-width: 374px) {
        & .vs-event-schedule .vs-event__txt {
            padding-left: 0px;
            margin-top: 20px;
        }
    }

    & .vs-event-schedule .vs-event__txt hr {
        margin: 18px 0px 15px;
        border-bottom: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
    }

    @media (max-width: 1199px) {
        & .vs-event-schedule .vs-event__txt hr {
            margin: 10px 0px;
        }
    }

    & .vs-event-schedule .vs-event__txt h4 {
        font-family: var(--vs-title-font);
        font-size: 32px;
        font-weight: 900;
        line-height: 1;
        margin: 0px 0px 8px;
    }

    @media (max-width: 1199px) {
        & .vs-event-schedule .vs-event__txt h4 {
            font-size: 24px;
        }
    }

    & .vs-event-schedule .vs-event__txt p {
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.5px;
        margin: 0px;
    }

    & .vs-event-schedule .vs-event__date {
        font-weight: 900;
        font-family: var(--vs-title-font);
        line-height: 1;
        display: flex;
        align-items: center;
    }

    & .vs-event-schedule .vs-event__date span.number {
        font-size: 40px;
        color: var(--vs-theme-color4);
        margin-right: 15px;
    }

    & .vs-event-schedule .vs-event__date span.month {
        text-transform: uppercase;
        font-size: 18px;
        color: var(--vs-title-color);
        width: 90px;
        display: inline-block;
    }

    & .vs-event-schedule .vs-event__desc {
        font-weight: 700;
        text-transform: capitalize;
        letter-spacing: 0.3px;
        color: var(--vs-title-color);
        margin: 25px 0px 0px;
    }

    & .vs-event-schedule .vs-event__desc img {
        margin-right: 3px;
        position: relative;
        top: -2px;
    }

    & .vs-event-schedule .vs-event__desc span {
        padding: 0px 5px;
    }

    & .vs-event-schedule .vs-event__txt-right {
        padding: 20px 20px 0px 30px;
        width: 450px;
    }

    @media (max-width: 1300px) {
        & .vs-event-schedule .vs-event__txt-right {
            padding: 20px 0px 0px 30px;
            width: 420px;
        }
    }

    & .vs-event-schedule .vs-event__txt-right {
    }

    @media (max-width: 1199px) {
        & .vs-event-schedule .vs-event__txt-right {
            width: 380px;
        }
    }

    & .vs-event-schedule .vs-event__txt-right {
    }

    @media (max-width: 767px) {
        & .vs-event-schedule .vs-event__txt-right {
            width: 450px;
            padding: 20px 20px 15px 10px;
        }
    }

    & .vs-event-schedule .vs-event__txt-right {
    }

    @media (max-width: 575px) {
        & .vs-event-schedule .vs-event__txt-right {
            width: 100%;
        }
    }

    & .vs-event-schedule .vs-event__txt-right h3 {
        font-family: var(--vs-title-font);
        font-size: 32px;
        font-weight: 900;
        line-height: 1;
        margin: 0px 0px 8px;
    }

    @media (max-width: 1199px) {
        & .vs-event-schedule .vs-event__txt-right h3 {
            font-size: 24px;
        }
    }

    & .vs-event-schedule .vs-event__txt-right h3 {
    }

    @media (max-width: 767px) {
        & .vs-event-schedule .vs-event__txt-right h3 {
            font-size: 32px;
        }
    }

    & .vs-event-schedule .vs-event__txt-right p {
        text-transform: capitalize;
        font-weight: 600;
        letter-spacing: 0.3px;
        margin: 15px 0px 25px;
    }

    @media (max-width: 1199px) {
        & .vs-event-schedule .vs-event__txt-right p {
            font-size: 15px;
            line-height: 1.5;
            margin: 10px 0px 20px;
        }
    }

    & .vs-event-schedule .vs-event__txt-right .vs-btn {
        background-color: var(--vs-theme-color4);
    }

    & .vs-pricing--content-h7 {
        background-color: var(--vs-white-color);
        padding: 45px 30px 40px;
        position: relative;
        border-radius: 20px;
        margin: 10px 0px 30px;
    }

    & .vs-pricing--content-h7 .vs-pricing__title {
        margin-bottom: 25px;
    }

    & .vs-pricing--content-h7 .vs-pricing__title h4 {
        font-family: var(--vs-title-font);
        font-size: 24px;
        text-transform: capitalize;
        line-height: 1;
    }

    & .vs-pricing--content-h7 .vs-pricing__title p {
        margin: 0px;
        text-transform: capitalize;
        font-weight: 500;
    }

    & .vs-pricing--content-h7 .vs-pricing__title p span {
        font-family: var(--vs-title-font);
        font-size: 50px;
        line-height: 48px;
        font-weight: 900;
        color: var(--vs-title-color);
    }

    & .vs-pricing--content-h7 .vs-pricing__button a {
        font-family: var(--vs-title-font);
        font-size: 24px;
        text-transform: uppercase;
        line-height: 1;
        font-weight: 700;
        color: var(--vs-white-color);
        background-color: var(--vs-theme-color4);
        display: block;
        text-align: center;
        padding: 27px 0px 23px;
        border-radius: 10px;
        letter-spacing: 0.3px;
        transition: 0.9s;
    }

    & .vs-pricing--content-h7 .vs-pricing__icon svg {
        fill: var(--vs-theme-color4);
        margin-bottom: 30px;
    }

    & .vs-pricing--content-h7 .vs-pricing__list {
        list-style: none;
        padding: 0px;
        margin: 30px 0px 0px;
        font-size: 18px;
        color: var(--vs-title-color);
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0.2px;
    }

    @media (max-width: 1199px) {
        & .vs-pricing--content-h7 .vs-pricing__list {
            font-size: 16px;
        }
    }

    & .vs-pricing--content-h7 .vs-pricing__list li {
        margin-bottom: 15px;
    }

    & .vs-pricing--content-h7 .vs-pricing__list li img {
        margin-right: 5px;
        position: relative;
        top: -1px;
    }

    & .vs-pricing--content-h7::before, & .vs-pricing--content-h7::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 40px;
        top: -7px;
        left: 0px;
        z-index: -1;
        border-radius: 20px;
        background-color: var(--vs-theme-color4);
    }

    & .vs-pricing--content-h7::after {
        background-color: var(--vs-theme-color2);
        width: 0%;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
    }

    & .vs-pricing--content-h7:hover::after {
        width: 100%;
        opacity: 1;
        visibility: visible;
    }

    & .vs-pricing--content-h7:hover .vs-pricing__button a {
        background-color: var(--vs-theme-color2);
    }

    & .vs-pricing--content-h7:hover .vs-pricing__icon svg {
        fill: var(--vs-theme-color2);
    }

    & .vs-pricing__ele1 {
        position: absolute;
        top: 80px;
        right: 80px;
        z-index: -1;
    }

    @media (max-width: 1500px) {
        & .vs-pricing__ele1 {
            display: none;
        }
    }

    & .vs-pricing__ele2 {
        position: absolute;
        bottom: 100px;
        left: 80px;
        z-index: -1;
    }

    @media (max-width: 1650px) {
        & .vs-pricing__ele2 {
            width: 60px;
            left: 50px;
        }
    }

    @media (max-width: 1500px) {
        & .vs-pricing__ele2 {
            display: none;
        }
    }

    & .vs-blog--inner-h7 {
        margin-bottom: 30px;
    }

    & .vs-blog--inner-h7 .vs-blog__img {
        position: relative;
        overflow: hidden;
        transform: none;
        margin-bottom: 30px;
    }

    & .vs-blog--inner-h7 .vs-blog__img img {
        width: 100%;
    }

    @media (max-width: 991px) {
        & .vs-blog--inner-h7 .vs-blog__img img {
            height: 215px;
            object-fit: cover;
        }
    }

    & .vs-blog--inner-h7 .vs-blog__date {
        position: absolute;
        top: 25px;
        left: 25px;
        background-color: var(--vs-theme-color4);
        border-radius: 10px;
        font-family: var(--vs-title-font);
        width: 75px;
        height: 75px;
        text-align: center;
        transition: 0.4s;
    }

    @media (max-width: 991px) {
        & .vs-blog--inner-h7 .vs-blog__date {
            top: 15px;
            left: 15px;
            width: 62px;
            height: 67px;
        }
    }

    & .vs-blog--inner-h7 .vs-blog__date span.month {
        text-transform: uppercase;
        font-weight: 700;
        color: var(--vs-white-color);
        display: block;
        padding: 7px 0px 5px;
        font-size: 18px;
        line-height: 15px;
    }

    @media (max-width: 991px) {
        & .vs-blog--inner-h7 .vs-blog__date span.month {
            font-size: 15px;
        }
    }

    & .vs-blog--inner-h7 .vs-blog__date span.number {
        font-size: 36px;
        padding: 9px;
        font-weight: 800;
        color: var(--vs-title-color);
        background-color: var(--vs-white-color);
        border-radius: 10px;
        display: block;
        line-height: 30px;
    }

    @media (max-width: 991px) {
        & .vs-blog--inner-h7 .vs-blog__date span.number {
            font-size: 24px;
            padding: 5px;
        }
    }

    & .vs-blog--inner-h7 .vs-blog__tag {
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: 0.3px;
    }

    & .vs-blog--inner-h7 .vs-blog__tag .tag-link {
        color: var(--vs-body-color);
    }

    & .vs-blog--inner-h7 .vs-blog__tag .tag-link i {
        color: var(--vs-theme-color4);
        padding-right: 5px;
        transition: 0.4s;
    }

    & .vs-blog--inner-h7 .vs-blog__tag .tag-link span {
        padding: 0px 8px;
    }

    & .vs-blog--inner-h7 .vs-blog__tag .tag-link2 {
        color: var(--vs-body-color);
    }

    & .vs-blog--inner-h7 .vs-blog__tag .tag-link2 i {
        padding-right: 5px;
    }

    & .vs-blog--inner-h7 .vs-blog__heading {
        font-size: 30px;
        margin: 15px 0px 25px;
    }

    @media (max-width: 991px) {
        & .vs-blog--inner-h7 .vs-blog__heading {
            font-size: 24px;
        }
    }

    & .vs-blog--inner-h7 .vs-btn {
        background-color: var(--vs-theme-color4);
        transition: 0.4s;
    }

    & .vs-blog--inner-h7 .vs-btn::after, & .vs-blog--inner-h7 .vs-btn::before {
        background-color: var(--vs-theme-color2);
    }

    & .vs-blog--inner-h7:hover .vs-blog__date {
        background-color: var(--vs-theme-color2);
    }

    & .vs-blog--inner-h7:hover .tag-link i {
        color: var(--vs-theme-color2);
    }

    & .vs-blog--inner-h7:hover .vs-btn {
        background-color: var(--vs-theme-color2);
    }

    @media (max-width: 575px) {
        & .dnone {
            display: none !important;
        }
    }

    & .bg-color7 {
        background-color: rgb(255, 28, 58);
    }

    & .vs-hero--style8 .vs-hero__shape-banner {
        position: absolute;
        left: 0px;
        bottom: -4px;
        width: 100%;
        z-index: 2;
    }

    & .vs-hero--style8 .vs-hero__shape-banner img {
        width: 100%;
    }

    & .vs-hero--style8 .vs-hero__anim1.manimated {
        animation-name: slideinleft;
        animation-fill-mode: both;
        opacity: 1;
        animation-duration: 1s;
    }

    & .vs-hero--style8 .vs-hero__bg {
        animation: 2s ease-in-out 0s 1 normal none running slideindown;
    }

    & .vs-hero--style8 .vs-hero__content {
        padding: 180px 0px 320px;
        margin-left: -25px;
        margin-right: -55px;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style8 .vs-hero__content {
            padding: 200px 0px 300px;
        }
    }

    & .vs-hero--style8 .vs-hero__content {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style8 .vs-hero__content {
            padding: 180px 0px 200px;
        }
    }

    & .vs-hero--style8 .vs-hero__content {
    }

    @media (max-width: 991px) {
        & .vs-hero--style8 .vs-hero__content {
            padding: 120px 10px 170px;
        }
    }

    & .vs-hero--style8 .vs-hero__content {
    }

    @media (max-width: 767px) {
        & .vs-hero--style8 .vs-hero__content {
            text-align: center;
            margin: 0px;
        }
    }

    & .vs-hero--style8 .vs-hero__title--main {
        font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
        margin: 0px 0px 15px;
        line-height: 1;
        text-transform: capitalize;
        color: var(--vs-white-color);
    }

    @media (max-width: 1500px) {
        & .vs-hero--style8 .vs-hero__title--main {
            font-size: 75px;
        }
    }

    & .vs-hero--style8 .vs-hero__title--main {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style8 .vs-hero__title--main {
            font-size: 65px;
        }
    }

    & .vs-hero--style8 .vs-hero__title--main {
    }

    @media (max-width: 991px) {
        & .vs-hero--style8 .vs-hero__title--main {
            font-size: 50px;
        }
    }

    & .vs-hero--style8 .vs-hero__title--main {
    }

    @media (max-width: 767px) {
        & .vs-hero--style8 .vs-hero__title--main {
            font-size: 65px;
        }
    }

    & .vs-hero--style8 .vs-hero__title--main span {
        display: block;
        color: var(--vs-white-color);
        font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
    }

    @media (max-width: 1500px) {
        & .vs-hero--style8 .vs-hero__title--main span {
            font-size: 45px;
        }
    }

    & .vs-hero--style8 .vs-hero__title--main span {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style8 .vs-hero__title--main span {
            font-size: 32px;
        }
    }

    & .vs-hero--style8 .vs-hero__title--main span {
    }

    @media (max-width: 767px) {
        & .vs-hero--style8 .vs-hero__title--main span {
            font-size: 40px;
        }
    }

    & .vs-hero--style8 .vs-hero__title--sub {
        font-size: 40px;
        font-family: var(--vs-special-font);
        margin: 0px 0px 15px;
        color: var(--vs-white-color);
    }

    @media (max-width: 991px) {
        & .vs-hero--style8 .vs-hero__title--sub {
            font-size: 32px;
        }
    }

    & .vs-hero--style8 .vs-hero__title--sub {
    }

    @media (max-width: 767px) {
        & .vs-hero--style8 .vs-hero__title--sub {
            font-size: 36px;
        }
    }

    & .vs-hero--style8 .vs-hero__desc {
        color: var(--vs-white-color);
        font-size: 20px;
        margin: 0px 0px 40px;
    }

    @media (max-width: 991px) {
        & .vs-hero--style8 .vs-hero__desc {
            font-size: 16px;
        }
    }

    & .vs-hero--style8 .vs-hero__img-shape {
        position: relative;
        top: 100px;
        left: -30px;
        animation: 2s ease-in-out 0s 1 normal none running slideinup;
    }

    & .vs-hero--style8 .vs-hero__img-shape img.main-img {
        position: relative;
        object-fit: cover;
        z-index: 1;
    }

    & .vs-hero--style8 .vs-hero__img-shape img.star-img {
        position: absolute;
        inset: 20px 0px 0px -45px;
    }

    & .vs-hero--style8 .vs-hero__img-shape {
    }

    @media (max-width: 767px) {
        & .vs-hero--style8 .vs-hero__img-shape {
            left: 0px;
        }
    }

    & .vs-hero--style8 .vs-hero__ele1 {
        inset: auto 120px 20% auto;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style8 .vs-hero__ele1 {
            right: 70px;
            bottom: 15%;
            width: 200px;
        }
    }

    & .vs-hero--style8 .vs-hero__ele1 {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style8 .vs-hero__ele1 {
            display: none;
        }
    }

    & .vs-hero--style8 .vs-hero__ele2 {
        top: 100px;
        right: 3%;
    }

    @media (max-width: 1500px) {
        & .vs-hero--style8 .vs-hero__ele2 {
            width: 100px;
        }
    }

    & .vs-hero--style8 .vs-hero__ele2 {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style8 .vs-hero__ele2 {
            display: none;
        }
    }

    & .vs-about-h8 .vs-about-h8__text {
        font-weight: 500;
        text-transform: capitalize;
        margin: 20px 0px 30px;
    }

    & .vs-about-h8 .vs-about-h8__image {
        position: relative;
        display: flex;
        justify-content: right;
        align-items: center;
    }

    & .vs-about-h8 .vs-about-h8__image img.img-bottom {
        width: 483px;
        height: 600px;
        object-fit: cover;
        margin-right: auto;
        border-radius: 20px;
    }

    @media (max-width: 1199px) {
        & .vs-about-h8 .vs-about-h8__image img.img-bottom {
            width: 390px;
        }
    }

    & .vs-about-h8 .vs-about-h8__image img.img-bottom {
    }

    @media (max-width: 991px) {
        & .vs-about-h8 .vs-about-h8__image img.img-bottom {
            width: 483px;
        }
    }

    & .vs-about-h8 .vs-about-h8__image img.img-top {
        position: absolute;
        border: 10px solid white;
        border-radius: 20px;
        bottom: 70px;
        width: 265px;
        height: 318px;
        right: 25px;
    }

    @media (max-width: 1199px) {
        & .vs-about-h8 .vs-about-h8__image img.img-top {
            bottom: 30px;
            width: 220px;
            height: 275px;
            right: 0px;
        }
    }

    & .vs-about-h8 .vs-about-h8__image img.img-top {
    }

    @media (max-width: 991px) {
        & .vs-about-h8 .vs-about-h8__image img.img-top {
            bottom: 70px;
            width: 265px;
            height: 318px;
            right: 110px;
        }
    }

    & .vs-about-h8 .vs-about-h8__image img.img-top {
    }

    @media (max-width: 767px) {
        & .vs-about-h8 .vs-about-h8__image img.img-top {
            right: -50px;
        }
    }

    & .vs-about-h8 .vs-about-h8__image img.img-top {
    }

    @media (max-width: 575px) {
        & .vs-about-h8 .vs-about-h8__image img.img-top {
            bottom: 0px;
            width: 230px;
            height: 280px;
            right: 0px;
        }
    }

    & .vs-about-h8 .vs-about-h8__image img.img-ele {
        position: absolute;
        left: -40px;
        bottom: 30px;
    }

    @media (max-width: 1500px) {
        & .vs-about-h8 .vs-about-h8__image img.img-ele {
            display: none;
        }
    }

    & .vs-about-h8 .vs-about-h8__list {
        list-style: none;
        margin: 0px 0px 40px;
        padding: 0px;
        display: flex;
        align-items: center;
        gap: 40px;
    }

    & .vs-about-h8 .vs-about-h8__list img.icon-img {
        width: 88px;
        height: 87px;
        object-fit: cover;
    }

    & .vs-about-h8 .vs-about-h8__list li h4 {
        font-size: 26px;
        margin: 20px 0px 15px;
        line-height: 1;
    }

    & .vs-about-h8 .vs-about-h8__list li p {
        font-weight: 500;
        max-width: 245px;
        margin: 0px;
    }

    & .vs-about-h8 .vs-about-h8__btn {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    & .vs-about-h8 .vs-about-h8__ceo-profile {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    & .vs-about-h8 .vs-about-h8__ceo-profile img {
        border-radius: 50%;
        width: 63px;
        height: 63px;
    }

    @media (max-width: 424px) {
        & .vs-about-h8 .vs-about-h8__ceo-profile {
            display: none;
        }
    }

    & .vs-about-h8 .vs-about-h8__ceo-info h4 {
        font-size: 26px;
        text-transform: capitalize;
        line-height: 1;
    }

    & .vs-about-h8 .vs-about-h8__ceo-info span {
        font-weight: 500;
    }

    & .vs-about-h8 .vs-about-h8__ele1 {
        position: absolute;
        right: 0px;
        bottom: -35px;
    }

    @media (max-width: 1500px) {
        & .vs-about-h8 .vs-about-h8__ele1 {
            bottom: -20px;
            width: 200px;
        }
    }

    & .vs-about-h8 .vs-about-h8__ele1 {
    }

    @media (max-width: 1199px) {
        & .vs-about-h8 .vs-about-h8__ele1 {
            display: none;
        }
    }

    & .vs-about-h8 .vs-about-h8__ele2 {
        position: absolute;
        top: 5px;
        right: 7%;
    }

    @media (max-width: 1199px) {
        & .vs-about-h8 .vs-about-h8__ele2 {
            display: none;
        }
    }

    & .vs-rides {
        background-color: var(--vs-white-color);
        padding: 15px;
        border-radius: 20px;
        text-align: center;
        box-shadow: rgb(217, 217, 217) 0px 0px 5px;
        margin-bottom: 50px;
    }

    & .vs-rides .vs-rides__figure {
        position: relative;
    }

    & .vs-rides .vs-rides__figure img.main-img {
        width: 100%;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQ4IiBoZWlnaHQ9IjE5OCIgdmlld0JveD0iMCAwIDI0OCAxOTgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDIxQzAgOS40MDIwMSA5LjQwMjAyIDAgMjEgMEgyMjdDMjM4LjU5OCAwIDI0OCA5LjQwMjAyIDI0OCAyMVYxNzQuMTU4QzI0OCAxODEuMTEyIDI0Mi45NzYgMTg3LjA0OCAyMzYuMTE4IDE4OC4xOThDMTYxLjg5MSAyMDAuNjQ2IDg2LjEwODkgMjAwLjY0NiAxMS44ODE2IDE4OC4xOThDNS4wMjM2MiAxODcuMDQ4IDAgMTgxLjExMiAwIDE3NC4xNThWMjFaIiBmaWxsPSIjRDE4MTA5Ii8+Cjwvc3ZnPgo=");
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
        object-fit: cover;
    }

    & .vs-rides .vs-rides__icon {
        --icon-size: 70px;
        min-width: var(--icon-size);
        width: var(--icon-size);
        min-height: var(--icon-size);
        height: var(--icon-size);
        border-radius: 50%;
        position: absolute;
        bottom: -30px;
        margin: 0px auto;
        left: 0px;
        right: 0px;
    }

    & .vs-rides .vs-rides__icon span {
        --icon-size: 70px;
        min-width: var(--icon-size);
        width: var(--icon-size);
        min-height: var(--icon-size);
        height: var(--icon-size);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 2px dashed rgba(var(--vs-white-color-rgb), 0.6);
    }

    & .vs-rides .vs-rides__content {
        padding: 55px 0px 10px;
    }

    & .vs-rides .vs-rides__content h3 {
        font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
        line-height: 1.1;
        margin: 0px 0px 14px;
        text-transform: capitalize;
        transition: 0.3s ease-in-out;
    }

    @media (max-width: 991px) {
        & .vs-rides .vs-rides__content h3 {
            font-size: 24px;
        }
    }

    & .vs-rides .vs-rides__content h3: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-rides .vs-rides__content p {
        letter-spacing: 0.48px;
        font-weight: 500;
        text-transform: capitalize;
        margin: 0px 10px 20px;
    }

    & .vs-rides .vs-rides__bottom {
        margin-bottom: -35px;
        position: relative;
        z-index: 3;
    }

    & .vs-rides .vs-rides__bottom a {
        width: 50px;
        height: 50px;
        display: inline-flex;
        background-color: var(--vs-title-color);
        justify-content: center;
        align-items: center;
        color: var(--vs-white-color);
        border-radius: 50%;
    }

    & .vs-rides:hover .vs-rides__bottom a {
        background-color: var(--vs-theme-color2);
    }

    & .vs-rides:hover .vs-rides__bottom.hover-1 a {
        background-color: var(--vs-theme-color1);
    }

    & .vs-rides:hover .vs-rides__bottom.hover-2 a {
        background-color: var(--vs-theme-color4);
    }

    & .vs-rides:hover .vs-rides__bottom.hover-3 a {
        background-color: rgb(255, 28, 58);
    }

    & .vs-video-h8 {
        padding: 30px 0px;
    }

    & .vs-gallery--row.home-8-gallery {
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(4, 1fr);
        margin-top: 15px;
    }

    @media (max-width: 767px) {
        & .vs-gallery--row.home-8-gallery {
            grid-template-rows: repeat(4, 1fr);
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
    }

    & .vs-gallery--row.home-8-gallery {
    }

    @media (max-width: 575px) {
        & .vs-gallery--row.home-8-gallery {
            grid-template-rows: repeat(6, 1fr);
            grid-template-columns: 1fr;
        }
    }

    & .vs-gallery--col1-h8 {
        grid-area: 1 / 1 / 2 / 2;
    }

    @media (max-width: 767px) {
        & .vs-gallery--col1-h8 {
            grid-area: 1 / 1 / 2 / 4;
        }
    }

    & .vs-gallery--col1-h8 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col1-h8 {
            grid-area: auto;
        }
    }

    & .vs-gallery--col2-h8 {
        grid-area: 1 / 2 / 2 / 4;
    }

    @media (max-width: 767px) {
        & .vs-gallery--col2-h8 {
            grid-area: 3 / 5 / 2 / 1;
        }
    }

    & .vs-gallery--col2-h8 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col2-h8 {
            grid-area: auto;
        }
    }

    & .vs-gallery--col3-h8 {
        grid-area: 1 / 4 / 2 / 4;
    }

    @media (max-width: 767px) {
        & .vs-gallery--col3-h8 {
            grid-area: 1 / 4 / 2 / 4;
        }
    }

    & .vs-gallery--col3-h8 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col3-h8 {
            grid-area: auto;
        }
    }

    & .vs-gallery--col4-h8 {
        grid-area: 2 / 1 / 2 / 2;
    }

    @media (max-width: 767px) {
        & .vs-gallery--col4-h8 {
            grid-area: 3 / 1 / 4 / 4;
        }
    }

    & .vs-gallery--col4-h8 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col4-h8 {
            grid-area: auto;
        }
    }

    & .vs-gallery--col5-h8 {
        grid-area: 2 / 2 / 2 / 2;
    }

    @media (max-width: 767px) {
        & .vs-gallery--col5-h8 {
            grid-area: 3 / 4 / 3 / 4;
        }
    }

    & .vs-gallery--col5-h8 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col5-h8 {
            grid-area: auto;
        }
    }

    & .vs-gallery--col6-h8 {
        grid-area: 2 / 3 / 2 / 5;
    }

    @media (max-width: 767px) {
        & .vs-gallery--col6-h8 {
            grid-area: 4 / 1 / 4 / 5;
        }
    }

    & .vs-gallery--col6-h8 {
    }

    @media (max-width: 575px) {
        & .vs-gallery--col6-h8 {
            grid-area: auto;
        }
    }

    & .vs-gallery__image {
        transform: scale(1.01);
    }

    & .vs-pricing__ele3 {
        position: absolute;
        right: 5%;
        top: -115px;
        z-index: 11;
    }

    & .vs-pricing__ele3 img {
        width: 150px;
    }

    & .vs-pricing__ele3 {
    }

    @media (max-width: 991px) {
        & .vs-pricing__ele3 {
            display: none;
        }
    }

    & .vs-pricing {
        background-color: var(--vs-white-color);
        border-radius: 10px;
        transition: 0.3s ease-in-out;
        position: relative;
    }

    @media (max-width: 575px) {
        & .vs-pricing {
            margin-right: 10px;
        }
    }

    & .vs-pricing h4 {
        height: 70px;
        text-transform: uppercase;
        color: var(--vs-white-color);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        font-size: 24px;
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.5px;
    }

    @media (max-width: 1199px) {
        & .vs-pricing h4 {
            font-size: 22px;
            height: 60px;
        }
    }

    & .vs-pricing .vs-pricing__content {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border: 1px solid rgb(217, 217, 217);
        padding-bottom: 35px;
    }

    @media (max-width: 1199px) {
        & .vs-pricing .vs-pricing__content {
            padding-bottom: 25px;
        }
    }

    & .vs-pricing .vs-pricing__content ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

    & .vs-pricing .vs-pricing__content ul li {
        font-weight: 500;
        margin-bottom: 10px;
        text-transform: capitalize;
        letter-spacing: 0.3px;
    }

    & .vs-pricing .vs-pricing__icon {
        width: 95px;
        height: 95px;
        line-height: 95px;
        margin: 30px auto;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODkiIGhlaWdodD0iODkiIHZpZXdCb3g9IjAgMCA4OSA4OSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQwLjYxNTYgMS45ODg3NUM0Mi4xOTcgLTAuNjYyOTQyIDQ2LjAzNzQgLTAuNjYyOTQyIDQ3LjYxODggMS45ODg3NUM0OC45MjI4IDQuMTc1MjcgNTEuODg5NSA0LjY0NTE1IDUzLjgwNTQgMi45Njg2MUM1Ni4xMjg4IDAuOTM1MzcxIDU5Ljc4MTMgMi4xMjIxNCA2MC40NjU4IDUuMTMyNzJDNjEuMDMwMyA3LjYxNTE3IDYzLjcwNjcgOC45Nzg4NCA2Ni4wNDY4IDcuOTc2MzdDNjguODg0OCA2Ljc2MDYyIDcxLjk5MTggOS4wMTc5OSA3MS43MTI1IDEyLjA5MjhDNzEuNDgyMyAxNC42MjgxIDczLjYwNjIgMTYuNzUyMSA3Ni4xNDE2IDE2LjUyMThDNzkuMjE2NCAxNi4yNDI2IDgxLjQ3MzggMTkuMzQ5NiA4MC4yNTggMjIuMTg3NkM3OS4yNTU1IDI0LjUyNzcgODAuNjE5MiAyNy4yMDQxIDgzLjEwMTYgMjcuNzY4NUM4Ni4xMTIyIDI4LjQ1MzEgODcuMjk5IDMyLjEwNTYgODUuMjY1OCAzNC40MjlDODMuNTg5MiAzNi4zNDQ4IDg0LjA1OTEgMzkuMzExNiA4Ni4yNDU2IDQwLjYxNTZDODguODk3MyA0Mi4xOTcgODguODk3MyA0Ni4wMzc0IDg2LjI0NTYgNDcuNjE4OEM4NC4wNTkxIDQ4LjkyMjggODMuNTg5MiA1MS44ODk1IDg1LjI2NTggNTMuODA1NEM4Ny4yOTkgNTYuMTI4OCA4Ni4xMTIyIDU5Ljc4MTMgODMuMTAxNiA2MC40NjU4QzgwLjYxOTIgNjEuMDMwMyA3OS4yNTU1IDYzLjcwNjcgODAuMjU4IDY2LjA0NjhDODEuNDczOCA2OC44ODQ4IDc5LjIxNjQgNzEuOTkxOCA3Ni4xNDE2IDcxLjcxMjVDNzMuNjA2MiA3MS40ODIzIDcxLjQ4MjMgNzMuNjA2MiA3MS43MTI1IDc2LjE0MTZDNzEuOTkxOCA3OS4yMTY0IDY4Ljg4NDggODEuNDczOCA2Ni4wNDY4IDgwLjI1OEM2My43MDY3IDc5LjI1NTUgNjEuMDMwMyA4MC42MTkyIDYwLjQ2NTggODMuMTAxNkM1OS43ODEzIDg2LjExMjIgNTYuMTI4OCA4Ny4yOTkgNTMuODA1NCA4NS4yNjU4QzUxLjg4OTUgODMuNTg5MiA0OC45MjI4IDg0LjA1OTEgNDcuNjE4OCA4Ni4yNDU2QzQ2LjAzNzQgODguODk3MyA0Mi4xOTcgODguODk3MyA0MC42MTU2IDg2LjI0NTZDMzkuMzExNiA4NC4wNTkxIDM2LjM0NDggODMuNTg5MiAzNC40MjkgODUuMjY1OEMzMi4xMDU2IDg3LjI5OSAyOC40NTMxIDg2LjExMjIgMjcuNzY4NSA4My4xMDE2QzI3LjIwNDEgODAuNjE5MiAyNC41Mjc3IDc5LjI1NTUgMjIuMTg3NiA4MC4yNThDMTkuMzQ5NiA4MS40NzM4IDE2LjI0MjYgNzkuMjE2NCAxNi41MjE4IDc2LjE0MTZDMTYuNzUyMSA3My42MDYyIDE0LjYyODEgNzEuNDgyMyAxMi4wOTI4IDcxLjcxMjVDOS4wMTc5OSA3MS45OTE4IDYuNzYwNjIgNjguODg0OCA3Ljk3NjM3IDY2LjA0NjhDOC45Nzg4NCA2My43MDY3IDcuNjE1MTcgNjEuMDMwMyA1LjEzMjcyIDYwLjQ2NThDMi4xMjIxNCA1OS43ODEzIDAuOTM1MzcxIDU2LjEyODggMi45Njg2MSA1My44MDU0QzQuNjQ1MTUgNTEuODg5NSA0LjE3NTI3IDQ4LjkyMjggMS45ODg3NSA0Ny42MTg4Qy0wLjY2Mjk0MiA0Ni4wMzc0IC0wLjY2Mjk0MiA0Mi4xOTcgMS45ODg3NSA0MC42MTU2QzQuMTc1MjcgMzkuMzExNiA0LjY0NTE1IDM2LjM0NDggMi45Njg2MSAzNC40MjlDMC45MzUzNzEgMzIuMTA1NiAyLjEyMjE0IDI4LjQ1MzEgNS4xMzI3MiAyNy43Njg1QzcuNjE1MTcgMjcuMjA0MSA4Ljk3ODg0IDI0LjUyNzcgNy45NzYzNyAyMi4xODc2QzYuNzYwNjIgMTkuMzQ5NiA5LjAxNzk5IDE2LjI0MjYgMTIuMDkyOCAxNi41MjE4QzE0LjYyODEgMTYuNzUyMSAxNi43NTIxIDE0LjYyODEgMTYuNTIxOCAxMi4wOTI4QzE2LjI0MjYgOS4wMTc5OSAxOS4zNDk2IDYuNzYwNjIgMjIuMTg3NiA3Ljk3NjM3QzI0LjUyNzcgOC45Nzg4NCAyNy4yMDQxIDcuNjE1MTcgMjcuNzY4NSA1LjEzMjcyQzI4LjQ1MzEgMi4xMjIxNCAzMi4xMDU2IDAuOTM1MzcxIDM0LjQyOSAyLjk2ODYxQzM2LjM0NDggNC42NDUxNSAzOS4zMTE2IDQuMTc1MjcgNDAuNjE1NiAxLjk4ODc1WiIgZmlsbD0iIzkyMjc4RiIvPgo8L3N2Zz4K");
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
        object-fit: cover;
    }

    & .vs-pricing .vs-pricing__icon span {
        font-family: var(--vs-title-font);
        color: var(--vs-white-color);
        font-size: 30px;
        font-weight: 700;
    }

    @media (max-width: 1199px) {
        & .vs-pricing .vs-pricing__icon span {
            font-size: 24px;
        }
    }

    & .vs-pricing .vs-pricing__icon {
    }

    @media (max-width: 1199px) {
        & .vs-pricing .vs-pricing__icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
            margin: 22px auto;
        }
    }

    & .vs-pricing .vs-pricing__bg-shape {
        position: absolute;
        z-index: -1;
        width: 93%;
        height: 84%;
        bottom: -10px;
        right: -10px;
        border-radius: 10px;
    }

    & .vs-pricing:hover {
        margin-top: -10px;
    }

    @media (max-width: 1199px) {
        & .feedback-image.home-8 {
            background-position: center center;
            object-fit: cover;
        }
    }

    @media (max-width: 767px) {
        & .feedback-image.home-8 {
            height: 500px;
        }
    }

    @media (max-width: 1600px) {
        & .feedback--ele1 {
            right: 45px;
            top: 40px;
        }
    }

    & .vs-blog--inner-h7.home-8-blog {
        background-color: rgb(255, 240, 229);
        border-radius: 15px;
    }

    & .vs-blog--inner-h7.home-8-blog .vs-blog__img {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        margin-bottom: 0px;
    }

    & .vs-blog--inner-h7.home-8-blog .vs-blog__img img {
        transition: 0.3s ease-in-out;
    }

    @media (max-width: 991px) {
        & .vs-blog--inner-h7.home-8-blog .vs-blog__img img {
            height: 100%;
        }
    }

    & .vs-blog--inner-h7.home-8-blog .vs-blog__heading {
        font-size: 24px;
    }

    @media (max-width: 1199px) {
        & .vs-blog--inner-h7.home-8-blog .vs-blog__heading {
            font-size: 20px;
        }
    }

    & .vs-blog--inner-h7.home-8-blog .vs-blog__content {
        padding: 30px 30px 40px;
        border-right-color: ;
        border-right-style: ;
        border-right-width: ;
        border-bottom-color: ;
        border-bottom-style: ;
        border-bottom-width: ;
        border-left-color: ;
        border-left-style: ;
        border-left-width: ;
        border-image-source: ;
        border-image-slice: ;
        border-image-width: ;
        border-image-outset: ;
        border-image-repeat: ;
        border-top: 0px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    @media (max-width: 1199px) {
        & .vs-blog--inner-h7.home-8-blog .vs-blog__content {
            padding: 30px 20px 40px;
        }
    }

    & .vs-blog--inner-h7.home-8-blog .vs-blog__date {
        background-color: var(--vs-theme-color2);
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 5px solid var(--vs-white-color);
    }

    & .vs-blog--inner-h7.home-8-blog .vs-blog__date span {
        font-size: 36px;
        font-weight: 800;
        line-height: 1;
        color: var(--vs-white-color);
    }

    & .vs-blog--inner-h7.home-8-blog .vs-blog__date span.month {
        padding: 0px;
        font-weight: 700;
        font-size: 18px;
        line-height: 15px;
    }

    & .vs-blog--inner-h7.home-8-blog .vs-blog__tag .tag-link i {
        color: var(--vs-theme-color2);
    }

    & .vs-blog--inner-h7.home-8-blog .vs-blog__link i {
        font-size: 22px;
    }

    & .vs-blog--inner-h7.home-8-blog:hover .vs-blog__link {
        color: var(--vs-theme-color2);
    }

    & .vs-blog--inner-h7.home-8-blog:hover .vs-blog__img img {
        transform: scale(1.02);
    }

    & .vs-header__top p.home-9 {
        margin: 0px;
        text-transform: capitalize;
        font-size: 16px;
        line-height: 1;
        font-family: var(--vs-title-font);
        font-weight: 600;
    }

    & .vs-header__top p.home-9 img {
        width: 20px;
        padding-left: 5px;
    }

    & .vs-header__top p.home-9 a: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-header__info-middle {
        display: flex;
        align-items: center;
        margin-left: 20px;
    }

    & .vs-header__info-middle i {
        color: rgba(var(--vs-title-color-rgb), 0.9);
        width: 50px;
        height: 50px;
        background-color: rgba(var(--vs-title-color-rgb), 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 22px;
    }

    & .vs-header__info-middle i.cart {
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
    }

    & .vs-header__info-middle p {
        text-transform: capitalize;
        font-weight: 700;
        color: var(--vs-title-color);
        padding-left: 15px;
        margin: 0px;
    }

    & .vs-header__info-middle p span {
        display: block;
        color: var(--vs-body-color);
    }

    & .vs-header__info-middle p span span.closed {
        display: inline;
        color: var(--vs-theme-color2);
    }

    & .vs-header__info-middle p span a {
        color: var(--vs-theme-color1);
    }

    & .vs-header__info-middle p a.cart {
        color: var(--vs-title-color);
        transition: 0.3s ease-in-out;
    }

    & .vs-header__info-middle p a.cart: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-header__info-middle.cart-box {
        border-left: 1px solid var(--vs-theme-color2);
        padding-left: 20px;
        padding-right: 5px;
    }

    & .vs-header__action.home-9 {
        gap: 0px;
    }

    @media (max-width: 991px) {
        & .vs-header__action.home-9 {
            gap: 20px;
        }
    }

    & .vs-header__action.home-9 {
    }

    @media (max-width: 575px) {
        & .vs-header__action.home-9 {
            gap: 0px;
        }
    }

    & .vs-header__action.home-9 a.returns {
        display: block;
        position: relative;
        font-family: var(--vs-title-font);
        font-weight: 900;
        font-size: 18px;
        color: var(--vs-white-color);
        text-transform: uppercase;
        margin-right: 25px;
    }

    & .vs-header__action.home-9 a.returns svg {
        margin-right: 5px;
    }

    & .vs-header__action.home-9 .searchBoxTggler {
    }

    @media (max-width: 767px) {
        & .vs-header__action.home-9 .searchBoxTggler {
            display: block !important;
        }
    }

    & .vs-header__action.home-9 .searchBoxTggler {
    }

    @media (max-width: 575px) {
        & .vs-header__action.home-9 .searchBoxTggler {
            display: none !important;
        }
    }

    & .will-sticky .sticky-active.active .home9-logo {
        display: block !important;
    }

    & .will-sticky .sticky-active.active .aaa {
        display: none !important;
    }

    & .aaa {
        display: none;
    }

    @media (max-width: 767px) {
        & .aaa {
            display: block !important;
        }
    }

    & .will-sticky .sticky-active.active .main-menu.home9-menu > ul > li > a {
        color: var(--vs-title-color);
    }

    & .will-sticky .sticky-active.active .main-menu.home9-menu > ul > li {
        margin: 0px 18px;
    }

    & .main-menu.home9-menu > ul > li {
        margin: 0px 50px 0px 0px;
    }

    @media (max-width: 1199px) {
        & .main-menu.home9-menu > ul > li {
            margin: 0px 40px 0px 0px;
        }
    }

    & .main-menu.home9-menu > ul > li > a {
        padding: 25px 0px;
        color: var(--vs-white-color);
    }

    & .main-menu.home9-menu > ul > li > a img {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        right: -24px;
        top: 28px;
        transition: 0.3s ease-in-out;
    }

    & .main-menu.home9-menu > ul > li > a: hover img {
        opacity: 1;
        visibility: visible;
    }

    & .will-sticky .sticky-active.active .main-menu.home9-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets {
        color: var(--vs-title-color);
    }

    & .main-menu.home9-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets {
        color: var(--vs-white-color);
    }

    & .main-menu.home9-menu > ul > li.menu-item-has-children.mega-menu-wrap.active > a.vs-svg-assets img {
        opacity: 0;
        visibility: hidden;
    }

    & .will-sticky .sticky-active.active .main-menu.home9-menu > ul > li.menu-item-has-children.active > a.vs-svg-assets {
        color: var(--vs-theme-color2);
    }

    & .main-menu.home9-menu > ul > li.menu-item-has-children.active > a.vs-svg-assets img {
        opacity: 1;
        visibility: visible;
    }

    & .will-sticky .sticky-active.active .vs-header__action .returns {
        display: none;
    }

    & .will-sticky .sticky-active.active .home9Toggler {
        display: block !important;
    }

    & .vs-hero--style9 .vs-hero__bg {
        animation: auto ease 0s 1 normal none running none;
    }

    & .vs-hero--style9 .vs-hero__anim1.manimated {
        animation-name: slideinright;
        animation-fill-mode: both;
        opacity: 1;
        animation-duration: 1s;
    }

    & .vs-hero--style9 .vs-hero__content {
        padding: 100px 40px 220px;
    }

    @media (max-width: 1400px) {
        & .vs-hero--style9 .vs-hero__content {
            padding: 100px 40px 230px;
        }
    }

    @media (max-width: 1300px) {
        & .vs-hero--style9 .vs-hero__content {
            padding: 100px 40px 200px;
        }
    }

    & .vs-hero--style9 .vs-hero__content {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style9 .vs-hero__content {
            padding: 100px 40px 230px;
        }
    }

    & .vs-hero--style9 .vs-hero__content {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__content {
            padding: 100px 40px 0px;
        }
    }

    & .vs-hero--style9 .vs-hero__content {
    }

    @media (max-width: 767px) {
        & .vs-hero--style9 .vs-hero__content {
            text-align: center;
        }
    }

    & .vs-hero--style9 .vs-hero__title--main {
        font-size: 80px;
        margin: 0px 0px 25px;
        line-height: 1.15;
        text-transform: uppercase;
        color: var(--vs-title-color);
    }

    @media (max-width: 1400px) {
        & .vs-hero--style9 .vs-hero__title--main {
            font-size: 70px;
        }
    }

    & .vs-hero--style9 .vs-hero__title--main {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style9 .vs-hero__title--main {
            font-size: 80px;
        }
    }

    & .vs-hero--style9 .vs-hero__title--main {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__title--main {
            font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
        }
    }

    & .vs-hero--style9 .vs-hero__title--main {
    }

    @media (max-width: 575px) {
        & .vs-hero--style9 .vs-hero__title--main {
            font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style9 .vs-hero__title--main span.main-sub {
        color: var(--vs-theme-color1);
        font-size: 80px;
        display: inline;
    }

    @media (max-width: 1400px) {
        & .vs-hero--style9 .vs-hero__title--main span.main-sub {
            font-size: 70px;
        }
    }

    & .vs-hero--style9 .vs-hero__title--main span.main-sub {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style9 .vs-hero__title--main span.main-sub {
            font-size: 80px;
        }
    }

    & .vs-hero--style9 .vs-hero__title--main span.main-sub {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__title--main span.main-sub {
            font-size: clamp(3.438rem, 2.642rem + 3.98vw, 5.625rem);
        }
    }

    & .vs-hero--style9 .vs-hero__title--main span.main-sub {
    }

    @media (max-width: 575px) {
        & .vs-hero--style9 .vs-hero__title--main span.main-sub {
            font-size: clamp(2.5rem, 1.642rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style9 .vs-hero__title--main span {
        display: block;
        color: var(--vs-title-color);
        font-size: clamp(3.125rem, 3.011rem + 0.57vw, 3.438rem);
    }

    @media (max-width: 1400px) {
        & .vs-hero--style9 .vs-hero__title--main span {
            font-size: 45px;
        }
    }

    & .vs-hero--style9 .vs-hero__title--main span {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style9 .vs-hero__title--main span {
            font-size: 50px;
        }
    }

    & .vs-hero--style9 .vs-hero__title--main span {
    }

    @media (max-width: 767px) {
        & .vs-hero--style9 .vs-hero__title--main span {
            font-size: clamp(2.2rem, 1.2rem + 3.98vw, 4.375rem);
        }
    }

    & .vs-hero--style9 .vs-hero__title--sub {
        font-size: 36px;
        font-weight: 700;
        color: var(--vs-title-color);
        text-transform: uppercase;
        font-family: var(--vs-special-font);
        line-height: 1.1;
        margin: 0px 0px 15px;
        letter-spacing: 2px;
    }

    & .vs-hero--style9 .vs-hero__shape-bgImg {
        position: absolute;
        right: auto;
        left: 39%;
        top: 8%;
        animation: 2s ease-in-out 0s 1 normal none running slideinup;
    }

    @media (max-width: 1300px) {
        & .vs-hero--style9 .vs-hero__shape-bgImg {
            left: 42%;
            top: 13%;
        }
    }

    & .vs-hero--style9 .vs-hero__shape-bgImg {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style9 .vs-hero__shape-bgImg {
            left: 39%;
            top: 8%;
        }
    }

    & .vs-hero--style9 .vs-hero__shape-bgImg {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__shape-bgImg {
            position: relative;
            left: 0px;
            top: 0px;
            text-align: center;
            margin-bottom: 50px;
        }
    }

    & .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
        position: relative;
        width: 550px;
        height: auto;
        object-fit: cover;
    }

    @media (max-width: 1400px) {
        & .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
            width: 530px;
        }
    }

    @media (max-width: 1300px) {
        & .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
            width: 400px;
        }
    }

    & .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
            width: 550px;
        }
    }

    & .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
            width: auto;
        }
    }

    & .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
    }

    @media (max-width: 575px) {
        & .vs-hero--style9 .vs-hero__shape-bgImg img.main-img {
            width: 80%;
            margin-top: 30px;
        }
    }

    & .vs-hero--style9 .vs-hero__label {
        position: absolute;
        top: 50px;
        right: 50px;
        text-align: center;
    }

    & .vs-hero--style9 .vs-hero__label p {
        padding: 40px 15px 15px;
        width: 120px;
        height: 120px;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODkiIGhlaWdodD0iODkiIHZpZXdCb3g9IjAgMCA4OSA4OSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQwLjYxNTYgMS45ODg3NUM0Mi4xOTcgLTAuNjYyOTQyIDQ2LjAzNzQgLTAuNjYyOTQyIDQ3LjYxODggMS45ODg3NUM0OC45MjI4IDQuMTc1MjcgNTEuODg5NSA0LjY0NTE1IDUzLjgwNTQgMi45Njg2MUM1Ni4xMjg4IDAuOTM1MzcxIDU5Ljc4MTMgMi4xMjIxNCA2MC40NjU4IDUuMTMyNzJDNjEuMDMwMyA3LjYxNTE3IDYzLjcwNjcgOC45Nzg4NCA2Ni4wNDY4IDcuOTc2MzdDNjguODg0OCA2Ljc2MDYyIDcxLjk5MTggOS4wMTc5OSA3MS43MTI1IDEyLjA5MjhDNzEuNDgyMyAxNC42MjgxIDczLjYwNjIgMTYuNzUyMSA3Ni4xNDE2IDE2LjUyMThDNzkuMjE2NCAxNi4yNDI2IDgxLjQ3MzggMTkuMzQ5NiA4MC4yNTggMjIuMTg3NkM3OS4yNTU1IDI0LjUyNzcgODAuNjE5MiAyNy4yMDQxIDgzLjEwMTYgMjcuNzY4NUM4Ni4xMTIyIDI4LjQ1MzEgODcuMjk5IDMyLjEwNTYgODUuMjY1OCAzNC40MjlDODMuNTg5MiAzNi4zNDQ4IDg0LjA1OTEgMzkuMzExNiA4Ni4yNDU2IDQwLjYxNTZDODguODk3MyA0Mi4xOTcgODguODk3MyA0Ni4wMzc0IDg2LjI0NTYgNDcuNjE4OEM4NC4wNTkxIDQ4LjkyMjggODMuNTg5MiA1MS44ODk1IDg1LjI2NTggNTMuODA1NEM4Ny4yOTkgNTYuMTI4OCA4Ni4xMTIyIDU5Ljc4MTMgODMuMTAxNiA2MC40NjU4QzgwLjYxOTIgNjEuMDMwMyA3OS4yNTU1IDYzLjcwNjcgODAuMjU4IDY2LjA0NjhDODEuNDczOCA2OC44ODQ4IDc5LjIxNjQgNzEuOTkxOCA3Ni4xNDE2IDcxLjcxMjVDNzMuNjA2MiA3MS40ODIzIDcxLjQ4MjMgNzMuNjA2MiA3MS43MTI1IDc2LjE0MTZDNzEuOTkxOCA3OS4yMTY0IDY4Ljg4NDggODEuNDczOCA2Ni4wNDY4IDgwLjI1OEM2My43MDY3IDc5LjI1NTUgNjEuMDMwMyA4MC42MTkyIDYwLjQ2NTggODMuMTAxNkM1OS43ODEzIDg2LjExMjIgNTYuMTI4OCA4Ny4yOTkgNTMuODA1NCA4NS4yNjU4QzUxLjg4OTUgODMuNTg5MiA0OC45MjI4IDg0LjA1OTEgNDcuNjE4OCA4Ni4yNDU2QzQ2LjAzNzQgODguODk3MyA0Mi4xOTcgODguODk3MyA0MC42MTU2IDg2LjI0NTZDMzkuMzExNiA4NC4wNTkxIDM2LjM0NDggODMuNTg5MiAzNC40MjkgODUuMjY1OEMzMi4xMDU2IDg3LjI5OSAyOC40NTMxIDg2LjExMjIgMjcuNzY4NSA4My4xMDE2QzI3LjIwNDEgODAuNjE5MiAyNC41Mjc3IDc5LjI1NTUgMjIuMTg3NiA4MC4yNThDMTkuMzQ5NiA4MS40NzM4IDE2LjI0MjYgNzkuMjE2NCAxNi41MjE4IDc2LjE0MTZDMTYuNzUyMSA3My42MDYyIDE0LjYyODEgNzEuNDgyMyAxMi4wOTI4IDcxLjcxMjVDOS4wMTc5OSA3MS45OTE4IDYuNzYwNjIgNjguODg0OCA3Ljk3NjM3IDY2LjA0NjhDOC45Nzg4NCA2My43MDY3IDcuNjE1MTcgNjEuMDMwMyA1LjEzMjcyIDYwLjQ2NThDMi4xMjIxNCA1OS43ODEzIDAuOTM1MzcxIDU2LjEyODggMi45Njg2MSA1My44MDU0QzQuNjQ1MTUgNTEuODg5NSA0LjE3NTI3IDQ4LjkyMjggMS45ODg3NSA0Ny42MTg4Qy0wLjY2Mjk0MiA0Ni4wMzc0IC0wLjY2Mjk0MiA0Mi4xOTcgMS45ODg3NSA0MC42MTU2QzQuMTc1MjcgMzkuMzExNiA0LjY0NTE1IDM2LjM0NDggMi45Njg2MSAzNC40MjlDMC45MzUzNzEgMzIuMTA1NiAyLjEyMjE0IDI4LjQ1MzEgNS4xMzI3MiAyNy43Njg1QzcuNjE1MTcgMjcuMjA0MSA4Ljk3ODg0IDI0LjUyNzcgNy45NzYzNyAyMi4xODc2QzYuNzYwNjIgMTkuMzQ5NiA5LjAxNzk5IDE2LjI0MjYgMTIuMDkyOCAxNi41MjE4QzE0LjYyODEgMTYuNzUyMSAxNi43NTIxIDE0LjYyODEgMTYuNTIxOCAxMi4wOTI4QzE2LjI0MjYgOS4wMTc5OSAxOS4zNDk2IDYuNzYwNjIgMjIuMTg3NiA3Ljk3NjM3QzI0LjUyNzcgOC45Nzg4NCAyNy4yMDQxIDcuNjE1MTcgMjcuNzY4NSA1LjEzMjcyQzI4LjQ1MzEgMi4xMjIxNCAzMi4xMDU2IDAuOTM1MzcxIDM0LjQyOSAyLjk2ODYxQzM2LjM0NDggNC42NDUxNSAzOS4zMTE2IDQuMTc1MjcgNDAuNjE1NiAxLjk4ODc1WiIgZmlsbD0iIzkyMjc4RiIvPgo8L3N2Zz4K");
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
        object-fit: cover;
        background-color: var(--vs-white-color);
        color: var(--vs-theme-color2);
        font-size: 32px;
        font-weight: 700;
        font-family: var(--vs-title-font);
        margin: 0px;
        line-height: 25px;
    }

    @media (max-width: 1300px) {
        & .vs-hero--style9 .vs-hero__label p {
            width: 100px;
            height: 100px;
            font-size: 28px;
            padding-top: 28px;
        }
    }

    & .vs-hero--style9 .vs-hero__label p {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style9 .vs-hero__label p {
            padding: 40px 15px 15px;
            width: 120px;
            height: 120px;
            font-size: 32px;
        }
    }

    & .vs-hero--style9 .vs-hero__label p span {
        font-size: 22px;
        line-height: 20px;
        color: var(--vs-title-color);
        text-transform: uppercase;
    }

    & .vs-hero--style9 .vs-hero__label {
    }

    @media (max-width: 767px) {
        & .vs-hero--style9 .vs-hero__label {
            display: none;
        }
    }

    & .vs-hero--style9 .vs-hero__ele2 {
        position: absolute;
        bottom: 20%;
        top: auto;
        left: 50px;
        z-index: 2;
    }

    @media (max-width: 1199px) {
        & .vs-hero--style9 .vs-hero__ele2 {
            display: block;
        }
    }

    & .vs-hero--style9 .vs-hero__ele2 {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__ele2 {
            display: none;
        }
    }

    & .vs-hero--style9 .vs-hero__infobox {
        position: relative;
    }

    & .vs-hero--style9 .vs-hero__infobox img {
        width: 100%;
        height: 290px;
        object-fit: cover;
    }

    @media (max-width: 1400px) {
        & .vs-hero--style9 .vs-hero__infobox img {
            height: 285px;
        }
    }

    @media (max-width: 1300px) {
        & .vs-hero--style9 .vs-hero__infobox img {
            height: 268px;
        }
    }

    & .vs-hero--style9 .vs-hero__infobox img {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style9 .vs-hero__infobox img {
            width: 100%;
            height: 290px;
        }
    }

    & .vs-hero--style9 .vs-hero__infobox img {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__infobox img {
            height: 210px;
        }
    }

    & .vs-hero--style9 .vs-hero__txt {
        position: absolute;
        top: 30px;
        left: 30px;
    }

    & .vs-hero--style9 .vs-hero__txt h4 {
        font-size: 32px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0px 0px 8px;
        font-family: var(--vs-special-font);
    }

    @media (max-width: 1300px) {
        & .vs-hero--style9 .vs-hero__txt h4 {
            font-size: 28px;
        }
    }

    & .vs-hero--style9 .vs-hero__txt h4 {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__txt h4 {
            font-size: 24px;
        }
    }

    & .vs-hero--style9 .vs-hero__txt h3 {
        font-size: 36px;
        text-transform: uppercase;
        line-height: 1;
    }

    @media (max-width: 1300px) {
        & .vs-hero--style9 .vs-hero__txt h3 {
            font-size: 30px;
        }
    }

    & .vs-hero--style9 .vs-hero__txt h3 {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__txt h3 {
            font-size: 24px;
            line-height: 1.1;
        }
    }

    & .vs-hero--style9 .vs-hero__txt h3 span {
        font-size: 34px;
        display: block;
    }

    @media (max-width: 1300px) {
        & .vs-hero--style9 .vs-hero__txt h3 span {
            font-size: 28px;
        }
    }

    & .vs-hero--style9 .vs-hero__txt h3 span {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__txt h3 span {
            font-size: 20px;
        }
    }

    & .vs-hero--style9 .vs-hero__txt a {
        font-size: 18px;
        font-family: var(--vs-title-font);
        text-transform: uppercase;
        font-weight: 800;
        display: inline-block;
        border-bottom: 1px solid var(--vs-theme-color2);
        margin-top: 20px;
        color: var(--vs-title-color);
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__txt a {
            margin-top: 10px;
        }
    }

    & .vs-hero--style9 .vs-hero__infoimg {
        position: absolute;
        right: 25px;
        top: 30px;
        width: auto !important;
        height: auto !important;
    }

    @media (max-width: 1400px) {
        & .vs-hero--style9 .vs-hero__infoimg {
            top: 70px;
            width: 160px !important;
        }
    }

    @media (max-width: 1300px) {
        & .vs-hero--style9 .vs-hero__infoimg {
            width: 130px !important;
        }
    }

    & .vs-hero--style9 .vs-hero__infoimg {
    }

    @media (max-width: 1199px) {
        & .vs-hero--style9 .vs-hero__infoimg {
            top: 30px;
            width: auto !important;
        }
    }

    & .vs-hero--style9 .vs-hero__infoimg {
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__infoimg {
            top: 40px;
            width: 130px !important;
        }
    }

    & .vs-hero--style9 .vs-hero__infoicon {
        position: absolute;
        bottom: 15px;
        left: 10px;
        width: auto !important;
        height: auto !important;
    }

    @media (max-width: 991px) {
        & .vs-hero--style9 .vs-hero__infoicon {
            display: none;
        }
    }

    & .vs-information__border {
        border-bottom: 1px solid rgba(var(--vs-title-color-rgb), 0.4);
        position: relative;
        margin-bottom: 10px;
    }

    & .vs-information__border::after {
        content: "";
        position: absolute;
        border-bottom: 5px solid rgba(var(--vs-title-color-rgb), 0.4);
        width: 100%;
        left: 0px;
        bottom: -7px;
    }

    & .vs-information--content {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        gap: 15px;
    }

    @media (max-width: 1199px) {
        & .vs-information--content {
            display: block;
        }
    }

    & .vs-information--content .vs-information__icon {
        --icon-size: 60px;
        width: var(--icon-size);
        height: var(--icon-size);
        min-width: var(--icon-size);
        min-height: var(--icon-size);
        border-radius: 50%;
        border: 1px dashed rgba(var(--vs-title-color-rgb), 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
    }

    @media (max-width: 1199px) {
        & .vs-information--content .vs-information__icon {
            margin-bottom: 15px;
        }
    }

    & .vs-information--content .vs-information__txt p {
        font-family: var(--vs-title-font);
        font-size: 18px;
        margin: 0px;
        font-weight: 600;
        color: var(--vs-title-color);
        text-transform: capitalize;
        transition: 0.3s ease-in-out;
    }

    & .vs-information--content .vs-information__txt p: hover {
        color: var(--vs-theme-color2);
    }

    & .vs-information--content .vs-information__txt span {
        font-size: 14px;
        font-weight: 500;
        text-transform: capitalize;
    }

    & .vs-information--content:hover .vs-information__icon {
        border-color: var(--vs-theme-color2);
    }

    & .new-collections {
        margin-bottom: -45px;
    }

    @media (max-width: 991px) {
        & .new-collections {
            margin-bottom: -100px;
        }
    }

    & .new-collections {
    }

    @media (max-width: 575px) {
        & .new-collections {
            margin-bottom: -200px;
        }
    }

    & .filter-buttons.collections button {
        width: 125px;
        height: 45px;
        margin: 0px 8px;
    }

    @media (max-width: 575px) {
        & .filter-buttons.collections button {
            width: 100%;
            margin-bottom: 10px;
        }
    }

    & .masonry.collections {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 0px 30px;
    }

    @media (max-width: 1199px) {
        & .masonry.collections {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }

    & .masonry.collections {
    }

    @media (max-width: 991px) {
        & .masonry.collections {
            grid-template-columns: 1fr 1fr;
        }
    }

    & .masonry.collections {
    }

    @media (max-width: 575px) {
        & .masonry.collections {
            grid-template-columns: 1fr;
        }
    }

    & .vs-toyscate {
    }

    @media (max-width: 991px) {
        & .vs-toyscate .vs-title {
            margin-top: 70px;
        }
    }

    & .vs-toyscate {
    }

    @media (max-width: 575px) {
        & .vs-toyscate {
            padding: 150px 0px;
        }
    }

    & .vs-toyscate__grid {
        display: grid;
        grid-template-rows: 1fr;
        grid-template-columns: repeat(5, 1fr);
    }

    @media (max-width: 991px) {
        & .vs-toyscate__grid {
            grid-template-columns: repeat(3, 1fr);
            margin-bottom: 70px;
        }
    }

    & .vs-toyscate__grid {
    }

    @media (max-width: 767px) {
        & .vs-toyscate__grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    & .vs-toyscate__grid {
    }

    @media (max-width: 575px) {
        & .vs-toyscate__grid {
            grid-template-columns: 1fr;
        }
    }

    & .vs-toyscate__grid {
    }

    @media (max-width: 767px) {
        & .vs-toyscate__grid .last-child {
            grid-column: 1 / span 2;
            justify-self: center;
        }
    }

    & .vs-toyscate__grid {
    }

    @media (max-width: 575px) {
        & .vs-toyscate__grid .last-child {
            grid-column: auto;
            justify-self: auto;
        }
    }

    & .vs-toyscate--content {
        margin-bottom: 30px;
    }

    & .vs-toyscate--content .vs-toyscate__icon {
        width: 154px;
        height: 154px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: rgba(var(--vs-white-color-rgb), 0.1);
        margin: 0px auto;
        position: relative;
        z-index: 1;
    }

    & .vs-toyscate--content .vs-toyscate__icon::after {
        content: "";
        border-radius: 50%;
        background-color: var(--vs-white-color);
        position: absolute;
        z-index: -1;
        inset: 10px;
    }

    & .vs-toyscate--content .vs-toyscate__title {
        background-color: var(--vs-white-color);
        width: 100%;
        height: 77px;
        display: flex;
        align-items: center;
        justify-content: center;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjA3IiBoZWlnaHQ9Ijc1IiB2aWV3Qm94PSIwIDAgMjA3IDc1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAxMC4wMDE2QzAgMy45ODQyNCA1LjI3NTc5IC0wLjY3MDM0OCAxMS4yNDYyIDAuMDc5NTY0MUw5MS4wMzc1IDEwLjEwMTdDOTkuMzEzMyAxMS4xNDExIDEwNy42ODcgMTEuMTQxMSAxMTUuOTYyIDEwLjEwMTdMMTk1Ljc1NCAwLjA3OTU2NDJDMjAxLjcyNCAtMC42NzAzNDggMjA3IDMuOTg0MjQgMjA3IDEwLjAwMTZWNjQuNjU0MkMyMDcgNzAuNTU3MSAyMDEuOTE0IDc1LjE3NTYgMTk2LjAzOCA3NC42MDc5TDEwNC40NjIgNjUuNzU5OUMxMDMuODIyIDY1LjY5ODEgMTAzLjE3OCA2NS42OTgxIDEwMi41MzggNjUuNzU5OUwxMC45NjE3IDc0LjYwNzlDNS4wODYyMSA3NS4xNzU2IDAgNzAuNTU3MSAwIDY0LjY1NDJWMTAuMDAxNloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
        mask-position: center center;
        mask-repeat: no-repeat;
        mask-size: contain;
        transition: 0.3s ease-in-out;
        margin-top: 8px;
    }

    & .vs-toyscate--content .vs-toyscate__title h6 {
        margin: 0px;
        font-size: 20px;
        line-height: 1;
        transition: 0.3s ease-in-out;
    }

    & .vs-toyscate--content:hover .vs-toyscate__title {
        background-color: var(--vs-theme-color2);
    }

    & .vs-toyscate--content:hover .vs-toyscate__title h6 {
        color: var(--vs-white-color);
    }

    & .vs-toyscate--ele {
        position: absolute;
        left: 10%;
        top: 100px;
    }

    @media (max-width: 1199px) {
        & .vs-toyscate--ele {
            display: none;
        }
    }

    @media (max-width: 1400px) {
        & .vs-contact--ele1.home-9 {
            width: 80px;
        }
    }

    & .vs-bestsell {
        margin-top: -25px;
    }

    @media (max-width: 575px) {
        & .vs-bestsell {
            margin-top: -90px;
        }
    }

    & .vs-bestsell__best-selling {
        border-top: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
        padding-top: 45px;
        margin-top: 25px;
    }

    & .vs-bestsell__view-product {
        color: var(--vs-body-color);
        font-weight: 800;
        letter-spacing: 0.4px;
    }

    & .vs-bestsell__view-product i {
        color: var(--vs-theme-color2);
        font-size: 18px;
        margin-left: 5px;
    }

    & .vs-bestsell--b-selling {
        margin-bottom: 30px;
    }

    & .vs-bestsell--b-selling .vs-bestsell__txt {
        padding-top: 20px;
        text-align: center;
    }

    & .vs-bestsell--b-selling .vs-bestsell__txt p {
        text-transform: capitalize;
        font-weight: 700;
        margin: 0px;
        transition: 0.3s ease-in-out;
    }

    & .vs-bestsell--b-selling .vs-bestsell__txt h6 {
        font-size: 20px;
        line-height: 1.5;
    }

    & .vs-bestsell--b-selling .vs-bestsell__rating {
        display: flex;
        justify-content: center;
        color: var(--vs-theme-color2);
        list-style: none;
        font-size: 14px;
        padding: 0px;
        margin: 8px 0px;
    }

    & .vs-bestsell--b-selling .vs-bestsell__img {
        position: relative;
        background-color: rgba(var(--vs-title-color-rgb), 0.1);
        width: 100%;
        height: 320px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0px auto;
        transition: 0.3s ease-in-out;
    }

    @media (max-width: 1199px) {
        & .vs-bestsell--b-selling .vs-bestsell__img {
            height: 265px;
        }
    }

    & .vs-bestsell--b-selling .vs-bestsell__img {
    }

    @media (max-width: 991px) {
        & .vs-bestsell--b-selling .vs-bestsell__img {
            height: 350px;
        }
    }

    & .vs-bestsell--b-selling .vs-bestsell__img img {
        object-fit: cover;
    }

    @media (max-width: 1199px) {
        & .vs-bestsell--b-selling .vs-bestsell__img img {
            width: 110px;
        }
    }

    & .vs-bestsell--b-selling .vs-bestsell__img img {
    }

    @media (max-width: 991px) {
        & .vs-bestsell--b-selling .vs-bestsell__img img {
            width: auto;
        }
    }

    & .vs-bestsell--b-selling .vs-bestsell__img::before {
        content: "";
        position: absolute;
        top: auto;
        left: 0px;
        width: 100%;
        height: 0%;
        bottom: 0px;
        background-color: rgb(246, 241, 228);
        border-radius: 10px;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    & .vs-bestsell--b-selling .vs-bestsell__label {
        position: absolute;
        font-size: 13px;
        top: 15px;
        right: 15px;
        padding: 10px 18px;
        background-color: var(--vs-white-color);
        border-radius: 20px;
        margin: 0px;
        line-height: 15px;
        font-weight: 700;
    }

    & .vs-bestsell--b-selling .vs-bestsell__hover {
        display: flex;
        align-items: center;
        gap: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    & .vs-bestsell--b-selling .vs-bestsell__btn {
        --icon-size: 50px;
        display: inline-flex;
        min-width: var(--icon-size);
        width: var(--icon-size);
        height: var(--icon-size);
        min-height: var(--icon-size);
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--vs-theme-color1);
        color: var(--vs-white-color);
        border: 2px dashed rgba(var(--vs-white-color-rgb), 0.3);
        position: relative;
        z-index: 1;
        transition: 0.3s ease-in-out;
    }

    & .vs-bestsell--b-selling .vs-bestsell__btn::before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 0%;
        border-radius: 50%;
        background-color: transparent;
        z-index: -1;
        transition: 0.3s ease-in-out;
    }

    & .vs-bestsell--b-selling .vs-bestsell__btn:hover {
        color: var(--vs-white-color);
    }

    & .vs-bestsell--b-selling .vs-bestsell__btn:hover::before {
        background-color: var(--vs-theme-color2);
        height: 100%;
    }

    & .vs-bestsell--b-selling:hover .vs-bestsell__img::before {
        visibility: visible;
        height: 100%;
        opacity: 0.75;
    }

    & .vs-bestsell--b-selling:hover .vs-bestsell__hover {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
    }

    & .vs-bestsell--b-selling:hover .vs-bestsell__txt p {
        color: var(--vs-theme-color2);
    }

    & .vs-feedback-pagination.home-9 {
        padding-top: 40px;
    }

    & .vs-feedback-pagination.home-9 .swiper-pagination-bullet {
        background: rgba(var(--vs-title-color-rgb), 0.3);
    }

    & .vs-feedback-pagination.home-9 .swiper-pagination-bullet-active {
        background: var(--vs-theme-color2);
    }

    & .vs-testimonial--area {
        background-color: rgba(var(--vs-title-color-rgb), 0.1);
    }

    & .vs-testimonial--area .vs-testimonial__icon--quote {
        width: 95px;
        height: 95px;
        line-height: 95px;
        margin: 10px auto 30px;
        mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODkiIGhlaWdodD0iODkiIHZpZXdCb3g9IjAgMCA4OSA4OSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQwLjYxNTYgMS45ODg3NUM0Mi4xOTcgLTAuNjYyOTQyIDQ2LjAzNzQgLTAuNjYyOTQyIDQ3LjYxODggMS45ODg3NUM0OC45MjI4IDQuMTc1MjcgNTEuODg5NSA0LjY0NTE1IDUzLjgwNTQgMi45Njg2MUM1Ni4xMjg4IDAuOTM1MzcxIDU5Ljc4MTMgMi4xMjIxNCA2MC40NjU4IDUuMTMyNzJDNjEuMDMwMyA3LjYxNTE3IDYzLjcwNjcgOC45Nzg4NCA2Ni4wNDY4IDcuOTc2MzdDNjguODg0OCA2Ljc2MDYyIDcxLjk5MTggOS4wMTc5OSA3MS43MTI1IDEyLjA5MjhDNzEuNDgyMyAxNC42MjgxIDczLjYwNjIgMTYuNzUyMSA3Ni4xNDE2IDE2LjUyMThDNzkuMjE2NCAxNi4yNDI2IDgxLjQ3MzggMTkuMzQ5NiA4MC4yNTggMjIuMTg3NkM3OS4yNTU1IDI0LjUyNzcgODAuNjE5MiAyNy4yMDQxIDgzLjEwMTYgMjcuNzY4NUM4Ni4xMTIyIDI4LjQ1MzEgODcuMjk5IDMyLjEwNTYgODUuMjY1OCAzNC40MjlDODMuNTg5MiAzNi4zNDQ4IDg0LjA1OTEgMzkuMzExNiA4Ni4yNDU2IDQwLjYxNTZDODguODk3MyA0Mi4xOTcgODguODk3MyA0Ni4wMzc0IDg2LjI0NTYgNDcuNjE4OEM4NC4wNTkxIDQ4LjkyMjggODMuNTg5MiA1MS44ODk1IDg1LjI2NTggNTMuODA1NEM4Ny4yOTkgNTYuMTI4OCA4Ni4xMTIyIDU5Ljc4MTMgODMuMTAxNiA2MC40NjU4QzgwLjYxOTIgNjEuMDMwMyA3OS4yNTU1IDYzLjcwNjcgODAuMjU4IDY2LjA0NjhDODEuNDczOCA2OC44ODQ4IDc5LjIxNjQgNzEuOTkxOCA3Ni4xNDE2IDcxLjcxMjVDNzMuNjA2MiA3MS40ODIzIDcxLjQ4MjMgNzMuNjA2MiA3MS43MTI1IDc2LjE0MTZDNzEuOTkxOCA3OS4yMTY0IDY4Ljg4NDggODEuNDczOCA2Ni4wNDY4IDgwLjI1OEM2My43MDY3IDc5LjI1NTUgNjEuMDMwMyA4MC42MTkyIDYwLjQ2NTggODMuMTAxNkM1OS43ODEzIDg2LjExMjIgNTYuMTI4OCA4Ny4yOTkgNTMuODA1NCA4NS4yNjU4QzUxLjg4OTUgODMuNTg5MiA0OC45MjI4IDg0LjA1OTEgNDcuNjE4OCA4Ni4yNDU2QzQ2LjAzNzQgODguODk3MyA0Mi4xOTcgODguODk3MyA0MC42MTU2IDg2LjI0NTZDMzkuMzExNiA4NC4wNTkxIDM2LjM0NDggODMuNTg5MiAzNC40MjkgODUuMjY1OEMzMi4xMDU2IDg3LjI5OSAyOC40NTMxIDg2LjExMjIgMjcuNzY4NSA4My4xMDE2QzI3LjIwNDEgODAuNjE5MiAyNC41Mjc3IDc5LjI1NTUgMjIuMTg3NiA4MC4yNThDMTkuMzQ5NiA4MS40NzM4IDE2LjI0MjYgNzkuMjE2NCAxNi41MjE4IDc2LjE0MTZDMTYuNzUyMSA3My42MDYyIDE0LjYyODEgNzEuNDgyMyAxMi4wOTI4IDcxLjcxMjVDOS4wMTc5OSA3MS45OTE4IDYuNzYwNjIgNjguODg0OCA3Ljk3NjM3IDY2LjA0NjhDOC45Nzg4NCA2My43MDY3IDcuNjE1MTcgNjEuMDMwMyA1LjEzMjcyIDYwLjQ2NThDMi4xMjIxNCA1OS43ODEzIDAuOTM1MzcxIDU2LjEyODggMi45Njg2MSA1My44MDU0QzQuNjQ1MTUgNTEuODg5NSA0LjE3NTI3IDQ4LjkyMjggMS45ODg3NSA0Ny42MTg4Qy0wLjY2Mjk0MiA0Ni4wMzc0IC0wLjY2Mjk0MiA0Mi4xOTcgMS45ODg3NSA0MC42MTU2QzQuMTc1MjcgMzkuMzExNiA0LjY0NTE1IDM2LjM0NDggMi45Njg2MSAzNC40MjlDMC45MzUzNzEgMzIuMTA1NiAyLjEyMjE0IDI4LjQ1MzEgNS4xMzI3MiAyNy43Njg1QzcuNjE1MTcgMjcuMjA0MSA4Ljk3ODg0IDI0LjUyNzcgNy45NzYzNyAyMi4xODc2QzYuNzYwNjIgMTkuMzQ5NiA5LjAxNzk5IDE2LjI0MjYgMTIuMDkyOCAxNi41MjE4QzE0LjYyODEgMTYuNzUyMSAxNi43NTIxIDE0LjYyODEgMTYuNTIxOCAxMi4wOTI4QzE2LjI0MjYgOS4wMTc5OSAxOS4zNDk2IDYuNzYwNjIgMjIuMTg3NiA3Ljk3NjM3QzI0LjUyNzcgOC45Nzg4NCAyNy4yMDQxIDcuNjE1MTcgMjcuNzY4NSA1LjEzMjcyQzI4LjQ1MzEgMi4xMjIxNCAzMi4xMDU2IDAuOTM1MzcxIDM0LjQyOSAyLjk2ODYxQzM2LjM0NDggNC42NDUxNSAzOS4zMTE2IDQuMTc1MjcgNDAuNjE1NiAxLjk4ODc1WiIgZmlsbD0iIzkyMjc4RiIvPgo8L3N2Zz4K");
        mask-size: contain;
        mask-position: center center;
        mask-repeat: no-repeat;
        object-fit: cover;
        color: var(--vs-white-color);
        font-size: 40px;
    }

    & .vs-testimonial--area .vs-testimonial__txt {
        text-transform: capitalize;
    }

    & .vs-testimonial--area .vs-testimonial__txt p {
        font-size: 18px;
        color: var(--vs-title-color);
        margin: 0px auto 30px;
        letter-spacing: 0.4px;
        line-height: 30px;
        max-width: 92%;
    }

    & .vs-testimonial--area .vs-testimonial__txt h4 {
        text-transform: capitalize;
        color: var(--vs-title-color);
        font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
        line-height: 1.1;
    }

    & .vs-testimonial--area .vs-testimonial__txt span {
        font-weight: 600;
        letter-spacing: 0.4px;
    }

    & .vs-offer__special-offer {
        border-top: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
        padding-top: 45px;
        margin-top: 25px;
    }

    & .vs-offer--content {
        display: flex;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(var(--vs-title-color-rgb), 0.2);
        margin-bottom: 20px;
    }

    & .vs-offer--content .vs-offer__txt {
        padding-left: 20px;
    }

    & .vs-offer--content .vs-offer__txt p {
        text-transform: capitalize;
        font-weight: 600;
        margin: 0px;
    }

    & .vs-offer--content .vs-offer__txt h6 {
        font-size: 20px;
        line-height: 1.5;
    }

    & .vs-offer--content .vs-offer__rating {
        display: flex;
        align-items: center;
        list-style: none;
        padding: 0px;
        margin: 8px 0px;
        font-size: 14px;
        color: var(--vs-theme-color2);
    }

    & .vs-offer .vs-title__main {
        margin-bottom: 0px;
    }

    @media (max-width: 575px) {
        & .vs-offer .vs-title__main {
            margin-bottom: 10px;
        }
    }

    & .col-lg-12:nth-child(n+2) .vs-offer--content {
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
    }

    & .vs-blog--slide {
    }

    & .vs-blog--slide .custom-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    & .vs-blog--slide .custom-pagination .pag {
        width: 24px;
        height: 10px;
        border-radius: 10px;
        background: rgba(var(--vs-title-color-rgb), 0.2);
        transition: 0.3s;
        cursor: pointer;
    }

    & .vs-blog--slide .custom-pagination .pag.active {
        width: 40px;
        background: var(--vs-theme-color2);
        cursor: pointer;
    }

    & .vs-blog--home-9 .vs-blog__inner {
        display: flex;
        align-items: center;
        background-color: transparent;
        border: 1px solid rgba(var(--vs-title-color-rgb), 0.4);
        border-radius: 25px;
        padding: 15px;
    }

    @media (max-width: 575px) {
        & .vs-blog--home-9 .vs-blog__inner {
            display: block;
        }
    }

    & .vs-blog--home-9 .vs-blog__content {
        padding: 0px 0px 0px 25px;
        max-width: 330px;
    }

    @media (max-width: 1199px) {
        & .vs-blog--home-9 .vs-blog__content {
            padding: 0px 0px 0px 20px;
        }
    }

    & .vs-blog--home-9 .vs-blog__share > ul > li {
    }

    @media (max-width: 1199px) {
        & .vs-blog--home-9 .vs-blog__share > ul > li {
            padding: 0px;
        }
    }

    & .vs-blog--home-9 .vs-blog__share > ul > li {
    }

    @media (max-width: 991px) {
        & .vs-blog--home-9 .vs-blog__share > ul > li {
            padding: 8px 0px;
        }
    }

    & .vs-blog--home-9 .vs-blog__heading {
    }

    @media (max-width: 1199px) {
        & .vs-blog--home-9 .vs-blog__heading {
            margin-bottom: 5px;
        }
    }

    & .vs-blog--home-9 .vs-blog__heading {
    }

    @media (max-width: 991px) {
        & .vs-blog--home-9 .vs-blog__heading {
            margin-bottom: 10px;
            font-size: 30px;
        }
    }

    & .vs-blog--home-9 .vs-blog__img img {
    }

    @media (max-width: 1199px) {
        & .vs-blog--home-9 .vs-blog__img img {
            width: 370px;
        }
    }

    & .vs-blog--home-9 .vs-blog__img img {
    }

    @media (max-width: 991px) {
        & .vs-blog--home-9 .vs-blog__img img {
            width: 100%;
            margin-bottom: 20px;
        }
    }

    & .vs-blog--home-9 .vs-blog__meta {
    }

    @media (max-width: 1199px) {
        & .vs-blog--home-9 .vs-blog__meta {
            margin-bottom: 5px;
        }
    }

    & .vs-blog--home-9 .vs-blog__meta {
    }

    @media (max-width: 991px) {
        & .vs-blog--home-9 .vs-blog__meta {
            margin-bottom: 10px;
        }
    }

    & .vs-blog--home-9::before {
        display: none;
    }

    & .vs-blog--home-9:hover .vs-blog__inner {
        background-color: transparent;
        border: 1px solid rgba(0, 0, 0, 0.4);
    }

    & .vs-brand--image {
        text-align: center;
        margin-bottom: 30px;
    }

    display: none;
}

.vs-blog--home-9:hover .vs-blog__inner {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.vs-brand--image {
    text-align: center;
    margin-bottom: 30px;
}
