@use "sass:math";
:root {
    --theme-color: #008F4D;
    --theme-color2: #0AA0DB;
    --title-color: #000a1f;
    --body-color: #686f7a;
    --smoke-color: #f0f4f5;
    --light-color: #afafaf;
    --black-color: #000000;
    --white-color: #ffffff;
    --yellow-color: #fec624;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #e0e0e0;
    --title-font: "Khula", sans-serif;
    --body-font: "Nunito Sans", sans-serif;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1530px;
    --container-gutters: 30px;
    --section-space: 130px;
    --section-space-mobile: 100px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s;
}
html,
body {
    scroll-behavior: auto !important;
}
body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
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%;
    height: auto;
}
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(--border-color);
}
th {
    font-weight: 700;
    color: var(--title-color);
}
td,
th {
    border: 1px solid var(--border-color);
    padding: 9px 12px;
}
a {
    color: var(--theme-color);
    text-decoration: none;
    outline: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
a:hover {
    color: var(--theme-color2);
}
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    outline: 0;
}
button {
    -webkit-transition: all ease 0.4s;
    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 {
    margin: 0 0 18px 0;
    color: var(--body-color);
    line-height: 1.63;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
    font-size: inherit;
    font-family: 'Muli', sans-serif;;
    font-weight: inherit;
    line-height: inherit;
}
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    font-family: var(--title-font);
    color: var(--title-color);
    text-transform: none;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 15px 0;
}
.h1,
h1 {
    font-size: 56px;
}
.h2,
h2 {
    font-size: 44px;
    line-height: 1.227;
}
.h3,
h3 {
    font-size: 40px;
}
.h4,
h4 {
    font-size: 30px;
}
.h5,
h5 {
    font-size: 24px;
}
.h6,
h6 {
    font-size: 20px;
}
@media (max-width: 1299px) {
    .h4,
    h4 {
        font-size: 28px;
    }
    .h2,
    h2 {
        font-size: 40px;
    }
}
@media (max-width: 1199px) {
    .h1,
    h1 {
        font-size: 48px;
    }
    .h3,
    h3 {
        font-size: 32px;
    }
    .h5,
    h5 {
        font-size: 22px;
    }
    .h6,
    h6 {
        font-size: 18px;
    }
}
@media (max-width: 991px) {
    .h4,
    h4 {
        font-size: 24px;
    }
    .h2,
    h2 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .h1,
    h1 {
        font-size: 40px;
    }
    .h2,
    h2 {
        font-size: 30px;
    }
    .h3,
    h3 {
        font-size: 28px;
    }
    .h5,
    h5 {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .h4,
    h4 {
        font-size: 20px;
    }
}
@media only screen and (min-width: 1300px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: calc(var(--main-container) + var(--container-gutters));
        padding-left: calc(var(--container-gutters) / 2);
        padding-right: calc(var(--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: 1500px) and (max-width: 1921px) {
    .container-style1 {
        --main-container: 1700px;
        margin-left: auto;
        margin-right: 0;
    }
    .container-style1 .row {
        margin-right: -185px;
    }
    .container-style2 {
        --main-container: 1700px;
        margin-left: auto;
        margin-right: 0;
        padding-right: 0;
    }
    .container-style3 {
        --main-container: 1720px;
    }
}
@media (max-width: 1199px) {
    .container-style3 {
        padding: 0;
    }
    .container-style3 .row {
        margin: 0;
    }
}
.slick-track > [class*="col"] {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    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 only screen and (min-width: 1300px) {
    .row:not([class*="gx-"]) {
        --bs-gutter-x: 30px;
    }
}
.gy-30 {
    --bs-gutter-y: 30px;
}
@media (min-width: 1500px) {
    .gx-60 {
        --bs-gutter-x: 60px;
    }
    .gx-70 {
        --bs-gutter-x: 70px;
    }
}
@media (min-width: 1399px) {
    .gx-30 {
        --bs-gutter-x: 30px;
    }
    .gx-20 {
        --bs-gutter-x: 20px;
    }
    .gx-40 {
        --bs-gutter-x: 40px;
    }
}
select,
.form-control,
.form-select,
textarea,
input {
    height: 60px;
    padding: 0 30px;
    padding-right: 45px;
    border: 1px solid #e0e0e0;
    color: var(--body-color);
    background-color: var(--white-color);
    border-radius: 9999px;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
}
select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
    outline: 0;
    box-shadow: none;
    background-color: var(--white-color);
}
select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
    color: var(--body-color);
}
select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    color: var(--body-color);
}
select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
    color: var(--body-color);
}
select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    color: var(--body-color);
}
select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
    color: var(--body-color);
}
select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
    color: var(--body-color);
}
select::-ms-input-placeholder,
.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder,
textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
    color: var(--body-color);
}
select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
    color: var(--body-color);
}
.form-select,
select {
    display: block;
    width: 100%;
    line-height: 1.5;
    vertical-align: middle;
    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;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
textarea.form-control,
textarea {
    min-height: 150px;
    padding-top: 20px;
    padding-bottom: 17px;
    border-radius: 25px;
}
input[type="checkbox"] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none;
}
input[type="checkbox"]:checked ~ label:before {
    content: "\f00c";
    color: var(--white-color);
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
input[type="checkbox"] ~ label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block;
}
input[type="checkbox"] ~ label:before {
    content: "";
    font-family: var(--icon-font);
    font-weight: 700;
    position: absolute;
    left: 0px;
    top: 3.5px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    height: 18px;
    width: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 12px;
}
input[type="radio"] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none;
}
input[type="radio"] ~ label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0;
}
input[type="radio"] ~ label::before {
    content: "\f111";
    position: absolute;
    font-family: var(--icon-font);
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    padding-left: 0.5px;
    font-size: 0.6em;
    line-height: 19px;
    text-align: center;
    border: 1px solid var(--theme-color);
    border-radius: 100%;
    font-weight: 700;
    background: var(--white-color);
    color: transparent;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
input[type="radio"]:checked ~ label::before {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
    color: var(--white-color);
}
label {
    margin-bottom: 0.5em;
    margin-top: -0.3em;
    display: block;
    color: var(--title-color);
    font-family: var(--body-font);
    font-size: 16px;
}
.form-group {
    margin-bottom: var(--bs-gutter-x);
    position: relative;
}
.form-group > i {
    position: absolute;
    right: calc((var(--bs-gutter-x) / 2) + 30px);
    top: 24px;
    font-size: 14px;
    color: #a0abb4;
}
.form-group.has-label > i {
    top: 45px;
}
textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
    border: 1px solid var(--error-color) !important;
    background-position: right calc(0.375em + 0.8875rem) center;
    background-image: none;
}
textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
    outline: 0;
    box-shadow: none;
}
textarea.is-invalid {
    background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}
