:root {
    --green: lawngreen;
    --danger: #E9322A;
    --border: #DFE2F7;
    --gray1: #EDEEF4;
    --gray2: #767A8A;
    --gray3: #B6B8BE;
    --gray4: #CCCEDA;
    --gray5: #edeef44d;
    /** fonts **/
    --fs-8: 0.5rem;
    --fs-12: 0.75rem;
    --fs-16: 1rem;
    --fs-24: 1.5rem;
    --fs-32: 2rem;
    --fs-40: 2.5rem;
    --heading_h1_fontsize: 1.5rem;
}
ul {
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none !important;
    position: relative;
    color: var(--black);
    transition: 0.4s;
}
a:hover, a:focus {
    outline: none;
    color: var(--color2);
}
/**    *************************************/
body {
    font-family: var(--main) !important;
    font-size: 14px;
    color: var(--black);
    line-height: 2;
}
/*main {*/
/*    margin-block: clamp(16px, 4vw, 48px);*/
/*}*/
video {
    width: 100%;
    border-radius: 1rem;
}
.L-title {
    text-align: left;
}
.R-title {
    text-align: right;
}
.C-title {
    text-align: center;
}
.s-title {
    font-family: var(--title);
    margin: 0;
    font-size: clamp(20px, 3vw, 30px);
    color: var(--black);
    line-height: 1.8;
}
.M-title {
    margin-bottom: 2rem;
}
.subtitle {
    font-family: var(--title);
    font-size: clamp(14px, 3vw, 18px);
    margin-bottom: 1rem;
    color: var(--subtitle);
}
.desc {
    margin-block: 1rem;
    font-size: 14px;
}
.sec-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-top: 12px;
}
.sec-title:before {
    content: "";
    background: var(--color1);
    width: 36px;
    height: 2px;
    top: 0;
    right: 50%;
    border-radius: 100px;
    box-shadow: 0px 0px 3px 0px #4e944f63;
    position: absolute;
    transform: translateX(50%);
}
/*.title-box {*/
/*    margin-bottom: 3.5rem;*/
/*}*/
.s-space {
    margin-block: clamp(48px, 8vw, 103px);
}
.s-space:nth-child(1) {
    margin-top: 0;
}
.s-space:nth-last-child(1) {
    margin-bottom: 0;
}
.s-padding {
    padding-block: 2.5rem;
}
.s-padding .s-title {
    color: white;
}
.s-padding .subtitle {
    color: var(--gray1);
}
.s-padding .sec-title:before {
    background: white;
}
.s-padding .btn-1 {
    background: white;
    color: black !important;
}
.s-padding .btn-1:before,
.s-padding .btn-1:after {
    border-right-color: var(--color1);
    background-color: var(--color1);
}
.position-relative {
    position: relative;
}
.text-center {
    text-align: center !important;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
/** Sidebar **/
.sidebar {
    position: sticky;
    top: 1rem;
}
.banner-item {
    display: flex;
    border-radius: 1rem;
    transition: 0.4s;
    overflow: hidden;
    margin-top: 1rem;
}
.banner-item img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    transition: 0.4s;
}
.banner-item:hover img {
    transform: scale(1.08);
}
/**/
.widget-side {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    width: 100%;
}
.widget-side span {
    display: flex;
    font-size: 14px;
    background: var(--color2);
    align-items: center;
    justify-content: center;
    min-height: 46px;
    color: var(--white);
    border-radius: 0.75rem;
}
.widget-side ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 2px;
    position: relative;
    margin-top: 1rem;
}
.widget-side ul::before {
    content: '';
    width: 4px;
    height: calc(100% - 36px);
    border-right: 1px dashed var(--border);
    position: absolute;
    top: 17px;
    bottom: 0;
    z-index: 1;
    right: 4px;
}
.widget-side a {
    transition: 0.4s;
    color: var(--black);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    padding-right: 0.85rem;
    line-height: 2.5;
    font-size: 14px;
}
.widget-side li a:before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color1);
    border-radius: 15px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 15px;
    z-index: 1;
    transition: 0.4s ease;
}
.widget-side a:hover {
    color: var(--color2);
}
@media only screen and (max-width: 768px) {
    .sidebar {
        position: initial;
    }
    .banner-item {
        margin-top: 3rem;
    }
}
/**/
.modular-content {
    border: 1px solid var(--border);
    padding: clamp(16px, 2vw, 24px);
    border-radius: 1.5rem;
}
/** Page Numbers **/
.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}
.page-numbers li a,
.page-numbers li span {
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    transition: 0.4s;
}
.page-numbers .prev,
.page-numbers .next {
    color: var(--color2);
}
.page-numbers li:hover a,
.page-numbers li .current {
    background: var(--color1);
    color: var(--white);
    transition: 0.4s;
}
/***/
.accordion-content {
    display: none;
}
.editor-content .sw {
    padding-block: 1.5rem;
    padding-bottom: 1.5rem;
}
.sw {
    position: relative;
}
.swiper-pagination {
    bottom: 0 !important;
    line-height: 1;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 0.5rem;
    transition: 0.4s;
    background: var(--color2);
}
.swiper-pagination-bullet-active {
    width: 32px;
}
.arrow-swiper {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    right: 0;
    display: flex;
    justify-content: space-between;
}
.arrow-swiper > div {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray);
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    transition: 0.4s;
    position: relative;
}
.arrow-swiper > div:hover {
    background: var(--color2);
    border-radius: 50%;
    color: var(--white);
}
.swiper-button-disabled {
    opacity: 0.5;
    cursor: unset !important;
}
@media only screen and (max-width: 768px) {
    :root {
        --heading_h1_fontsize: 1.2rem;
    }
    body {
        font-size: 14px;
    }
    .arrow-swiper {
        top: calc(100% - 3rem);
        width: 130px;
        right: 50%;
        transform: translateX(50%);
    }
    .sw-padding {
        padding-bottom: 82px;
    }
}
/** More Description **/
#more_description .main-content {
    background: var(--gray5);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
}
#more_description .main-content .s-title {
    margin: 0;
}
#more_description .main-content:before {
    content: "";
    position: absolute;
    top: 2.2rem;
    right: 0;
    width: 9px;
    height: 41px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    background-image: url('data:image/svg+xml,<svg width="9" height="41" viewBox="0 0 9 41" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 35.2585L9 6.39648H3.72414C1.66735 6.39648 0 8.06383 0 10.1206L0 31.5344C0 33.5912 1.66735 35.2585 3.72414 35.2585H9Z" fill="%23950A0E"/><path d="M3.25848 35.2585C6.3628 35.4138 8.84465 37.8956 8.99986 40.9999V35.2585H3.25848Z" fill="%23950A0E"/><path d="M3.25848 6.39648C6.3628 6.24127 8.84465 3.75942 8.99986 0.655105V6.39648H3.25848Z" fill="%23950A0E"/></svg>');
}
/** Banner **/
.item-banner {
    display: flex;
    transition: 0.4s;
    border-radius: clamp(14px, 2vw, 28px);
}
.item-banner:hover {
    transform: translateY(-10px);
    box-shadow: 0px 36px 7px -30px #767a8a70;
}
.item-banner img {
    width: 100%;
    height: auto;
}
/** CTA **/
.cta-item {
    display: flex;
}
.cta-item .cta-body {
    position: absolute;
    right: 0;
    top: 0;
    background: white;
    padding: 24px;
}
.cta-item i {
    position: absolute;
    left: 0;
    bottom: 0;
    background: white;
    width: 125px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (min-width: 768px) {
    .section-swiper .arrow-swiper,
    .woocommerce .arrow-swiper {
        width: calc(100% + 3rem);
        right: -1.5rem;
    }
}






