@charset "UTF-8";
:root {
    --vs-theme-color1: #000066;
    --vs-theme-color1-rgb: 112, 22, 126;
    --vs-theme-color2: #eb2932;
    --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-serif;
    --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: 80px;
    --vs-section-space-mobile: 80px;
    --vs-section-title-space: 80px;
    --ripple-ani-duration: 5s;
}

/*------------------- 1.5. Reset -------------------*/

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

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

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

iframe {
    border: none;
    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;
}

ol {
    list-style-type: decimal;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    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: 0;
    transition: all ease 0.4s;
}

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

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

button {
    transition: all ease 0.4s;
}

img {
    border: none;
    max-width: 100%;
}

ins {
    text-decoration: none;
}

pre {
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

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

p {
    color: #000000;
    line-height: 1.64;
    font-size: large;
}
    /* Small devices */

@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, 5vw + 1rem, 5rem);
    /* 40px - 90px */
    line-height: 1.2;
}

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

h3,
.h3 {
    font-size: clamp(1.8rem, 3vw + 0.5rem, 3.6rem);
    /* 28.8px - 57.6px */
    line-height: 1.1;
}

h4,
.h4 {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 3rem);
    /* ~28px - 48px */
    line-height: 1.3;
}

h5,
.h5 {
    font-size: clamp(1.3rem, 2vw + 0.3rem, 2.3rem);
    /* 20.8px - 36.8px */
    line-height: 1.4;
}

h6,
.h6 {
    font-size: clamp(1.125rem, 1.5vw + 0.25rem, 1.843rem);
    /* 18px - 29.5px */
    line-height: 1.5;
}

/*------------------- 1.6. Responsive -------------------*/

/*-----------------
    3.2 Responsive Media Queries
-----------------*/

/**
@include respond-above(sm) {
  .element {
    font-weight: bold;
  }
}

@media (min-width: 768px) {
  .element {
    font-weight: bold;
  }
}
**/

/**
@include respond-below(lg) {
  .element {
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .element {
    font-weight: bold;
  }
}
**/

/**
@include respond-between(sm, md) {
  .element {
    font-weight: bold;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .element {
    font-weight: bold;
  }
}
**/

/*------------------- 1.7. Wordpress Default -------------------*/

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: 0 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 0;
}

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

.wp-block-button .wp-block-button__link {
    color: #fff;
}

.wp-block-button .wp-block-button__link:hover {
    color: #fff;
    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: #fff;
    background-color: var(--vs-theme-color1);
    border-color: var(--vs-theme-color1);
}

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

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

ul.wp-block-latest-posts {
    padding: 0;
    margin: 0;
    margin-bottom: 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 0;
}

.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;
    min-width: 0;
    border-radius: 12px 0 0 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::-moz-placeholder {
    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: 0;
    border: none;
    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: 0 12px 12px 0;
}

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

.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: 0;
    width: 120px;
    border: none;
    height: 50px;
    color: #fff;
    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: 0 0 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: none;
}

.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: "\f0c1";
    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: 0;
    top: 0;
    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: "\f10e";
}

.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: none;
    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: #f3f3f3;
    margin-bottom: 30px;
    border: 1px solid #f3f3f3;
}

.vs-search .search-grid-content {
    padding: 30px;
    /* Small devices */
}

@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: 0;
}

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

/* Large devices */

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

/* Small devices */

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

/*=================================
    02. Reset
==================================*/

/*------------------- 2.1. Container -------------------*/

@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: 0 !important;
        margin-right: 0 !important;
    }
}

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

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

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

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

/*------------------- 2.2. Grid -------------------*/

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

/*------------------- 2.3. Input -------------------*/

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

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

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

/*------------------- 2.4. Slick Slider -------------------*/

.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 0;
    margin: 38px 0 38px 0;
    line-height: 0;
    text-align: center;
    height: -moz-max-content;
    height: max-content;
}

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

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

.slick-dots button {
    font-size: 0;
    padding: 0;
    background-color: transparent;
    width: 8px;
    height: 8px;
    line-height: 0;
    border-radius: 9999px;
    border: none;
    background-color: var(--dots-bg, #d8d8d8);
    transition: all ease 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 0 0 -15px;
    border: 2px solid var(--vs-theme-color1);
    border-radius: 50%;
    transition: all ease 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: 0;
    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: 0;
}

.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: 0 5px;
}

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

/* Extra large devices */

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

/* Medium Large devices */

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

/* Medium devices */

@media (max-width: 991px) {
    .slick-arrow {
        --icon-size: 40px;
        margin-right: 40px;
    }
    .slick-arrow.slick-next {
        margin-right: 0;
        margin-left: 40px;
    }
    .slick-dots {
        margin: 8px 0 38px 0;
    }
}

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

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

@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: all 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);
}

.nav-prev-1 {
    left: -118px;
    /* Extra large devices */
}

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

.nav-next-2 {
    right: -118px;
    /* Extra large devices */
}

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

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

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #000;
    opacity: 0.3;
    margin: 0 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;
}

/*------------------- 2.5. Mobile Menu -------------------*/

.vs-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    transition: all ease 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 #fdedf1;
}

.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: none;
    font-size: 22px;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    line-height: 1;
    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: #fff;
    border-right: 3px solid var(--vs-theme-color1);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    transition: all ease 1s;
    z-index: 1;
}

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

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

.vs-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 70px);
    padding-bottom: 0;
    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: 0;
    padding: 0 0;
}

.vs-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
}

.vs-mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1;
}

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

.vs-mobile-menu ul li a:before {
    content: "\f105";
    font-family: var(--vs-icon-font);
    position: relative;
    left: 0;
    top: 0;
    margin-right: 10px;
    display: inline-block;
    transition: all 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: none;
}

.vs-mobile-menu ul .vs-item-has-children>a .vs-mean-expand {
    position: absolute;
    right: 0;
    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: 0 0 20px -8px rgba(112, 22, 126, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.vs-mobile-menu ul .vs-item-has-children>a .vs-mean-expand:before {
    content: "\f067";
    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: "\f068";
}

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

.vs-mobile-menu>ul>li:last-child {
    border-bottom: none;
}

.vs-menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 24px;
    border: none;
    display: inline-block;
    background-color: #f2f6ff;
    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: 0 20px;
    }
}

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

.email-subscription__input {
    flex: 1;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
    background-color: transparent;
    outline: none;
    color: #333;
}

.email-subscription__input::-moz-placeholder {
    color: #999;
    font-size: 15px;
}

.email-subscription__input::placeholder {
    color: #999;
    font-size: 15px;
}

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

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

.email-subscription__btn:hover {
    background-color: #8cc60f;
    transform: scale(1.05);
}

.email-subscription__btn svg {
    display: block;
    fill: #fff;
    transition: fill 0.3s ease;
}

@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: 0;
    }
    .email-subscription__btn {
        border-radius: 12px;
        width: 100%;
    }
}

/*=================================
    03. Utilities
==================================*/

/*------------------- 3.1. Preloader -------------------*/

.preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--vs-white-color);
}

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

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

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

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

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

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

.loader:after {
    animation: ball2 1.5s infinite;
    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: 0;
        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: 0;
    }
}

/*------------------- 3.2. Buttons -------------------*/

.vs-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    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: 18px;
    font-weight: 900;
    line-height: 1;
    padding: 18.5px 36px;
    z-index: 1;
    overflow: hidden;
    letter-spacing: 0.5px;
    border-radius: 50px;
    /* Medium devices */
}

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

.vs-btn__border {
    position: absolute;
    top: 4px;
    left: 5px;
    right: 5px;
    bottom: 4px;
    border-radius: inherit;
    background-color: transparent;
    border: 3px dashed var(--vs-white-color);
    z-index: 1;
    opacity: 0.4;
    transition: all ease 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: all ease 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(0);
}

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

.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: none;
    text-align: center;
    border-radius: 50%;
    padding: 0;
}

.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: #f2f6ff;
    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: 0px 10px 24px rgba(0, 0, 0, 0.08);
}

.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: none;
    background-color: transparent;
    padding: 0;
}

.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: all ease 0.4s;
}

.play-btn:after,
.play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--vs-theme-color2);
    z-index: -1;
    border-radius: 50%;
    transition: all ease 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: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--vs-theme-color1);
    transition: all ease 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%;
    /* Small devices */
}

.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: all ease 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: spin 13s infinite linear;
}

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

@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: all ease 0.4s;
    z-index: 96;
}

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

/* Large devices */

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

/* Small devices */

@media (max-width: 767px) {
    .play-btn {
        --icon-size: 60px;
    }
    .scrollToTop {
        right: 20px;
    }
    .scrollToTop.show {
        bottom: 20px;
    }
}

/*------------------- 3.3. Titles -------------------*/

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

.vs-title__main {
    font-size: clamp(1.875rem, 1.563rem + 1.56vw, 3.438rem);
    line-height: 1;
    transform: translateZ(0);
}

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

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

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

.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: 0;
    margin-left: auto;
    /* Large devices */
}

@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: 0;
    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: 0;
    flex: none;
}

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

/*------------------- 3.4. Common -------------------*/

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

.image-scale-hover img {
    transition: all ease 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;
}

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

.badge {
    position: absolute;
    width: -moz-fit-content;
    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 0 30px 0;
}

.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 #eef0ff;
    line-height: 1;
    letter-spacing: -0.08em;
    font-weight: 400;
    position: relative;
    z-index: 31;
    text-align: right;
    margin: -234px 30px -59px 0;
}

.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;
    color: #000;
    text-align: justify;
}

.tab-content p {
	text-align:justify;
}

.vs-member-table td {
    padding: 10px 15px;
}

.vs-actvities .accordion-body {
	color:#000 !important;
	line-height: 2 !important;
}

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

.vs-list li {
    position: relative;
    font-weight: 900;
    font-size: 18px;
    color: var(--vs-title-color);
    text-transform: capitalize;
    font-family: var(--vs-title-font);
    padding-left: 39px;
}

.vs-list li::before {
    position: absolute;
    content: "\e426";
    font-family: var(--vs-icon-font);
    left: 0;
    color: var(--vs-theme-color2);
    font-size: 26px;
    top: 0;
    
}

.vs-list.style2 li {
    font-weight: 500;
    font-size: 17px;
    color: #25283E;
    padding-left: 30px;
    font-family: var(--vs-body-font);
    padding-bottom: 10px;
}

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

.vs-custom-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 0 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;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    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: 0;
    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: all 0.4s ease;
}

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

.trust_logo {
    max-width: 250px !important;
    margin-bottom: 20px;
}

.testimonial-card {
      background: #fff;
      border-radius: 10px;
      border: 1px solid #eee;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      padding: 25px;
      margin-bottom: 30px;
      transition: all 0.3s ease-in-out;
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
.testimonial-name {
    font-weight: 600;
    font-size: 1.3rem;
    color: #000066;
    margin-bottom: 5px;
}
    .testimonial-relation {
      font-style: italic;
      font-size: 0.95rem;
      color: #777;
      margin-bottom: 15px;
    }
    .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
    .testimonial-section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #2c3e50;
    }
	
	.photo_gallery .vs-gallery__image--link {
    min-height: 200px;
    max-height: 200px;
    display: flex;
    align-items: center;
	overflow:hidden;
}

.video_gallery iframe{
	width:100%;
	height:450px;
}

@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: 0;
    left: 0;
    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%);
    background-size: 200% 200%;
    animation: shimmer 3s linear infinite;
    filter: blur(3px);
}

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

/*------------------- 3.6. Font -------------------*/

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

/*------------------- 3.7. Background -------------------*/

.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: #e5e5e5;
}

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