.row.no-gutters > .form-group {
    margin-bottom: 0;
}
.form-messages {
    display: none;
}
.form-messages.mb-0 * {
    margin-bottom: 0;
}
.form-messages.success {
    color: var(--success-color);
    display: block;
}
.form-messages.error {
    color: var(--error-color);
    display: block;
}
.form-messages pre {
    padding: 0;
    background-color: transparent;
    color: inherit;
}
.slick-track > [class*="col"] {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    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: -webkit-max-content;
    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);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    position: relative;
}
.slick-dots button:hover {
    border-color: var(--theme-color);
}
.slick-dots button:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 2px solid var(--theme-color);
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    opacity: 0;
    visibility: hidden;
}
.slick-dots .slick-active button {
    background-color: var(--theme-color);
}
.slick-dots .slick-active button::before {
    opacity: 1;
    visibility: visible;
}
.slick-arrow {
    display: inline-block;
    padding: 0;
    background-color: var(--white-color);
    position: absolute;
    top: 50%;
    border: 1px solid var(--smoke-color);
    left: var(--pos-x, -100px);
    width: var(--icon-size, 50px);
    height: var(--icon-size, 50px);
    font-size: var(--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(--theme-color);
    color: var(--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;
}
.as-slick-custom {
    margin: 30px 0 30px 0;
}
.as-slick-custom .slick-arrow {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    opacity: 1;
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    background-color: var(--theme-color2);
    color: var(--white-color);
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    border: none;
}
.as-slick-custom .slick-arrow:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.as-slick-custom .slick-arrow.slick-prev + .slick-next {
    margin-left: 14px;
}
.as-slick-custom .as-custom-dots {
    display: inline-block;
    margin: 0 2px;
}
.as-slick-custom .as-custom-dots button {
    font-size: 0;
    padding: 0;
    margin: 0 3px 0 3px;
    border: none;
    background-color: #828282;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.as-slick-custom .as-custom-dots button.active {
    background-color: var(--theme-color);
}
.as-slider-shadow {
    margin-top: -30px;
}
.as-slider-shadow .slick-slide {
    margin-top: 30px;
}
.as-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%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}
.as-menu-wrapper .mobile-logo {
    padding-bottom: 30px;
    padding-top: 40px;
    display: block;
    text-align: center;
    background-color: rgba(28, 185, 200, 0.1);
}
.as-menu-wrapper .mobile-logo svg {
    max-width: 185px;
}
.as-menu-wrapper .as-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -17px;
    top: 15px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    font-size: 18px;
    z-index: 1;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-radius: 50%;
}
.as-menu-wrapper .as-menu-toggle:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}
.as-menu-wrapper .as-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid var(--theme-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
}
.as-menu-wrapper.as-body-visible {
    opacity: 1;
    visibility: visible;
}
.as-menu-wrapper.as-body-visible .as-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}
.as-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 200px);
    padding-bottom: 40px;
    margin-top: 33px;
    text-align: left;
}
.as-mobile-menu ul {
    margin: 0;
    padding: 0 0;
}
.as-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
}
.as-mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1;
}
.as-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
}
.as-mobile-menu ul li a:before {
    content: "\f105";
    font-family: var(--icon-font);
    position: relative;
    left: 0;
    top: 0;
    margin-right: 10px;
    display: inline-block;
}
.as-mobile-menu ul li.as-active > a {
    color: var(--theme-color);
}
.as-mobile-menu ul li.as-active > a:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.as-mobile-menu ul li ul li {
    padding-left: 20px;
}
.as-mobile-menu ul li ul li:last-child {
    border-bottom: none;
}
.as-mobile-menu ul .as-item-has-children > a .as-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(--smoke-color);
    color: var(--title-color);
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%;
}
.as-mobile-menu ul .as-item-has-children > a .as-mean-expand:before {
    content: "\f067";
    font-family: var(--icon-font);
}
.as-mobile-menu ul .as-item-has-children.as-active > a .as-mean-expand:before {
    content: "\f068";
}
.as-mobile-menu > ul {
    padding: 0 40px;
}
.as-mobile-menu > ul > li:last-child {
    border-bottom: none;
}
.as-menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 24px;
    border: none;
    background-color: var(--theme-color2);
    color: var(--white-color);
    display: inline-block;
    border-radius: 8px;
}
.as-menu-toggle.style-text,
.as-menu-toggle.style-text-white {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--title-color);
    font-size: 20px;
}
.as-menu-toggle.style-text i,
.as-menu-toggle.style-text-white i {
    margin-right: 10px;
}
.as-menu-toggle.style-text-white {
    color: var(--white-color);
}
@media (max-width: 400px) {
    .as-menu-wrapper .as-menu-area {
        width: 100%;
        max-width: 270px;
    }
    .as-mobile-menu > ul {
        padding: 0 20px;
    }
}
.preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--white-color);
}
.preloader .as-btn {
    padding: 15px 20px;
    border-radius: 0;
    font-size: 14px;
}
.preloader-inner {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
.preloader-inner img {
    display: block;
    margin: 0 auto 10px auto;
}
.loader {
    display: block;
    height: 50px;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid transparent;
    border-top-color: var(--theme-color);
    box-shadow: 0 0 5px var(--theme-color2);
    border-radius: 50%;
    -webkit-animation: pre_spin 1.5s ease infinite;
    animation: pre_spin 1.5s ease infinite;
}
.loader:before {
    content: "";
    position: absolute;
    top: 7px;
    right: 7px;
    bottom: 7px;
    left: 7px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: var(--theme-color);
    box-shadow: 0 0 5px var(--theme-color2);
    -webkit-animation: pre_spin_x 1s linear infinite;
    animation: pre_spin_x 1s linear infinite;
}
.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: var(--theme-color);
    box-shadow: 0 0 5px var(--theme-color2);
    -webkit-animation: pre_spin 1.5s linear infinite;
    animation: pre_spin 1.5s linear infinite;
}
@-webkit-keyframes pre_spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes pre_spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@-webkit-keyframes pre_spin_x {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
    }
}
@keyframes pre_spin_x {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
    }
}
.as-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--body-font);
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    padding: 22.5px 30px;
    border-radius: 9999px;
    position: relative;
}
.as-btn > i {
    margin-left: 5px;
}
.as-btn:hover,
.as-btn.active {
    background-color: var(--theme-color2);
    color: var(--white-color);
}
.as-btn.style2 {
    background-color: var(--theme-color2);
}
.as-btn.style2:hover {
    background-color: var(--theme-color);
}
.as-btn.hover-title:hover {
    background-color: var(--title-color);
}
.icon-btn {
    display: inline-block;
    width: var(--btn-size, 50px);
    height: var(--btn-size, 50px);
    line-height: var(--btn-size, 50px);
    font-size: var(--btn-font-size, 16px);
    background-color: var(--icon-bg, #fff);
    color: var(--title-color);
    text-align: center;
    border-radius: 50%;
}
.icon-btn:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.play-btn > i {
    display: inline-block;
    width: var(--icon-size, 124px);
    height: var(--icon-size, 124px);
    line-height: var(--icon-size, 124px);
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: var(--icon-font-size, 1.5em);
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all ease 0.4s;
    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(--theme-color);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.play-btn:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
    background-color: var(--theme-color2);
    color: var(--white-color);
}
.play-btn.style2 {
    --icon-size: 60px;
    --icon-font-size: 18px;
}
.play-btn.style2:before,
.play-btn.style2:after,
.play-btn.style2 i {
    background-color: var(--white-color);
    color: var(--theme-color);
}
.video-btn {
    --icon-size: 70px;
    color: var(--white-color);
    font-weight: 700;
    font-size: 14px;
    vertical-align: middle;
}
.video-btn .play-btn {
    margin-right: 15px;
}
.video-btn i:after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border: 2px solid var(--white-color);
    border-radius: inherit;
}
.video-btn:hover {
    --theme-color: var(--theme-color2);
}
.video-btn.style2 {
    --icon-size: 60px;
    font-weight: 400;
}
.video-btn.style2 .play-btn::before,
.video-btn.style2 .play-btn::after,
.video-btn.style2 .play-btn i {
    background-color: var(--white-color);
    color: var(--theme-color2);
}
.video-btn.style2 i:after {
    display: none;
}
.video-btn2 {
    --icon-size: 50px;
    --icon-font-size: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.link-btn {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 2px;
    margin-bottom: -2px;
    text-transform: capitalize;
}
.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(--theme-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.link-btn:hover {
    color: var(--theme-color);
}
.link-btn:hover::before {
    width: 100%;
}
.scroll-btn {
    position: fixed;
    bottom: 300px;
    right: 30px;
    z-index: 94;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    border-radius: 50%;
}
.scroll-btn i {
    display: inline-block;
    background-color: var(--theme-color);
    color: var(--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;
    -webkit-transition: all ease 0.8s;
    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: #fff;
    border-radius: inherit;
    z-index: 1;
}
.scroll-btn:focus i,
.scroll-btn:hover i {
    background-color: var(--title-color);
    color: var(--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;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    z-index: 96;
}
.scrollToTop.show {
    bottom: 60px;
    opacity: 1;
    visibility: visible;
}
@media (max-width: 767px) {
    .play-btn {
        --icon-size: 60px;
    }
    .scrollToTop {
        right: 20px;
    }
    .scrollToTop.show {
        bottom: 20px;
    }
}
.sec-title,
.sec-title {
    margin-bottom: calc(var(--section-title-space) - 15px);
}
.sec-subtitle {
    display: inline-block;
    padding: 13px 20px;
    margin: 0 0 22px 0;
    background-color: var(--theme-color2);
    color: var(--white-color);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    border-radius: 6px;
}
.subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-color2);
    display: block;
    margin-top: -0.3em;
    margin-bottom: 30px;
    position: relative;
}
.subtitle:before,
.subtitle:after {
    content: "";
    height: 2px;
    width: 56px;
    background-color: var(--theme-color);
    display: inline-block;
    vertical-align: middle;
}
@media (max-width: 380px) {
    .subtitle:before,
    .subtitle:after {
        width: 35px;
    }
}
.subtitle:before {
    margin-right: 12px;
}
.subtitle:after {
    margin-left: 12px;
}
.subtitle.left:after {
    display: none;
}
.subtitle.right:before {
    display: none;
}
.sec-text {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}
.title-area {
    margin-bottom: calc(var(--section-title-space) - 8px);
}
.title-area .sec-title {
    margin-bottom: -10px;
}
.title-area .sec-text {
    margin-top: 12px;
}
.title-area .align-items-center .sec-text {
    margin-top: -0.3em;
}
.title-area .course-filter-menu {
    margin-top: 20px;
}
.sec-line {
    display: inline-block;
    width: 56px;
    height: 3px;
    background-color: var(--theme-color);
    border-radius: 9999px;
    margin: 0 0 30px 0;
}
@media (max-width: 991px) {
    .sec-line {
        margin: 0 0 20px 0;
    }
    .title-area,
    .sec-title {
        --section-title-space: 45px;
    }
    .title-area .row .sec-text {
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .sec-title {
        --section-title-space: 40px;
    }
}
.image-scale-hover {
    overflow: hidden;
}
.image-scale-hover img {
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    -webkit-transform: scale(1.001);
    -ms-transform: scale(1.001);
    transform: scale(1.001);
}
.image-scale-hover:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.z-index-step1 {
    position: relative;
    z-index: 4 !important;
}
.z-index-common {
    position: relative;
    z-index: 3;
}
.z-index-n1 {
    z-index: -1;
}
.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.badge {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 0 0.55em;
    line-height: 19px;
    top: -6px;
    right: -6px;
    border-radius: 50%;
}
.as-shape1 {
    position: absolute;
    top: 11%;
    right: 7.5%;
}
.as-shape2 {
    position: absolute;
    right: 5.5%;
    top: 8%;
}
.btn-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px 30px;
}
.rounded-10 {
    border-radius: 10px;
}
.slider-shadow .slick-list {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: -30px;
    margin-top: -30px;
}
.icon-box .slick-arrow {
    background-color: var(--theme-color2);
    color: var(--white-color);
    border-color: var(--theme-color2);
}
.icon-box .slick-arrow:first-child {
    margin-right: 5px;
}
.icon-box .slick-arrow:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.shape-mockup-wrap {
    z-index: 2;
    position: relative;
}
.shape-mockup {
    position: absolute;
    z-index: -1;
}
.shape-mockup.z-index3 {
    z-index: 3;
}
.as-social a {
    display: inline-block;
    width: var(--icon-size, 50px);
    height: var(--icon-size, 50px);
    line-height: var(--icon-size, 50px);
    background-color: var(--white-color);
    color: var(--theme-color);
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 50%;
}
.as-social a:last-child {
    margin-right: 0;
}
.as-social a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.font-icon {
    font-family: var(--icon-font);
}
.font-title {
    font-family: var(--title-font);
}
.font-body {
    font-family: var(--body-font);
}
.fw-light {
    font-weight: 300;
}
.fw-normal {
    font-weight: 400;
}
.fw-medium {
    font-weight: 500;
}
.fw-semibold {
    font-weight: 600;
}
.fw-bold {
    font-weight: 700;
}
.fw-extrabold {
    font-weight: 800;
}
.fs-md {
    font-size: 18px;
}
.fs-xs {
    font-size: 14px;
}
.bg-theme {
    background-color: var(--theme-color) !important;
}
.bg-theme2 {
    background-color: var(--theme-color2) !important;
}
.bg-smoke {
    background-color: var(--smoke-color) !important;
}
.bg-white {
    background-color: var(--white-color) !important;
}
.bg-black {
    background-color: var(--black-color) !important;
}
.bg-title {
    background-color: var(--title-color) !important;
}
.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-bottom-left {
    background-size: auto;
    background-position: bottom left;
}
.text-theme {
    color: var(--theme-color) !important;
}
.text-theme2 {
    color: var(--theme-color2) !important;
}
.text-title {
    color: var(--title-color) !important;
}
.text-body {
    color: var(--body-color) !important;
}
.text-light {
    color: var(--light-color) !important;
}
.text-white {
    color: var(--white-color) !important;
}
.text-yellow {
    color: var(--yellow-color) !important;
}
.text-success {
    color: var(--success-color) !important;
}
.text-error {
    color: var(--error-color) !important;
}
.text-inherit {
    color: inherit;
}
.text-inherit:hover {
    color: var(--theme-color);
}
a.text-theme:hover,
.text-reset:hover {
    text-decoration: underline;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.position-center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -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(--theme-color);
}
[data-overlay="theme2"]:before {
    background-color: var(--theme-color2);
}
[data-overlay="title"]:before {
    background-color: var(--title-color);
}
[data-overlay="white"]:before {
    background-color: var(--white-color);
}
[data-overlay="black"]:before {
    background-color: var(--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;
}
.ripple-animation,
.play-btn:after,
.play-btn:before {
    -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}
@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
.fancy-animation {
    -webkit-animation: morph 8s ease-in-out infinite;
    animation: morph 8s ease-in-out infinite;
}
@-webkit-keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}
@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}
.jump-reverse-img,
.jump-img,
.jump-reverse,
.jump {
    -webkit-animation: jumpping var(--duration, 6s) infinite linear;
    animation: jumpping var(--duration, 6s) infinite linear;
}
.jump-reverse-img,
.jump-img {
    --duration: 5s;
}
.jump-reverse-img,
.jump-reverse {
    --jump-y: -20px;
}
@-webkit-keyframes jumpping {
    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40% {
        -webkit-transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
        transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
    }
}
@keyframes jumpping {
    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40% {
        -webkit-transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
        transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
    }
}
.moving {
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}
@-webkit-keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.moving-reverse {
    -webkit-animation: movingReverse 8s linear infinite;
    animation: movingReverse 8s linear infinite;
}
@-webkit-keyframes movingReverse {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes movingReverse {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.rotate-reverse-img,
.rotate-img,
.rotate-reverse,
.rotate {
    -webkit-animation: rotate var(--duration, 12s) infinite linear;
    animation: rotate var(--duration, 12s) infinite linear;
}
.rotate-reverse-img,
.rotate-img {
    --duration: 40s;
}
.rotate-reverse {
    --rotate-angle: -360deg;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(var(--rotate-angle, 360deg));
        transform: rotate(var(--rotate-angle, 360deg));
    }
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(var(--rotate-angle, 360deg));
        transform: rotate(var(--rotate-angle, 360deg));
    }
}
.scalein.vs-animated {
    --animation-name: scalein;
}
.slidetopleft.vs-animated {
    --animation-name: slidetopleft;
}
.slidebottomright.vs-animated {
    --animation-name: slidebottomright;
}
.slideinleft.vs-animated {
    --animation-name: slideinleft;
}
.slideinright.vs-animated {
    --animation-name: slideinright;
}
.slideinup.vs-animated {
    --animation-name: slideinup;
}
.slideindown.vs-animated {
    --animation-name: slideindown;
}
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup {
    opacity: 0;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-name: var(--animation-name);
    animation-name: var(--animation-name);
}
.vs-animated {
    opacity: 1;
}
@-webkit-keyframes slideinup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70px);
        transform: translateY(70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideinup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70px);
        transform: translateY(70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes slideinright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(70px);
        transform: translateX(70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideinright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(70px);
        transform: translateX(70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes slideindown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-70px);
        transform: translateY(-70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideindown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-70px);
        transform: translateY(-70px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes slideinleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-70px);
        transform: translateX(-70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideinleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-70px);
        transform: translateX(-70px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes slidebottomright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px) translateY(100px);
        transform: translateX(100px) translateY(100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
@keyframes slidebottomright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px) translateY(100px);
        transform: translateX(100px) translateY(100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
@-webkit-keyframes slidetopleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(-100px);
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
@keyframes slidetopleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(-100px);
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
@-webkit-keyframes scalein {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes scalein {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul {
    list-style: none;
    margin: 0 0 -15px 0;
    padding: 0;
}
.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_categories a {
    display: block;
    background-color: transparent;
    margin: 0 0 12px 0;
    padding: 0 0 0 20px;
    font-size: 16px;
    color: var(--body-color);
    font-weight: 400;
    line-height: 1;
}
.widget_nav_menu a::before,
.widget_meta a::before,
.widget_pages a::before,
.widget_archive a::before,
.widget_categories a::before {
    content: "\f101";
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--icon-font);
    font-weight: 300;
}
.widget_nav_menu a:hover,
.widget_meta a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover {
    color: var(--theme-color);
}
.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;
    -webkit-transition: all ease 0.4s;
    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(--theme-color);
}
.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;
}
.as-blog ul.wp-block-archives li {
    margin: 5px 0;
}
.widget {
    padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    position: relative;
    margin-bottom: 40px;
    border-radius: 5px;
}
.widget select,
.widget input {
    height: 60px;
    border: none;
    background-color: var(--input-bg, #f0f4f5);
    border-radius: 9999px;
}
.widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--title-font);
    line-height: 1em;
    margin: -0.07em 0 18px 0;
    padding: 0 0 13px 0;
    border-bottom: 1px solid var(--border-color);
}
.widget .search-form {
    position: relative;
}
.widget .search-form input {
    padding-right: 70px;
}
.widget .search-form button {
    border: none;
    background-color: transparent;
    padding: 4px 0 4px 20px;
    line-height: 1;
    color: var(--theme-color);
    border-left: 1px solid var(--theme-color);
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.wp-block-tag-cloud a,
.tagcloud a {
    display: inline-block;
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    padding: 13px 22px;
    margin-right: 5px;
    margin-bottom: 10px;
    color: var(--title-color);
    background-color: var(--smoke-color);
    border-radius: 9999px;
}
.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
    background-color: var(--theme-color);
    color: var(--white-color) !important;
}
.tagcloud {
    margin-right: -5px;
    margin-bottom: -10px;
}
.recent-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}
.recent-post:last-child {
    margin-bottom: 0;
}
.recent-post .media-img {
    margin-right: 20px;
    width: 80px;
}
.recent-post .media-img img {
    width: 100%;
    border-radius: 4px;
}
.recent-post .post-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 -0.1em 0;
}
.recent-post .recent-post-meta {
    margin-bottom: 2px;
}
.recent-post .recent-post-meta a {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    color: var(--body-color);
}
.recent-post .recent-post-meta a i {
    margin-right: 5px;
    color: var(--theme-color2);
}
.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(--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(--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;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.wp-block-calendar #today,
.calendar_wrap #today {
    color: var(--theme-color);
    background-color: var(--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: 10px;
}
.sidebar-gallery .gallery-thumb {
    overflow: hidden;
    border-radius: 5px;
}
.sidebar-gallery .gallery-thumb img {
    width: 100%;
}
.widget_shopping_cart .widget_title {
    border: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.widget_shopping_cart ul {
    margin: 0;
    padding: 0;
}
.widget_shopping_cart ul li {
    list-style-type: none;
}
.widget_shopping_cart .mini_cart_item {
    position: relative;
    padding: 30px 10px 30px 90px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}
.widget_shopping_cart .mini_cart_item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.widget_shopping_cart .cart_list a:not(.remove) {
    display: block;
    color: var(--body-color);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--title-color);
}
.widget_shopping_cart .cart_list a:not(.remove):hover {
    color: var(--theme-color);
}
.widget_shopping_cart .cart_list a.remove {
    position: absolute;
    top: 50%;
    left: 95%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--body-color);
}
.widget_shopping_cart .cart_list a.remove:hover {
    color: var(--theme-color);
}
.widget_shopping_cart .cart_list img {
    width: 75px;
    height: 75px;
    position: absolute;
    left: 0;
    top: 20px;
    border: 1px solid var(--border-color);
}
.widget_shopping_cart .quantity {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    white-space: nowrap;
    vertical-align: top;
    margin-right: 20px;
    font-size: 14px;
    color: var(--theme-color2);
}
.widget_shopping_cart .total {
    margin-top: 30px;
    font-size: 18px;
    color: var(--title-color);
}
.widget_shopping_cart .amount {
    padding-left: 5px;
    font-weight: 600;
    font-family: var(--title-font);
}
.widget_shopping_cart .as-btn {
    margin-right: 10px;
    padding: 18px 33px;
}
.widget_shopping_cart .as-btn:last-child {
    margin-right: 0;
}
.recent-product {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.recent-product .product-title {
    font-size: 16px;
}
.filter-list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.filter-list li > div {
    margin-bottom: 12px;
}
.filter-list .children {
    margin-left: 20px;
    margin-bottom: 17px;
}
.filter-list input[type="checkbox"] ~ label:before {
    border-radius: 5px;
    font-size: 10px;
    line-height: 16px;
    font-weight: 400;
    background-color: var(--smoke-color);
}
.filter-list input[type="checkbox"]:checked ~ label {
    color: var(--theme-color);
}
.filter-list input[type="checkbox"]:checked ~ label::before {
    background-color: var(--theme-color);
}
.sidebar-area {
    margin-bottom: -10px;
}
.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 .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;
}
.sidebar-area .widget_shopping_cart .as-btn {
    margin-right: 10px;
    padding: 8px 22px;
    font-size: 14px;
}
.course-sidebar {
    padding: 40px 40px 0.1px 40px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.06);
}
.course-sidebar .widget {
    border: none;
    padding: 0;
}
.course-sidebar .widget_title {
    font-size: 20px;
    margin-bottom: 23px;
}
.course-sidebar .widget_nav_menu ul,
.course-sidebar .widget_meta ul,
.course-sidebar .widget_pages ul,
.course-sidebar .widget_archive ul,
.course-sidebar .widget_categories ul {
    margin: 0 0 -4px 0;
}
@media (max-width: 1199px) {
    .widget {
        --widget-padding-y: 30px;
        --widget-padding-x: 30px;
    }
    .widget_title {
        font-size: 20px;
    }
    .recent-post .post-title {
        font-size: 18px;
        line-height: 24px;
    }
    .course-sidebar {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 991px) {
    .course-sidebar {
        margin-top: 30px;
    }
    .sidebar-area {
        padding-top: 30px;
    }
    .wp-block-tag-cloud a,
    .tagcloud a {
        padding: 10.5px 18px;
    }
}
@media (max-width: 767px) {
    .contact-widget .icon {
        --icon-size: 30px;
        --icon-font-size: 12px;
        top: 5px;
    }
    .contact-widget .contact {
        padding: 0 0 0 45px;
        margin: 0 0 20px 0;
        border-bottom: none;
    }
}
@media (max-width: 575px) {
    .widget {
        padding: 30px 20px;
    }
}
.footer-widget {
    margin-bottom: 40px;
}
.footer-widget,
.footer-widget .widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
}
.footer-widget .widget_title {
    position: relative;
    border: none;
    font-family: var(--title-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--title-color);
    line-height: 1;
    border-bottom: 1px solid #303845;
    padding: 0 0 13px 0;
    margin: 0 0 38px 0;
    max-width: 275px;
}
.footer-widget .widget_title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 2px;
    background-color: var(--theme-color2);
}
.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 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 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(--theme-color);
}
.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 {
    content: "\f105";
    font-weight: 700;
}
.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(--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-menu > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.footer-logo {
    margin-bottom: 22px;
}
.footer-text {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
}
.footer-social a {
    display: inline-block;
    color: var(--body-color);
    font-size: 26px;
    margin: 0 20px 0 0;
}
.footer-social a:last-child {
    margin-right: 0;
}
.footer-info {
    position: relative;
    margin: 0 0 25px 0;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 0 0 55px;
    max-width: 300px;
}
.footer-info:last-child {
    margin-bottom: 0;
}
.footer-info i {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.footer-info:nth-child(2) i {
    background-color: var(--theme-color2);
}
.footer-info:nth-child(3) i {
    background-color: #333333;
}
@media (max-width: 1199px) {
    .footer-widget {
        margin-bottom: 60px;
    }
    .footer-widget .widget_title {
        font-size: 26px;
    }
}
.as-header {
    position: relative;
    z-index: 41;
}
.will-sticky .sticky-active {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
.will-sticky .sticky-active.active {
    top: 0;
}
.main-menu a {
    display: block;
    position: relative;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 16px;
    color: var(--title-color);
}
@media (max-width: 1500px) {
    .main-menu a {
        font-size: 16px;
    }
}
.main-menu a:hover {
    color: var(--theme-color);
}
.main-menu > ul > li {
    margin: 0 16px;
}
@media (max-width: 1500px) {
    .main-menu > ul > li {
        margin: 0 12px;
    }
}
.main-menu > ul > li > a {
    padding: 41px 0;
}
.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: "\f067";
    position: relative;
    font-family: var(--icon-font);
    margin-left: 5px;
    top: -0.8px;
    font-size: 0.8rem;
}
.main-menu ul li.menu-item-has-children:hover > a:after {
    content: "\f068";
}
.main-menu ul li:last-child {
    margin-right: 0;
}
.main-menu ul li:first-child {
    margin-left: 0;
}
.main-menu ul li:hover > ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
    z-index: 9;
}
.main-menu ul li:hover ul.mega-menu {
    -webkit-transform: scaleY(1) translateX(-50%);
    -ms-transform: scaleY(1) translateX(-50%);
    transform: scaleY(1) translateX(-50%);
}
.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    visibility: hidden;
    min-width: 190px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 7px;
    left: -14px;
    opacity: 0;
    z-index: -1;
    border-bottom: 3px solid var(--theme-color);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
    border-radius: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 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: 18px 20px;
    left: -27px;
}
.main-menu ul.sub-menu:before {
    content: "";
    position: absolute;
    left: 34.5px;
    top: 30px;
    width: 1px;
    background-color: #ededed;
    height: calc(100% - 60px);
}
.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 0 9px;
}
.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-left: 21px;
}
.main-menu ul.sub-menu li a:before {
    content: "\f111";
    position: absolute;
    top: 2.5em;
    left: 0;
    font-family: var(--icon-font);
    width: 11px;
    height: 11px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 0.2em;
    line-height: 11.5px;
    color: var(--theme-color);
    font-weight: 900;
    background-color: var(--white-color);
    box-shadow: inset 0px 2px 4px 0px rgba(173, 136, 88, 0.4);
}
.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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    max-width: var(--main-container);
    padding: 20px 15px 23px 15px;
    left: 50%;
    border-radius: 0;
    -webkit-transform: scaleY(0) translateX(-50%);
    -ms-transform: scaleY(0) translateX(-50%);
    transform: scaleY(0) translateX(-50%);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.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: inline-block;
}
.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: 700;
    color: var(--title-color);
    border-color: var(--theme-color);
}
.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(--theme-color);
}
.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;
}
.header-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.header-icons a {
    display: inline-block;
    width: var(--icon-size, 40px);
    height: var(--icon-size, 40px);
    line-height: calc(var(--icon-size, 40px) - 1px);
    text-align: center;
    border: 1px solid #4f4f4f;
    color: var(--title-color);
    font-size: var(--icon-font-size, 15px);
    border-radius: 50%;
    position: relative;
}
.header-icons a.has-badge {
    margin-right: 5px;
}
.header-icons a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
}
.header-icons.style2 > a {
    color: var(--white-color);
    border-color: var(--white-color);
}
.header-icons.style2 > a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
}
.brows-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-color);
}
.brows-link i {
    color: #828282;
    margin-right: 10px;
    font-size: 18px;
    top: 1px;
    position: relative;
}
.brows-link:hover {
    color: var(--theme-color2);
}
.header-top-links {
    display: inline-block;
}
.header-top-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.header-top-links li {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 0 20px 0 0;
    margin: 0 20px 0 0;
    border-right: 1px solid var(--title-color);
    line-height: 21px;
}
.header-top-links li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.header-top-links li > i {
    margin-right: 5px;
    color: inherit;
}
.header-top-links a {
    color: inherit;
}
.header-top-links a:hover {
    color: var(--theme-color);
}
.header-top-links.style-white li {
    color: var(--white-color);
    border-color: var(--white-color);
}
.header-social a {
    display: inline-block;
    color: var(--title-font);
    margin: 0 18px 0 0;
}
.header-social a:last-child {
    margin-right: 0;
}
.header-social a:hover {
    color: var(--theme-color);
}
.header-social.style-white a {
    color: var(--white-color);
}
.header-social.style-white a:hover {
    color: var(--theme-color);
}
.header-btn-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 1299px) {
    .header-btn {
        display: none;
    }
}
@media (max-width: 991px) {
    .header-btn-group {
        display: none;
    }
}
.header-layout1 {
    --main-container: 1710px;
}
.header-layout1.has-shadow {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
.header-layout2 {
    position: relative;
    background-color: var(--white-color);
}
.header-layout2 .main-menu {
    margin-right: 30px;
}
.header-layout2 .header-top {
    background-color: var(--title-color);
    padding: 8px 0;
}
.header-layout3 .main-menu {
    margin-right: 30px;
}
.header-layout4 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}
.header-layout4 .menu-area {
    padding: 0 20px;
    z-index: 1;
    position: relative;
    background-color: var(--white-color);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 22px 22px;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.header-layout4 .header-top {
    padding: 5px 20px;
    background-color: var(--theme-color2);
    border-radius: 22px 22px 0 0;
}
@media (min-width: 1399px) {
    .header-layout4 .will-sticky .sticky-active {
        background-color: transparent;
        box-shadow: none;
    }
}
@media (max-width: 1500px) {
    .header-layout4 {
        left: 30px;
        right: 30px;
    }
}
@media (max-width: 1399px) {
    .header-layout4 {
        left: 0;
        right: 0;
        position: relative;
    }
    .header-layout4 .container-xxl {
        padding-left: 0;
        padding-right: 0;
    }
    .header-layout4 .menu-area,
    .header-layout4 .header-top {
        border-radius: 0;
        box-shadow: none;
    }
}
@media (max-width: 1199px) {
    .header-layout2 .main-menu,
    .header-layout3 .main-menu {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .header-top-links {
        padding: 8px 0 3px 0;
    }
    .header-top-links li {
        display: block;
        border: none;
        margin: 0 0 7px 0;
        text-align: center;
        padding: 0;
    }
}
.header-layout5 {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
}
.header-layout5 .menu-area {
    background-color: var(--white-color);
    padding: 0 40px;
    border-radius: 0 0 22px 22px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}
.header-layout5 .menu-area:after {
    content: "";
    height: 100%;
    width: 100%;
    border: 1px solid #70a63b;
    border-radius: inherit;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.header-layout5 .will-sticky .sticky-active {
    background-color: transparent;
    box-shadow: none;
}
.header-layout5 .will-sticky .sticky-active .menu-area:after {
    top: 0;
    left: 0;
}
@media (max-width: 1600px) {
    .header-layout5 .menu-area:after {
        top: 12px;
        left: 12px;
    }
}
@media (max-width: 1199px) {
    .header-layout5 .header-btn-group {
        display: none;
    }
}
@media (max-width: 991px) {
    .header-layout5 .menu-area {
        padding: 0 20px;
    }
}
@media (max-width: 575px) {
    .header-layout5 {
        top: 12px;
    }
}
@media (max-width: 380px) {
    .header-layout5 .header-logo {
        max-width: 170px;
    }
}
.header-notice {
    display: inline-block;
    margin-bottom: 0;
    color: var(--body-color);
    font-size: 14px;
    font-weight: bold;
    margin-right: 20px;
}
.header-layout6 {
    position: relative;
    z-index: 99;
}
.header-layout6 .header-top {
    --body-color: #fff;
    background-color: var(--title-color);
    padding: 7px 0;
    position: relative;
    z-index: 1;
}
.header-layout6 .header-top .container {
    padding-left: 250px;
}
.header-layout6 .top-shape {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--theme-color);
    width: 40%;
    -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
    z-index: -1;
}
.header-layout6 .header-notice {
    margin-right: 160px;
}
.header-layout6 .main-menu {
    margin-left: -265px;
}
.header-layout6 .header-logo {
    margin: -40px 0 0 -100px;
    position: relative;
    z-index: 4;
}
.header-layout6 .header-top-links.style-white li {
    border-color: #686f7a;
}
.header-layout6 .main-menu > ul > li > a {
    padding: 29px 0;
}
.header-layout6 .logo-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 19%;
}
.header-layout6 .logo-bg:before,
.header-layout6 .logo-bg:after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--white-color);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-clip-path: polygon(calc(100% - 50px) 0, 100% 50%, calc(100% - 50px) 100%, 0 100%, 0 0);
    clip-path: polygon(calc(100% - 50px) 0, 100% 50%, calc(100% - 50px) 100%, 0 100%, 0 0);
}
.header-layout6 .logo-bg:after {
    width: calc(100% + 10px);
    background-color: var(--theme-color);
    z-index: -1;
}
.header-layout6 .sticky-active.active .header-logo {
    margin-top: 0;
}
@media (min-width: 1922px) {
    .header-layout6 .logo-bg {
        width: 28%;
    }
}
@media (max-width: 1700px) {
    .header-layout6 .header-logo {
        margin: -40px 0 0 0;
    }
    .header-layout6 .header-top .container {
        padding-left: 320px;
    }
    .header-layout6 .header-notice {
        margin-right: 100px;
    }
    .header-layout6 .main-menu {
        margin-left: -100px;
    }
}
@media (max-width: 1500px) {
    .header-layout6 .logo-bg {
        width: 22%;
    }
}
@media (max-width: 1399px) {
    .header-layout6 .main-menu {
        margin-left: -200px;
    }
    .header-layout6 .header-button .call-btn {
        display: none;
    }
}
@media (max-width: 1299px) {
    .header-layout6 .logo-bg {
        width: 27%;
    }
    .header-layout6 .header-top .container {
        padding-left: 280px;
    }
    .header-layout6 .header-notice {
        margin-right: 20px;
    }
    .header-layout6 .main-menu {
        margin-left: 0px;
    }
    .header-layout1 .header-btn {
        display: block;
    }
}
@media (max-width: 1199px) {
    .header-layout6 .logo-bg {
        width: 30%;
    }
    .header-layout6 .header-notice {
        display: none;
    }
}
@media (max-width: 991px) {
    .header-layout6 .header-logo {
        margin: 0;
    }
    .header-layout6 .logo-bg {
        width: 50%;
        height: calc(100% - 40px);
    }
    .header-layout6 .header-top .container {
        padding-left: 12px;
    }
}
@media (max-width: 767px) {
    .header-layout6 .header-top-links {
        padding: 0;
    }
    .header-layout6 .header-top-links li {
        margin: 0;
    }
    .header-layout6 .top-shape {
        display: none;
    }
}
@media (max-width: 575px) {
    .header-layout6 .header-logo {
        max-width: 180px;
    }
    .header-layout6 .logo-bg {
        width: 58%;
    }
}
@media (max-width: 380px) {
    .header-layout6 .logo-bg {
        width: 70%;
    }
}
.widget-area {
    padding-top: 100px;
    padding-bottom: 54px;
}
.copyright-wrap {
    text-align: center;
    padding: 29px 0;
    border-top: 1px solid #202a3a;
}
.copyright-wrap p {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
}
.copyright-wrap p a {
    color: inherit;
}
.copyright-wrap p a:hover {
    color: var(--theme-color);
}
.copyright-text {
    margin: 0;
    font-size: 14px;
}
.footer-form-text {
    margin: -0.25rem 0 -1rem 0;
}
.footer-wrapper {
    background-color: #000a1f;
    --title-color: #fff;
    --body-color: #fff;
    position: relative;
}
.footer-wrapper .footer-top {
    padding-top: 100px;
}
.footer-shape1 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.footer-map iframe {
    height: 110px;
    width: 100%;
}
.footer-layout2 {
    padding-top: 0.1px;
}
.footer-layout2 .footer-top {
    background-color: #2c2c2c;
    padding: 50px 45px;
    border-radius: 15px;
    margin: 30px 0 -40px 0;
}
.footer-layout2 .footer-top.style2 {
    background-color: transparent;
    border-bottom: 1px solid #2c2c2c;
    padding: 20px 0 50px 0;
    border-radius: 0;
    margin-bottom: 0;
}
.style-top.footer-top {
    background-color: #2c2c2c;
    padding: 50px 45px;
    border-radius: 15px;
}
@media (max-width: 1500px) {
    .footer-shape1 {
        max-width: 100px;
    }
}
@media (max-width: 1199px) {
    .footer-layout2 .footer-form-text {
        margin: -0.25rem 0 30px 0;
        text-align: center;
    }
    .widget-area {
        padding-top: 80px;
        padding-bottom: 20px;
    }
    .footer-top .footer-form-text {
        margin-bottom: 15px;
        text-align: center;
    }
}
@media (max-width: 991px) {
    .footer-layout1 .footer-form-text {
        margin: -0.25rem 0 30px 0;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .footer-layout1 .footer-form-text {
        margin: -0.25rem 0 10px 0;
    }
    .footer-layout2 .footer-top {
        padding: 40px 15px;
    }
    .footer-shape1 {
        display: none;
    }
}
.breadcumb-menu {
    max-width: 100%;
    margin: 15px 0 -0.35em 0;
    padding: 0;
    list-style-type: none;
}
.breadcumb-menu li {
    display: inline-block;
    margin-right: 3px;
    padding-right: 5px;
    list-style: none;
    position: relative;
}
.breadcumb-menu li:after {
    content: "\f054";
    font-family: var(--icon-font);
    position: relative;
    top: 1px;
    margin-left: 10px;
}
.breadcumb-menu li:last-child {
    padding-right: 0;
    margin-right: 0;
}
.breadcumb-menu li:last-child:after {
    display: none;
}
.breadcumb-menu li:last-child,
.breadcumb-menu li:last-child a,
.breadcumb-menu li:last-child span {
    color: var(--theme-color2);
}
.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
    white-space: normal;
    color: inherit;
    word-break: break-word;
    font-weight: 700;
    font-size: 14px;
    color: var(--white-color);
}
.breadcumb-title {
    color: var(--white-color);
    margin: -0.1em 0 -0.1em 0;
}
.breadcumb-wrapper {
    padding-top: 154px;
    padding-bottom: 154px;
    background-color: var(--title-color);
    background-size: 100% 100%;
}
@media (max-width: 991px) {
    .breadcumb-wrapper {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 767px) {
    .breadcumb-wrapper {
        background-size: cover;
    }
}
.as-pagination {
    text-align: center;
    margin-bottom: 30px;
}
.as-pagination ul {
    margin: 0;
    padding: 0;
}
.as-pagination li {
    display: inline-block;
    margin: 0 3px;
    list-style-type: none;
}
.as-pagination li:last-child {
    margin-right: 0;
}
.as-pagination li:first-child {
    margin-left: 0;
}
.as-pagination span,
.as-pagination a {
    display: inline-block;
    min-width: 50px;
    min-height: 50px;
    line-height: 50px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    border: none;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    color: var(--title-color);
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}
.as-pagination span i,
.as-pagination a i {
    margin-left: 7px;
}
.as-pagination span.active,
.as-pagination span:hover,
.as-pagination a.active,
.as-pagination a:hover {
    color: var(--white-color);
    background-color: var(--theme-color);
    box-shadow: none;
}
@media (max-width: 767px) {
    .as-pagination span,
    .as-pagination a {
        min-width: 35px;
        min-height: 35px;
        line-height: 35px;
        font-size: 12px;
        padding: 0 10px;
    }
}
blockquote {
    display: block;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--title-color);
    background-color: var(--quote-bg, #f0f4f5);
    border-left: 4px solid var(--theme-color2);
    padding: 43px 50px 42px 35px;
    margin: 35px 0;
}
blockquote p {
    font-family: inherit;
    margin-bottom: 0 !important;
    line-height: 1.5;
    color: inherit;
    width: 100%;
    position: relative;
    z-index: 3;
    font-style: italic;
}
blockquote:before {
    content: "\f10e";
    font-family: var(--icon-font);
    position: absolute;
    right: 70px;
    bottom: 27px;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--theme-color2);
}
blockquote p {
    margin-bottom: 0;
}
blockquote p a {
    color: inherit;
}
blockquote cite {
    display: inline-block;
    font-size: 16px;
    position: relative;
    padding-left: 45px;
    line-height: 1;
    font-weight: 400;
    margin-top: 22px;
    font-style: normal;
    color: var(--title-color);
}
blockquote cite:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 30px;
    height: 2px;
    border-top: 2px solid var(--theme-color);
}
.course-meta span,
.course-meta a,
.blog-meta span,
.blog-meta a {
    display: inline-block;
    font-size: 14px;
    color: #4f4f4f;
}
.course-meta span:not(:last-child):after,
.course-meta a:not(:last-child):after,
.blog-meta span:not(:last-child):after,
.blog-meta a:not(:last-child):after {
    content: "|";
    margin: 0 18px 0 18px;
    color: var(--border-color);
}
.course-meta span i,
.course-meta a i,
.blog-meta span i,
.blog-meta a i {
    color: var(--theme-color2);
    margin-right: 10px;
}
.course-meta a:hover,
.blog-meta a:hover {
    color: var(--theme-color);
}
.blog-category {
    margin-bottom: -10px;
}
.blog-category a {
    display: inline-block;
    color: var(--white-color);
    padding: 4.5px 24.5px;
    margin-right: 5px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    background-color: var(--theme-color);
}
.blog-category a:hover {
    background-color: var(--white-color);
    color: var(--body-color);
    border-color: var(--theme-color);
}
.blog-title a {
    color: inherit;
}
.blog-title a:hover {
    color: var(--theme-color);
}
.as-blog {
    margin-bottom: 30px;
}
.blog-inner-title {
    font-size: 30px;
    margin-top: -0.1em;
    margin-bottom: 8px;
}
.blog-single {
    position: relative;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    padding: var(--blog-space-y, 40px) 0 0 0;
    border-radius: 5px;
}
.blog-single .blog-inner-author img {
    width: 40px;
    margin-right: 10px;
}
.blog-single .blog-inner-author a {
    color: var(--body-color);
    font-weight: 600;
    font-family: var(--title-font);
}
.blog-single .blog-inner-author a:hover {
    color: var(--theme-color);
}
.blog-single .blog-meta {
    margin-bottom: 20px;
    margin-top: -0.3em;
    padding-top: 0;
}
.blog-single .blog-meta img {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: -3px;
    position: relative;
}
.blog-single .blog-title {
    line-height: 1.35;
    margin-bottom: 10px;
    font-size: 34px;
}
.blog-single .link-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
}
.blog-single .blog-date {
    color: var(--body-color);
}
.blog-single .blog-date i {
    color: var(--theme-color2);
    margin: 0 10px 0 0;
}
.blog-single .share-links-title {
    font-size: 20px;
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: 700;
    margin: 0 15px 0 0;
    display: inline-block;
}
.blog-single .share-links {
    margin: 14px var(--blog-space-x, 40px) 0 var(--blog-space-x, 40px);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}