/*------------------- 3.8. Text Color -------------------*/

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

/*------------------- 3.9. Overlay -------------------*/

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    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;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    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;
}

/*------------------- 3.10. Animation -------------------*/

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

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

.ripple-animation,
.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(0);
    }
}

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

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

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

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

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

@keyframes spin {
    to {
        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;
    }
}

/*------------------- 3.11. icons -------------------*/

.sideMenuToggler {
    background-color: transparent;
    border: 0;
    padding: 0;
    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: 0;
    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: all ease 0.4s;
    width: 45px;
    height: 45px;
    transform: translate(-50%, -50%);
    transform-origin: center center;
}

/*------------------- 3.12. social -------------------*/

.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: 32px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 3px 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: 14px;
    margin-right: 7px;
    transition: all ease 0.4s;
}

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

.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: 0;
    color: var(--vs-body-color);
    min-width: auto;
    min-height: auto;
    font-size: 15px;
}

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

/*------------------- 3.13. sticky -------------------*/

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

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

/*------------------- 3.14. backtoptop -------------------*/

.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: none;
    cursor: pointer;
    z-index: 1000;
    bottom: -50px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
}

.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;
    /* Circumference = 2 * PI * R (R=40) */
    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: all 0.4s ease;
}

/*=================================
    04. Template Style
==================================*/

/*------------------- 4.1. Widget  -------------------*/

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

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

.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: 0 0 18px 0;
    padding: 0 0 17px 0;
    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: "\f101";
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 0;
    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: none;
}

.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: 0;
    top: -4.5px;
    font-size: 16px;
    transition: all ease 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: 0;
    padding: 0;
    margin-bottom: 20px;
}

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

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

/* Small devices */

@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 0 17px 0;
    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: none;
    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;
    /* Large devices */
}

@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: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.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: all ease 0.4s;
}

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

.recent-post .post-title a {
    color: var(--vs-title-color);
    display: inline-block;
}

.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: all 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: #fff;
    padding-bottom: 0;
    border: none;
}

.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: #f1dbbe;
}

.wp-block-calendar th,
.calendar_wrap th {
    font-size: 14px;
    padding: 5px 5px;
    border: none;
    text-align: center;
    border-right: 1px solid #fff;
    color: #01133c;
    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: #01133c;
    border: 1px solid #ededed;
    text-align: center;
    background-color: transparent;
    transition: all ease 0.4s;
}

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

.wp-block-calendar thead,
.calendar_wrap thead {
    background-color: #f6f6f6;
}

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

.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: all ease 0.4s;
}

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

.widget_shopping_cart {
    text-align: left;
}

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

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

.widget_shopping_cart .remove {
    position: absolute;
    right: 0;
    top: 0;
    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: 0;
    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: 0;
    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: 0;
    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: -moz-max-content;
    width: max-content;
    min-width: 40px;
    font-size: 12px;
    padding: 0;
    height: 25px;
    margin: 0 -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: 0 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: 0;
}

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

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

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

.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: 0;
    margin: 0;
}

.sidebar-area ol.wp-block-latest-comments li {
    line-height: 1.5;
    margin: 0 0 20px 0;
    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: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-product {
    display: flex;
}

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

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

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

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

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

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

.quote-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    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 auto;
}

/* Large devices */

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

/* Medium devices */

@media (max-width: 991px) {
    .sidebar-area {
        padding-top: 30px;
    }
    .wp-block-tag-cloud a,
    .tagcloud a {
        padding: 10.5px 18px;
    }
}

/* Small devices */

@media (max-width: 767px) {
    .contact-widget .icon {
        --icon-size: 30px;
        --vs-icon-font-size: 12px;
        top: 5px;
    }
    .contact-widget .contact {
        padding: 0 0 0 45px;
        margin: 0 0 20px 0;
        border-bottom: none;
    }
    .sidebar-gallery {
        gap: 10px;
    }
}

/* Extra small devices */

@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: 0 0 13px 0;
}

.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: 0 0 3px 0;
}

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

.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: 0;
    letter-spacing: 0.48px;
    margin: 0 0 11px 0;
}

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

.sidebar-banner__btn>span {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 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 #ccc;
    border-radius: 6px;
    padding: 0 10px;
    background-color: #fff;
}

.vs-side-form__group--inline {
    display: flex;
    gap: 10px;
    /* Medium devices */
}

@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: none;
    padding: 0;
    background: none;
}

.vs-side-form__plan {
    width: 100%;
    border: 0;
    min-height: 56px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--vs-title-color);
    padding: 0 20px;
    outline: none;
    cursor: pointer;
    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;
    -webkit-appearance: none;
    -moz-appearance: none;
    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 0 24px 0;
    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: #25283E;
}

.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;
    padding: 16px 10px;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: transparent;
    letter-spacing: 0.48px;
    font-weight: 500;
    text-transform: capitalize;
}

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

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

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

.vs-side-form__group--checkbox {
    border: none;
    background: none;
    padding: 0;
    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;
    -webkit-user-select: none;
    -moz-user-select: none;
    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: solid var(--vs-white-color);
    border-width: 0 2px 2px 0;
    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: all 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: none;
    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 30px;
}

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

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

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

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

.author-sidebar__schedule--list li:last-child {
    border-bottom: none;
}

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

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

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

.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: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
}

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

.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: -moz-max-content;
    width: max-content;
    display: block;
    border: none;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    max-width: 100%;
    padding: 0;
}

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

.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 0 25px 0;
    max-width: 285px;
}

.footer-info {
    display: flex;
}

.footer-info_group {
    display: flex;
    justify-content: center;
    border-right: 1px solid #152b54;
    padding: 60px 0 60px 0;
}

.footer-info_group:last-child {
    border-right: none;
}

.footer-info_group.style2 {
    border: none;
}

.footer-info_group.style2 .footer-info_icon {
    background-color: transparent;
    border: 1px solid #35496f;
}

.footer-info_icon {
    width: 85px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    background-color: #152b54;
    color: var(--vs-white-color);
    font-size: 30px;
    margin: 0 25px 0 0;
    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: 0 0 5px 0;
}

.footer-info_link {
    max-width: 190px;
    color: #8a99b4;
    margin: 0 0 -0.15em 0;
}

.footer-info_link a {
    color: inherit;
}

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

.footer-number {
    border-top: 1px solid #14284f;
    padding: 43px 0 0 0;
    margin: 34px 0 0 0;
    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: 0;
    line-height: 1;
    display: inline-block;
}

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

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

.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: 0 5px 0 0;
    color: var(--vs-white-color);
    background-color: #15284c;
    text-align: center;
    border-radius: 5px;
}

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

.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: 2px solid #e7e8ec;
    outline-offset: -2px;
    color: var(--vs-body-color);
    box-shadow: 8px 13.856px 30px 0px rgba(132, 137, 154, 0.1);
}

.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 0 0 5px;
    border: 1px solid #14284f;
    height: 55px;
    color: var(--vs-white-color);
    flex: 1;
}

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

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

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

.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: none;
    margin: -0.3em 0 0 0;
}

.footer-schedule th,
.footer-schedule td {
    padding: 0 0 10px 0;
    color: var(--vs-body-color);
    border: none;
    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: -moz-max-content;
    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: 0;
    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 0 22px 0;
}

.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: 0;
    top: 4px;
    color: var(--vs-theme-color1);
}

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

.newsletter-form2 input {
    background-color: #ebecf1;
    margin-bottom: 15px;
    border-radius: 7px;
}

/* Medium Large devices */

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

/* Large devices */

@media (max-width: 1199px) {
    .footer-widget {
        margin-bottom: 40px;
    }
    .footer-widget .widget_title {
        font-size: 26px;
    }
    .footer-number {
        padding: 27px 0 0 0;
        margin: 17px 0 0 0;
    }
    .footer-info {
        display: block;
        text-align: center;
    }
    .footer-info_icon {
        margin: 0 0 20px 0;
    }
    .footer-info_group {
        padding: 0;
        border: none;
    }
}

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

/* Medium devices */

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

/* Small devices */

@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: all 0.3s ease-in-out;
}

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

.sidebar-gallery .gallery-thumb:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--vs-theme-color1);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all ease 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: all ease 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: 0;
    top: 0;
    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: all ease 0.4s;
}

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

.vs-gallery--row {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
    gap: 24px;
    /* Small devices */
    /* Extra small devices */
}

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

@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;
    /* Small devices */
    /* Extra small devices */
}

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

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

.vs-gallery--col2 {
    grid-area: 1/2/2/3;
    /* Small devices */
    /* Extra small devices */
}

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

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

.vs-gallery--col3 {
    grid-area: 1/3/3/4;
    /* Small devices */
    /* Extra small devices */
}

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

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

.vs-gallery--col4 {
    grid-area: 2/1/3/3;
    /* Small devices */
    /* Extra small devices */
}

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

@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: all 0.3s ease-in-out;
    transform: scale(1.04);
    transform-origin: center center;
    border-radius: 20px;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

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

.vs-gallery__hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all ease 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: 0 0 29px 0;
    transition: all ease 0.4s;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-gallery__icon {
        --icon-size: 60px;
        margin: 0 0 10px 0;
        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: all 0.3s ease-in-out;
    /* Medium devices */
}

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

@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: 0;
    transition: all 0.3s ease-in-out;
}

.vs-gallery__heading:hover {
    color: #ffffff;
}

.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(0);
}

/*------------------- 4.2. Header  -------------------*/

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

.vs-header__ele1 {
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    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: 9px 0;
}

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

.vs-header__info span {
    font-weight: 700;
    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: 20px;
    gap: 10px;
    margin-left: 35px;
    align-items: center;
}

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

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

.vs-header__logo.style2 img {
    opacity: 1;
    max-width: 80px;
}

@media (max-width: 767px) {
    .vs-header__logo.style2 img, .vs-menu-wrapper .mobile-logo img {
    max-width: 75px;
}
}

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

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

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

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

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

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

.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: 14px;
    display: flex;
    overflow: hidden;
    position: absolute;
    bottom: -8px;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.vs-balls__ball {
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    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--screen {
    mix-blend-mode: screen;
}

.main-menu a {
    display: block;
    position: relative;
    font-family: var(--vs-title-font);
    font-weight: 900;
    font-size: 18px;
    color: var(--vs-title-color);
    text-transform: uppercase;
}

.main-menu a:hover {
    color: var(--vs-theme-color1) 1;
}

.main-menu>ul>li {
    margin: 0 18px;
    /* Large devices */
}

@media (max-width: 1199px) {
    .main-menu>ul>li {
        margin: 0 10px;
    }
}

.main-menu>ul>li>a {
    padding: 44px 0;
    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 ease;
}

.main-menu>ul>li>a:hover,
.main-menu>ul>li>a.active {
    color: var(--vs-white-color);
}

.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-white-color);
}

.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: 0;
    padding: 0;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu ul li.menu-item-has-children>a:after {
    content: "\f078";
    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: 0;
}

.main-menu ul li:first-child {
    margin-left: 0;
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--vs-white-color);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    visibility: hidden;
    min-width: 210px;
    width: -moz-max-content;
    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: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
    transform-origin: top center;
    transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}

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

.main-menu ul.sub-menu li.menu-item-has-children>a:after {
    content: "\f105";
    float: right;
    top: 3px;
}

.main-menu ul.sub-menu li a {
    position: relative;
    padding: 5px 0;
}

.main-menu ul.sub-menu li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--vs-theme-color2);
    transition: all 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: "\f105";
    font-family: var(--vs-icon-font);
    font-weight: 400;
    margin: 0 10px 0 0;
}

.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: 0;
    height: 100%;
    opacity: 1;
    visibility: visible;
    transform: translateX(-15px);
}

.main-menu ul.sub-menu li ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0;
    margin: 0 0;
    margin-left: 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 15px;
    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: 0 15px;
}

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

.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: 0;
    padding-bottom: 15px;
    margin-bottom: 10px;
    text-transform: capitalize;
    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: 0;
    left: 0;
    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: 0;
}

.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: "\f105";
    font-family: var(--vs-icon-font);
    font-weight: 400;
    margin: 0 10px 0 0;
}

.main-menu ul.mega-menu>li>ul>li>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 42px;
    background: var(--vs-theme-color2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    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: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.6s ease;
    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: 0;
    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: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.6s ease;
    transform: translateX(-15px);
}

.vs-client--area {
	background:#cc8315;
}

/*------------------- 4.3. Footer  -------------------*/

.vs-footer {
    overflow: hidden;
    background-color: #000066;
}

.vs-footer__logo-link img {
    max-width: 200px;
    border-radius: 6px;
}

.vs-footer__ele1,
.vs-footer__ele2,
.vs-footer__ele3,
.vs-footer__ele4 {
    position: absolute;
    bottom: 0;
    z-index: -1;
    /* Small devices */
}

@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: 3%;
}

.vs-footer__ele3 {
    right: 176px;
}

.vs-footer__ele4 {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.vs-footer__desc {
    font-weight: 400;
    color: #ffffff;
    padding-right: 9%;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .vs-footer__desc {
        padding-right: 0;
    }
}

.vs-footer__title {
    color: var(--vs-white-color);
    font-size: 24px;
    position: relative;
    padding: 0 0 17px 0;
    margin: 0 0 30px 0;
    /* Small devices */
}

@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: 0;
    bottom: 0;
    /* Small devices */
}

@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);
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.vs-footer__menu {
    -moz-column-count: 2;
    column-count: 2;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-footer__menu {
        -moz-column-count: 1;
        column-count: 1;
        -moz-column-gap: 15px;
        column-gap: 15px;
        display: grid;
        gap: 15px;
    }
}

.vs-footer__menu--list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-footer__menu--list {
        text-align: center;
    }
}

.vs-footer__menu--list>li {
    margin: 0 0 15px 0;
    transition: all 0.3s ease-in-out;
}

.vs-footer__menu--list>li:last-child {
    margin: 0 0 0 0;
}

.vs-footer__menu--list>li>a {
    color: var(--vs-text-color);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    display: block;
    position: relative;
    padding: 0 0 0 25px;
    letter-spacing: 0.2px;
}

@media (max-width: 1199px) {
    .vs-footer__menu--list>li>a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .vs-footer__menu--list>li>a {
        display: inline-block;
    }
}

.vs-footer__menu--list>li>a::before {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    left: 0;
    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 0;
}

.vs-footer__bottom--menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    list-style: none;
    -moz-column-gap: 37px;
    column-gap: 37px;
    /* Small devices */
}

@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: 0;
    bottom: -2px;
    opacity: 0;
    visibility: hidden;
    height: 2px;
    background-color: var(--vs-theme-color5);
    transition: all 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: 0;
    right: auto;
    opacity: 1;
    visibility: visible;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.vs-footer__copyright {
    color: var(--vs-text-color);
    font-weight: 400;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    font-size: 13px;
}

@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: 0;
    bottom: -2px;
    opacity: 0;
    visibility: hidden;
    height: 2px;
    background-color: var(--vs-theme-color5);
    transition: all 0.3s ease-in-out;
}

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

.vs-footer__copyright a:hover::before {
    left: 0;
    right: auto;
    opacity: 1;
    visibility: visible;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

/*------------------- 4.4. Breadcumb  -------------------*/

.breadcrumb-wrapper {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: var(--vs-title-color);
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: bottom center;
    position: relative;
    overflow: hidden;
    top: -65px;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: 325px;
    }
}

.breadcrumb-wrapper__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    bottom: -35px;
}

.breadcrumb-wrapper__bg>img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.breadcrumb-wrapper__ele1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.breadcrumb-wrapper__content {
    text-align: center;
    position: absolute;
    bottom: 0;
    background: #eb2932;
    padding: 15px 45px 25px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.breadcrumb-wrapper__title {
    color: var(--vs-white-color);
    width: 100%;
    text-transform: capitalize;
    font-size: 55px;
    margin: 0 0 5px 0;
    font-weight: 800;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper__title {
        margin: 0 0 10px 0;
    }
}

.breadcrumb-wrapper__menu {
    max-width: 100%;
    margin: -0.35em 0 -0.35em 0;
    padding: 0;
    list-style-type: none;
}

.breadcrumb-wrapper__menu--item {
    display: inline-block;
    list-style: none;
    position: relative;
}

.breadcrumb-wrapper__menu--item::after {
    content: "\f101";
    font-family: var(--vs-icon-font);
    display: inline-block;
    margin: 0 3px 0 7px;
    position: relative;
    color: inherit;
    font-size: 16px;
    color: #ffffff;
    line-height: 16px;
}

.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: 300;
    font-size: 17px;
    font-family: var(--vs-title-font);
    color: var(--vs-white-color);
    text-transform: capitalize;
}

.breadcrumb-wrapper__menu a {
    color: #ffffff;
}

.breadcrumb-wrapper__menu a:hover {
    color: var(--vs-white-color);
}

/*------------------- 4.5. Pagination  -------------------*/

.vs-pagination {
    margin-bottom: 30px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vs-pagination ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vs-pagination li {
    display: inline-block;
    margin: 0 0px;
    list-style-type: none;
}

.vs-pagination li:last-child {
    margin-right: 0;
}

.vs-pagination li:first-child {
    margin-left: 0;
}

.vs-pagination span,
.vs-pagination a {
    display: inline-block;
    font-family: var(--vs-title-font);
    color: var(--vs-body-color);
    text-align: center;
    border: none;
    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;
    /* Small devices */
}

@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;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color3);
    border: 1px solid var(--vs-stroke-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    opacity: 70%;
    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);
}

/*------------------- 4.6. Blog  -------------------*/

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

blockquote p {
    font-family: inherit;
    color: inherit;
    z-index: 3;
    width: 100%;
    margin-bottom: 0 !important;
    line-height: 1.5;
    position: relative;
}

blockquote:before {
    content: "\e1e4";
    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: 0;
}

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: 0;
    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: 0;
    border-radius: 30px;
    box-shadow: 0 8px 0 var(--vs-theme-color2);
    background-color: transparent;
}

blockquote.vs-quote:before {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 45px;
    right: auto;
    line-height: 1;
    font-weight: 300;
    opacity: 1;
    width: auto;
    height: auto;
    text-align: center;
    background-color: transparent;
    color: var(--vs-theme-color2);
    font-size: 60px;
    display: inline-block;
    margin: 0 0 0px 0;
    border-radius: 0%;
    font-weight: 700;
}

blockquote.vs-quote cite {
    padding: 0;
    margin-top: 18px;
    padding-left: 34px;
    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;
    font-size: 22px;
}

blockquote.vs-quote .quote-author {
    display: block;
    font-size: 14px;
    color: #74787c;
    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: #8b919c;
}

.blog-meta span:last-child,
.blog-meta a:last-child {
    margin-right: 0;
}

.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: 0;
    right: 0;
    left: 0;
}

.vs-blog__img {
    border-radius: 20px;
    transform: scale(1.05);
    transition: all 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: 30px 0 35px 0;
}

.vs-blog__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 9px 0;
}

.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: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.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: all 0.3s ease-in-out;
}

.vs-blog--style2 {
    margin: 0 0 30px 0;
    padding: 0 8px 8px 0;
    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: 0;
    bottom: 0;
    transition: all 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: all 0.3s ease-in-out;
}

.vs-blog--style2 .vs-blog__meta {
    margin: 0 0 11px 0;
}

.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%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.6s ease;
    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 15px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-blog--style2 .vs-blog__content {
        padding: 20px 15px 10px 15px;
    }
}

.vs-blog--style2 .vs-blog__heading {
    font-size: clamp(1.3rem, 0.818rem + 0.91vw, 1.5rem);
    margin: 0 0 12px 0;
}

.vs-blog--style2 .vs-blog__desc {
    text-transform: capitalize;
    margin: 0 0 8px 0;
    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: 0;
    margin-bottom: 0;
}

.vs-blog--style2 .vs-blog__share>ul>li {
    position: relative;
    padding: 10px 0;
}

.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: 0;
    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: all 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: all 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%;
    transform: rotate(90deg);
    z-index: -1;
    background-color: var(--vs-theme-color2);
    opacity: 0;
    visibility: hidden;
    transition: all 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:hover>ul li {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.vs-blog--style2:hover::before {
    background-color: var(--vs-theme-color2);
    transition: all 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: all 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 ease;
}

.vs-blog--style2:hover .vs-blog__share>ul>li>a {
    background-color: var(--vs-theme-color2);
    transition: all 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: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
    text-transform: capitalize;
}

.vs-blog--single figure {
    margin: 0.5rem 0 1.5rem;
}

.vs-blog--single figure img {
    border-radius: 20px;
}

.vs-blog--single .vs-blog__content {
    padding-bottom: 0;
}

.vs-blog--single .vs-blog__footer {
    padding: 35px 0 0 0;
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.vs-blog--single .vs-blog__footer--ele1 {
    position: absolute;
    top: 0;
}

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

.vs-blog--single .vs-blog__footer--share__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: 50%;
    padding: 5px 20px;
    gap: 10px;
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    border-radius: 5px;
    transform: scaleX(0) translateY(-50%);
    transform-origin: right center;
    transition: all 0.3s;
}

.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:hover ul {
    transform: scaleX(1) translateY(-50%);
    transform-origin: right center;
    transition: all 0.3s;
}

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

@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 0 40px 0;
}

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

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

.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;
    flex-shrink: 0;
    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: 0px 10px 31px rgba(169, 177, 193, 0.17);
    border-radius: 5px;
    padding: 0.1px 0 0.1px 0;
}

.blog-single .blog-meta {
    margin: -0.2em 0 10px 0;
}

.blog-single .blog-title {
    font-size: 30px;
    margin-bottom: 17px;
}

.blog-single .link-btn {
    width: -moz-fit-content;
    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: 0 10px 0 0;
}

.blog-single .share-links-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--vs-title-color);
    font-family: var(--vs-title-font);
    margin: 0 15px 0 0;
    display: inline-block;
}

.blog-single .share-links {
    margin: 16px 0 0 0;
}

.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: 0;
    border-radius: 0;
    color: var(--vs-body-color);
}

.blog-single .share-links .tagcloud a:not(:last-child):after {
    content: ",";
}

.blog-single .social-links {
    padding: 0;
    margin: 0;
    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: 0;
}

.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: 0;
    position: relative;
    border-radius: 0 0 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 0 0;
}

.blog-single .blog-img .slick-arrow {
    --pos-x: 30px;
    border: none;
    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: 0 30px 0 0;
}

.blog-author .author-name {
    font-size: 24px;
    font-weight: 700;
    margin: -0.3em 0 0px 0;
}

.blog-author .author-degi {
    color: var(--vs-theme-color1);
}

.blog-author .author-text {
    margin: 0 0 -0.1em 0;
}