.blog-single .share-links .row {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-single .share-links .tagcloud {
    display: inline-block;
}
.blog-single .social-links {
    padding: 7px 23px;
    margin: 0;
    list-style-type: none;
    display: inline-block;
    background-color: var(--smoke-color);
    border-radius: 9999px;
}
.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(--title-color);
    text-align: center;
    display: block;
}
.blog-single .social-links a:hover {
    color: var(--theme-color);
}
.blog-single .blog-content {
    margin: 0 var(--blog-space-x, 40px) 0 var(--blog-space-x, 40px);
    padding: 0;
    position: relative;
}
.blog-single .blog-audio {
    line-height: 1;
}
.blog-single .blog-audio,
.blog-single .blog-img {
    position: relative;
    margin: 0 var(--blog-space-x, 40px) 35px var(--blog-space-x, 40px);
    background-color: var(--smoke-color);
}
.blog-single .blog-img {
    border-radius: 5px;
}
.blog-single .blog-img img {
    border-radius: 5px;
}
.blog-single .blog-img .slick-arrow {
    --pos-x: 30px;
    border: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 5px;
}
.blog-single .blog-img .slick-arrow:hover {
    background-color: var(--theme-color2);
    color: var(--white-color);
}
.blog-single .blog-img .play-btn {
    --icon-size: 60px;
    --icon-font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: calc(var(--icon-size) / -2) 0 0 calc(var(--icon-size) / -2);
}
.blog-single .blog-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px dashed var(--border-color);
    margin: 28px 0 0 0;
    padding: 20px 0;
}
.blog-single .blog-bottom .blog-inner-author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-single .blog-bottom .blog-inner-author img {
    border-radius: 50%;
}
.blog-single:hover .blog-img .slick-arrow {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 1199px) {
    blockquote {
        font-size: 18px;
        padding: 23px 30px 26px 30px;
    }
    .blog-single {
        --blog-space-y: 40px;
        --blog-space-x: 30px;
    }
    .blog-single .blog-title {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    blockquote {
        font-size: 16px;
        padding: 23px 15px 26px 15px;
    }
    blockquote:before {
        right: 30px;
        bottom: 30px;
        font-size: 2rem;
    }
    blockquote cite {
        margin-top: 17px;
        font-size: 14px;
    }
    blockquote cite::before {
        bottom: 6px;
    }
    .blog-inner-title {
        font-size: 26px;
    }
    .blog-single {
        --blog-space-y: 40px;
        --blog-space-x: 20px;
    }
    .blog-single .blog-title {
        font-size: 24px;
        line-height: 1.6;
    }
    .blog-single .share-links-title {
        font-size: 18px;
        display: block;
        margin: 0 0 10px 0;
    }
    .blog-single .blog-meta > span:not(:last-child):after,
    .blog-single .blog-meta a:not(:last-child):after {
        content: "";
        margin: 0 10px 0 14px;
    }
}
.comment-respond {
    margin: var(--blog-space-y, 40px) var(--blog-space-x, 40px) var(--blog-space-y, 40px) var(--blog-space-x, 40px);
    position: relative;
}
.comment-respond .form-title {
    margin-top: -0.35em;
}
.comment-respond .form-title a#cancel-comment-reply-link {
    font-size: 0.7em;
    text-decoration: underline;
}
.comment-respond .custom-checkbox.notice {
    margin-top: 10px;
    margin-bottom: 25px;
}
.comment-respond .row {
    --bs-gutter-x: 20px;
}
.comment-respond .form-control {
    background-color: var(--smoke-color);
    border: none;
    padding-left: 55px;
}
.comment-respond input[type="checkbox"] ~ label:before {
    background-color: var(--smoke-color);
    border: 1px solid #bdbdbd;
    border-radius: 3px;
}
.comment-respond input[type="checkbox"]:checked ~ label:before {
    background-color: var(--theme-color);
    border-color: transparent;
}
.comment-respond .form-group > i {
    right: auto;
    left: calc(var(--bs-gutter-x) / 2 + 30px);
}
.comment-respond .blog-inner-title {
    margin-bottom: 0px;
}
.comment-respond .form-text {
    margin-bottom: 25px;
}
.question-form .comment-respond,
.review-form .comment-respond {
    margin: 0 0 20px 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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.question-form .rating-select label,
.review-form .rating-select label {
    font-weight: 500;
    color: var(--title-color);
}
.review-form {
    display: none;
}
.as-comments-wrap {
    margin: var(--blog-space-y, 40px) var(--blog-space-x, 40px) var(--blog-space-y, 40px) var(--blog-space-x, 40px);
}
.as-comments-wrap .description p:last-child {
    margin-bottom: 0;
}
.as-comments-wrap .comment-respond {
    margin: 30px 0;
}
.as-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;
}
.as-comments-wrap blockquote {
    background-color: #eaf8f9;
}
.as-comments-wrap li {
    margin: 0;
}
.as-comments-wrap .as-post-comment {
    padding: 40px 40px 35px 40px;
    position: relative;
    background-color: rgba(241, 241, 241, 0.5);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 0 30px 0;
    position: relative;
    border-radius: 5px;
}
.as-comments-wrap ul.comment-list {
    list-style: none;
    margin: -10px 0 0 0;
    padding: 0;
}
.as-comments-wrap ul.comment-list ul ul,
.as-comments-wrap ul.comment-list ul ol,
.as-comments-wrap ul.comment-list ol ul,
.as-comments-wrap ul.comment-list ol ol {
    margin-bottom: 0;
}
.as-comments-wrap .comment-avater {
    width: 100px;
    height: 100px;
    margin-right: 25px;
    overflow: hidden;
    background-color: var(--white-color);
    border-radius: 10px;
}
.as-comments-wrap .comment-avater img {
    border-radius: 10px;
    width: 100%;
}
.as-comments-wrap .comment-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}
.as-comments-wrap .commented-on {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--theme-color2);
    font-family: var(--title-font);
}
.as-comments-wrap .commented-on i {
    margin-right: 7px;
    font-size: 0.9rem;
}
.as-comments-wrap .name {
    margin-top: -0.1em;
    margin-bottom: 2px;
    font-size: 20px;
}
.as-comments-wrap .comment-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.as-comments-wrap .text {
    color: #6b6b6b;
    margin-bottom: 0;
}
.as-comments-wrap .text:last-child {
    margin-bottom: 0;
}
.as-comments-wrap .children {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-left: 70px;
}
.as-comments-wrap .replay-btn {
    font-weight: 600;
    font-family: var(--title-font);
    font-size: 16px;
    color: var(--body-color);
    margin-top: 15px;
    display: inline-block;
    text-decoration: underline;
}
.as-comments-wrap .replay-btn i {
    margin-right: 7px;
    font-size: 0.8em;
}
.as-comments-wrap .replay-btn:hover {
    color: var(--theme-color);
}
.as-comments-wrap .star-rating {
    font-size: 12px;
    margin-bottom: 10px;
    width: 80px;
    position: absolute;
    top: 0;
    right: 0;
}
.as-comments-wrap.as-comment-form {
    margin: 0;
}
.woocommerce-Reviews .as-comments-wrap {
    margin: 0;
}
.woocommerce-Reviews .as-comment-form {
    margin: 60px 0 30px 0;
}
.reviews-summary {
    padding: 53px 60px 53px 60px;
    margin: 0 0 30px 0;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-radius: 5px;
}
.reviews-summary__top {
    text-align: center;
    margin: 0 60px 0 0;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}