.blog-details .blog-single {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.blog-details .blog-img {
    margin: 0 0 40px 0;
}

.blog-details .blog-img img {
    border-radius: 0;
}

.blog-details .blog-content {
    margin: 0;
}

.blog-style1 {
    background-color: var(--vs-white-color);
    box-shadow: 0px 10px 31px rgba(169, 177, 193, 0.07);
    border-radius: 5px;
}

.blog-style1 .blog-meta {
    margin: 0 0 10px 0;
}

.blog-style1 .blog-content {
    padding: 35px 40px 33px 40px;
}

.blog-style2 {
    background-color: var(--vs-white-color);
    box-shadow: none;
}

.blog-style2 .blog-meta {
    margin: 0 0 15px;
}

.blog-style2 .blog-text {
    margin: 0 0 20px 0;
}

.blog-style2 .blog-content {
    border: 2px solid #ecf2fd;
    border-top: none;
    padding: 35px 40px 40px 40px;
}

.blog-style3 .blog-img {
    overflow: hidden;
    margin: -2px;
}

.blog-style3 .blog-img img {
    transform: scale(1);
    transition: all ease 0.4s;
}

.blog-style3 .blog-body {
    border: 2px solid #f4f5f8;
}

.blog-style3:nth-child(odd) .blog-body {
    display: flex;
    flex-direction: column-reverse;
}

.blog-style3 .blog-content {
    padding: 35px 40px 30px 40px;
}

.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 #c8c8c8;
    margin-right: 12px;
    padding: 0 15px 0 0;
}

.blog-style3 .blog-meta a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.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: 8.5px 0 60px 0px rgba(166, 170, 184, 0.05);
    border-radius: 20px;
    padding: 20px;
    border: 2px solid #eff2fb;
}

.blog-style4 .blog-content {
    padding: 0 20px 10px 20px;
}

.blog-style4 .blog-img {
    overflow: hidden;
    border-radius: 20px;
    margin: 0 0 32px 0;
}

.blog-style4 .blog-img img {
    transform: scale(1);
    transition: all ease 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;
    }
}

/* Medium Large devices */

@media (max-width: 1399px) {
    .blog-style2 .blog-content {
        padding: 30px 25px 35px 25px;
    }
    .blog-style1 .blog-content {
        padding: 35px 25px 33px 25px;
    }
    .blog-style1 .blog-title {
        font-size: 18px;
    }
}

/* Large devices */

@media (max-width: 1199px) {
    blockquote {
        font-size: 20px;
        padding: 23px 30px 26px 30px;
    }
    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 25px;
    }
    .blog-style4 {
        padding: 10px;
    }
    .blog-style4 .blog-content {
        padding: 0 15px 20px 15px;
    }
    .blog-style4 .blog-title {
        margin-bottom: 15px;
        font-size: 20px;
    }
}

/* Small devices */

@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: 0 0 30px 0;
        width: 100%;
    }
    .blog-author .media-img img {
        width: 100%;
    }
    .blog-author .author-name {
        font-size: 18px;
    }
    .blog-author .author-degi {
        margin-bottom: 10px;
    }
}

/*------------------- 4.7. Comments  -------------------*/

.comment-respond {
    margin: 0 0 0px 0;
    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: 0;
    margin-bottom: 0;
}

.comment-respond .custom-checkbox input[type=checkbox] {
    display: none;
}

.comment-respond .custom-checkbox label {
    position: relative;
    padding-left: 30px;
    padding-top: 0px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    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: 0;
    height: 20px;
    width: 20px;
    background-color: var(--vs-white-color);
    border: 1px dashed rgba(6, 47, 52, 0.4);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.comment-respond .custom-checkbox label .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    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: none;
    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: 0 0 0px 0;
}

.question-form .form-control,
.review-form .form-control {
    background-color: transparent;
    border: 1px solid #e4e4e4;
}

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

.vs-comments-wrap .description p:last-child {
    margin-bottom: 0;
}

.vs-comments-wrap .comment-respond {
    margin: 30px 0;
}

.vs-comments-wrap pre {
    background: #ededed;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.vs-comments-wrap blockquote {
    background-color: #eaf8f9;
}

.vs-comments-wrap li {
    margin: 0;
}

.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 #f0f0f0;
    position: relative;
    padding: 0 0 0px 0;
    margin: 30px 0 40px 0;
}

.vs-comments-wrap ul.comment-list {
    list-style: none;
    margin: -10px 0 0 0;
    padding: 0;
}

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

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

.vs-comments-wrap .children {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-left: 70px;
}

.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: 0;
    width: 80px;
}

.vs-comments-wrap.vs-comment-form {
    margin: 0;
}

.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 20px 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 0 38px;
}

@media (max-width: 991px) {
    .vs-comment-form .custom-checkbox {
        margin: 20px 0;
    }
}

.vs-comment-form .custom-checkbox label::before {
    border: 1px dashed rgba(6, 47, 52, 0.4);
}

.vs-comment-form .vs-btn {
    border-radius: 50px;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-comment-form .vs-btn {
        width: 100%;
    }
}

/* Large devices */

@media (max-width: 1199px) {
    .vs-comments-wrap .vs-post-comment {
        display: block;
    }
    .vs-comments-wrap .star-rating {
        top: 0;
        right: 0;
    }
    .vs-comments-wrap .comment-top {
        display: block;
    }
    .vs-comments-wrap .comment-avater {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .vs-comments-wrap .children {
        margin-left: 40px;
    }
    .vs-comments-wrap .reply_and_edit {
        position: relative;
        top: 0;
        margin: 15px 0 0 0;
    }
}

/* Small devices */

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

/*------------------- 4.8. Hero Area  -------------------*/

.vs-hero {
    position: relative;
    z-index: 9;
}

.vs-hero--style2 {
	margin-top: -60px;
}

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

.vs-hero__ele1,
.vs-hero__ele2 {
    position: absolute;
    z-index: 2;
    /* Medium devices */
}

@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%;
    /* Large devices */
}

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

.vs-hero__bg {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    animation: zoom 20s ease-in-out infinite;
}

.vs-hero__shape {
    max-height: 485.92px;
    padding: 70px 360px 136px 50px;
    max-width: 803.04px;
    position: relative;
    /* Large devices */
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 1199px) {
    .vs-hero__shape {
        padding: 70px 360px 70px 50px;
        max-width: 100%;
        position: relative;
        background-color: #fff;
        border-radius: 20px;
        overflow: hidden;
    }
}

@media (max-width: 991px) {
    .vs-hero__shape {
        padding: 70px 336px 70px 50px;
    }
}

@media (max-width: 767px) {
    .vs-hero__shape {
        padding: 18px;
    }
}

.vs-hero__shape--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-hero__shape--bg {
        left: 15px;
    }
}

.vs-hero__content {
    padding: 177px 0 160px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-hero__content {
        padding: 100px 0;
    }
}

.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: 0 0 15px 0;
}

.vs-hero__title--main {
    font-size: clamp(1.875rem, 1.307rem + 2.84vw, 3.438rem);
    line-height: 0.9;
    margin: 0 0 15px 0;
}

.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: 0 0 30px 0;
}

.vs-hero__character {
    position: absolute;
    right: 41px;
    top: 48px;
    /* Small devices */
}

@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;
    /* Large devices */
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 1199px) {
    .vs-hero__direction {
        right: 50px;
    }
}

@media (max-width: 991px) {
    .vs-hero__direction {
        right: 50px;
    }
}

@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: all 0.3s ease-in-out;
    /* Large devices */
}

@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 0 240px;
    /* Large devices */
}

@media (max-width: 1199px) {
    .vs-hero--style2 .vs-hero__content {
        padding: 100px 0 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 0 250px;
    /* Large devices */
    /* Medium devices */
}

@media (max-width: 1199px) {
    .vs-hero--style3 .vs-hero__content {
        padding: 100px 0 20px;
    }
}

@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: 0 0 15px 0;
    line-height: 1.15;
    text-transform: capitalize;
    /* Small devices */
}

@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);
    /* Small devices */
}

@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 0 15px 0;
}

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

@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;
    /* Extra large devices */
    /* Large devices */
}

@media (max-width: 1500px) {
    .vs-hero--style3 .vs-hero__ele1 {
        top: 100px;
    }
}

@media (max-width: 1199px) {
    .vs-hero--style3 .vs-hero__ele1 {
        top: 0;
        left: 0;
    }
}

.vs-hero--style3 .vs-hero__ele2 {
    top: auto;
    bottom: 0;
    left: 98px;
    right: auto;
    /* Large devices */
}

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

@media (max-width: 1199px) {
    .vs-hero--style3 .vs-hero__ele4 {
        top: auto;
        right: 0;
        bottom: 0;
    }
}

.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: 0;
    right: 0;
}

.vs-hero--style2 .vs-hero__main-img {
    right: 15%;
    /* Extra large devices */
    /* Large devices */
}

@media (max-width: 1500px) {
    .vs-hero--style2 .vs-hero__main-img {
        right: 0;
    }
}

@media (max-width: 1199px) {
    .vs-hero--style2 .vs-hero__main-img {
        position: static;
        margin: 0 auto;
        display: flex;
    }
}

.vs-hero--style2 .vs-hero__direction {
    left: 0;
    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: 0;
}

.vs-hero--style2 .vs-hero__direction .vs-swiper-button-next {
    right: 0;
}

.vs-hero--style3 .vs-hero__main-img {
    right: 0%;
    /* Extra large devices */
    /* Large devices */
}

@media (max-width: 1500px) {
    .vs-hero--style3 .vs-hero__main-img {
        right: 0;
    }
}

@media (max-width: 1199px) {
    .vs-hero--style3 .vs-hero__main-img {
        position: static;
        margin: 0 auto;
        display: flex;
    }
}

.vs-hero--style3 .vs-hero-pagination {
    position: absolute;
    bottom: 110px !important;
    left: 50% !important;
    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: 0 auto;
    transform: translateX(-50%);
    /* Medium devices */
}

@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: all 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: all 0.3s ease-in-out;
    color: var(--vs-theme-color2);
}

/*------------------- 4.9. Error  -------------------*/

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

/*------------------- 4.10. Feature  -------------------*/

.vs-feature {
    display: flex;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 25%);
    gap: 15px;
    padding: 25px 30px;
    border-radius: 18px;
    position: relative;
    height: 100%;
}

@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: 0;
}

.vs-feature__icon {
    --icon-size: 90px;
    width: var(--icon-size);
    height: var(--icon-size);
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    /* Large devices */
}

@media (max-width: 1199px) {
    .vs-feature__icon {
        --icon-size: 65px;
    }
}

.vs-feature.style2 {
    background: var(--vs-theme-color2);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: none;
    z-index: 1;
    align-items: flex-start;
    padding: 33px 30px;
    transition: all 0.3s ease-in-out;
}

.vs-feature.style2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: 0;
    bottom: 0;
    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;
    /* Small devices */
    /* Medium devices */
}

@media (max-width: 767px) {
    .vs-featureh3 {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .vs-featureh3 {
        justify-content: flex-end;
    }
}

.vs-featureh3__heading {
    font-size: 24px;
    /* Small devices */
}

@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: all 0.3s ease-in-out;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-featureh3__icon {
        --icon-size: 80px;
    }
}

.vs-featureh3__icon::before {
    --border-size: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: var(--border-size);
    height: var(--border-size);
    border-radius: 50%;
    border: 2px dashed var(--vs-white-color);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    scale: 0.9;
}

.vs-featureh3__text {
    margin-bottom: 0;
    text-transform: capitalize;
}

.vs-featureh3__image {
    margin-bottom: 40px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-featureh3__image {
        text-align: center;
    }
}

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

/*------------------- 4.11. About  -------------------*/

.vs-about--ele1,
.vs-about--ele1h3 {
    position: absolute;
    right: 10%;
    bottom: 0;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-about--ele1,
    .vs-about--ele1h3 {
        right: 0;
    }
}

.vs-about--ele1h3 {
    top: 139px;
    left: 0;
    right: auto;
    bottom: auto;
}

.vs-about--story__tab {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 27px;
    column-gap: 27px;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-about--story__tab {
        gap: 15px;
    }
}

.vs-about--story__tab .nav-tabs {
    border-bottom: 0;
}

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

@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: inset 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.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;
    /* Large devices */
    /* Medium devices */
    /* Small devices */
}

@media (max-width: 1199px) {
    .vs-about--image {
        min-height: 607px;
    }
}

@media (max-width: 991px) {
    .vs-about--image {
        min-height: 607px;
        margin: 0 auto;
    }
}

@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: 0;
    left: 0;
    /* Small devices */
}

@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: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-about--image__figure1 img,
    .vs-about--image__figure2 img {
        width: 100%;
        -o-object-fit: cover;
        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;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-about--image__ele1 {
        display: none;
    }
}

.vs-about--image__ele2 {
    top: 267px;
    left: 45px;
    /* Small devices */
}

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

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

@media (max-width: 767px) {
    .vs-about--yoe {
        max-width: 80%;
        margin: 0 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: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.5);
    opacity: 0.4;
}

.vs-about--yoe__text {
    font-weight: 900;
    font-size: 18px;
    color: var(--vs-title-color);
    text-transform: capitalize;
    font-size: 20px;
    padding-right: 210px;
    font-family: var(--vs-title-font);
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-about--yoe__text {
        padding-right: 0;
    }
}

/*------------------- 4.12. Service  -------------------*/

.vs-service {
    margin-bottom: 0px;
}

.vs-service__details-img>img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.vs-service--ele1,
.vs-service--ele2 {
    position: absolute;
    top: 22%;
    z-index: -1;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-service--ele1,
    .vs-service--ele2 {
        display: none;
    }
}

.vs-service--ele1 {
    left: 0;
}

.vs-service--ele2 {
    left: auto;
    right: 0;
}

.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: 0;
    top: 0;
    border-radius: 22px;
    transition: all 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: all 0.3s ease-in-out;
    transform-origin: center center;
}

.vs-service__image--link {
    display: inline-block;
}

.vs-service__content {
    background-color: var(--vs-white-color);
    margin: -79px 23px 0;
    position: relative;
    z-index: 1;
    padding: 30px;
    border-radius: 22px;
}

.vs-service__icon {
    display: inline-block;
    margin: 0 0 22px 0;
}

.vs-service__heading {
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.vs-service__heading:hover {
    color: var(--vs-theme-color2);
    transition: all 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);
    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: all 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: all 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: 0;
    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: 0;
    padding: 16px 0;
}

.vs-service--tab__sidebar .nav button:last-child {
    border-bottom: none;
}

.vs-service--tab__sidebar .nav button.active {
    background-color: transparent;
    color: var(--vs-theme-color2);
}

.vs-service--tab__title {
    font-size: 24px;
    margin-bottom: 0;
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    padding: 20px 28px;
    margin: -1px;
}

.vs-service--tab__title--main {
    font-size: 40px;
    /* Medium devices */
}

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

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

/*------------------- 4.13. Counter  -------------------*/

/*------------------- 4.14. Team  -------------------*/

.vs-team {
    background: var(--vs-white-color);
    border-radius: 30px;
    padding: 18px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}

.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: all 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: 0;
    left: 0;
    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: all 0.3s ease-in-out;
}

.vs-team__img img {
    border-radius: 20px;
    width: 100%;
    transform: scale(1.1);
    transform-origin: center center;
    transition: all 0.3s ease-in-out;
}

.vs-team__content {
    padding: 30px 15px 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: 0;
    margin-bottom: 0;
}

.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: all 0.3s ease-in-out;
}

.vs-team__share>ul>li>a:hover,
.vs-team__share>ul>li>a.active {
    transition: all 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: all 0.3s ease-in-out;
}

.vs-team__share--list {
    list-style: none;
    margin-bottom: 0;
    position: absolute;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--vs-theme-color1);
    padding: 15px 30px;
    border-radius: 10px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    opacity: 0;
    visibility: hidden;
    transition: all 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: all 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(0);
}

.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: 0;
    bottom: auto;
}

.vs-team:hover .vs-team__img img,
.vs-team.active .vs-team__img img {
    transform: scale(1.01);
    transition: all 0.3s ease-in-out;
}

.vs-team--style2 {
    box-shadow: none;
    padding: 20px 20px 28px 20px;
}

.vs-team--style2 .vs-team__content {
    padding: 20px 15px 0px 15px;
    /* Large devices */
}

@media (max-width: 1199px) {
    .vs-team--style2 .vs-team__content {
        padding: 20px 0px 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: all 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: toTopFromBottom 0.5s forwards;
}

.vs-team--style2 .vs-team__share--list {
    flex-direction: column-reverse;
    background-color: transparent;
    gap: 8px;
    padding: 0;
    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: all 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%;
    transform: rotate(90deg);
    z-index: -1;
    background-color: var(--vs-theme-color2);
    opacity: 0;
    visibility: hidden;
    transition: all 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: toTopFromBottom 0.3s forwards;
}

.vs-team--style2 .vs-team__share--list>li>a:hover::before {
    opacity: 0.5;
    visibility: visible;
    transform: scale(1);
}

.progress-box {
    margin: 0 0 25px 0;
}

.progress-box:last-child {
    margin: 0 0 0px 0;
}

.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: 0 0 0px 0;
    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: 0px 10px 31px rgba(169, 177, 193, 0.17);
    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;
    /* Medium devices */
}

@media (max-width: 991px) {
    .teacher-awards {
        flex-direction: column;
    }
}

.teacher-awards__content {
    flex: 1;
}

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

/*------------------- 4.15. Process  -------------------*/

/*------------------- 4.16. Accordion  -------------------*/

/*------------------- 4.17. Simple Sections  -------------------*/

/*------------------- 4.18. Testimonial  -------------------*/

/*------------------- 4.19. Popup Side Menu  -------------------*/

.sidemenu-wrapper {
    position: fixed;
    z-index: 999999;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    visibility: hidden;
    /* Hidden initially for GSAP animation */
}

.sidemenu-wrapper .sidemenu-content {
    --sidebarPosition: 589px;
    background-color: var(--vs-theme-color1);
    width: var(--sidebarPosition);
    margin-left: auto;
    padding: 40px 55px 55px 55px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    right: calc(-1 * var(--sidebarPosition));
    cursor: auto;
    transform-origin: right;
    /* Small devices */
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
}

@media (max-width: 767px) {
    .sidemenu-wrapper .sidemenu-content {
        --sidebarPosition: 300px;
        padding: 20px 15px;
    }
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
    width: 5px;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--vs-white-color);
    border-radius: 0px;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-thumb {
    background: var(--vs-white-color);
    border-radius: 10px;
}

.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: none;
    color: var(--vs-white-color);
    background-color: transparent;
    font-size: 40px;
    padding: 0;
    border-radius: 50%;
    transform: rotate(0);
    transition: all ease 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 0 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 0 30px 0;
    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: 0;
    left: 0;
    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: 0;
}

.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 #383c4a;
    left: -5px;
    border-radius: 4px;
    /* Small devices */
}

@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 10px 20px;
    text-align: left;
}

.sidemenu-wrapper .email-subscription__input::-moz-placeholder {
    color: var(--body-color);
}

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

@media (max-width: 767px) {
    .sidemenu-wrapper .email-subscription__btn {
        padding: 0 0;
        background-color: transparent;
        width: auto;
        position: absolute;
        right: 0;
        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: all 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: 0;
    opacity: 1;
    visibility: visible;
}

/* Small devices */

@media (max-width: 767px) {
    .email-subscription__right {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
    }
}

.sidemenu-contact {
    margin: 0 0 20px 0;
    display: grid;
    gap: 10px;
}

.sidemenu-contact ul {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    list-style: none;
}

.sidemenu-contact ul li {
    margin-bottom: 10px;
}

.sidemenu-contact ul li:last-child {
    margin-bottom: 0;
}

.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: 0 0 0 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: 0;
    width: 8px;
    height: 8px;
    background-color: var(--vs-white-color);
}

.sidemenu-contact a::after,
.sidemenu-contact .sidemenu-link::after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 1px;
    background-color: var(--vs-white-color);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
}

.sidemenu-contact .sidemenu-link:hover::after {
    width: 90%;
    left: 10%;
    opacity: 1;
    visibility: visible;
    transition: all ease 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: all 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: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all ease 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: 0;
    background-color: var(--vs-theme-color1);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    transform: rotate(0);
    transition: all ease 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-delay: 1s;
    transition: right ease 1s;
}

.offcanvas-wrapper .sidemenu-content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

.offcanvas-wrapper .sidemenu-content::-webkit-scrollbar {
    width: 2px;
    background-color: #f5f5f5;
}

.offcanvas-wrapper .widget {
    padding: 0;
    border: none;
    background-color: transparent;
    margin-bottom: 50px;
}

.offcanvas-wrapper .footer-text {
    max-width: 100%;
}

.offcanvas-wrapper.show {
    opacity: 1;
    visibility: visible;
    width: 100%;
    transition: all ease 0.8s;
}

.offcanvas-wrapper.show .sidemenu-content {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.sideCart-wrapper {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: none;
    /* Disable CSS transition for GSAP control */
    backdrop-filter: blur(0px);
    /* Medium devices */
}

@media (max-width: 991px) {
    .sideCart-wrapper {
        -webkit-mask: none;
        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%;
    /* Initially off-screen to the left */
    opacity: 0;
    visibility: hidden;
    transition: none;
    /* Disable CSS transition for GSAP control */
    /* Medium devices */
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
}

@media (max-width: 991px) {
    .sideCart-wrapper .cart-sidebar-content {
        width: 300px;
        padding: 25px 15px;
    }
}

.sideCart-wrapper .cart-sidebar-content::-webkit-scrollbar {
    width: 5px;
}

.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::-webkit-scrollbar-thumb {
    background: var(--vs-theme-color1);
    border-radius: 10px;
}

.sideCart-wrapper .cart-sidebar-content::-webkit-scrollbar-thumb:hover {
    background: var(--vs-theme-color2);
}

.sideCart-wrapper.cartshow {
    opacity: 1;
    visibility: visible;
    width: 100%;
    /* Full width when open */
    transition: none;
    /* Disable transition for GSAP control */
}

.sideCart-wrapper.cartshow .cart-sidebar-content {
    left: 0;
    /* Bring the content into view */
    opacity: 1;
    visibility: visible;
}

.sideCart-wrapper .sidemenu-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

.sideCart-wrapper .cart-close-button {
    background: var(--vs-theme-color1);
    color: var(--vs-white-color);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    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;
    /* Initially hidden */
}

.sideCart-wrapper .cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 20px 0;
}

.sideCart-wrapper .cart-item .item-details {
    flex: 1;
}

.sideCart-wrapper .cart-item__image {
    --image-size: 80px;
    width: var(--image-size);
    height: var(--image-size);
    -o-object-fit: cover;
    object-fit: cover;
    background: var(--vs-theme-color6);
    border: 2px solid var(--vs-theme-color2);
    border-radius: 10px;
    padding: 10px;
    /* Medium devices */
}

@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: 0;
}

.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 10px;
    border: 2px solid rgba(56, 60, 74, 0.5);
    background-color: var(--bg-color3);
    color: var(--white-color);
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    /* Medium devices */
}

@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: 0;
    padding: 0 0;
    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: 0;
    padding: 0;
}

.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: 0;
    margin-bottom: 0;
    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;
}

/*------------------- 4.20. Price Plan  -------------------*/

/*------------------- 4.21. Forms Style  -------------------*/