.reviews-summary__bars {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.reviews-summary__average {
    font-size: 56px;
    line-height: 1;
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: 600;
    margin: 0 0 32px 0;
}
.reviews-summary__rating {
    margin-bottom: 11px;
}
.reviews-summary__rating .star-rating {
    margin: 0 auto;
    position: relative;
    right: -5px;
    color: var(--yellow-color);
}
.reviews-summary__rating .star-rating:before,
.reviews-summary__rating .star-rating span:before {
    color: var(--yellow-color);
}
.reviews-summary__count {
    font-size: 14px;
}
.reviews-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
}
.reviews-bar:last-child {
    margin-bottom: 0;
}
.reviews-bar__title {
    margin: 0 20px 0 0;
    min-width: 20px;
    text-align: left;
}
.reviews-bar__title i {
    font-size: 0.8em;
    color: var(--yellow-color);
    margin-right: 5px;
}
.reviews-bar__graph {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #eeeeee;
    border-radius: 9999px;
    overflow: hidden;
    height: 8px;
}
.reviews-bar__graph .bar {
    background-color: var(--yellow-color);
    height: 100%;
    border-radius: inherit;
}
.reviews-bar__percentage {
    margin: 0 0 0 20px;
    font-weight: 300;
    min-width: 40px;
    text-align: right;
}
@media (max-width: 1500px) {
    .reviews-summary__top {
        margin: 0 40px 0 0;
    }
}
@media (max-width: 1199px) {
    .as-comments-wrap .as-post-comment {
        display: block;
        padding: 30px 20px 20px 20px;
    }
    .as-comments-wrap .star-rating {
        position: relative;
        top: 0;
        right: 0;
    }
    .as-comments-wrap .comment-top {
        display: block;
    }
    .as-comments-wrap .comment-avater {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .as-comments-wrap .children {
        margin-left: 40px;
    }
    .reviews-summary {
        padding: 33px 20px 33px 20px;
    }
    .reviews-summary__top {
        margin: 0 25px 0 0;
    }
}
@media (max-width: 767px) {
    .as-comments-wrap .children {
        margin-left: 20px;
    }
    .as-comments-wrap .name {
        font-size: 18px;
    }
    .reviews-summary {
        display: block;
        text-align: center;
    }
    .reviews-summary__top {
        margin: 0 0 20px 0;
    }
    .reviews-summary__average {
        margin: 0 0 0 0;
    }
    .reviews-bar__title {
        margin: 0 10px 0 0;
    }
    .reviews-bar__percentage {
        margin: 0 0 0 10px;
    }
}
.hero-info {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 42px 0;
}
.hero-info i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: var(--theme-color2);
    color: var(--white-color);
    border: 1px solid #c4c4c4;
    text-align: center;
    margin-right: 10px;
    border-radius: 50%;
}
.hero-info:nth-child(2) i {
    background-color: var(--theme-color);
}
.hero-info:nth-child(3) i {
    background-color: rgba(196, 196, 196, 0.4);
}
.hero-form {
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
}
.hero-form .form-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--white-color);
    padding: 2px;
    border-radius: 9999px;
    margin: 0 0 40px 0;
}
.hero-form input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 60px;
    border-radius: 0;
    border: none;
    padding: 0 0 0 35px;
    background-color: transparent;
    font-size: 16px;
}
.hero-form .search-btn {
    background-color: var(--theme-color);
    color: var(--white-color);
    height: 60px;
    width: 80px;
    border: none;
    border-radius: 0 99px 99px 0;
    text-align: center;
    padding: 0;
}
.hero-form .search-btn:hover {
    background-color: var(--title-color);
}
.hero-sub-title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: -0.24em 0 20px 0;
    color: var(--theme-color2);
}
.hero-title {
    font-size: 74px;
    line-height: 1.135;
    margin-bottom: 18px;
}
@media (max-width: 1500px) {
    .hero-title {
        font-size: 64px;
    }
}
@media (max-width: 1299px) {
    .hero-title {
        font-size: 56px;
    }
}
@media (max-width: 991px) {
    .hero-title {
        font-size: 52px;
    }
}
@media (max-width: 767px) {
    .hero-title {
        font-size: 46px;
    }
}
@media (max-width: 575px) {
    .hero-title {
        font-size: 40px;
        line-height: 1.18;
    }
}
@media (max-width: 380px) {
    .hero-title {
        font-size: 36px;
    }
}
@media (max-width: 340px) {
    .hero-title {
        font-size: 30px;
    }
}
.hero-title-style2 {
    margin: 0 0 0 0;
}
.hero-text {
    font-size: 14px;
    font-weight: 700;
    margin: -0.6em 0 35px 0;
}
.inrol-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.inrol-info__avaters {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 15px;
}
.inrol-info__avaters .avater {
    width: 40px;
    height: 40px;
    overflow: hidden;
    margin: 0 0 0 -20px;
    padding: 1px;
    background-color: var(--white-color);
    border-radius: 50%;
}
.inrol-info__avaters .avater:first-child {
    margin-left: 0;
}
.inrol-info__total {
    font-size: 16px;
    color: var(--white-color);
    margin: 0;
}
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 28px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: var(--white-color);
    line-height: 1.5;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.scroll-bottom {
    color: var(--white-color);
    border: 2px solid;
    height: 36px;
    width: 24px;
    border-radius: 99px;
    position: relative;
    display: block;
    margin: 15px auto 20px auto;
}
.scroll-bottom:before {
    content: "";
    height: 10px;
    width: 2.8px;
    background-color: var(--white-color);
    position: absolute;
    top: 5px;
    left: 9px;
    -webkit-animation: lineDown 1.5s infinite;
    animation: lineDown 1.5s infinite;
}
.scroll-bottom:hover {
    color: var(--theme-color);
}
.scroll-bottom:hover::before {
    background-color: var(--theme-color);
}
@-webkit-keyframes lineDown {
    0% {
        -webkit-transform: 0;
        transform: 0;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
        opacity: 0;
    }
}
@keyframes lineDown {
    0% {
        -webkit-transform: 0;
        transform: 0;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
        opacity: 0;
    }
}
.hero-content1 {
    padding-top: 45px;
}
.hero-content1 .hero-title {
    color: var(--white-color);
    padding: 0 40px 0 0;
}
.hero-content1 .as-btn {
    margin-right: 50px;
}
.hero-content1 .inrol-info {
    margin: 45px 0 17px 0;
}
.hero-content1 .hero-bottom-title {
    color: var(--white-color);
    font-weight: 600;
    margin: 0;
}
.wish-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 14px 50px 14px 11px;
    border-radius: 9999px;
    text-align: left;
    position: absolute;
    left: -100px;
    bottom: 45px;
}
.wish-box__icon {
    width: 62px;
    height: 62px;
    line-height: 62px;
    font-size: 28px;
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    margin: 0 20px 0 0;
    border-radius: 50%;
}
.wish-box__title {
    font-size: 22px;
    font-weight: 600;
    color: #4f4f4f;
    margin: 0 0 0 0;
}
.wish-box__text {
    font-size: 12px;
    margin: 0 0 0 0;
}
.hero-img1 {
    margin: 0 -27px 0 0;
    text-align: right;
    position: relative;
}
.hero-img1 img {
    border-radius: 200px 0 0 0;
}
.hero-bg-slider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.hero-bg-slider .background-image,
.hero-bg-slider .slick-list,
.hero-bg-slider .slick-track {
    height: 100%;
}
@media (min-width: 1500px) and (max-width: 1921px) {
    .hero-bg-slider .background-image {
        -webkit-clip-path: path(
            "M -2 -1 H 1918 V 734.537 C 1918 734.537 1681.37 797.819 1526.98 824.725 C 1448.24 838.448 1403.91 845.589 1324.45 854.287 C 1275.03 859.697 1247.24 862.208 1197.62 865.31 C 1104.21 871.148 958 869.318 958 869.318 C 864.412 868.385 714.867 860.299 714.867 860.299 C 620.076 853.783 463.713 834.746 463.713 834.746 C 279.49 808.847 -2 734.537 -2 734.537 V -1 Z"
        );
        clip-path: path(
            "M -2 -1 H 1918 V 734.537 C 1918 734.537 1681.37 797.819 1526.98 824.725 C 1448.24 838.448 1403.91 845.589 1324.45 854.287 C 1275.03 859.697 1247.24 862.208 1197.62 865.31 C 1104.21 871.148 958 869.318 958 869.318 C 864.412 868.385 714.867 860.299 714.867 860.299 C 620.076 853.783 463.713 834.746 463.713 834.746 C 279.49 808.847 -2 734.537 -2 734.537 V -1 Z"
        );
    }
}
.as-hero-wrapper {
    position: relative;
}
.hero-wrap1 {
    padding: 210px 0 230px 0;
    position: relative;
}
.hero-wrap1 .hero-title {
    margin-bottom: 10px;
}
.hero-wrap1 .hero-title-style2 {
    margin-bottom: -0.2em;
}
.hero-wrap2 {
    position: relative;
    padding-top: 120px;
    padding-bottom: 170px;
}
.hero-wrap2 .hero-shape1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4f4f4f;
    opacity: 0.85;
}
.hero-wrap2 .hero-shape2 {
    position: absolute;
    top: 40px;
    right: 150px;
    width: 333px;
    height: 333px;
    border: 30px solid var(--theme-color2);
    border-radius: 50%;
    z-index: 1;
}
.hero-wrap2 .hero-shape3 {
    position: absolute;
    left: 43%;
    top: 26.5%;
    z-index: 1;
    opacity: 0.4;
}
.hero-wrap2 .hero-shape4 {
    position: absolute;
    top: 42.8%;
    left: 55.7%;
    z-index: 1;
}
.hero-wrap2 .hero-shape4 .triangle {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 35px solid var(--theme-color2);
}
.hero-wrap2 .hero-shape4 .triangle:nth-child(2) {
    border-top-color: var(--theme-color);
}
.hero-wrap2 .hero-shape4 .triangle:nth-child(3) {
    border-top-color: var(--white-color);
}
.hero-wrap2 .hero-shape5 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.hero-wrap3 {
    padding-top: 213px;
    padding-bottom: 210px;
    position: relative;
}
.hero-wrap3 .hero-shape1 {
    position: absolute;
    right: 10px;
    bottom: 0;
    z-index: 1;
}
.hero-wrap3 .hero-shape2 {
    position: absolute;
    top: 15%;
    left: 9%;
}
.hero-wrap3 .hero-shape3 {
    position: absolute;
    left: 0;
    bottom: 0;
}
.hero-wrap3 .hero-shape4 {
    position: absolute;
    left: 17%;
    bottom: 8%;
}
.hero-wrap3 .hero-shape5 {
    position: absolute;
    right: 10.5%;
    bottom: 4%;
}
.hero-wrap4 {
    padding: 130px 110px 80px 110px;
    margin: 95px 0 0 0;
    border-radius: 20px;
    position: relative;
}
.hero-wrap4 .brows-link {
    color: var(--white-color);
    margin: 0 0 22px 0;
    display: inline-block;
}
.hero-wrap4 .brows-link i {
    font-size: 20px;
    color: inherit;
    margin-right: 15px;
}
.hero-wrap4 .hero-content {
    background: -webkit-linear-gradient(100deg, rgba(132, 203, 116, 0.9) 11.47%, rgba(253, 26, 90, 0.9) 97.26%);
    background: linear-gradient(350deg, rgba(132, 203, 116, 0.9) 11.47%, rgba(253, 26, 90, 0.9) 97.26%);
    width: 584px;
    height: 584px;
    text-align: center;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 9999px;
    -webkit-animation: morph 8s ease-in-out infinite;
    animation: morph 8s ease-in-out infinite;
}
.hero-wrap4 .hero-subtitle {
    color: var(--white-color);
    display: block;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
.hero-wrap4 .hero-title {
    color: var(--white-color);
    text-transform: uppercase;
    margin: 0 0 0 0;
    font-size: 64px;
}
.hero-wrap4 .hero-title-style2 {
    color: var(--white-color);
    max-width: 400px;
    margin: 0 auto -0.3em auto;
}
.hero-wrap4 .hero-shape1 {
    position: absolute;
    top: 40%;
    left: 0;
}
.hero-wrap4 .hero-shape2 {
    position: absolute;
    top: 20%;
    left: 5%;
}
@media (max-width: 1700px) {
    .hero-wrap3 .hero-shape1 {
        max-width: 300px;
    }
    .hero-wrap3 .hero-shape5 {
        max-width: 200px;
    }
    .hero-wrap2 {
        padding-bottom: 60px;
    }
    .hero-wrap4 .hero-shape1 {
        max-width: 100px;
        top: 16%;
    }
    .hero-wrap4 .hero-shape2 {
        max-width: 100px;
        top: 6%;
    }
}
@media (max-width: 1400px) {
    .hero-wrap4 {
        margin: 0 0 0 0;
    }
}
@media (max-width: 1399px) {
    .hero-wrap2 .hero-shape2 {
        width: 200px;
        height: 200px;
        border-width: 20px;
        top: 50px;
        right: 50px;
    }
    .hero-wrap2 .hero-shape3 {
        left: 52%;
    }
    .hero-content1 .hero-title {
        padding: 0 80px 0 0;
    }
    .hero-img1 {
        margin: 0;
    }
    .wish-box {
        left: 0;
    }
    .hero-wrap3 .hero-shape1 {
        max-width: 200px;
    }
    .hero-wrap3 .hero-shape2 {
        max-width: 70px;
    }
    .hero-wrap3 .hero-shape3 {
        max-width: 190px;
    }
    .hero-wrap3 .hero-shape4 {
        max-width: 40px;
    }
    .hero-wrap3 .hero-shape5 {
        max-width: 100px;
    }
    .hero-wrap3 {
        padding-top: 150px;
        padding-bottom: 150px;
    }
}
@media (max-width: 1299px) {
    .hero-wrap4 .hero-shape1 {
        display: none;
    }
    .hero-wrap4 .hero-shape2 {
        display: none;
    }
}
@media (max-width: 1199px) {
    .hero-content1 .as-btn {
        margin-right: 30px;
    }
    .hero-content1 .hero-title {
        padding: 0;
    }
    .hero-wrap2 {
        padding-top: 80px;
        padding-bottom: 100px;
    }
    .hero-wrap3 .hero-shape1 {
        max-width: 150px;
    }
    .hero-wrap3 .hero-shape2 {
        max-width: 50px;
    }
    .hero-wrap3 .hero-shape3 {
        max-width: 120px;
    }
    .hero-wrap3 .hero-shape4 {
        max-width: 30px;
    }
    .hero-wrap3 .hero-shape5 {
        max-width: 75px;
    }
    .hero-wrap4 {
        margin-top: 0;
        border-radius: 0;
        padding: 100px 80px;
    }
    .hero-wrap4 .hero-content {
        width: 500px;
        height: 500px;
    }
}
@media (max-width: 991px) {
    .hero-wrap1 {
        padding: 150px 0 150px 0;
    }
    .hero-wrap2 {
        padding-top: var(--section-space-mobile, 100px);
        padding-bottom: var(--section-space-mobile, 100px);
    }
    .hero-img1 {
        text-align: left;
    }
    .hero-img1 img {
        border-radius: 0;
        width: 100%;
    }
    .hero-wrap3 .hero-shape1 {
        max-width: 100px;
    }
    .hero-wrap4 {
        padding: 80px 40px;
    }
    .hero-wrap4 .hero-content {
        width: 350px;
        height: 350px;
    }
    .hero-wrap4 .hero-subtitle {
        font-size: 20px;
    }
    .hero-wrap4 .hero-title {
        font-size: 38px;
    }
    .hero-wrap4 .hero-title-style2 {
        max-width: 250px;
        margin: 7px auto -0.3em auto;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    h1.hero-title.text-white {
        font-size: 32px;
    }
    .hero-info {
        margin: 0 0 15px 0;
    }
    .hero-form input {
        background-color: var(--white-color);
        border-radius: 9999px;
        padding: 0 25px 0 25px;
        font-size: 14px;
    }
    .hero-wrap1 {
        padding: 120px 0 120px 0;
    }
    .hero-wrap1 .hero-form {
        margin-top: 20px;
    }
    .hero-wrap1 .scroll-down {
        bottom: 10px;
    }
    .hero-wrap2 .hero-shape3,
    .hero-wrap2 .hero-shape5,
    .hero-wrap2 .hero-shape4 {
        display: none;
    }
    .hero-content1 .hero-title {
        padding: 0;
        font-size: 36px;
    }
    .hero-content1 .as-btn {
        display: block;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        margin-bottom: 30px;
    }
    .wish-box {
        padding: 7px 20px 7px 7px;
    }
    .wish-box__title {
        font-size: 18px;
    }
    .wish-box__icon {
        margin-right: 10px;
    }
    .hero-wrap3 {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .hero-wrap3 .hero-shape5,
    .hero-wrap3 .hero-shape3,
    .hero-wrap3 .hero-shape1 {
        display: none;
    }
    .hero-wrap3 .hero-shape2 {
        top: 4%;
    }
    .hero-wrap3 .hero-shape4 {
        max-width: 30px;
        bottom: 4%;
        left: 10%;
    }
    .hero-wrap3 .hero-title br {
        display: none;
    }
    .hero-wrap3 .hero-form .as-btn {
        font-size: 0;
        min-width: 60px;
        width: 60px;
        padding: 0;
    }
    .hero-wrap3 .hero-form .as-btn i {
        font-size: 14px;
        margin-left: 0 !important;
        font-weight: 500;
    }
    .hero-wrap3 .hero-form .as-btn i:before {
        content: "\f002";
    }
    .hero-text {
        margin: -0.6em 0 25px 0;
    }
    .hero-wrap4 {
        padding: 80px 20px;
    }
    .hero-wrap4 .hero-content {
        width: 280px;
        height: 280px;
    }
    .hero-wrap4 .hero-subtitle {
        font-size: 18px;
    }
    .hero-wrap4 .hero-title {
        font-size: 32px;
    }
    .hero-wrap4 .hero-title-style2 {
        max-width: 210px;
        font-size: 16px;
    }
    .hero-wrap4 .brows-link {
        margin: 0 0 15px 0;
        font-size: 12px;
    }
    .hero-wrap4 .brows-link i {
        font-size: 14px;
        margin-right: 10px;
    }
}
@media (max-width: 430px) {
    .hero-wrap4 {
        background: -webkit-linear-gradient(327.16deg, #f3bfcf 0%, #d5ead4 82.18%) !important;
        background: linear-gradient(122.84deg, #f3bfcf 0%, #d5ead4 82.18%) !important;
    }
    .hero-wrap4 .hero-content {
        margin-right: auto;
    }
}
.hero-wrap5 {
    background-image: -webkit-linear-gradient(340deg, var(--smoke-color) 0%, var(--smoke-color) 57%, var(--theme-color2) 57%, var(--theme-color2) 79%, var(--theme-color) 79%, var(--theme-color) 100%);
    background-image: linear-gradient(110deg, var(--smoke-color) 0%, var(--smoke-color) 57%, var(--theme-color2) 57%, var(--theme-color2) 79%, var(--theme-color) 79%, var(--theme-color) 100%);
}
.hero-wrap5 .hero-img {
    position: absolute;
    bottom: 0;
    right: 10%;
}
.hero-wrap5 .hero-shape1 {
    position: absolute;
    right: 6%;
    bottom: 25%;
    -webkit-animation: jumpping var(--duration, 5s) infinite linear;
    animation: jumpping var(--duration, 5s) infinite linear;
}
.hero-content5 {
    padding: 290px 0 140px 0;
}
.hero-content5 .brows-link {
    display: block;
    color: var(--theme-color2);
    margin-bottom: 25px;
}
.hero-content5 .brows-link i {
    color: var(--theme-color2);
}
.hero-content5 .hero-bottom-title {
    margin-bottom: 36px;
}
@media (max-width: 1500px) {
    .hero-wrap5 {
        background-image: -webkit-linear-gradient(340deg, var(--smoke-color) 0%, var(--smoke-color) 54%, var(--theme-color2) 54%, var(--theme-color2) 79%, var(--theme-color) 79%, var(--theme-color) 100%);
        background-image: linear-gradient(110deg, var(--smoke-color) 0%, var(--smoke-color) 54%, var(--theme-color2) 54%, var(--theme-color2) 79%, var(--theme-color) 79%, var(--theme-color) 100%);
    }
    .hero-wrap5 .hero-img {
        right: 4%;
    }
}
@media (max-width: 1299px) {
    .hero-wrap5 .hero-img {
        max-width: 520px;
    }
    .hero-content5 {
        padding: 260px 0 110px 0;
    }
}
@media (max-width: 1199px) {
    .hero-wrap5 {
        background-image: -webkit-linear-gradient(340deg, var(--smoke-color) 0%, var(--smoke-color) 60%, var(--theme-color2) 60%, var(--theme-color2) 79%, var(--theme-color) 79%, var(--theme-color) 100%);
        background-image: linear-gradient(110deg, var(--smoke-color) 0%, var(--smoke-color) 60%, var(--theme-color2) 60%, var(--theme-color2) 79%, var(--theme-color) 79%, var(--theme-color) 100%);
    }
    .hero-wrap5 .hero-img {
        max-width: 470px;
        right: 1%;
    }
}
@media (max-width: 991px) {
    .hero-wrap5 {
        background-image: -webkit-linear-gradient(286deg, var(--smoke-color) 0%, var(--smoke-color) 50%, var(--theme-color2) 50%, var(--theme-color2) 76%, var(--theme-color) 76%, var(--theme-color) 100%);
        background-image: linear-gradient(164deg, var(--smoke-color) 0%, var(--smoke-color) 50%, var(--theme-color2) 50%, var(--theme-color2) 76%, var(--theme-color) 76%, var(--theme-color) 100%);
    }
    .hero-wrap5 .hero-img {
        position: relative;
        right: unset;
    }
    .hero-content5 {
        padding: 240px 0 40px 0;
    }
    .hero-content5 .hero-bottom-title {
        margin-bottom: 28px;
    }
}
@media (max-width: 575px) {
    .hero-wrap5 {
        background-image: -webkit-linear-gradient(286deg, var(--smoke-color) 0%, var(--smoke-color) 58%, var(--theme-color2) 58%, var(--theme-color2) 76%, var(--theme-color) 76%, var(--theme-color) 100%);
        background-image: linear-gradient(164deg, var(--smoke-color) 0%, var(--smoke-color) 58%, var(--theme-color2) 58%, var(--theme-color2) 76%, var(--theme-color) 76%, var(--theme-color) 100%);
    }
    .hero-content5 {
        padding: 200px 0 40px 0;
    }
}
.ripple-shape {
    position: absolute;
    bottom: -28%;
    right: -20%;
    z-index: 1;
}
.ripple-1,
.ripple-2,
.ripple-3,
.ripple-4 {
    height: 990px;
    width: 990px;
    position: absolute;
    right: -10%;
    bottom: -50%;
    background-color: var(--theme-color2);
    border-radius: 50%;
    -webkit-transform: translate3d(-25%, 25%, 0);
    transform: translate3d(-25%, 25%, 0);
    -webkit-animation: heroripple 12s ease-out infinite;
    animation: heroripple 12s ease-out infinite;
}
.ripple-1 {
    -webkit-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation: none;
    animation: none;
    opacity: 0.3;
}
.ripple-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.ripple-3 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
.ripple-4 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}
.ripple-4 {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}
@-webkit-keyframes heroripple {
    0% {
        -webkit-transform: translate3d(-25%, 25%, 0);
        transform: translate3d(-25%, 25%, 0);
        opacity: 0.3;
    }
    100% {
        -webkit-transform: translate3d(-25%, 25%, 0);
        transform: translate3d(-25%, 25%, 0);
        opacity: 0;
        width: 1500px;
        height: 1500px;
    }
}
@keyframes heroripple {
    0% {
        -webkit-transform: translate3d(-25%, 25%, 0);
        transform: translate3d(-25%, 25%, 0);
        opacity: 0.3;
    }
    100% {
        -webkit-transform: translate3d(-25%, 25%, 0);
        transform: translate3d(-25%, 25%, 0);
        opacity: 0;
        width: 1500px;
        height: 1500px;
    }
}
@media (max-width: 1500px) {
    .ripple-1,
    .ripple-2,
    .ripple-3,
    .ripple-4,
    .ripple-5,
    .ripple-6 {
        height: 790px;
        width: 790px;
    }
    @-webkit-keyframes heroripple {
        0% {
            -webkit-transform: translate3d(-25%, 25%, 0);
            transform: translate3d(-25%, 25%, 0);
            opacity: 0.3;
        }
        100% {
            -webkit-transform: translate3d(-25%, 25%, 0);
            transform: translate3d(-25%, 25%, 0);
            width: 1200px;
            height: 1200px;
            opacity: 0;
        }
    }
    @keyframes heroripple {
        0% {
            -webkit-transform: translate3d(-25%, 25%, 0);
            transform: translate3d(-25%, 25%, 0);
            opacity: 0.3;
        }
        100% {
            -webkit-transform: translate3d(-25%, 25%, 0);
            transform: translate3d(-25%, 25%, 0);
            width: 1200px;
            height: 1200px;
            opacity: 0;
        }
    }
}
@media (max-width: 1500px) {
    .ripple-1,
    .ripple-2,
    .ripple-3,
    .ripple-4,
    .ripple-5,
    .ripple-6 {
        height: 590px;
        width: 590px;
    }
    @-webkit-keyframes heroripple {
        0% {
            -webkit-transform: translate3d(-25%, 25%, 0);
            transform: translate3d(-25%, 25%, 0);
            opacity: 0.3;
        }
        100% {
            -webkit-transform: translate3d(-25%, 25%, 0);
            transform: translate3d(-25%, 25%, 0);
            width: 900px;
            height: 900px;
            opacity: 0;
        }
    }
    @keyframes heroripple {
        0% {
            -webkit-transform: translate3d(-25%, 25%, 0);
            transform: translate3d(-25%, 25%, 0);
            opacity: 0.3;
        }
        100% {
            -webkit-transform: translate3d(-25%, 25%, 0);
            transform: translate3d(-25%, 25%, 0);
            width: 900px;
            height: 900px;
            opacity: 0;
        }
    }
}
@media (max-width: 991px) {
    .ripple-shape {
        position: absolute;
        bottom: -200px;
        right: -200px;
    }
}
.hero-wrap6 {
    background: -webkit-repeating-linear-gradient(325deg, var(--smoke-color) 0%, var(--smoke-color) 0%, var(--smoke-color) 200px, rgba(0, 10, 31, 0.08) 201px, rgba(0, 10, 31, 0.08) 202px, #f0f4f5 202px);
    background: repeating-linear-gradient(125deg, var(--smoke-color) 0%, var(--smoke-color) 0%, var(--smoke-color) 200px, rgba(0, 10, 31, 0.08) 201px, rgba(0, 10, 31, 0.08) 202px, #f0f4f5 202px);
    overflow: hidden;
}
.hero-wrap6 .hero-img {
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 3;
}
.hero-wrap6 .hero-shape1 {
    position: absolute;
    right: 2%;
    bottom: 6%;
    -webkit-animation: jumpping var(--duration, 5s) infinite linear;
    animation: jumpping var(--duration, 5s) infinite linear;
    z-index: 2;
    opacity: 0.5;
}
.hero-wrap6 .hero-shape2 {
    position: absolute;
    top: 7%;
    left: 0;
    -webkit-animation: jumpping var(--duration, 7s) infinite linear;
    animation: jumpping var(--duration, 7s) infinite linear;
}
.hero-content6 {
    max-width: 760px;
    padding: 215px 0;
    position: relative;
    z-index: 4;
}
.hero-content6 .brows-link {
    display: block;
    color: var(--theme-color);
    margin-bottom: 25px;
}
.hero-content6 .brows-link i {
    color: var(--theme-color);
}
.hero-content6 .hero-title .text-theme {
    text-decoration: underline;
    text-decoration-thickness: from-font;
    font-weight: 500;
}
.hero-content6 .hero-text {
    font-weight: 600;
    line-height: 26px;
}
@media (max-width: 1700px) {
    .hero-wrap6 .hero-img {
        right: 0;
    }
    .hero-wrap6 .hero-shape2 {
        top: -3%;
    }
}
@media (max-width: 1500px) {
    .hero-wrap6 .hero-img {
        max-width: 700px;
    }
    .hero-content6 {
        max-width: 680px;
        padding: 160px 0;
    }
}
@media (max-width: 1299px) {
    .hero-wrap6 .hero-img {
        max-width: 500px;
    }
    .hero-wrap6 .hero-shape2 {
        max-width: 135px;
    }
    .hero-content6 {
        max-width: 590px;
        padding: 140px 0;
    }
    .hero-content6 .hero-text {
        max-width: 480px;
        margin-bottom: 30px;
    }
}
@media (max-width: 991px) {
    .hero-wrap6 .hero-img {
        position: relative;
        margin-left: auto;
        margin-top: -100px;
    }
    .hero-content6 {
        padding: 120px 0 0 0;
    }
}
@media (max-width: 767px) {
    .hero-wrap6 .hero-img {
        margin-right: -135px;
    }
}
@media (max-width: 575px) {
    .hero-content6 .hero-title {
        font-size: 38px;
    }
}
@media (max-width: 380px) {
    .hero-content6 .hero-title {
        font-size: 34px;
    }
}
.error-img {
    margin-bottom: 75px;
}
.error-title {
    margin-bottom: 7px;
}
.error-text {
    margin-bottom: 25px;
}
.search-inline {
    display: block;
    position: relative;
    max-width: 400px;
    margin: 0 auto 30px auto;
}
.search-inline input {
    padding-right: 70px;
    height: 60px;
    border: none;
    background-color: var(--smoke-color);
    border-radius: 9999px;
}
.search-inline input:focus {
    background-color: var(--smoke-color);
}
.search-inline button {
    border: none;
    background-color: transparent;
    padding: 4px 0 4px 20px;
    line-height: 1;
    color: var(--theme-color);
    border-left: 1px solid var(--theme-color);
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 991px) {
    .error-img {
        margin-bottom: 40px;
    }
}
.cta-wrap1 {
    background-color: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}
.cta-wrap1 .cta-content {
    padding: 25px 60px 25px 30px;
}
.cta-wrap2 {
    background-color: var(--theme-color);
    position: relative;
    border-radius: 0 400px 0 0;
}
.cta-wrap2 .cta-shape1 {
    position: absolute;
    right: 45px;
    bottom: 45px;
}
.cta-wrap2 .cta-content {
    padding: 230px 0;
}
.cta-text {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 40px;
}
.cta-small-text {
    font-size: 14px;
    margin: -0.33em 0 7px 0;
}
.ctaslidev3-navs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    text-align: center;
    margin: 0;
}
@media (max-width: 1500px) {
    .cta-wrap1 .cta-content {
        padding: 25px 30px 25px 0;
    }
}
@media (max-width: 1199px) {
    .cta-text {
        font-size: 20px;
        line-height: 34px;
        margin-bottom: 30px;
    }
    .cta-wrap2 {
        border-radius: 0 200px 0 0;
        padding: 20px 20px 0 20px;
    }
    .cta-wrap2 .cta-text {
        font-size: 16px;
        line-height: 28px;
    }
    .cta-wrap2 .cta-shape1 {
        right: 10px;
        bottom: 10px;
        max-width: 150px;
    }
    .cta-wrap2 .cta-content {
        padding: 40px 0 60px 0;
    }
}
@media (max-width: 991px) {
    .cta-wrap1 .cta-content {
        text-align: center;
        padding: 30px 30px 30px 30px;
    }
    .cta-text {
        font-size: 18px;
        line-height: 30px;
    }
    .ctaslidev3-navs {
        bottom: 20px;
    }
    .ctaslidev3-navs .slick-arrow {
        display: none;
    }
    .cta-wrap2 {
        border-radius: 0;
        text-align: center;
        padding: 60px 10px 60px 10px;
    }
    .cta-wrap2 .cta-content {
        padding: 30px 0 0 0;
    }
}
@media (max-width: 767px) {
    .cta-wrap1 .cta-content {
        padding: 30px 15px 30px 15px;
    }
    .cta-wrap2 .cta-shape1 {
        right: 10px;
        bottom: 10px;
        max-width: 80px;
    }
    .cta-text {
        font-size: 16px;
        line-height: 28px;
    }
}
.cta-card {
    padding: 60px;
    background-color: var(--theme-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.cta-card__img {
    position: absolute;
    bottom: 0;
    right: 60px;
}
.cta-card__subtitle {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--title-color);
    display: block;
    margin-bottom: 20px;
    margin-top: -0.25em;
}
.cta-card__subtitle i {
    margin-right: 6px;
}
.cta-card__title {
    color: var(--white-color);
    font-size: 30px;
    line-height: 40px;
    max-width: 350px;
    margin-bottom: 30px;
}
.cta-card .shadow {
    position: absolute;
    top: -50px;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--white-color);
    opacity: 0.5;
    -webkit-filter: blur(125px);
    filter: blur(125px);
    z-index: -1;
}
.cta-card .as-btn {
    background-color: var(--white-color);
    color: var(--theme-color);
}
.cta-card .as-btn:hover {
    background-color: var(--theme-color2);
    color: var(--white-color);
}
.cta-card.theme2 {
    --theme-color: #0AA0DB;
    --theme-color2: #008F4D;
}
@media (max-width: 1399px) {
    .cta-card__img {
        right: -80px;
    }
}
@media (max-width: 1199px) {
    .cta-card__img {
        right: 60px;
    }
}
@media (max-width: 767px) {
    .cta-card {
        padding: 50px 40px;
    }
    .cta-card__img {
        right: -60px;
    }
}
@media (max-width: 575px) {
    .cta-card {
        padding: 40px 20px;
    }
    .cta-card__img {
        right: 0;
        max-width: 140px;
    }
    .cta-card__title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 22px;
    }
}
@media (max-width: 380px) {
    .cta-card {
        text-align: center;
    }
    .cta-card__img {
        display: none;
    }
    .cta-card__title {
        margin-left: auto;
        margin-right: auto;
    }
}
.category-style1 {
    padding: 60px 60px 46px 60px;
    text-align: center;
}
.category-style1 .category-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 50px 0 0 0;
    text-align: start;
}
.category-style1 .category-title {
    margin: 0;
    max-width: 400px;
}
.category-style1 .category-icon {
    position: relative;
    padding-right: 30px;
    margin-right: 28px;
}
.category-style1 .category-icon::before {
    content: "";
    position: absolute;
    right: 0;
    top: 48%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 75px;
    background-color: #d1d1d1;
}
.category-style2 {
    position: relative;
    z-index: 1;
    border-left: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
}
.category-style2:nth-last-child(2),
.category-style2:nth-last-child(1) {
    border-bottom: none;
}
@media (max-width: 1399px) {
    .category-style2:nth-child(1),
    .category-style2:nth-child(2) {
        border-top: 1px solid #d1d1d1;
    }
    .category-style2:nth-child(1),
    .category-style2:nth-child(3) {
        border-left: none;
    }
}
@media (max-width: 767px) {
    .category-style2 {
        border-left: none;
        border-right: none;
        border-bottom: none;
        border-top: 1px solid #d1d1d1;
    }
}
.category-style2 .category-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 60px 40px 0 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.category-style2 .icon-inner,
.category-style2 .icon-border,
.category-style2 .icon-shape {
    width: var(--icon-size, 85px);
    height: var(--icon-size, 85px);
    line-height: var(--icon-size, 85px);
    border-radius: 50%;
    text-align: center;
}
.category-style2 .icon-border {
    border: 1px solid var(--theme-color);
    position: absolute;
    left: 0;
    top: 0;
}
.category-style2 .icon-shape {
    background-color: #e4e3e6;
    position: absolute;
    top: 4px;
    left: 6px;
    z-index: 1;
}
.category-style2 .icon-inner {
    position: relative;
    z-index: 2;
    background-color: var(--white-color);
    box-shadow: -1px 8px 8px -4px rgba(0, 0, 0, 0.11);
}
.category-style2 .category-icon {
    position: relative;
    padding: 18px 0 0 30px;
    margin-right: 20px;
}
.category-style2 .category-title {
    margin: -0.1em 0 0 0;
}
.category-style2 .category-img {
    text-align: right;
    padding: 0 60px 20px 0;
}
.category-style2 .category-tag {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 12px;
    color: var(--white-color);
    background-color: var(--theme-color);
    text-transform: capitalize;
    line-height: 1;
    padding: 4px 8px;
    margin: -0.02em 0 20px 0;
    border-radius: 5px;
}
.category-style2:nth-child(2) {
    --theme-color: #0AA0DB;
}
.category-style2:nth-child(3) {
    --theme-color: #d6d5ff;
}
.category-style2:nth-child(4) {
    --theme-color: #bdbdbd;
}
.category-wrap1 {
    border: 1px solid #d1d1d1;
    border-radius: 20px;
}
@media (max-width: 991px) {
    .category-style2 {
        --icon-size: 65px;
    }
    .category-style2 .category-top {
        padding: 40px 20px 0 20px;
    }
    .category-style2 .category-icon {
        padding: 10px 0 0 20px;
    }
    .category-style2 .category-img {
        padding: 0 20px 30px 0;
    }
}
@media (max-width: 767px) {
    .category-style1 {
        padding: 40px 15px 30px 15px;
        text-align: center;
    }
    .category-style1 .category-icon {
        padding-right: 0;
        margin-right: 15px;
    }
    .category-style1 .category-icon::before {
        display: none;
    }
    .category-style1 .category-title {
        font-size: 20px;
    }
    .category-style1 .category-title br {
        display: none;
    }
    .category-style1 .category-content {
        margin: 20px 0 0 0;
    }
}
.category-box {
    border-right: 1px solid var(--border-color);
    padding: 30px 35px 45px 35px;
    border-radius: 20px 0 0 20px;
    background-color: var(--white-color);
}
.category-box-wrap {
    --border-color: #d1d1d1;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background-color: var(--smoke-color);
}
.category-box .category-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 0 0;
    text-align: start;
}
.category-box .category-icon {
    position: relative;
    padding-right: 22px;
    margin-right: 25px;
}
.category-box .category-icon::before {
    content: "";
    position: absolute;
    right: 0;
    top: 48%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 75px;
    background-color: #d1d1d1;
}
.category-box .category-title {
    margin-bottom: 0;
}
.category-style3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
}
.category-style3-wrap {
    padding: 60px;
}
.category-style3 .category-img {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 140px;
    height: 140px;
}
.category-style3 .category-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}
.category-style3 .category-title {
    font-size: 24px;
}
.category-style3 .category-title a {
    color: inherit;
}
.category-style3 .category-title a:hover {
    color: var(--theme-color);
}
.category-style3 .category-count {
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
.category-style3 .category-icon {
    position: relative;
    z-index: 2;
    padding: 0 0 0 13px;
}
.category-style3 .category-icon img {
    min-width: 48px;
}
.icon-shape {
    width: var(--shape-size, 41px);
    height: var(--shape-size, 41px);
    background-color: var(--border-color);
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
    position: absolute;
    left: 10px;
    top: 15px;
    z-index: -1;
}
@media (max-width: 1299px) {
    .category-box {
        padding: 20px 25px 35px 25px;
    }
    .category-box .category-title {
        font-size: 20px;
    }
    .category-style3-wrap {
        padding: 45px;
    }
}
@media (max-width: 991px) {
    .category-box {
        border-radius: 20px 20px 0 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}
@media (max-width: 575px) {
    .category-style3-wrap {
        padding: 40px 20px;
    }
}
@media (max-width: 400px) {
    .category-style3 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
.category-style4 {
    padding: 48px 15px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}
.category-style4:before,
.category-style4:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--white-color);
    border-radius: 29px;
    opacity: 0.5;
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.category-style4:after {
    background-color: var(--white-color);
    opacity: 1;
}
.category-style4 .category-icon {
    font-size: 36px;
    color: var(--white-color);
    position: relative;
    width: 94px;
    height: 73px;
    line-height: 73px;
    margin: 0 auto 26px auto;
    z-index: 2;
}
.category-style4 .category-icon:before,
.category-style4 .category-icon:after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--theme-color);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: path(
        "M93.8459 54.1984C96.4782 16.5235 64.8801 -3.32282 37.6979 0.456416C20.8665 2.79442 3.86746 14.4097 0.348754 37.6402C-2.74836 58.1057 15.2614 70.7672 35.3521 68.4079C58.1399 65.7336 68.442 68.7548 79.2306 72.3526C90.4569 76.1051 93.2514 62.6857 93.8459 54.1984Z"
    );
    clip-path: path(
        "M93.8459 54.1984C96.4782 16.5235 64.8801 -3.32282 37.6979 0.456416C20.8665 2.79442 3.86746 14.4097 0.348754 37.6402C-2.74836 58.1057 15.2614 70.7672 35.3521 68.4079C58.1399 65.7336 68.442 68.7548 79.2306 72.3526C90.4569 76.1051 93.2514 62.6857 93.8459 54.1984Z"
    );
    z-index: -1;
    -webkit-transition: 0.4s ease-in;
    transition: 0.4s ease-in;
}
.category-style4 .category-icon:after {
    left: -8px;
    top: -8px;
    opacity: 0.3;
}
.category-style4 .category-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}
.category-style4 .category-title a {
    color: inherit;
}
.category-style4 .category-title a:hover {
    color: var(--theme-color);
}
.category-style4 .category-count {
    margin-bottom: -0.5em;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.category-style4:hover:before {
    background-color: var(--title-color);
}
.category-style4:hover:after {
    height: 0;
}
.category-style4:hover .category-title,
.category-style4:hover .category-count {
    color: var(--white-color);
}
.category-style4:hover .category-icon:before,
.category-style4:hover .category-icon:after {
    background-color: var(--theme-color2);
}
.feature-style1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 60px 0;
}
.feature-style1 .media-body {
    -webkit-box-flex: 1;
    -webkit-flex: auto 0 0;
    -ms-flex: auto 0 0px;
    flex: auto 0 0;
}
.feature-style1 .feature-title {
    line-height: 1;
    margin-bottom: 8px;
}
.feature-style1 .feature-text {
    font-size: 16px;
    letter-spacing: 0.2em;
    margin-bottom: 0;
    line-height: 1;
    color: var(--title-color);
}
.feature-style1 .icon-inner,
.feature-style1 .icon-border,
.feature-style1 .icon-shape {
    width: var(--icon-size, 85px);
    height: var(--icon-size, 85px);
    line-height: var(--icon-size, 85px);
    border-radius: 50%;
    text-align: center;
}
.feature-style1 .icon-border {
    border: 1px solid var(--theme-color);
    position: absolute;
    left: 0;
    top: 0;
}
.feature-style1 .icon-shape {
    background-color: var(--theme-color);
    position: absolute;
    top: 4px;
    left: 6px;
    z-index: 1;
}
.feature-style1 .icon-inner {
    position: relative;
    z-index: 2;
    background-color: var(--white-color);
    box-shadow: -1px 8px 8px -4px rgba(0, 0, 0, 0.11);
}
.feature-style1 .feature-icon {
    position: relative;
    padding: 18px 0 0 30px;
    margin-right: 20px;
}
.feature-style1:nth-child(1) .icon-shape {
    background-color: #828282;
}
.feature-style1:nth-child(2) .icon-shape {
    background-color: var(--theme-color2);
}
.feature-style2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}
.feature-style2 .feature-img {
    width: var(--img-size, 140px);
    height: var(--img-size, 140px);
    line-height: var(--img-size, 140px);
    text-align: center;
    background-color: var(--white-color);
    border: 1px solid #e9e9e9;
    margin: 0 20px 0 0;
    border-radius: 10px;
}
.feature-style2 .about-media__icon {
    margin: 0 20px 0 0;
}
.feature-style2 .about-media__icon .icon-shape {
    --shape-size: 32px;
    top: 10px;
    left: 5px;
}
.feature-style2 .feature-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-color);
    display: block;
    line-height: 1;
    margin: 0 0 14px 0;
}
.feature-style2 .feature-title {
    font-weight: 600;
    margin: 0;
    line-height: 1;
}
.feature-style2 .feature-title a {
    color: inherit;
}
.feature-style2 .feature-title a:hover {
    color: var(--theme-color);
}
.features-wrap1 {
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    background-color: var(--white-color);
}
@media (min-width: 767px) {
    .features-wrap1 .feature-style1:not(:last-child) {
        border-right: 1px solid #d1d1d1;
    }
}
@media (max-width: 767px) {
    .features-wrap1 .feature-style1:not(:first-child) {
        border-top: 1px solid #d1d1d1;
    }
}
.features-wrap2 {
    background-color: var(--black-color);
}
.features-wrap3 {
    background-color: var(--smoke-color);
    padding: 45px 45px 15px 45px;
    border-radius: 30px;
}
.features-wrap3 .slick-arrow {
    --icon-size: 24px;
    --icon-font-size: 14px;
    --pos-x: -55px;
    background-color: var(--theme-color2);
    color: var(--white-color);
    top: calc(50% - 15px);
    border: none;
}
.features-wrap3 .slick-arrow:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}
@media (max-width: 1399px) {
    .feature-style1 {
        display: block;
        text-align: center;
        padding: 40px 0;
    }
    .feature-style1 .feature-icon {
        margin-bottom: 30px;
        display: inline-block;
    }
    .feature-style1 .feature-title {
        margin-bottom: 8px;
        font-size: 24px;
    }
    .feature-style1 .feature-text {
        letter-spacing: 0;
    }
}
@media (max-width: 1199px) {
    .feature-style2 {
        display: block;
        text-align: center;
    }
    .feature-style2 .feature-img {
        margin: 0 auto 30px auto;
    }
    .feature-style2 .about-media__icon {
        display: inline-block;
        margin: 0 0 30px 0;
        padding: 0;
    }
}
@media (max-width: 767px) {
    .feature-style1 {
        padding: 20px 0;
    }
    .feature-style1:first-child {
        padding-top: 50px;
    }
    .feature-style1:last-child {
        padding-bottom: 50px;
    }
}
.about-media {
    margin-bottom: 30px;
}
.about-media__img img {
    width: 100%;
}
.about-media__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
}
.about-media__title {
    font-weight: 600;
    margin: 0 0 -0.3em 0;
    line-height: 1;
}
.about-media__number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 3px;
}
.about-media__icon {
    position: relative;
    z-index: 1;
    padding: 0 0 0 13px;
    margin: 0 20px 0 0;
    display: inline-block;
    min-height: 50px;
    min-width: 50px;
}
.about-media__icon .icon-shape {
    width: var(--shape-size, 41px);
    height: var(--shape-size, 41px);
    background-color: var(--border-color);
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
    position: absolute;
    left: 10px;
    top: 15px;
    z-index: -1;
}
.about-media__text {
    margin: 0;
    color: var(--black-color);
}
.about-media__img {
    background-color: #fbfbfb;
}
.about-media__body {
    padding: 35px 35px 30px 35px;
}
.about-media--style2 {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
}
.img-box1 {
    position: relative;
    margin: 0 -20px -20px 0;
}
.img-box2 {
    position: relative;
}
.img-box2 .img-1 {
    text-align: center;
    position: relative;
    z-index: 6;
    margin-bottom: -1px;
}
.img-box2 .shape-1 {
    background-color: #fcf9f0;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 615px;
}
.img-box2 .shape-3,
.img-box2 .shape-2 {
    background-color: var(--theme-color2);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 12.6%;
    right: 15px;
    border-radius: 50%;
}
.img-box2 .shape-3 {
    top: 11.7%;
    right: 11px;
    background-color: transparent;
    border: 2px solid var(--black-color);
}
.img-box2 .shape-5,
.img-box2 .shape-4 {
    background-color: var(--theme-color);
    width: 69px;
    height: 69px;
    border-radius: 11px;
    position: absolute;
    left: 20px;
    bottom: 35px;
}
.img-box2 .shape-5 {
    bottom: 45px;
    left: 10px;
    background-color: transparent;
    border: 2px solid var(--black-color);
}
.img-box3 {
    position: relative;
}
.img-box3 .img-1 img {
    border-radius: 20px;
}
.img-box3 .img-2 {
    text-align: right;
    padding: 0 68px 0 0;
    margin: -270px 0 0 0;
}
.img-box3 .img-2 img {
    border-radius: 20px;
}
.img-box3 .img-text {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 24px;
    position: absolute;
    right: 85px;
    top: 123px;
    -webkit-writing-mode: tb-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: tb-rl;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.list-style4 ul,
.list-style3 ul,
.list-style2 ul,
.list-style1 ul {
    margin: 0 0 20px 0;
    padding: 0;
    list-style-type: none;
}
.list-style4 li,
.list-style3 li,
.list-style2 li,
.list-style1 li {
    position: relative;
}
.list-style1 li {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}
.list-style2 ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.list-style2 li {
    font-weight: 700;
    font-size: 14px;
    color: #828282;
    margin-bottom: 13px;
    padding-left: 30px;
}
.list-style2 li:before {
    content: "\f105";
    font-family: var(--icon-font);
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 2px;
    background-color: var(--theme-color2);
    color: var(--white-color);
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    font-size: 12px;
}
.list-style2.style2 li:before {
    content: "\f00c";
}
@media (max-width: 575px) {
    .list-style2.style2 ul {
        grid-template-columns: auto;
    }
}
.list-style3 ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
}
.list-style3 li {
    padding-left: 25px;
    margin-bottom: 3px;
}
.list-style3 li:before {
    content: "\f00c";
    font-family: var(--icon-font);
    font-weight: 300;
    color: var(--theme-color);
    position: absolute;
    left: 0;
}
.list-style4 ul {
    margin-bottom: 14px;
}
.list-style4 .list-title {
    color: var(--title-color);
    font-weight: 600;
    margin-right: 7px;
}
.list-style4 li {
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    padding-left: 25px;
}
.list-style4 i {
    color: var(--theme-color);
    position: absolute;
    left: 0;
    top: 16.5px;
}
.about-wrap1 {
    margin-top: -105px;
    position: relative;
    z-index: 1;
}
.about-shap1 {
    position: absolute;
    left: 0;
    top: 0;
    right: 195px;
    bottom: 0;
    background-color: var(--smoke-color);
    z-index: -1;
}
@media (max-width: 1500px) {
    .img-box1 {
        margin: 0 0 -20px 0;
    }
    .about-wrap1 {
        margin-top: 0;
    }
    .about-shap1 {
        right: 0;
    }
    .img-box3 .img-1 {
        padding-right: 70px;
    }
    .img-box3 .img-2 {
        padding: 0;
    }
    .img-box3 .img-text {
        font-size: 20px;
        right: 22px;
        top: 70px;
    }
}
@media (max-width: 1399px) {
    .about-media__body {
        padding: 25px 25px 35px 25px;
    }
    .about-media__top {
        display: block;
        margin-bottom: 15px;
    }
    .about-media__icon {
        margin: 0 0 35px 0;
    }
    .img-box3 .img-text {
        font-size: 20px;
        right: 22px;
        top: 0;
    }
}
@media (max-width: 1199px) {
    .img-box2 .shape-1 {
        max-height: 400px;
    }
    .img-box3 .img-2 {
        padding: 0;
        max-width: 250px;
        margin: -150px 0 0 auto;
    }
    .list-style3 ul {
        display: block;
    }
}
@media (max-width: 991px) {
    .img-box2 {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767px) {
    .img-box2 .shape-1 {
        max-height: 300px;
    }
    .img-box3 .img-1 {
        padding: 0;
        margin: 0 0 30px 0;
    }
    .img-box3 .img-1 img {
        width: 100%;
    }
    .img-box3 .img-2 {
        margin: 0;
        max-width: 100%;
    }
    .img-box3 .img-2 img {
        width: 100%;
    }
    .img-box3 .img-text {
        font-size: 20px;
        right: 22px;
        top: 0;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        position: relative;
        right: 0;
        top: 0;
        text-align: center;
        margin: 20px 0 0 0;
    }
}
.about-box {
    height: 230px;
    width: 230px;
    background-color: var(--smoke-color);
    border: 15px solid var(--white-color);
    padding: 35px;
    border-radius: 10px;
}
.about-box__icon {
    position: relative;
    z-index: 2;
    padding: 0 0 0 13px;
}
.about-box .icon-shape {
    top: 5px;
}
.about-media.style2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
.img-box4 {
    position: relative;
    display: inline-block;
}
.img-box4 .about-box {
    position: absolute;
    top: 0;
    right: 50px;
}
@media (max-width: 575px) {
    .about-media.style2 {
        display: block;
    }
}
@media (min-width: 1610px) {
    .img-box5 {
        margin-left: -75px;
    }
}
.about-sec-v6 {
    background-color: var(--smoke-color);
    max-width: 1730px;
    margin: -120px auto 0 auto;
    padding-top: 90px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.about-sec-v6 .as-shape2 {
    right: 0%;
    top: 18%;
}
.about-sec-v6 .as-blur1 {
    width: 500px;
    height: 500px;
    position: absolute;
    bottom: 0;
    right: 5%;
    background-color: var(--theme-color2);
    border-radius: 50%;
    z-index: -1;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    opacity: 0.15;
}
.about-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.about-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    margin-bottom: 50px;
}
.about-list__title {
    font-size: 24px;
    margin-bottom: 0;
}
.about-list__icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    color: var(--white-color);
    border-radius: 10px;
    position: relative;
    background-color: var(--theme-color);
    text-align: center;
    z-index: 2;
}
.about-list__icon:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-color: inherit;
    opacity: 0.2;
    z-index: -1;
    -webkit-transform: rotate(-45deg) translate(-15px, 0px);
    -ms-transform: rotate(-45deg) translate(-15px, 0px);
    transform: rotate(-45deg) translate(-15px, 0px);
}
.about-list__text {
    font-size: 14px;
    letter-spacing: 0.2em;
}
@media (max-width: 767px) {
    .about-list {
        gap: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .about-list-wrap {
        gap: 35px 15px;
        margin-bottom: 35px;
    }
    .about-list__text {
        letter-spacing: 0.1em;
    }
}
@media (max-width: 575px) {
    .about-list__title {
        font-size: 22px;
    }
    .about-list__text {
        letter-spacing: 0em;
    }
}
@media (max-width: 380px) {
    .about-list__title {
        font-size: 18px;
    }
}
.img-box6 {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
.img-box6 .img-1,
.img-box6 .img-2 {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.img-box6 .img-1 img,
.img-box6 .img-2 img {
    width: 100%;
    border-radius: 10px;
}
.img-box6 .img-1 {
    margin-bottom: 30px;
}
.img-box6 .img-2 {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}
.img-box6 .video-btn2 {
    position: absolute;
    top: 10px;
    left: 35%;
    padding: 20px 35px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
    .img-box6 {
        padding-top: 50px;
        gap: 10px;
    }
    .img-box6 .video-btn2 {
        top: 0;
        left: 0;
    }
}
.testi-style1 .testi-quote {
    margin-bottom: 37px;
}
.testi-style1 .testi-text {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    font-family: var(--title-font);
    color: #686f7a;
    margin: 0 0 23px 0;
}
.testi-style1 .testi-name {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 3px 0;
}
.testi-style1 .testi-degi {
    font-size: 14px;
    font-weight: 700;
}
.testi-style2 .testi-name,
.testi-style3 .testi-name {
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
}
.testi-style2 .testi-degi,
.testi-style3 .testi-degi {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}
.testi-style2 .testi-author,
.testi-style3 .testi-author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.testi-style2 .avater,
.testi-style3 .avater {
    width: 76px;
    height: 76px;
    margin-right: 25px;
    overflow: hidden;
    border-radius: 50%;
}
.testi-style2 .avater img,
.testi-style3 .avater img {
    width: 100%;
}
.testi-style2 {
    margin-bottom: 30px;
}
.testi-style2 .testi-quote {
    margin-bottom: 30px;
}
.testi-style2 .testi-quote img {
    width: 80px;
}
.testi-style2 .testi-text {
    line-height: 30px;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: var(--title-font);
}
.testi-style3 {
    padding: 50px 45px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}
.testi-style3 .testi-quote {
    margin-bottom: 38px;
}
.testi-style3 .testi-text {
    font-size: 24px;
    font-family: var(--title-font);
    font-weight: 600;
    line-height: 38px;
    margin: 0 0 25px 0;
}
.testislidev1-navs {
    margin-top: 33px;
}
@media (max-width: 1399px) {
    .testi-style1 .testi-text {
        font-size: 22px;
        line-height: 1.6;
        margin: 0 0 24px 0;
    }
    .testi-style1 .testi-quote {
        margin-bottom: 27px;
    }
}
@media (max-width: 1199px) {
    .testi-style1 .testi-text {
        font-size: 20px;
    }
    .testi-style1 .testi-name {
        font-size: 26px;
    }
    .testi-style2 .testi-quote {
        margin-bottom: 20px;
    }
    .testi-style3 {
        padding: 30px;
    }
    .testi-style3 .testi-quote {
        margin-bottom: 20px;
    }
}
@media (max-width: 991px) {
    .testi-style3 .testi-text {
        font-size: 20px;
        line-height: 30px;
    }
    .testi-style2 .avater,
    .testi-style3 .avater {
        margin-right: 15px;
    }
}
@media (max-width: 767px) {
    .testi-style1 .testi-text {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 18px 0;
    }
}
.testi-style4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
    position: relative;
}
.testi-style4-wrap {
    padding: 20px 80px;
    position: relative;
}
.testi-style4-wrap .bg-mask {
    position: absolute;
    inset: 0;
    background-color: var(--white-color);
    -webkit-mask-size: 100% 100%;
}
.testi-style4-wrap .slick-arrow {
    visibility: visible;
    opacity: 1;
    --pos-x: -106px;
}
.testi-style4 .testi-img {
    min-width: 290px;
}
.testi-style4 .testi-quote {
    margin-bottom: 30px;
}
.testi-style4 .testi-text {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
}
.testi-style4 .testi-name {
    font-size: 26px;
    margin-bottom: 0;
}
.testi-style4 .testi-degi {
    font-size: 14px;
    font-weight: 700;
}
@media (max-width: 1299px) {
    .testi-style4 {
        gap: 30px;
    }
    .testi-style4-wrap {
        padding: 20px 50px;
    }
    .testi-style4 .testi-text {
        font-size: 20px;
    }
}
@media (max-width: 1199px) {
    .testi-style4 .testi-text {
        font-size: 18px;
    }
    .testi-style4 .testi-name {
        font-size: 24px;
    }
}
@media (max-width: 991px) {
    .testi-style4 .testi-img {
        min-width: 200px;
    }
    .testi-style4 .testi-text {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .testi-style4 {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .testi-style4-wrap {
        padding: 40px;
    }
    .testi-style4 .testi-img {
        display: none;
    }
}
@media (max-width: 575px) {
    .testi-style4-wrap .bg-mask {
        -webkit-mask-image: none !important;
        mask-image: none !important;
        border-radius: 10px;
    }
}
@media (max-width: 380px) {
    .testi-style4-wrap {
        padding: 40px 20px;
    }
}
.testi-box {
    padding: 50px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}
.testi-box_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
.testi-box_img {
    min-width: 120px;
}
.testi-box_img img {
    border-radius: 10px;
}
.testi-box_bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.testi-box_name {
    font-size: 24px;
    margin-bottom: 3px;
    margin-top: -0.24em;
    font-weight: 700;
}
.testi-box_desig {
    color: var(--theme-color2);
    margin-bottom: -0.45em;
    display: block;
}
.testi-box_text {
    font-size: 20px;
    font-family: var(--title-font);
    line-height: 1.5;
    margin-bottom: 0;
}
.testi-box_bottom {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #dae5f0;
}
.testi-box_review {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 3px;
}
.testi-box_review i {
    font-size: 14px;
    color: var(--theme-color2);
}
@media (max-width: 1199px) {
    .testi-box_img {
        min-width: 90px;
    }
}
@media (max-width: 991px) {
    .testi-box_img {
        min-width: 120px;
    }
}
@media (max-width: 767px) {
    .testi-box {
        padding: 40px 20px;
    }
    .testi-box_content {
        gap: 25px;
    }
    .testi-box_bottom {
        margin-top: 25px;
        padding-top: 30px;
    }
    .testi-box_text {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .testi-box_content {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media (max-width: 380px) {
    .testi-box_name {
        font-size: 20px;
        margin-bottom: 0;
    }
    .testi-box_bottom {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.as-box {
    background-color: var(--white-color);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    padding: 20px 20px 0 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.as-box__img {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    margin-bottom: 20px;
}
.as-box__category {
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 1;
}
.as-box__category a {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    font-weight: 700;
    color: var(--white-color);
    background-color: var(--theme-color);
    padding: 8px 15px;
    border-radius: 9999px;
}
.as-box__bottom,
.as-box__middle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 12px 0;
}
.as-box__bottom {
    margin: 0;
    padding: 0;
    border-top: 1px dashed var(--border-color);
}
.as-box__author img {
    width: 40px;
    margin-right: 10px;
    border-radius: 50%;
}
.as-box__author a {
    font-weight: 400;
    color: var(--body-color);
    font-family: var(--title-font);
}
.as-box__author a:hover {
    color: var(--theme-color2);
}
.as-box__rating {
    font-size: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    line-height: 1.3;
}
.as-box__rating .star-rating {
    font-size: 10px;
    width: 70px;
    margin-right: 10px;
}
.as-box__rating .star-rating span:before {
    color: var(--theme-color2);
}
.as-box__title {
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.417;
}
.as-box__title a {
    color: inherit;
}
.as-box__title a:hover {
    color: var(--theme-color2);
}
.as-box__meta {
    padding: 13.5px 0;
}
.as-box__meta span,
.as-box__meta a {
    font-size: 12px;
    font-weight: 400;
    color: var(--body-color);
    margin: 0 16px 0 0;
}
.as-box__meta span i,
.as-box__meta a i {
    margin-right: 10px;
    color: var(--theme-color2);
}
.as-box__meta span:last-child,
.as-box__meta a:last-child {
    margin-right: 0;
}
.as-box__meta span:hover,
.as-box__meta a:hover {
    color: var(--theme-color2);
}
.as-box .link-btn {
    color: var(--body-color);
}
.as-box .link-btn:before {
    background-color: var(--theme-color2);
}
.as-box .link-btn:hover {
    color: var(--theme-color2);
}
.as-box__multicat:nth-child(3n + 2) .as-box__category {
    --theme-color: var(--theme-color2);
}
.as-box__multicat:nth-child(4n + 3) .as-box__category {
    --theme-color: var(--body-color);
}
.as-box__multicat:nth-child(5n + 4) .as-box__category {
    --theme-color: #828282;
}
.as-box--style5 .as-box__bottom,
.as-box--style4 .as-box__bottom,
.as-box--style3 .as-box__bottom,
.as-box--style2 .as-box__bottom {
    display: block;
}
.as-box--style5 .as-box__meta,
.as-box--style4 .as-box__meta,
.as-box--style3 .as-box__meta,
.as-box--style2 .as-box__meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.as-box--style3 {
    border: none;
    box-shadow: none;
}
.as-box--style4 {
    border: none;
}
.as-box--style4:hover {
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.13);
}
.as-box--style5 {
    border: none;
    box-shadow: none;
    background-color: #f9f9f9;
}
.as-box--style6 {
    box-shadow: none;
}
.as-box--style6 .as-box__title {
    max-width: 300px;
}
.as-box--style6:hover {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
.as-box--style8,
.as-box--style7 {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.as-box--style8 .media-body,
.as-box--style7 .media-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 30px;
}
.as-box--style8 .as-box__img,
.as-box--style7 .as-box__img {
    width: 100%;
    max-width: 320px;
    margin: 0;
}
.as-box--style8 .as-box__img img,
.as-box--style7 .as-box__img img {
    border-radius: inherit;
}
.as-box--style8 .as-box__middle,
.as-box--style7 .as-box__middle {
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.as-box--style8 .as-box__rating,
.as-box--style7 .as-box__rating {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0 0 10px 0;
}
.as-box--style8 .as-box__author,
.as-box--style7 .as-box__author {
    margin: 0 0 13px 0;
}
.as-box--style8 .as-box__title,
.as-box--style7 .as-box__title {
    margin: 0 0 10px 0;
}
.as-box--style8 .as-box__bottom,
.as-box--style7 .as-box__bottom {
    display: block;
}
.as-box--style8 .as-box__meta,
.as-box--style7 .as-box__meta {
    padding-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.as-box--style7 .as-box__rating {
    margin: 0 0 0 0;
}
@media (min-width: 1399px) {
    .as-box--style8 .as-box__rating {
        position: absolute;
        right: 20px;
        top: 20px;
    }
}
@media (max-width: 1399px) {
    .as-box--style8,
    .as-box--style7 {
        display: block;
    }
    .as-box--style8 .as-box__img,
    .as-box--style7 .as-box__img {
        max-width: 100%;
        margin: 0 0 30px 0;
    }
    .as-box--style8 .media-body,
    .as-box--style7 .media-body {
        padding: 0;
    }
}
@media (max-width: 1199px) {
    .as-box__title {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 16px 0;
    }
    .as-box__author {
        margin: 0 0 18px 0;
    }
    .as-box__rating {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin: 0 0 0 0;
    }
    .as-box__middle {
        display: block;
        margin: 0 0 5px 0;
    }
    .as-box__meta span,
    .as-box__meta a {
        margin: 0 12px 0 0;
    }
    .as-box__meta span i,
    .as-box__meta a i {
        margin-right: 5px;
    }
    .as-box__category {
        top: 10px;
        right: 10px;
    }
    .as-box__category a {
        font-size: 12px;
        padding: 6px 12px;
    }
}
.img-left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 48%;
}
.img-left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top right;
}
@media (max-width: 1199px) {
    .img-left {
        position: relative;
        width: 100%;
    }
}
.course-form input {
    background-color: transparent;
    border: 1px solid #243022;
    color: var(--white-color);
}
.course-form input::-moz-placeholder {
    color: var(--white-color);
}
.course-form input::-webkit-input-placeholder {
    color: var(--white-color);
}
.course-form input:-ms-input-placeholder {
    color: var(--white-color);
}
.course-form input::-ms-input-placeholder {
    color: var(--white-color);
}
.course-form input::placeholder {
    color: var(--white-color);
}
.quote-form {
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 20px;
    background-color: var(--white-color);
}
@media (max-width: 767px) {
    .quote-form {
        padding: 40px 20px;
    }
}
.quote-form input,
.quote-form textarea,
.quote-form select {
    background-color: var(--smoke-color) !important;
}
.quote-form .form-group > i {
    background-color: var(--smoke-color);
}
.quote-form .form-title {
    text-align: center;
    margin-bottom: 20px;
}
.call-btn {
    color: var(--theme-color);
    font-family: var(--title-font);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}
.call-btn .play-btn {
    --icon-size: 60px;
    font-size: 16px;
    margin-right: 15px;
}
.call-btn .play-btn > i {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.call-btn .play-btn:after,
.call-btn .play-btn:before {
    background-color: var(--theme-color);
}
.call-btn .fa-phone {
    font-size: 22px;
}
.call-btn .btn-text {
    margin-bottom: 8px;
    display: block;
    color: var(--body-color);
    font-size: 18px;
}
.call-btn .box-title {
    margin-bottom: -0.15em;
    font-size: 24px;
    font-weight: 700;
    color: var(--title-color);
}
.call-btn:hover .icon-btn {
    background-color: var(--title-color);
}
.call-btn:hover .box-title {
    color: var(--theme-color);
}
.call-btn:hover .play-btn > i {
    background-color: var(--title-color);
}
.call-btn:hover .play-btn:after,
.call-btn:hover .play-btn:before {
    background-color: var(--title-color);
}
.contact-map1 {
    height: 100%;
}
.contact-map1 iframe {
    height: 100%;
}
.course-filter-menu {
    text-align: center;
    margin-bottom: 27px;
}
.course-filter-menu .count {
    display: inline-block;
    background-color: var(--theme-color2);
    color: var(--white-color);
    font-size: 10px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    font-weight: 400;
    border-radius: 99px;
    position: absolute;
    bottom: 100%;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.course-filter-menu button {
    border: none;
    padding: 0;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    color: var(--title-color);
    background-color: transparent;
    margin: 0 27.5px 0 27.5px;
    position: relative;
}
.course-filter-menu button:last-child {
    margin-right: 0;
}
.course-filter-menu button:first-child {
    margin-left: 0;
}
.course-filter-menu button.active,
.course-filter-menu button:hover {
    color: var(--theme-color2);
}
.course-filter-menu button.active .count {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.course-title-area .course-filter-menu {
    padding-top: 0.25rem;
    text-align: left;
}
.course-wrapper .as-sort-bar {
    margin-bottom: 60px;
}
.course-wrapper .as-sort-bar.mb-30 {
    margin-bottom: 30px;
}
.course-info {
    margin: 0 0 30px 0;
}
.course-info .row {
    --bs-gutter-x: 100px;
    --bs-gutter-y: 20px;
}
@media (min-width: 1199px) {
    .course-info__box:not(:last-child) {
        border-right: 1px solid var(--border-color);
    }
}
.course-info__avater {
    width: 40px;
    height: 40px;
    overflow: hidden;
    margin-right: 15px;
    border-radius: 50%;
}
.course-info__avater img {
    width: 100%;
}
.course-info__author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.course-info__label {
    display: block;
    font-size: 14px;
    line-height: 1;
    margin: 0 0 12px 0;
}
.course-info__info {
    font-size: 14px;
    font-weight: 700;
    color: var(--title-color);
    line-height: 1;
}
.course-info .star-rating {
    display: inline-block;
    vertical-align: middle;
    width: 80px;
    font-size: 12px;
    position: relative;
    top: -1px;
    margin-right: 5px;
}
.course-about {
    padding: 40px 40px 10px 40px;
    margin: 0 0 40px 0;
    background-color: var(--white-color);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}
.course-about .course-img {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}
.course-about .course-img img {
    width: 100%;
    border-radius: 5px;
}
.course-about .course-img .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.course-about .as-btn:not(.style6),
.course-about .course-price {
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--title-font);
    line-height: 1;
    padding: 17px 25px;
    border-radius: 9999px;
}
.course-about .course-price {
    background-color: var(--theme-color2);
    color: var(--white-color);
    margin-bottom: 10px;
}
.course-about .as-btn {
    margin-bottom: 28px;
    width: 100%;
}
.course-meta {
    margin: -0.4em 0 18px 0;
}
.course-tab {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -webkit-justify-content: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}
.course-tab button {
    margin: 0;
    padding: 16.5px 10px;
    border: 4px solid transparent;
    border-right: 1px solid var(--white-color);
    border-left: 1px solid transparent;
    font-size: 16px;
    font-family: var(--title-font);
    font-weight: 400;
    width: 100%;
    background-color: var(--smoke-color);
    color: var(--body-color);
    line-height: 1;
    text-align: center;
}
.course-tab button:last-child {
    border-right: none;
}
.course-tab button i {
    margin-right: 10px;
}
.course-tab button.active {
    border-top-color: var(--theme-color);
    background-color: var(--white-color);
    color: var(--theme-color);
}
.course-tab-wrap {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    margin: 0 0 40px 0;
    background-color: var(--white-color);
}
.course-tab-wrap .course-content {
    padding: 35px 40px 10px 40px;
}
.course-tab-wrap .comment-content {
    position: relative;
}
.course-tab-wrap .comment-content .star-rating {
    position: absolute;
    top: 0;
    right: 0;
}
.course-tab-wrap .as-comments-wrap {
    margin: 0;
}
.course-tab-wrap ul.comment-list {
    margin-top: 0;
}
.course-tab-wrap .as-comment-item:first-child .as-post-comment {
    margin-top: 0;
}
.course-tab-wrap .as-post-comment {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}
.course-tab-wrap .as-post-comment .comment-avater {
    margin: 0 0 17px 0;
    border-radius: 100%;
}
.course-tab-wrap .as-post-comment .comment-top {
    display: block;
    text-align: center;
    margin: 0 40px 0 0;
}
.course-tab-wrap .as-post-comment .comment-top .name {
    margin: 0 0 0 0;
}
.course-tab-wrap .as-post-comment .commented-on {
    color: var(--body-color);
    font-weight: 400;
    line-height: 1.4;
    display: block;
    margin-bottom: 5px 0 14px 0;
}
.course-tab-wrap .as-post-comment .star-rating {
    width: 105px;
    font-size: 16px;
}
.lesson-box {
    border: 1px solid #ecedef;
    overflow: hidden;
    margin: 0 0 15px 0;
    border-radius: 5px;
}
.lesson-box:last-child {
    margin-bottom: 30px;
}
.lesson-box__toggler {
    background-color: var(--smoke-color);
    position: relative;
    border: none;
    width: 100%;
    display: block;
    line-height: 1;
    padding: 19px 30px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--title-font);
    text-align: left;
}
.lesson-box__toggler:before {
    content: "\f078";
    font-family: var(--icon-font);
    font-weight: 400;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.lesson-box__toggler i {
    color: var(--theme-color);
    margin: 0 10px 0 0;
}
.lesson-box__toggler.active:before {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}
.lesson-box__body {
    padding: 30px;
}
.lesson-box__list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.lesson-box__list li {
    margin: 0 0 18px 0;
}
.lesson-box__list li:last-child {
    margin-bottom: 0;
}
.lesson-box__list a {
    color: var(--body-color);
    font-weight: 400;
    font-family: var(--title-font);
    display: block;
    position: relative;
    width: 100%;
    line-height: 1;
}
.lesson-box__list .fa-play-circle {
    margin-right: 10px;
}
.lesson-box__list .fa-lock {
    float: right;
    font-size: 0.95em;
}
.course-author .author-img {
    padding: 20px;
    margin: 0 0 30px 0;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}
.course-author .author-img img {
    border-radius: 5px;
}
.course-author .author-name {
    margin: 0;
}
.course-author .author-degi {
    margin: 0;
}
.course-author .course-author-middle {
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
    padding: 20px 0 15px 0;
    margin: 22px 0 23px;
}
@media (max-width: 1500px) {
    .course-tab-wrap .as-post-comment .comment-top {
        margin: 0 30px 0 0;
    }
}
@media (max-width: 1199px) {
    .course-filter-menu button {
        margin: 0 35px 0 0;
    }
    .course-about {
        padding: 40px 20px 10px 20px;
    }
    .course-about h2.course-title {
        font-size: 32px;
    }
    .course-tab-wrap .as-post-comment .comment-top {
        text-align: left;
        margin: 0 0 10px 0;
    }
    .course-tab-wrap .course-content {
        padding: 35px 20px 10px 20px;
    }
    .lesson-box__body {
        padding: 30px 20px;
    }
    .lesson-box__toggler {
        padding: 19px 20px;
    }
    .course-author .author-img {
        width: 100%;
    }
    .course-author .author-img img {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .course-title-area {
        margin-bottom: 0;
        text-align: center;
    }
    .course-title-area .course-filter-menu {
        margin-top: 20px;
        text-align: inherit;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .course-about h2.course-title {
        font-size: 24px;
        line-height: 1.5;
    }
    .course-info__author {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
    .course-tab {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .course-tab button.active {
        border-top-color: transparent;
    }
    .lesson-box__list a {
        font-size: 14px;
    }
    .lesson-box__toggler {
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    .course-filter-menu {
        margin-bottom: 15px;
    }
    .course-filter-menu button {
        margin: 0 9px 16px 9px;
    }
}
.banner-box {
    background-color: var(--black-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 60px;
    min-height: 570px;
}
.banner-box__content {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
}
.banner-box__subtitle {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 600;
    display: block;
    margin: 0 0 14px 0;
}
.banner-box__title {
    color: var(--white-color);
    margin-bottom: 10px;
    max-width: 570px;
}
.banner-box__text {
    font-size: 24px;
    font-weight: 600;
    line-height: 38px;
    color: var(--white-color);
    max-width: 705px;
    margin: -0.1em 0 25px 0;
}
.banner-style2 {
    background-color: var(--black-color);
    text-align: center;
    height: 315px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner-style2 .banner-title {
    color: var(--white-color);
    max-width: 250px;
    margin: -0.1em auto 7px auto;
}
.countdown-style1 {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.countdown-style1 li {
    display: inline-block;
    text-align: center;
    margin-right: 35px;
}
.countdown-style1 li:last-child {
    margin-right: 0;
}
.countdown-style1 .count-number {
    width: var(--number-size, 90px);
    height: var(--number-size, 90px);
    line-height: calc(var(--number-size, 90px) + 7px);
    text-align: center;
    background-color: rgba(253, 26, 90, 0.8);
    color: var(--white-color);
    font-size: 32px;
    font-weight: 700;
    font-family: var(--title-font);
    border-radius: 50%;
}
.countdown-style1 .count-name {
    color: var(--white-color);
    font-size: 16px;
}
@media (max-width: 1399px) {
    .banner-box {
        padding: 60px 40px;
        min-height: 470px;
    }
    .banner-box__title {
        font-size: 36px;
    }
    .banner-box__text {
        font-size: 18px;
        line-height: 28px;
    }
    .banner-box__content {
        max-width: 570px;
    }
    .countdown-style1 li {
        margin-right: 10px;
    }
}
@media (max-width: 767px) {
    .banner-box {
        padding: 50px 15px;
        min-height: 400px;
    }
    .banner-box__title {
        font-size: 26px;
    }
    .banner-box__subtitle {
        font-size: 18px;
    }
    .banner-box__text {
        font-size: 16px;
        line-height: 26px;
    }
    .countdown-style1 .count-number {
        --number-size: 60px;
        font-size: 20px;
        margin-bottom: 5px;
    }
    .countdown-style1 li {
        margin-right: 3px;
    }
    .countdown-style1 .count-name {
        font-size: 14px;
    }
}
.form-style1 {
    background-color: var(--white-color);
    border: 1px solid #bdbdbd;
    padding: 80px 50px;
    border-radius: 10px;
}
.form-style1 textarea,
.form-style1 select,
.form-style1 input {
    background-color: #f7f7f7;
    height: 85px;
    border: none;
    border-radius: 0;
    padding-left: 45px;
}
.form-style1 textarea ~ i,
.form-style1 select ~ i,
.form-style1 input ~ i {
    right: auto;
    left: calc(var(--bs-gutter-x) / 2 + 20px);
    top: 35px;
}
.form-style1 textarea {
    height: 293px;
}
.form-style1 textarea ~ i {
    top: 22px;
}
.form-style3 textarea,
.form-style3 select,
.form-style3 input {
    height: 50px;
    background-color: var(--smoke-color);
    border-radius: 25px;
    padding-left: 55px;
    border: none;
}
.form-style3 textarea ~ i,
.form-style3 select ~ i,
.form-style3 input ~ i {
    top: 19px;
    right: auto;
    left: calc(var(--bs-gutter-x) / 2 + 30px);
}
.form-style3 textarea {
    height: 160px;
}
.form-style3 textarea ~ i {
    top: 22px;
}
.form-style2 .form-group {
    background-color: rgba(39, 39, 39, 0.5);
    border: 1px solid rgba(153, 153, 153, 0.5);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    margin-bottom: 0;
    border-radius: 64px;
}
.form-style2 input {
    background-color: transparent;
    border: none;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: var(--white-color);
    font-size: 24px;
    font-weight: 600;
    height: 60px;
    padding: 0 0 0 45px;
}
.form-style2 input::-moz-placeholder {
    color: #777676;
}
.form-style2 input::-webkit-input-placeholder {
    color: #777676;
}
.form-style2 input:-ms-input-placeholder {
    color: #777676;
}
.form-style2 input::-ms-input-placeholder {
    color: #777676;
}
.form-style2 input::placeholder {
    color: #777676;
}
.contact-wrap1 {
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.08);
    background-color: var(--white-color);
    padding: 35px 40px 40px 40px;
}
.contact-shape1 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 135px;
    background-color: var(--smoke-color);
    z-index: -1;
}
.info-box {
    background-color: var(--white-color);
    padding: 35px 40px 40px 40px;
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.08);
}
.info-box__title {
    position: relative;
    border-bottom: 1px solid var(--border-color);
    margin: 0 0 33px 0;
}
.info-box__title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: var(--theme-color);
    height: 1px;
    width: 80px;
}
.info-box__icon i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    margin: 0 10px 0 0;
    border-radius: 50%;
}
.info-box__info {
    margin: 0 0 3px 0;
}
.info-box__info:last-child {
    margin-bottom: 0;
}
.info-box__info a {
    color: inherit;
}
.info-box__info a:hover {
    color: var(--theme-color);
}
.info-box__label {
    color: var(--title-color);
    font-weight: 700;
    display: block;
    margin: 30px 0 10px 0;
}
.info-box__media {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.info-box__media:nth-of-type(2) .info-box__icon i {
    background-color: var(--theme-color2);
}
.info-box__media:nth-of-type(3) i {
    background-color: #333333;
}
@media (max-width: 1199px) {
    .form-style1 {
        padding: 50px 40px;
    }
    .form-style1 textarea,
    .form-style1 select,
    .form-style1 input {
        height: 60px;
    }
    .form-style1 textarea ~ i,
    .form-style1 select ~ i,
    .form-style1 input ~ i {
        top: 23px;
    }
}
@media (max-width: 767px) {
    .form-style1 {
        padding: 60px 20px;
    }
    .form-style2 .form-group {
        background-color: transparent;
        border: none;
        display: block;
        text-align: center;
        padding: 0;
    }
    .form-style2 .form-group input {
        height: 60px;
        padding: 0 20px 0 30px;
        font-size: 14px;
        background-color: rgba(39, 39, 39, 0.5);
        border: 1px solid rgba(153, 153, 153, 0.5);
        margin-bottom: 20px;
    }
    .contact-wrap1 {
        padding: 35px 20px 40px 20px;
    }
    .info-box {
        padding: 35px 20px 40px 20px;
    }
    .info-box__info br {
        display: none;
    }
}
.team-social-label {
    font-weight: 700;
    color: var(--title-color);
    font-family: var(--title-font);
    display: inline-block;
    margin: 0 5px 0 0;
}
.team-social a {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid var(--border-color);
    color: var(--title-color);
    font-size: 14px;
    margin: 0 3px;
    border-radius: 3px;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.team-social a:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white-color);
}
.team-style1 {
    position: relative;
    margin-bottom: 30px;
}
.team-style1 .team-img {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.team-style1 .team-img img {
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.team-style1 .team-img:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.75) 0%, rgba(196, 196, 196, 0) 101.91%);
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.75) 0%, rgba(196, 196, 196, 0) 101.91%);
    z-index: 1;
}
.team-style1 .team-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 50px 40px 50px;
}
.team-style1 .team-label {
    color: var(--white-color);
    font-size: 16px;
    margin: 0 0 13px 0;
    display: block;
}
.team-style1 .team-name {
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 7px 0;
}
.team-style1 .team-name a {
    color: inherit;
}
.team-style1 .team-name a:hover {
    color: var(--theme-color);
}
.team-style1 .team-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid rgba(189, 189, 189, 0.4);
    padding: 13px 0 0 0;
}
.team-style1 .team-degi {
    color: var(--white-color);
    font-size: 12px;
}
.team-style1 .team-links a {
    color: var(--white-color);
    font-size: 20px;
    display: inline-block;
    margin: 0 17px 0 0;
}
.team-style1 .team-links a:last-child {
    margin-right: 0;
}
.team-style1:hover .team-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.team-style2 {
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 20px;
    margin: 0 0 30px 0;
}
.team-style2 .team-img {
    overflow: hidden;
    border-radius: 5px;
    margin: 0 0 18px 0;
}
.team-style2 .team-img img {
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.team-style2 .team-name {
    font-weight: 600;
    margin: 0;
}
.team-style2 .team-name a {
    color: inherit;
}
.team-style2 .team-name a:hover {
    color: var(--theme-color);
}
.team-style2 .team-degi {
    color: var(--theme-color2);
    font-size: 16px;
    display: block;
}
.team-style2 .team-social {
    border-top: 1px dashed var(--border-color);
    padding: 17px 0 0 0;
    margin: 13px 0 0 0;
}
.team-style2:hover .team-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.team-details-top {
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 25px;
}
.team-details-top .team-name {
    line-height: 1;
    margin-bottom: 5px;
}
.team-details-middle {
    padding: 35px 0 29px 0;
    border-bottom: 1px dashed var(--border-color);
    margin: 0 0 36px 0;
}
.team-details-bottom {
    margin: 0 0 30px 0;
}
.team-details-img {
    background-color: var(--white-color);
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
}
.team-details-img img {
    border-radius: 5px;
    width: 100%;
}
.team-info {
    margin: 0 0 3px 0;
}
.team-info i {
    margin-right: 10px;
    color: var(--theme-color2);
}
.team-info .star-rating {
    display: inline-block;
    top: 0;
}
.team-info a {
    color: inherit;
}
.team-info a:hover {
    color: var(--theme-color);
}
@media (max-width: 1199px) {
    .team-style1 .team-body {
        padding: 0 20px 20px 20px;
    }
}
.team-grid {
    position: relative;
    overflow: hidden;
    background-color: var(--white-color);
    border: 1px solid #ecf1f9;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(76, 88, 104, 0.06);
}
.team-grid .team-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}
.team-grid .team-info .line {
    height: 16px;
    width: 1px;
    display: inline-block;
    background-color: #b3c1d3;
}
.team-grid .team-info span {
    color: var(--title-color);
}
.team-grid .team-info span i {
    color: var(--theme-color2);
    margin-right: 8px;
}
.team-grid .team-img {
    overflow: hidden;
    position: relative;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
.team-grid .team-img img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.team-grid .team-content {
    padding: 0px 30px 26px 30px;
    margin-top: -40px;
    z-index: 3;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #ecf1f9;
    z-index: 3;
    position: relative;
}
.team-grid .as-social {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    bottom: 50px;
    right: 0;
    width: 50px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
}
.team-grid .as-social a {
    margin-right: 0;
    margin-bottom: 5px;
}
.team-grid .social-box {
    position: relative;
    cursor: pointer;
}
.team-grid .social-box a {
    color: var(--theme-color2);
}
.team-grid .social-box a:hover {
    background-color: var(--theme-color2);
    color: var(--white-color);
}
.team-grid .social-box:hover .as-social {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.team-grid .team-title {
    font-size: 24px;
    margin-bottom: 0;
    margin-top: -0.23em;
    font-weight: 700;
}
.team-grid .team-title a {
    color: inherit;
}
.team-grid .team-title a:hover {
    color: var(--theme-color2);
}
.team-grid .team-desig {
    color: var(--theme-color2);
    display: block;
    font-family: var(--title-font);
    margin-bottom: -0.45em;
}
.team-grid .team-info {
    padding: 23px 30px;
}
.team-grid .icon-btn {
    background-color: var(--theme-color2);
    color: var(--white-color);
    position: relative;
    z-index: 3;
}
.team-grid .icon-btn:hover i {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.team-grid .icon-btn:hover i:before {
    content: "\f068";
}
.team-grid:hover .team-img img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}
@media (max-width: 1399px) {
    .team-grid .team-info {
        padding: 20px 25px;
    }
}
@media (max-width: 767px) {
    .team-grid .team-info {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}
@media (max-width: 430px) {
    .team-grid .team-info {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.pricing-style1 {
    border: 1px solid var(--border-color);
    text-align: center;
    border-radius: 5px;
    padding: 35px 40px 27px 40px;
    margin: 0 0 30px 0;
}
.pricing-style1 .pricing-title {
    margin: 0 0 0 0;
}
.pricing-style1 .pricing-middle {
    background-color: var(--theme-color2);
    padding: 37px 20px 40px 20px;
    margin: 0 0 30px 0;
    border-radius: 5px;
}
.pricing-style1 .pricing-time {
    color: var(--white-color);
}
.pricing-style1 .pricing-text {
    margin: 0 0 30px 0;
}
.pricing-style1 .pricing-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.pricing-style1 .pricing-img {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.pricing-style1 .pricing-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: left;
}
.pricing-style1 .pricing-list li {
    color: #4f4f4f;
    position: relative;
    padding: 0 0 0 33px;
    margin: 0 0 3px 0;
}
.pricing-style1 .pricing-list li > i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--theme-color2);
}
.pricing-style1 .pricing-list li .fa-times {
    color: var(--theme-color);
}
.pricing-multi:nth-child(2) .pricing-style1 .pricing-middle {
    background-color: var(--theme-color);
}
.pricing-multi:nth-child(2) .pricing-style1 .as-btn {
    background-color: var(--theme-color2);
    color: var(--white-color);
    --icon-bg: #74b266;
}
.pricing-multi:nth-child(3) .pricing-style1 .pricing-middle {
    background-color: #00c0ea;
}
@media (max-width: 1399px) {
    .pricing-style1 {
        padding: 35px 20px 27px 20px;
    }
    .pricing-style1 .pricing-img {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}
@media (max-width: 767px) {
    .pricing-style1 .pricing-bottom {
        display: block;
    }
}
.as-accordion .accordion-button {
    border: none;
    background-color: transparent;
}
.as-accordion .accordion-button:focus {
    border-color: transparent;
    background-color: transparent;
    box-shadow: none;
}
.as-accordion .accordion-collapse {
    border: none;
}
.faq-wrap1 {
    background-color: var(--white-color);
    padding: 40px 40px 10px 40px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
}
.accordion-style1 .accordion-item {
    background-color: var(--smoke-color);
    margin: 0 0 30px 0;
}
.accordion-style1 .accordion-button {
    color: var(--title-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    padding: 16px 30px;
    text-align: left;
}
.accordion-style1 .accordion-button:after {
    content: "\f078";
    font-family: var(--icon-font);
    background-image: none;
    font-weight: 400;
    width: auto;
    height: auto;
    color: var(--theme-color);
}
.accordion-style1 .accordion-body {
    padding: 0 30px 5px 30px;
}
@media (max-width: 767px) {
    .faq-wrap1 {
        padding: 40px 15px 10px 15px;
    }
    .accordion-style1 .accordion-item {
        padding: 15px 0;
    }
    .accordion-style1 .accordion-button {
        font-size: 16px;
        line-height: 26px;
        padding: 17px 20px;
    }
    .accordion-style1 .accordion-body {
        padding: 0 20px 5px 20px;
    }
}
.faq-img {
    text-align: right;
    margin: -60px 40px 0 0;
}
.sidemenu-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;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
}
.sidemenu-wrapper .closeButton {
    display: inline-block;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    padding: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--theme-color2);
    color: var(--white-color);
    border-radius: 50%;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.sidemenu-wrapper .closeButton:hover {
    color: var(--white-color);
    background-color: var(--theme-color);
    border-color: transparent;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sidemenu-wrapper .sidemenu-content {
    background-color: var(--white-color);
    width: 450px;
    margin-left: auto;
    padding: 80px 30px;
    height: 100%;
    overflow: scroll;
    position: relative;
    right: -500px;
    cursor: auto;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
    -webkit-transition: right ease 1s;
    transition: right ease 1s;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
    width: 2px;
    background-color: #f5f5f5;
}
.sidemenu-wrapper .widget {
    padding: 0;
    border: none;
    background-color: transparent;
}
.sidemenu-wrapper.show {
    opacity: 1;
    visibility: visible;
    width: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
}
.sidemenu-wrapper.show .sidemenu-content {
    right: 0;
    opacity: 1;
    visibility: visible;
}
.woocommerce-message,
.woocommerce-info {
    position: relative;
    border: 1px solid #d8d8d8;
    padding: 11px 20px;
    background-color: var(--body-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    border-radius: 5px;
}
.woocommerce-message a,
.woocommerce-info a {
    color: inherit;
    text-decoration: underline;
}
.woocommerce-message a:hover,
.woocommerce-info a:hover {
    text-decoration: underline;
}
.woocommerce-message:before,
.woocommerce-info:before {
    content: "\f06a";
    font-family: var(--icon-font);
    font-weight: 900;
    margin-right: 10px;
}
.woocommerce-notices-wrapper .woocommerce-message {
    background-color: var(--theme-color);
}
.woocommerce-notices-wrapper .woocommerce-message:before {
    content: "\f14a";
    font-weight: 300;
}
.woocommerce-form-login-toggle .woocommerce-info {
    background-color: var(--theme-color);
}
.woocommerce-form-register,
.woocommerce-form-coupon,
.woocommerce-form-login {
    padding: 35px 40px 35px 40px;
    background-color: var(--smoke-color);
    margin-bottom: 50px;
}
@media (max-width: 575px) {
    .woocommerce-form-register,
    .woocommerce-form-coupon,
    .woocommerce-form-login {
        padding: 40px 20px;
    }
}
.woocommerce-form-register .form-group,
.woocommerce-form-coupon .form-group,
.woocommerce-form-login .form-group {
    margin-bottom: 20px;
}
.woocommerce-form-register .form-group:last-child,
.woocommerce-form-coupon .form-group:last-child,
.woocommerce-form-login .form-group:last-child {
    margin-bottom: 0;
}
.woocommerce-form-register .as-btn,
.woocommerce-form-coupon .as-btn,
.woocommerce-form-login .as-btn {
    padding: 15px 30px;
}
.woocommerce-error {
    background-color: var(--error-color);
    color: #fff;
    list-style: none;
    padding: 10px 26px;
    margin: 0 0 30px 0;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
}
nav.woocommerce-MyAccount-navigation li {
    border: 1px solid #ddd;
    margin: 0;
    border-top: none;
}
nav.woocommerce-MyAccount-navigation li:first-child {
    border-top: 1px solid #ddd;
}
nav.woocommerce-MyAccount-navigation li a {
    color: var(--title-color);
    font-weight: 700;
    padding: 7px 17px;
    display: block;
}
nav.woocommerce-MyAccount-navigation li.is-active a,
nav.woocommerce-MyAccount-navigation li a:hover {
    color: var(--white-color);
    background-color: var(--theme-color);
}
.woocommerce-MyAccount-content h3 {
    margin-top: -0.3em;
}
.woocommerce-MyAccount-content .btn {
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 14px;
    padding: 10px 25px;
    font-weight: 700;
}
.woocommerce-MyAccount-content .btn:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}
table.variations,
.woocommerce-grouped-product-list-item {
    border-collapse: separate;
    border-spacing: 0 15px;
    margin-bottom: 5px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
table.variations td,
.woocommerce-grouped-product-list-item td {
    border: none;
    vertical-align: middle;
    padding: 0 5px;
}
table.variations td:first-child,
.woocommerce-grouped-product-list-item td:first-child {
    padding: 0;
}
table.variations label,
.woocommerce-grouped-product-list-item label {
    margin: 0;
    font-size: 14px;
    text-transform: capitalize;
}
table.variations label a,
.woocommerce-grouped-product-list-item label a {
    color: var(--title-color);
}
table.variations label a:hover,
.woocommerce-grouped-product-list-item label a:hover {
    color: var(--theme-color);
}
.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
    border: 1px solid var(--border-color);
}
.woocommerce-product-attributes th p:last-child,
.woocommerce-product-attributes td p:last-child {
    margin-bottom: 0;
}
.woocommerce-grouped-product-list.group_table {
    border-collapse: collapse;
    margin-bottom: 15px;
}
.woocommerce-grouped-product-list.group_table .woocommerce-Price-amount.amount {
    font-size: 16px;
    color: var(--title-color);
}
.woocommerce-grouped-product-list.group_table label {
    margin: 0 0 0 10px;
    margin: 0 0 0 10px;
    font-family: var(--title-font);
    font-size: 18px;
}
.woocommerce-grouped-product-list.group_table .qty-input {
    border-color: #e3e6e9;
}
.woocommerce-grouped-product-list.group_table tr {
    border-bottom: 1px solid #e3e6e9;
}
.woocommerce-grouped-product-list.group_table tr:last-child {
    border-bottom: none;
}
.woocommerce-grouped-product-list.group_table td {
    padding: 30px 5px;
}
table.variations {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: relative;
}
table.variations td {
    padding: 0;
}
table.variations td.label {
    padding-right: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
table.variations select {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-weight: 400;
    line-height: 1.5;
    vertical-align: middle;
    margin: 0;
    padding-right: 54px;
    padding-left: 20px;
    height: 50px;
}
table.variations .reset_variations {
    margin-left: 16px;
    display: inline-block;
    position: absolute;
    left: 100%;
    bottom: 25px;
}
.woocommerce-variation.single_variation {
    margin-bottom: 30px;
}
.woocommerce-variation.single_variation .price {
    color: var(--title-color);
    font-weight: 700;
}
.wooscp-table-items td.woocommerce-product-attributes-item__value {
    padding-left: 15px !important;
}
.wooscp-table-items a.added_to_cart.wc-forward {
    margin-left: 15px;
    text-decoration: underline;
}
#woosq-popup .product_meta {
    margin-top: 20px;
}
#woosq-popup .product_title {
    font-size: 24px;
    margin-bottom: 5px;
}
#woosq-popup .single-product .product .actions {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}
#woosq-popup .single-product .product .actions .as-btn {
    padding: 17px 30px;
}
#woosq-popup .single-product .product .actions > div {
    height: auto;
    overflow: visible;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
#woosq-popup .single-product .product .actions > div .quantity.style2.woocommerce-grouped-product-list-item__quantity {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.login-tab {
    margin-bottom: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.login-tab button.nav-link {
    background-color: var(--smoke-color);
    color: var(--title-color);
    padding: 11px 39px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 15px ​15px 0;
}
.login-tab button.nav-link.active {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.star-rating {
    overflow: hidden;
    position: relative;
    width: 100px;
    height: 1.2em;
    line-height: 1.2em;
    display: block;
    font-family: var(--icon-font);
    font-weight: 300;
    font-size: 14px;
}
.star-rating:before {
    content: "\f005\f005\f005\f005\f005";
    color: var(--theme-color2);
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    letter-spacing: 3px;
}
.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(--theme-color2);
    letter-spacing: 3px;
    font-weight: 700;
}
.rating-select label {
    margin: 0;
    margin-right: 10px;
}
.rating-select p.stars {
    margin-bottom: 0;
    line-height: 1;
}
.rating-select p.stars a {
    position: relative;
    height: 14px;
    width: 18px;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
}
.rating-select p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 14px;
    line-height: 1;
    font-family: var(--icon-font);
    content: "\f005";
    font-weight: 400;
    text-indent: 0;
    color: var(--yellow-color);
}
.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;
}
@media (max-width: 767px) {
    .woocommerce-message,
    .woocommerce-info {
        font-size: 12px;
        padding: 5px 10px;
    }
}
.as-product-box {
    text-align: center;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    margin-bottom: 32px;
}
.as-product-box .product-title {
    font-weight: 600;
    margin: 0 0 10px 0;
}
.as-product-box .product-title a {
    color: inherit;
}
.as-product-box .product-title a:hover {
    color: var(--theme-color);
}
.as-product-box .product-price {
    color: var(--theme-color);
    font-weight: 600;
    margin: 0;
}
.as-product-box .product-img {
    background-color: var(--smoke-color);
    overflow: hidden;
    position: relative;
    margin: 0 0 28px 0;
}
.as-product-box .product-img img {
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.as-product-box .actions {
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    margin-top: -20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.as-product-box .actions .icon-btn {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
.as-product-box .actions > * {
    margin: 0 var(--icon-gap-x, 5px);
}
.as-product-box .actions > * > a {
    margin: 0;
}
.as-product-box:hover .product-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.as-product-box:hover .actions {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}
.as-product-box.list-view {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
}
.as-product-box.list-view .product-img {
    width: 100%;
    max-width: 180px;
    margin: 0;
}
.as-product-box.list-view .product-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid var(--smoke-color);
    border-left: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 25px;
}
.as-product-box.list-view .actions {
    --btn-size: 35px;
    --btn-font-size: 13px;
    --icon-gap-x: 2px;
}
.as-product-box.list-view .product-title {
    font-size: 18px;
    margin: 0 0 5px 0;
}
.as-product-box.list-view .product-price {
    font-size: 14px;
}
.slick-slide .as-product-box {
    margin-bottom: 23px;
}
.as-sort-bar {
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.06);
    padding: 30px;
    margin: 0 0 30px 0;
    border-radius: 5px;
}
.as-sort-bar .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 15px;
}
.as-sort-bar select {
    height: 50px;
    border: 1px solid var(--border-color);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 340px;
    font-size: 16px;
    margin: 0;
    padding: 0 45px 0 30px;
    color: var(--body-color);
    background-color: var(--smoke-color);
}
.as-sort-bar .woocommerce-result-count {
    margin-bottom: 0;
    color: var(--body-color);
}
.as-sort-bar .nav a {
    display: inline-block;
    position: relative;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--body-color);
    margin: 0 20px 0 0;
    padding: 0 20px 0 0;
}
.as-sort-bar .nav a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 30px;
    width: 1px;
    background-color: var(--border-color);
    margin: -15px 0 0 0;
}
.as-sort-bar .nav a i {
    margin-right: 10px;
}
.as-sort-bar .nav a.active,
.as-sort-bar .nav a:hover {
    color: var(--theme-color);
}
.product-big-img {
    background-color: var(--smoke-color);
}
.quantity {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}
.quantity > .screen-reader-text {
    display: inline-block;
    font-weight: 600;
    color: var(--title-color);
    font-family: var(--title-font);
    margin: 0;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-right: 10px;
}
.quantity .qty-btn,
.quantity .qty-input {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-right: none;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    color: var(--body-color);
    font-size: 18px;
    font-weight: 600;
}
.quantity .qty-btn:last-child,
.quantity .qty-input:last-child {
    border-right: 1px solid var(--border-color);
}
.quantity .quantity-minus {
    border-radius: 99px 0 0 99px;
}
.quantity .quantity-plus {
    border-radius: 0 99px 99px 0;
}
.quantity .qty-btn {
    font-size: 16px;
}
.product_meta {
    font-weight: 700;
    font-size: 16px;
    font-family: var(--body-font);
    border-top: 1px solid var(--border-color);
    padding: 33px 0 0 0;
    margin: 40px 0 0 0;
}
.product_meta > span {
    display: block;
    margin-bottom: 5px;
    color: var(--title-color);
}
.product_meta > span:last-child {
    margin-bottom: 0;
}
.product_meta > span a {
    color: inherit;
}
.product_meta > span a:hover {
    color: var(--theme-color);
}
.product_meta > span > a,
.product_meta > span > span {
    position: relative;
    color: var(--body-color);
    font-weight: 400;
}
.product_meta > span > a:after,
.product_meta > span > span:after {
    content: ",";
    margin-right: 5px;
}
.product_meta > span > a:last-child:after,
.product_meta > span > span:last-child:after {
    display: none;
}
.product_meta > span > a:first-child,
.product_meta > span > span:first-child {
    margin-left: 7px;
}
.product-tab-style1 {
    border-bottom: 1px solid #e4e4e4;
    margin: 95px 0 40px 0;
}
.product-tab-style1 li {
    margin: 0 45px 0 0;
}
.product-tab-style1 li:last-child {
    margin-right: 0;
}
.product-tab-style1 a {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    line-height: 1;
    padding: 0 0 17px 0;
    text-transform: capitalize;
}
.product-tab-style1 a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    background-color: var(--theme-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.product-tab-style1 a.active:before {
    width: 100%;
}
.product-inner-list > ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.product-inner-list li {
    position: relative;
    padding-left: 15px;
}
.product-inner-list li:before {
    content: "-";
    position: absolute;
    left: 0;
}
.product-about .product-title {
    margin: 0 0 10px 0;
}
.product-about > .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 15px;
}
.product-about > .price del {
    color: var(--body-color);
    font-weight: 400;
    font-size: 0.8em;
}
.product-about .product-rating {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: 2px;
    font-size: 12px;
    line-height: 20px;
    border-left: 1px solid var(--border-color);
    padding: 0 0 0 20px;
    margin: 0 0 0 15px;
    margin-bottom: 25px;
}
.product-about .product-rating .star-rating {
    width: 80px;
    font-size: 12px;
    margin-right: 8px;
}
.product-about .actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 10px;
    margin: 33px 0 30px 0;
}
.product-about .actions .as-btn {
    padding: 17px 30px;
    height: 50px;
}
.product-about .actions .icon-btn {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.14);
}
.product-details .as-comments-wrap {
    margin-top: 0;
}
.product-details .border-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.product-details .border-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 80px;
    background-color: var(--theme-color);
}
.product-inner-title {
    font-size: 32px;
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 7px 0;
    margin: 0 0 30px 0;
}
.related-product-wrapper {
    padding-top: 115px;
}
@media (max-width: 1199px) {
    .as-sort-bar select {
        min-width: auto;
    }
}
@media (max-width: 991px) {
    .product-big-img {
        margin-bottom: 40px;
    }
    .as-product-box.list-view .product-img {
        max-width: 150px;
    }
    .as-sort-bar .row {
        --bs-gutter-x: 20px;
    }
    .as-sort-bar .nav a:last-child {
        margin-right: 0;
        padding-right: 0;
    }
    .as-sort-bar .nav a:last-child:before {
        display: none;
    }
}
@media (max-width: 767px) {
    .as-sort-bar {
        text-align: center;
    }
    .as-sort-bar .nav {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .as-sort-bar select {
        margin: 0 auto;
    }
    .as-product-box.list-view .product-img {
        max-width: 130px;
    }
    .as-product-box.list-view .actions {
        --btn-size: 30px;
        --btn-font-size: 10px;
        --icon-gap-x: 2px;
    }
}
.woocommerce-cart-form {
    text-align: center;
}
.cart_table {
    border: 1px solid #eaf0f2;
    margin-bottom: 45px;
}
.cart_table thead {
    background-color: #ecf0f1;
}
.cart_table thead th {
    border: none !important;
}
.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%;
    vertical-align: top;
    padding: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}
.cart_table td {
    border: none;
    border-bottom: 1px solid #f3f3f3;
    color: #8b8b8b;
    padding: 20px 10px;
    position: relative;
    vertical-align: middle;
}
.cart_table .product-quantity {
    color: var(--title-color);
}
.cart_table .product-quantity input {
    position: relative;
    top: -2px;
}
.cart_table .cart-productname {
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--body-color);
}
.cart_table .cart-productimage {
    display: inline-block;
    border: 2px solid var(--smoke-color);
}
.cart_table .remove {
    color: var(--theme-color);
    font-size: 18px;
}
.cart_table .quantity {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.cart_table .qut-btn {
    border: 2px solid var(--smoke-color);
    background-color: transparent;
    color: #b8c6d0;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 16px;
    border-radius: 4px;
}
.cart_table .qut-btn:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}
.cart_table .qty-input {
    vertical-align: middle;
    border: 2px solid var(--smoke-color);
    width: 70px;
    height: 30px;
    font-size: 14px;
    text-align: center;
    color: var(--title-color);
    font-weight: 700;
    margin: 0 10px;
    border-radius: 4px;
    padding: 0;
}
.cart_table .qty-input::-moz-placeholder {
    color: var(--title-color);
}
.cart_table .qty-input::-webkit-input-placeholder {
    color: var(--title-color);
}
.cart_table .qty-input:-ms-input-placeholder {
    color: var(--title-color);
}
.cart_table .qty-input::-ms-input-placeholder {
    color: var(--title-color);
}
.cart_table .qty-input::placeholder {
    color: var(--title-color);
}
.cart_table .qty-input::-webkit-outer-spin-button,
.cart_table .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart_table .qty-input[type="number"] {
    -moz-appearance: textfield;
}
.cart_table .actions {
    text-align: right;
    vertical-align: middle;
}
.cart_table .actions > .as-btn {
    font-size: 16px;
    padding: 17px 28px;
    margin-right: 15px;
}
.cart_table .actions > .as-btn:last-child {
    margin-right: 0;
}
.cart_table .as-cart-coupon {
    float: left;
    margin: 0;
    width: 455px;
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.cart_table .as-cart-coupon input {
    height: 50px;
    width: calc(100% - 200px);
    margin-right: 10px;
}
.cart_table .as-cart-coupon .as-btn {
    font-size: 16px;
    padding: 17px 22px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 9999px;
}
.cart_totals {
    border: 1px solid #ecf0f1;
}
.cart_totals th,
.cart_totals td {
    vertical-align: top;
    padding: 20px 20px;
    border: none;
    border-bottom: 1px solid #ecf0f1;
    font-size: 14px;
    color: var(--title-color);
    width: 55%;
}
.cart_totals th:first-child,
.cart_totals td:first-child {
    width: 45%;
    background-color: #f9fbfb;
    font-weight: 700;
    font-size: 14px;
    color: #333333;
}
.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(--theme-color);
}
.cart_totals .woocommerce-shipping-destination {
    margin-bottom: 10px;
}
.cart_totals .woocommerce-shipping-methods {
    margin-bottom: 0;
}
.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 .as-btn {
    padding: 5px 30px;
}
.cart_totals .amount {
    font-weight: 700;
}
.cart_totals .order-total .amount {
    color: #1abc9c;
}
@media (max-width: 991px) {
    .cart_table th {
        padding: 23px 8px;
        font-size: 14px;
    }
    .cart_table .cart-productname {
        font-size: 14px;
    }
    .cart_table .as-cart-coupon {
        width: 100%;
        margin-bottom: 20px;
    }
    .cart_table .actions {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .cart_table {
        text-align: left;
        min-width: auto;
        border-collapse: separate;
        border-spacing: 0 20px;
        border: none;
    }
    .cart_table thead {
        display: none;
    }
    .cart_table td {
        padding: 15px;
        display: block;
        width: 100%;
        padding-left: 25%;
        text-align: right;
        border: 1px solid #f3f3f3;
        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 > .as-btn {
        margin-top: 10px;
        margin-right: 0;
        display: block;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }
    .cart_table td.actions > .as-btn:last-child {
        margin-right: auto;
    }
    .cart_table .as-cart-coupon {
        width: 100%;
        text-align: center;
        float: none;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: block;
        padding-bottom: 10px;
    }
    .cart_table .as-cart-coupon input {
        width: 100%;
        margin-bottom: 10px;
    }
    .cart_totals th,
    .cart_totals td {
        padding: 15px 10px;
    }
    .cart_totals th:first-child,
    .cart_totals td:first-child {
        width: 17%;
        line-height: 1.4;
    }
}
.woocommerce-checkout .form-group,
.woocommerce-checkout .form-row {
    margin-bottom: var(--bs-gutter-x);
}
.woocommerce-checkout .form-select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .form-control {
    margin-bottom: 0;
}
.woocommerce-checkout .select2-container--open .select2-dropdown--below {
    margin-top: -35px;
}
.woocommerce-checkout .select2-container--open .select2-dropdown--above {
    position: relative;
    bottom: -30px;
}
.woocommerce-checkout .select2-dropdown {
    border: 1px solid #e3e6e9;
    border-top: none;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .form-control:focus {
    color: var(--body-color);
}
.select2-container--default .select2-selection--single {
    height: 60px;
    border: 1px solid #e3e6e9;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 60px;
    padding-left: 30px;
    padding-right: 25px;
}
.woocommerce-billing-fields .form-row {
    margin-bottom: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: "\f107";
    font-family: var(--icon-font);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin: 0;
    border: none;
    top: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 60px;
    line-height: 60px;
    margin-right: 18px;
}
span.select2-selection.select2-selection--single:focus {
    outline: none;
}
.shipping-calculator-form .form-select,
.shipping-calculator-form .form-control {
    height: 40px;
    padding-left: 15px;
    font-size: 16px;
    border-radius: 0;
    background-position: right 13px center;
    font-size: 14px;
}
.shipping-calculator-form .as-btn {
    font-size: 14px;
    padding: 0 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 40px;
}
.checkout-ordertable th,
.checkout-ordertable td {
    border: none;
    vertical-align: top;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
}
.checkout-ordertable ul {
    margin: 0;
    padding: 0;
}
.checkout-ordertable .order-total .amount {
    color: var(--theme-color2);
}
.checkout-ordertable input[type="hidden"] ~ label {
    color: var(--theme-color);
}
.woocommerce-checkout .form-group input:not(:last-child) {
    margin-bottom: var(--bs-gutter-x);
}
.checkout-ordertable th,
.checkout-ordertable td {
    border: 1px solid #ededed;
    text-align: right;
    padding: 5px 20px;
}
.checkout-ordertable th {
    text-align: left;
}
.woocommerce-checkout-payment {
    text-align: left;
}
.woocommerce-checkout-payment ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.woocommerce-checkout-payment ul li {
    padding-top: 10px;
    border-bottom: 1px solid #d8d8d8;
    border-radius: 4px;
    font-size: 16px;
}
.woocommerce-checkout-payment ul input[type="radio"] ~ label {
    margin-bottom: 15px;
    color: var(--body-color);
}
.woocommerce-checkout-payment ul input[type="radio"] ~ label img {
    margin-bottom: -2px;
    margin-left: 10px;
}
.woocommerce-checkout-payment .place-order {
    padding-top: 30px;
}
.woocommerce-checkout-payment .payment_box {
    color: #a1b1bc;
    background-color: #ecf0f1;
    border: 1px solid #d8d8d8;
    border-bottom: none;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 4px;
    display: none;
}
.woocommerce-checkout-payment .payment_box p {
    margin: 0;
}
.as-checkout-wrapper form.woocommerce-form {
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    tfoot.checkout-ordertable th {
        display: none;
    }
    .woocommerce-checkout-payment ul input[type="radio"] ~ label img {
        max-width: 150px;
    }
    .checkout-ordertable th,
    .checkout-ordertable td {
        padding: 5px 20px 5px 60px;
    }
}
.tinv-wishlist input[type="checkbox"] {
    display: inline-block;
    opacity: 1;
    visibility: visible;
    vertical-align: middle;
    width: auto;
    height: auto;
}
.tinv-wishlist .tinv-header {
    margin-top: -0.8rem;
}
.tinv-wishlist .cart-empty {
    padding: 12px 25px;
    background-color: #eee;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
}
.tinv-wishlist p.return-to-shop .button {
    display: inline-block;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 14px;
    padding: 10px 25px;
    margin-top: 10px;
    font-weight: 700;
}
.tinv-wishlist p.return-to-shop .button:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}
.tinv-wishlist table {
    border: none;
}
.tinv-wishlist table th {
    color: var(--title-color);
}
.tinv-wishlist table td,
.tinv-wishlist table th {
    padding: 15.3px 10px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.tinv-wishlist table thead {
    background-color: var(--smoke-color);
}
.tinv-wishlist .product-cb,
.tinv-wishlist .product-remove {
    width: 40px;
    text-align: center;
}
.tinv-wishlist .product-thumbnail {
    width: 110px;
}
.tinv-wishlist .product-thumbnail img {
    border-radius: 5px;
}
.tinv-wishlist .stock.in-stock {
    margin-bottom: 0;
}
.tinv-wishlist ins {
    text-decoration: none;
}
.tinv-wishlist .product-remove button {
    border: none;
    height: 22px;
    width: 22px;
    text-align: center;
    font-size: 12px;
    line-height: 22px;
    border-radius: 4px;
    padding-top: 0;
}
.tinv-wishlist .product-remove button i {
    line-height: 22px;
    font-size: 14px;
}
.tinv-wishlist .tinvwl-mobile {
    display: none;
}
.tinv-wishlist .social-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 295px;
    margin-left: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.tinv-wishlist .social-buttons ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
}
.tinv-wishlist table.tinvwl-table-manage-list {
    font-size: 16px;
}
.tinv-wishlist .product-stock .stock {
    display: block;
}
.tinv-wishlist .product-stock span {
    display: inline;
}
.tinv-wishlist .product-stock i {
    margin-right: 5px;
}
.tinv-wishlist .tinv-modal .icon_big_times {
    margin-bottom: 5px;
    color: var(--theme-color);
}
.tinv-wishlist button.button {
    border: none;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--theme-color);
    color: #fff;
    padding: 1px 15px;
    min-width: 140px;
}
.tinv-wishlist button.button.mask-btn {
    padding: 0;
}
.tinv-wishlist button.button .btn-text-mask {
    padding: 0.5px 21px;
}
.tinv-wishlist button.button:hover {
    background-color: var(--title-color);
    color: #fff;
}
.tinv-wishlist button.button i {
    font-size: 13px !important;
    margin-right: 3px !important;
}
.tinv-wishlist th,
.tinv-wishlist td.product-name {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--title-font);
}
.tinv-wishlist td.product-name a {
    color: var(--body-color);
}
.tinv-wishlist td.product-name a:hover {
    color: var(--theme-color);
}
.tinv-wishlist td.product-price del {
    margin-left: 8px;
    font-size: 0.9em;
}
.tinv-wishlist .social-buttons > span {
    font-weight: 700;
    margin-right: 10px;
    font-family: var(--title-font);
    color: var(--title-color);
}
.tinv-wishlist .social-buttons li {
    display: inline-block;
    margin-right: 0;
}
.tinv-wishlist .social-buttons li a.social {
    background-color: var(--theme-color);
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    margin-left: 3px;
}
.tinv-wishlist .social-buttons li a.social:first-child {
    margin-left: 0;
}
.tinv-wishlist .social-buttons li a.social i {
    line-height: inherit;
}
.tinv-wishlist .social-buttons li a.social:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}
@media (max-width: 991px) {
    .tinvwl-full {
        display: none;
    }
    .tinv-wishlist .tinvwl-mobile {
        display: block;
    }
    .tinv-wishlist .product-stock .tinvwl-txt {
        display: none;
    }
    .tinv-wishlist .product-action .tinvwl-txt {
        display: none;
    }
    .tinv-wishlist button.button {
        min-width: auto;
    }
    .product-stock {
        width: 40px;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .tinv-wishlist table {
        table-layout: fixed;
        border-bottom: 1px solid var(--border-color);
    }
    .tinv-wishlist .product-action .tinvwl-txt {
        display: inline-block;
    }
    .tinv-wishlist button.button {
        min-width: 140px;
    }
    .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove,
    .tinv-wishlist table.tinvwl-table-manage-list thead th:not(.product-name) {
        display: none;
    }
    .tinv-wishlist table td,
    .tinv-wishlist table th {
        border: 1px solid var(--border-color);
    }
    .tinv-wishlist table.tinvwl-table-manage-list tbody td {
        display: block;
        width: 100% !important;
        text-align: center;
    }
    .product-name {
        text-align: center;
    }
    .tinv-wishlist table td,
    .tinv-wishlist table th {
        border-bottom: none;
    }
    .tinv-wishlist table tfoot {
        border-bottom: 1px solid var(--border-color);
    }
    .tinv-wishlist .social-buttons {
        max-width: 100%;
        margin-left: unset;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .tinv-wishlist .social-buttons ul {
        margin-left: unset;
        margin-top: 5px;
    }
    .tinvwl-txt {
        display: inline-block;
    }
}
.available-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.available-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 32px;
}
.available-list li:last-child {
    margin-bottom: 0;
}
.available-list li:after {
    content: "\f00c";
    font-family: var(--icon-font);
    font-weight: 300;
    color: var(--theme-color2);
    font-size: 1.25em;
    vertical-align: text-top;
    position: absolute;
    top: 0;
    left: 0;
}
.available-list li.unavailable {
    color: #ccc;
}
.available-list li.unavailable:after {
    content: "\f00d";
    color: inherit;
}
.price-card {
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 5px;
    margin-bottom: 30px;
}
.price-card__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}
.price-card__title {
    font-size: 30px;
    padding: 0 16px 0 0;
    border-bottom: 2px solid var(--theme-color2);
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}
.price-card__price {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 0;
    font-family: var(--title-font);
}
.price-card__text {
    padding-bottom: 25px;
    margin-bottom: 28px;
    border-bottom: 1px dashed #ccc;
}
.price-card__content {
    position: relative;
}
.price-card .pricing-img {
    position: absolute;
    top: 0;
    right: -10px;
    max-width: 60%;
}
.price-card .available-list {
    margin-bottom: 30px;
}
@media (max-width: 1299px) {
    .price-card {
        padding: 45px 30px;
    }
}
@media (max-width: 991px) {
    .price-card .pricing-img {
        max-width: 40%;
    }
}
@media (max-width: 380px) {
    .price-card {
        padding: 40px 20px;
    }
    .price-card .pricing-img {
        display: none;
    }
}
.counter-card {
    text-align: center;
    padding: 100px 0;
}
.counter-card-area {
    border-radius: 20px;
}
.counter-card-wrap {
    border-right: 1px solid;
    border-color: var(--smoke-color) !important;
}
.counter-card-wrap:last-child {
    border-right: 0;
}
.counter-card_number {
    color: var(--white-color);
    margin-bottom: 6px;
    margin-top: -0.1em;
    font-weight: 700;
}
.counter-card_text {
    color: var(--white-color);
    display: block;
    margin-bottom: -0.2em;
    font-size: 24px;
}
.counter-card_text strong {
    font-weight: 600;
}
@media (max-width: 1199px) {
    .counter-card {
        padding: 60px 0;
    }
    .counter-card-wrap:nth-child(1),
    .counter-card-wrap:nth-child(2) {
        border-bottom: 1px solid;
    }
    .counter-card-wrap:nth-child(2) {
        border-right: 0;
    }
    .counter-card_text {
        font-size: 20px;
        margin-bottom: -0.3em;
    }
}
@media (max-width: 767px) {
    .counter-card {
        padding: 40px 0;
    }
    .counter-card_number {
        margin-bottom: 0;
    }
    .counter-card_text {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .counter-card-wrap {
        border-right: 0 !important;
    }
    .counter-card-wrap:nth-child(3) {
        border-bottom: 1px solid;
    }
}
.blog-style1 {
    padding-bottom: 13px;
}
.blog-style1 .as-box__meta {
    padding-top: 0;
}
.blog-style1 .as-box__meta a,
.blog-style1 .as-box__meta span {
    font-size: 14px;
}
.blog-style1 .as-box__title {
    margin: 0 0 8px 0;
}
.blog-block {
    --theme-color: #0AA0DB;
    background: var(--white-color);
    box-shadow: 4px 7px 20px rgba(234, 237, 242, 0.7);
    border-radius: 10px;
    padding: 30px;
    overflow: hidden;
}
.blog-block .blog-img {
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}
.blog-block .blog-img img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.blog-block .blog-title {
    font-size: 24px;
    margin-top: -0.28em;
    line-height: 1.417;
    font-weight: 700;
    margin-bottom: 12px;
}
.blog-block .blog-meta {
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eff1f5;
    position: relative;
}
.blog-block .blog-meta:after {
    content: "";
    height: 1px;
    width: calc(100% + 60px);
    position: absolute;
    left: -30px;
    bottom: -1px;
    background-color: #eff1f5;
}
.blog-block .blog-meta a,
.blog-block .blog-meta span {
    margin-right: 25px;
}
.blog-block .blog-meta a:last-child,
.blog-block .blog-meta span:last-child {
    margin-right: 0;
}
.blog-block .blog-meta a:after,
.blog-block .blog-meta span:after {
    display: none;
}
.blog-block .blog-meta a i,
.blog-block .blog-meta span i {
    color: var(--body-color);
}
.blog-block .blog-meta a:hover i,
.blog-block .blog-meta span:hover i {
    color: var(--theme-color);
}
.blog-block .link-btn {
    margin-bottom: -0.7em;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.blog-block:hover .blog-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
@media (max-width: 991px) {
    .blog-block {
        padding: 20px 20px 30px 20px;
    }
}
@media (max-width: 767px) {
    .blog-block {
        padding: 30px;
    }
}
@media (max-width: 575px) {
    .blog-block {
        padding: 20px 20px 30px 20px;
    }
    .blog-block .blog-title {
        font-size: 22px;
    }
}
@media (max-width: 380px) {
    .blog-block .blog-img {
        margin-bottom: 20px;
    }
    .blog-block .blog-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .blog-block .blog-meta {
        padding-bottom: 15px;
        margin-bottom: 17px;
    }
    .blog-block .blog-meta a,
    .blog-block .blog-meta span {
        font-size: 14px;
        margin-right: 14px;
    }
    .blog-block .blog-meta a i,
    .blog-block .blog-meta span i {
        margin-right: 5px;
    }
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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-40 {
    margin-bottom: 40px;
}
@media (min-width: 1399px) {
    .me-xxl-n2 {
        margin-right: -0.5rem;
    }
}
.space,
.space-top {
    padding-top: var(--section-space);
}
.space,
.space-bottom {
    padding-bottom: var(--section-space);
}
.space-extra,
.space-extra-top {
    padding-top: calc(var(--section-space) - 30px);
}
.space-extra,
.space-extra-bottom {
    padding-bottom: calc(var(--section-space) - 30px);
}
@media (max-width: 991px) {
    .space,
    .space-top {
        padding-top: var(--section-space-mobile);
    }
    .space,
    .space-bottom {
        padding-bottom: var(--section-space-mobile);
    }
    .space-extra,
    .space-extra-top {
        padding-top: calc(var(--section-space-mobile) - 30px);
    }
    .space-extra,
    .space-extra-bottom {
        padding-bottom: calc(var(--section-space-mobile) - 30px);
    }
    .space-top-md-none {
        padding-top: 0;
    }
}