.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: all 0.3s ease-in-out;
}

.form-style textarea::-moz-placeholder,
.form-style input::-moz-placeholder {
    color: var(--vs-white-color);
    opacity: 1;
    visibility: visible;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-style textarea::placeholder,
.form-style input::placeholder {
    color: var(--vs-white-color);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}

.form-style textarea:focus,
.form-style input:focus {
    box-shadow: none;
}

.form-style textarea:focus::-moz-placeholder,
.form-style input:focus::-moz-placeholder {
    color: var(--vs-title-color);
    opacity: 0;
    visibility: hidden;
}

.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-radius: 15px;
    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: "\f00c";
    background-color: transparent;
    border: 1px solid var(--vs-theme-color2);
    border-radius: 0;
    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: all 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 0 20px 0;
    display: flex;
    align-items: center;
    /* Large devices */
}

@media (max-width: 1199px) {
    .custom-checkbox,
    .wc_payment_method,
    .woocommerce-shipping-methods,
    #ship-to-different-address {
        padding: 0px 0 20px 0;
    }
}

.custom-checkbox label,
.wc_payment_method label,
.woocommerce-shipping-methods label,
#ship-to-different-address label {
    margin-bottom: 0;
    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: "\f00c";
    background-color: transparent;
    border: 1px solid var(--vs-theme-color2);
    border-radius: 0;
    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: all 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: all 0.3s ease-in-out;
}

.form-messages {
    font-weight: 700;
}

/*------------------- 4.22. Projects  -------------------*/

/*------------------- 4.23. Contact  -------------------*/

.vs-contact--ele1,
.vs-contact--ele2,
.vs-contact--ele3 {
    position: absolute;
    top: 0;
    right: 0;
    /* Large devices */
}

@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;
    background: none !important;
    width: 100%;
    height: 447px !important;
    position: relative;
}

.vs-map .gmap_canvas__credit {
    position: absolute;
    bottom: 0;
    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 {
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 0.8px;
    max-width: 88%;
}

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

.address-info {
    --icon-size: 78px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--title-font);
    letter-spacing: 0.4px;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px 0;
    /* Small devices */
}

@media (max-width: 767px) {
    .address-info {
        --icon-size: 60px;
        font-size: 14px;
    }
}

.address-info:last-child {
    margin: 0 0 0 0;
}

.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: 0 0 3px 0;
    font-weight: 900;
    letter-spacing: 0.48px;
    font-family: var(--vs-title-font);
    font-size: 20px;
}

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

/*------------------- 4.24. Event  -------------------*/

.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;
    /* Large devices */
    /* Medium devices */
}

@media (max-width: 1199px) {
    .vs-event {
        gap: 20px;
        padding: 15px;
    }
}

@media (max-width: 991px) {
    .vs-event {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.vs-event--ele1,
.vs-event--ele2 {
    position: absolute;
    top: 105px;
    left: 0;
    z-index: -1;
}

.vs-event--ele2 {
    right: 0;
    left: auto;
}

.vs-event__figure {
    position: relative;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    min-width: 411px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-event__figure {
        min-width: 100%;
    }
}

.vs-event__figure--img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
    /* Medium devices */
}

@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);
    /* Small devices */
}

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

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

@media (max-width: 1199px) {
    .vs-event__text {
        margin-bottom: 0;
    }
}

.vs-event__footer {
    display: flex;
    gap: 34px;
    padding-top: 20px;
    /* Small devices */
}

@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: 0;
    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;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-event__btn {
        padding-left: 0;
    }
}

.vs-event__btn::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 55px;
    background-color: rgba(var(--vs-title-color-rgb), 0.3);
    /* Small devices */
}

@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: 0;
    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;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-event--speaker .social-style {
        padding-left: 0;
    }
}

.vs-event--speaker .social-style::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 55px;
    background-color: rgba(var(--vs-title-color-rgb), 0.3);
    left: 0;
    /* Small devices */
}

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

@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 0;
}

.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: auto;
    /* Medium devices */
}

@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: 0;
}

.vs-side-form--reg .vs-side-form__input {
    letter-spacing: 0.8px;
    font-size: 14px;
    /* Medium devices */
}

@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: 0;
    border-right: 0;
}

/*------------------- 4.25. CTA  -------------------*/

/*------------------- 4.26. feedback  -------------------*/

.feedback--ele1 {
    position: absolute;
    right: 76px;
    top: 92px;
    /* Large devices */
}

@media (max-width: 1199px) {
    .feedback--ele1 {
        display: none;
    }
}

.feedback-wrapper {
    padding: 0px 0 0px 100px;
    /* Large devices */
    /* Small devices */
}

@media (max-width: 1199px) {
    .feedback-wrapper {
        padding-left: 40px;
    }
}

@media (max-width: 767px) {
    .feedback-wrapper {
        padding-left: 0;
    }
}

.feedback-wrapper.admission-form {
    padding-left: 70px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .feedback-wrapper.admission-form {
        padding-left: 0;
    }
}

.feedback-slider .swiper-wrapper {
    margin-left: 0;
}

.feedback-slider .vs-feedback-pagination {
    padding: 54px 0 0 0;
}

.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: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    background-position: center right;
    /* Medium devices */
}

@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: 0;
    bottom: 0;
    width: 55%;
    height: 100%;
    z-index: -1;
}

.feedback-block {
    display: inline-flex;
    gap: 62px;
    /* Small devices */
}

@media (max-width: 767px) {
    .feedback-block {
        flex-direction: column;
        gap: 30px;
    }
}

.feedback-block__image {
    --image-size: 145px;
    position: relative;
    height: -moz-max-content;
    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);
    -o-object-fit: cover;
    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: 0 0 18px 0;
}

.feedback-block__rating {
    padding-left: 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    letter-spacing: 3.2px;
    color: var(--vs-theme-color2);
    margin-bottom: 30px;
}

.feedback-block__desc {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.48px;
    color: var(--vs-white-color);
    margin-bottom: 0;
}

/*------------------- 4.27. class  -------------------*/

.vs-class {
    border: 1.5px dashed rgba(var(--vs-title-color-rgb), 0.4);
    border-radius: 21px;
    padding: 20px 20px 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    transition: all 0.3s ease-in-out;
}

.vs-class::before,
.vs-class::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
    border-radius: 21px;
    transition: all 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%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-class--slider__direction {
        display: none;
    }
}

.vs-class--ele1 {
    position: absolute;
    bottom: 10px;
    right: 134px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-class--ele1 {
        display: none;
    }
}

.vs-class--slider {
    padding-right: 0;
    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;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 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 10px;
    border-radius: 60% 60% 0 0;
}

.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 0 0 0;
    position: relative;
    z-index: 1;
}

.vs-class__heading {
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    line-height: 1.1;
    margin: 0 0 14px 0;
    text-transform: capitalize;
    transition: all 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: 0 0 20px 0;
}

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

.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;
    text-align: justify;
}

.vs-class--details .vs-blog__img {
    border-radius: 20px 20px 0 0;
}

.vs-class--details .vs-blog__img--figure {
    border-radius: 20px 20px 0 0;
}

.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);
    /* Small devices */
}

@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: none;
}

.vs-class--details .vs-class__row {
    opacity: 1;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-class--details .vs-class__row {
        display: inline-grid;
        gap: 15px;
    }
}

.vs-class--details .vs-class__table tbody {
    opacity: 1;
    /* Small devices */
}

@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 0px 0;
    font-weight: bold;
    text-align: left;
    border: none;
}

.vs-class--details .vs-class__data--heading {
    padding: 0px 0px;
    font-weight: bold;
    text-align: left;
    border: none;
    font-size: 18px;
}

.vs-class--details .vs-class__data--time {
    color: #e0a40b;
}

.vs-class--details .vs-class__data--location {
    color: #e0a40b;
}

.vs-class--details .vs-blog__content {
    padding: 40px 35px 65px 35px;
    position: relative;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-class--details .vs-blog__content {
        padding: 40px 20px 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: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

/*------------------- 4.28. session  -------------------*/

.vs-session {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding: 30px 35px;
    margin-bottom: 30px;
    /* Large devices */
}

@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: 0;
    z-index: -1;
    width: 100%;
    top: 0;
    height: 100% !important;
    /* Large devices */
}

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

.vs-session--bg-image {
    position: absolute;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 5%;
}

.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: all 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: all 0.3s ease-in-out;
}

.vs-session--ele1,
.vs-session--ele2 {
    position: absolute;
    top: 0;
    left: 0;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-session--ele1,
    .vs-session--ele2 {
        display: none;
    }
}

.vs-session--ele1 {
    left: 5%;
    /* Large devices */
}

@media (max-width: 1199px) {
    .vs-session--ele1 {
        left: 0;
    }
}

.vs-session--ele2 {
    left: auto;
    top: 173px;
    right: 185px;
    /* Large devices */
}

@media (max-width: 1199px) {
    .vs-session--ele2 {
        right: 0;
    }
}

.vs-session:hover .vs-session__icon {
    background-color: var(--vs-theme-color2);
}

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

/*------------------- 4.29. pro  -------------------*/

.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%;
    /* Large devices */
    /* Medium devices */
}

@media (max-width: 1199px) {
    .vs-pro::before,
    .vs-pro::after {
        --image-size: 180px;
    }
}

@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;
    /* Large devices */
    /* Medium devices */
}

@media (max-width: 1199px) {
    .vs-pro::after {
        --image-size: 190px;
    }
}

@media (max-width: 991px) {
    .vs-pro::after {
        --image-size: 220px;
    }
}

.vs-pro--ele1,
.vs-pro--ele2,
.vs-pro--ele3 {
    position: absolute;
    z-index: 4;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-pro--ele1,
    .vs-pro--ele2,
    .vs-pro--ele3 {
        display: none;
    }
}

.vs-pro--ele1 {
    top: 94px;
    left: 90px;
    /* Extra large devices */
    /* Large devices */
}

@media (max-width: 1500px) {
    .vs-pro--ele1 {
        top: 0;
        left: 0;
    }
}

@media (max-width: 1199px) {
    .vs-pro--ele1 {
        display: none;
    }
}

.vs-pro--ele2 {
    right: 129px;
    top: 94px;
}

.vs-pro--ele3 {
    right: 69px;
    bottom: -88px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-pro--ele3 {
        display: none;
    }
}

.vs-pro--area {
    padding: 190px 0 170px 0;
}

.vs-pro--area::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    background-color: var(--vs-theme-color7);
    bottom: 0;
    z-index: -1;
}

.vs-pro--area.layout-h2 {
    margin: -65px 0 -65px;
    z-index: 3;
    /* Large devices */
}

@media (max-width: 1199px) {
    .vs-pro--area.layout-h2 {
        margin: -98px 0 -65px;
    }
}

.vs-pro--area.layout-h2::before {
    display: none;
}

.vs-pro--area.layout-h3 {
    margin: -85px 0 0px;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-pro--area.layout-h3 {
        margin: -150px 0 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 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 0 10px;
    display: flex;
    justify-content: flex-end;
    margin-left: -20px;
}

.vs-pro--slider__direction {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Small devices */
}

@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: all 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);
}

/*------------------- 4.30. grade  -------------------*/

.vs-grade {
    position: relative;
    background-color: var(--vs-white-color);
    border-radius: 21px;
    overflow: hidden;
    margin-bottom: 30px;
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.07));
    transition: all 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: 0;
    position: relative;
    overflow: hidden;
}

.vs-grade__body {
    padding: 0 12px 20px 12px;
    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: 0;
    margin-bottom: 0;
    -moz-column-count: 3;
    column-count: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    /* Large devices */
}

.vs-grade__header ul li {
    flex: auto;
}

@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: all 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: 0;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.48px;
}

.vs-grade:hover {
    background-color: var(--vs-theme-color8);
}

/*------------------- 4.31. room  -------------------*/

.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: 0;
    left: 0;
    z-index: -1;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-room__ele1,
    .vs-room__ele2 {
        display: none;
    }
}

.vs-room__ele1 {
    top: 106px;
    left: 183px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .vs-room__ele1 {
        top: 20px;
        left: 100px;
    }
}

.vs-room__ele2 {
    top: auto;
    bottom: -70px;
    right: 119px;
    left: auto;
    /* Extra large devices */
    /* Large devices */
}

@media (max-width: 1500px) {
    .vs-room__ele2 {
        right: 0;
    }
}

@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: 0;
}

.vs-room--video {
    border-radius: 17px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-room--video {
        flex-wrap: wrap;
        gap: 35px;
        padding: 0 0 35px 0;
    }
}

.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: 0 0 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);
}

/*------------------- 4.32. client  -------------------*/

.vs-client {
    display: flex;
    align-items: stretch;
    position: relative;
    gap: 27px;
    padding: 25px 60px 40px 50px;
    color: #fff;
}

@media (max-width: 1199px) {
    .vs-client {
        background-color: var(--vs-white-color);
        border-radius: 20px;
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .vs-client {
        flex-wrap: wrap;
        gap: 0;
    }
}

.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;
    color: #fff;
}

.vs-client__quote {
    position: absolute;
    right: 80px;
    bottom: 55px;
}

.vs-client__desc {
    font-weight: 400;
    text-transform: capitalize;
    color: #ffffff;
    font-style: italic;
}

/*------------------- 4.33. time  -------------------*/

.vs-time {
    background-color: var(--vs-white-color);
    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;
    /* Small devices */
}

@media (max-width: 767px) {
    .vs-time--ele1 {
        display: none;
    }
}

.vs-time__figure {
    margin: 2px 3px 0px 3px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.vs-time__image {
    border-radius: 15px 15px 0 0;
}

.vs-time__image--link {
    display: block;
    border-radius: 15px 15px 0 0;
    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;
    font-weight: 700;
    color: var(--vs-white-color);
    padding: 10px;
    font-family: var(--vs-title-font);
    border: 3px dashed rgba(var(--vs-white-color-rgb), 0.5);
}

.vs-time__content {
    padding: 30px;
}

.vs-time__rating {
    margin: 0 0 15px;
}

.vs-time__rating ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--vs-theme-color2);
}

.vs-time__heading {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    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: 0;
    margin-bottom: 0;
    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 0 16px;
    color: inherit;
    background-color: transparent;
    border-top: 1px solid #D9D9D9;
    opacity: 1;
}

.vs-time--class {
    border: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.vs-time--class .vs-time__figure {
    margin: 8px;
}

/*------------------- 4.34. video  -------------------*/

.vs-video--ele1,
.vs-video--ele2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    /* Medium devices */
}

@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: 100%;
    z-index: -3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 5%;
}

.vs-video--bg-image img {
    height: 100%;
    -o-object-fit: cover;
    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: 30%;
    min-width: 878px;
    margin-bottom: 45px;
    height: 1.5px;
    border: 0;
    border-radius: 100%;
    /* Medium devices */
}

@media (max-width: 991px) {
    .vs-video__divider {
        min-width: 100%;
    }
}

/*------------------- 4.35. why  -------------------*/

.vs-why--ele1,
.vs-why--ele2 {
    position: absolute;
    top: 0;
    left: 0;
    /* Large devices */
}

@media (max-width: 1199px) {
    .vs-why--ele1,
    .vs-why--ele2 {
        display: none;
    }
}

.vs-why--ele1 {
    top: 84px;
    left: 63px;
    /* Extra large devices */
}

@media (max-width: 1500px) {
    .vs-why--ele1 {
        top: 5px;
    }
}

.vs-why--ele2 {
    top: auto;
    bottom: 104px;
    left: 0;
}

/*------------------- 4.36. faq  -------------------*/

.accordion .accordion-item {
    margin: 0 0 15px 0;
    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: 0;
}

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

.accordion .accordion-button {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 19.5px 25px 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: "\f107";
    font-family: var(--vs-icon-font);
    font-weight: 400;
    color: var(--vs-title-color);
    width: auto;
    height: auto;
    background-image: none;
    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: "\f068";
}

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

.accordion .accordion-collapse {
    border: none;
}

.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: inset 0px 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 29.5px;
    padding: 0 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: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 1px;
    opacity: 15%;
    background-color: #d9d9d9;
    border-radius: 100%;
}

.accordion__reaction--btn:last-child {
    padding-right: 0;
    margin-right: 0;
}

.accordion__reaction--btn:last-child::after {
    display: none;
}

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

/*------------------- 4.37. woocommerce  -------------------*/

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

@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: 0 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;
    -webkit-appearance: none;
    -moz-appearance: none;
    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: all 0.3s ease-in-out;
    position: relative;
}

.vs-shop__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    bottom: auto;
    top: 0;
    background-color: #F6F1E4;
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 1;
    opacity: 0%;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.vs-shop__img img {
    transform: scale(1.05);
    transform-origin: center center;
    transition: all 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: all 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: all 0.3s ease-in-out;
}

.vs-shop__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: -1;
    transition: all 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: 80%;
    bottom: 0;
    top: auto;
    transition: all 0.3s ease-in-out;
}

.vs-shop:hover .vs-shop__img img {
    transform: scale(1.01);
    transition: all 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: "\f005\f005\f005\f005\f005";
    color: var(--vs-theme-color2);
    float: left;
    letter-spacing: 3px;
    font-weight: 700;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.star-rating span:before {
    content: "\f005\f005\f005\f005\f005";
    top: 0;
    position: absolute;
    left: 0;
    color: var(--vs-theme-color2);
    letter-spacing: 3px;
    font-weight: 700;
}

.shop-sidebar .widget__toggle__expand {
    /* Start with max-height 0 and overflow hidden for collapse effect */
    max-height: 0;
    overflow: hidden;
    /* Smooth transition for max-height */
    transition: max-height 0.5s ease-in-out, border 0.5s ease-in-out;
    /* Basic styling for visibility */
    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: 0;
    width: 100%;
}

.shop-sidebar .wp-block-heading svg {
    margin-left: auto;
}

.shop-sidebar .widget {
    padding: 0;
    background-color: transparent;
    border: none;
    margin-bottom: 45px;
}

.shop-sidebar .widget__toggle {
    width: 100%;
    display: flex;
}

.shop-sidebar .widget ul {
    padding: 10px 0;
    margin-bottom: 0;
    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: none;
}

.shop-sidebar .widget ul li:hover a {
    color: var(--vs-theme-color2);
}

.shop-sidebar .widget__toggle {
    background-color: transparent;
    border: 0;
    padding: 0;
}

.price-slider-container {
    padding: 5px 0 30px 0;
    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 10px;
    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 #25283E;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, transform 0.3s ease;
}

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

.price-slider-container .slider-wrapper .max-thumb {
    right: 0;
}

.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: none;
    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: all 0.3s ease-in-out;
    overflow: hidden;
}

.side-product__title {
    font-size: 18px;
    margin: 3px 0 1px;
    text-transform: capitalize;
}

.side-product__title a {
    color: var(--vs-title-color);
}

.side-product__title a:hover {
    color: var(--vs-theme-color2);
    transition: all 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: all 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: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 3%;
    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);
    display: inline-block;
    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);
}

/* Container for the swatches */

.product-swatches-container {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    /* Each swatch style */
    /* Active swatch styling */
}

.product-swatches-container .swatch {
    --border-size: 3px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: var(--border-size) solid transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 0 0px rgba(255, 69, 0, 0);
}

.product-swatches-container .swatch.swatch1 {
    background-color: #2C2421;
}

.product-swatches-container .swatch.swatch1.active {
    border: var(--border-size) solid var(--vs-theme-color2);
}

.product-swatches-container .swatch.swatch2 {
    background-color: #E63B3F;
}

.product-swatches-container .swatch.swatch2.active {
    border: var(--border-size) solid var(--vs-theme-color2);
}

.product-swatches-container .swatch.swatch3 {
    background-color: #4F830E;
}

.product-swatches-container .swatch.swatch3.active {
    border: var(--border-size) solid var(--vs-theme-color2);
}

.product-swatches-container .swatch.swatch4 {
    background-color: #53A1AF;
}

.product-swatches-container .swatch.swatch4.active {
    border: var(--border-size) solid var(--vs-theme-color2);
}

.product-swatches-container .swatch.active {
    border: var(--border-size) solid var(--vs-theme-color2);
    /* Black border for active swatch */
}

.product-slide-row .myShopSwiperThumbs .swiper-slide {
    width: 25%;
    height: 100%;
    height: auto;
    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: all 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: 0;
    padding: 0;
    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);
    -moz-appearance: none;
    appearance: none;
    -webkit-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 {
    -webkit-appearance: none;
    margin: 0;
}

.product-about__actions .quantity__buttons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    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: 0;
    padding: 0;
    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: 0 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: 0;
    margin-bottom: 0;
    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);
    /* Small devices */
}

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

@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: 0;
    margin-top: 0;
}

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

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

@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: 0;
}

.rating-select {
    margin-top: -0.4em;
}

.rating-select label {
    margin: 0 10px 0 0;
    display: inline-block;
}

.rating-select p.stars {
    margin-bottom: 0;
    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;
    /* Medium devices */
}

@media (max-width: 991px) {
    .rating-select p.stars a {
        width: 14px;
    }
}

.rating-select p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 14px;
    line-height: 1;
    font-family: var(--vs-icon-font);
    content: "\f005";
    font-weight: 400;
    text-indent: 0;
    color: var(--vs-theme-color2);
}

.rating-select p.stars a:hover~a::before {
    content: "\f005";
    font-weight: 400;
}

.rating-select p.stars:hover a::before {
    content: "\f005";
    font-weight: 700;
}

.rating-select p.stars.selected a.active::before {
    content: "\f005";
    font-weight: 700;
}

.rating-select p.stars.selected a.active~a::before {
    content: "\f005";
    font-weight: 400;
}

.rating-select p.stars.selected a:not(.active)::before {
    content: "\f005";
    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: all 0.3s ease;
    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 0 20px 0;
    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: 0;
    padding-left: 0;
    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: "\f00c";
    background-color: transparent;
    border: 1px solid var(--vs-theme-color2);
    border-radius: 0;
    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: all 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: all 0.3s ease-in-out;
}

/*------------------- 4.38. cart  -------------------*/

.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: "\f06a";
    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 {
    border: none !important;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding: 26.75px 15px;
    color: var(--vs-white-color);
}

.cart_table td:before,
.cart_table th {
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    border: none;
    padding: 27px 15px;
}

.cart_table td:before {
    content: attr(data-title);
    position: absolute;
    left: 15px;
    top: 50%;
    padding: 0;
    transform: translateY(-50%);
    display: none;
}

.cart_table td {
    border-bottom: 1px solid var(--vs-border-color);
    color: var(--vs-body-color);
    padding: 20px 20px;
    position: relative;
    vertical-align: middle;
    text-align: center;
    font-family: var(--vs-title-font);
    /* Medium devices */
}

@media (max-width: 991px) {
    .cart_table td {
        padding: 5px 5px;
    }
}

.cart_table td.cart_table__product-name {
    text-align: left;
    /* Small devices */
}

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

@media (max-width: 991px) {
    .cart_table .cart-productimage {
        margin-left: auto;
    }
}

.cart_table .cart-productimage>img {
    -o-object-fit: cover;
    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: #b8c6d0;
    padding: 0;
    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: 0 10px;
    border-radius: 4px;
    padding: 0 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Medium devices */
}

@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 {
    -webkit-appearance: none;
    margin: 0;
}

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

.cart_table .vs-cart-coupon {
    float: left;
    display: inline-flex;
    margin: 0;
}

.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: all 0.3s ease-in-out;
    border-radius: 50px;
    /* Medium devices */
}

@media (max-width: 991px) {
    .cart_table .vs-cart-coupon input {
        flex: 1;
    }
}

.cart_table .vs-cart-coupon input::-moz-placeholder {
    color: var(--vs-body-color);
}

.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: all 0.3s ease-in-out;
}

.cart_table .vs-cart-coupon .vs-btn {
    flex: none;
}

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

@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: 0 0px;
    /* Medium devices */
}

@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 0;
}

.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: "\f00c";
    background-color: transparent;
    border: 1px solid var(--vs-theme-color2);
    border-radius: 0;
    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: all 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: 0;
}

.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: 0;
    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: 0;
    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: 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: 0 0px;
        border: none;
        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: none;
    }
    .cart_table td:before {
        display: block;
    }
    .cart_table td:last-child {
        border-bottom: 1px solid #f3f3f3;
    }
    .cart_table td.actions {
        padding-left: 15px;
        text-align: center;
    }
    .cart_table td.actions>.vs-btn {
        margin-top: 10px;
        display: block;
        width: -moz-max-content;
        width: max-content;
        margin: 10px auto 0;
    }
    .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;
    }
}

/* Small devices */

@media (max-width: 767px) {
    .cart_table .vs-cart-coupon {
        flex-wrap: wrap;
        gap: 15px;
    }
    .cart_table .vs-cart-coupon .vs-btn {
        width: 100%;
    }
}

/*------------------- 4.39. checkout  -------------------*/

.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: 0;
    padding: 0;
}

.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: 0;
    padding: 0;
    list-style-type: none;
}

.woocommerce-checkout-payment ul li {
    border-bottom: 1px solid var(--vs-border-color);
    border-radius: 0;
    font-size: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
}

.woocommerce-checkout-payment ul input[type=radio] {
    display: none;
}

.woocommerce-checkout-payment ul input[type=radio]~label {
    margin-bottom: 0;
    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: 1px solid var(--vs-theme-color1);
    color: var(--vs-white-color);
    border-bottom: none;
    font-size: 15px;
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.woocommerce-checkout-payment .payment_box p {
    margin: 0;
    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 0;
        margin-bottom: 0;
    }
}

.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::-moz-placeholder,
.woocommerce-checkout .select2-container::-moz-placeholder,
.woocommerce-checkout .form-control::-moz-placeholder,
.woocommerce-form-login .form-select::-moz-placeholder,
.woocommerce-form-login .select2-container::-moz-placeholder,
.woocommerce-form-login .form-control::-moz-placeholder,
.woocommerce-form-coupon .form-select::-moz-placeholder,
.woocommerce-form-coupon .select2-container::-moz-placeholder,
.woocommerce-form-coupon .form-control::-moz-placeholder {
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
}

.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: all 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: all 0.3s ease-in-out;
}

.woocommerce-checkout .form-select:focus::-moz-placeholder,
.woocommerce-checkout .select2-container:focus::-moz-placeholder,
.woocommerce-checkout .form-control:focus::-moz-placeholder,
.woocommerce-form-login .form-select:focus::-moz-placeholder,
.woocommerce-form-login .select2-container:focus::-moz-placeholder,
.woocommerce-form-login .form-control:focus::-moz-placeholder,
.woocommerce-form-coupon .form-select:focus::-moz-placeholder,
.woocommerce-form-coupon .select2-container:focus::-moz-placeholder,
.woocommerce-form-coupon .form-control:focus::-moz-placeholder {
    opacity: 0;
    visibility: hidden;
}

.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: 1px solid #e3e6e9;
    border-top: none;
}

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

.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: 0;
    border: none;
    top: 0;
}

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

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: 0;
    background-position: right 13px center;
    background-color: var(--vs-theme-color6);
    border-color: transparent;
}

.shipping-calculator-form .vs-btn {
    font-size: 14px;
    padding: 0 20px;
    width: -moz-max-content;
    width: max-content;
    height: 40px;
}

/*------------------- 4.40. wishlist  -------------------*/

.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: all 0.2s ease;
}

.vs-checkbox__label::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

/*------------------- 4.41. auth  -------------------*/

.vs-auth {
    max-width: 450px;
    margin: 0px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.vs-auth__tabs {
    margin-bottom: 25px;
}

.vs-auth__tabs .nav-link {
    color: var(--vs-body-color);
    font-weight: 500;
    border: none;
    border-bottom: 2px solid transparent;
}

.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: #fff;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.vs-auth__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    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 0;
    position: relative;
}

.vs-auth__divider span {
    background-color: #fff;
    padding: 0 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: #ccc;
    width: 100%;
    top: 50%;
    left: 0;
    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: all 0.2s ease;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    color: #333;
}

.vs-auth__social-btn i {
    font-size: 1.2rem;
}

.vs-auth__social-btn:hover {
    background-color: #f1f1f1;
    transform: translateY(-1px);
}

.vs-auth__social-btn--google {
    color: #db4437;
    border-color: #db4437;
}

.vs-auth__social-btn--facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.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: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.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: all 0.3s ease;
}

.vs-dashboard__sidebar .vs-dashboard__nav .nav-link:hover {
    background-color: #f3f3f3;
}

.vs-dashboard__sidebar .vs-dashboard__nav .nav-link.active {
    background: linear-gradient(135deg, var(--vs-theme-color1), var(--vs-theme-color2));
    color: #fff;
}

.vs-dashboard__content .tab-pane {
    animation: fadeIn 0.4s ease-in-out;
}

.vs-dashboard__content .vs-dashboard__card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    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: none;
    padding: 10px 20px;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vs-dashboard__content .vs-dashboard__btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*------------------- 4.42. countdown  -------------------*/

.offer-counter {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    background: var(--vs-theme-color1);
    margin-bottom: 30px;
    min-height: 175px;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    /* Small devices */
}

@media (max-width: 767px) {
    .offer-counter {
        flex-direction: column;
    }
}

.offer-counter>li {
    line-height: 1;
    padding: 16px 30px 16px 30px;
    position: relative;
    color: var(--vs-white-color);
    /* Small devices */
}

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

@media (max-width: 767px) {
    .offer-counter>li::before {
        display: none;
    }
}

.offer-counter>li:first-child {
    padding-left: 0;
}

.offer-counter>li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.offer-counter>li:last-child::before {
    display: none;
}

@media (max-width: 767px) {
    .offer-counter>li {
        padding-right: 0;
        padding-left: 0;
    }
}

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

/*------------------- 4.43. popupsearch-v1  -------------------*/

.popup-search-box {
    position: fixed;
    top: 0;
    left: 0;
    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: all ease 0.4s;
    padding: 0 20px;
    transition-delay: 0.9s;
}

.popup-search-box button.searchClose {
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: absolute;
    top: 0px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background-color: var(--vs-theme-color2);
    color: var(--vs-white-color);
    font-size: 30px;
    border-radius: 50%;
    transition: all ease 0.4s;
    transition-delay: 0.5s;
}

.popup-search-box button.searchClose i {
    line-height: inherit;
    transition: all ease 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: all ease 1s;
    rotate: 0deg;
}

.popup-search-box form {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    padding-bottom: 40px;
    cursor: auto;
    width: 100%;
    max-width: 700px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform ease 0.4s;
    padding: 0 20px;
    /* Large devices */
}

@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: all 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: none;
    font-size: 20px;
    right: 45px;
    color: var(--vs-white-color);
    cursor: pointer;
    width: auto;
    height: auto;
    transition: all ease 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: all ease 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);
}

/*=================================
    05. Spacing
==================================*/

/*-- Padding Left And Right --*/

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

/*-- Padding Top And Bottom --*/

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

/*-- Padding Top --*/

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

/*-- Padding Bottom --*/

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

/*-- Padding Left --*/

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

/*-- Padding Right --*/

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

/*-- margin Left And Right --*/

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

/*-- margin Top And Bottom --*/

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

/*-- margin Top --*/

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

/*-- margin Bottom --*/

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

/*-- margin Left --*/

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

/*-- margin Right --*/

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

/* Medium devices */

@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: 0;
    }
}

/*=================================
    06. Components
==================================*/

.icon-call {
    display: flex;
    align-items: start;
}

.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: all ease 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: 0 0 3px 0;
}

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

/*=================================
    06. Color Plate
==================================*/

body {
    transition: background-color 0.3s, color 0.3s;
}

body.light-mode {
    background-color: #ffffff;
    color: #222;
}

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: #2a2a2a;
}

.theme-toggle-icon {
    position: fixed;
    top: 50%;
    left: 0;
    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: all 0.3s ease;
    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: #fff;
    border-radius: 10px 0 0 10px;
    padding: 20px;
    width: 220px;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: right 0.35s ease;
    z-index: 999;
}

.theme-panel.open {
    right: 0;
}

.theme-panel .close-btn {
    align-self: flex-end;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 8px;
    padding: 2px;
}

.theme-panel .mode-btn,
.theme-panel .reset-btn {
    background: #f3f3f3;
    border: none;
    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: #e1e1e1;
}

.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: none;
    cursor: pointer;
}

@media (max-width: 767px) { 
.vs-header__logo.style2 img, .vs-menu-wrapper .mobile-logo img {
    max-width: 65px;
    padding: 8px 0px;
}
.vs-feature {
	        height: auto;
}
.vs-client {
    background-color: transparent;
    border-radius: 20px;
    padding: 20px;
}
.icon-call {
    display: flex;
    align-items: start;
    justify-content: flex-start !important;
}
.vs-footer__title {
    text-align: left;
}
.vs-footer__menu--list {
    text-align: left;
}
.breadcrumb-wrapper__title {
    margin: 0 0 10px 0;
    font-size: 25px;
}
.breadcrumb-wrapper__bg>img {
	    height: auto;
}
}

/*media hidden */

@-ms-viewport {
    width: device-width;
}

.visible-xs {
    display: none !important
}

.visible-sm {
    display: none !important
}

.visible-md {
    display: none !important
}

.visible-lg {
    display: none !important
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important
}

@media(max-width:767px) {
    .visible-xs {
        display: block !important
    }
    table.visible-xs {
        display: table !important
    }
    tr.visible-xs {
        display: table-row !important
    }
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important
    }
    #mobile-menu-active{display:none;}
}

@media(max-width:767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media(max-width:767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media(max-width:767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block !important
    }
    table.visible-sm {
        display: table !important
    }
    tr.visible-sm {
        display: table-row !important
    }
    th.visible-sm,
    td.visible-sm {
        display: table-cell !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md {
        display: block !important
    }
    table.visible-md {
        display: table !important
    }
    tr.visible-md {
        display: table-row !important
    }
    th.visible-md,
    td.visible-md {
        display: table-cell !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media(min-width:1200px) {
    .visible-lg {
        display: block !important
    }
    table.visible-lg {
        display: table !important
    }
    tr.visible-lg {
        display: table-row !important
    }
    th.visible-lg,
    td.visible-lg {
        display: table-cell !important
    }
}

@media(min-width:1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media(min-width:1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media(min-width:1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media(max-width:767px) {
    .hidden-xs {
        display: none !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display: none !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display: none !important
    }
}

@media(min-width:1200px) {
    .hidden-lg {
        display: none !important
    }
}