:root {
    --green: lawngreen;
    --danger: #E9322A;
    --border: #DFE2F7;
    --placeholder: #999DBA;
    /** 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(--color1);
    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);
}
.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(16px, 4vw, 24px);
    color: var(--black);
}
.M-title {
    margin-bottom: 2rem;
}
.sub-title {
    font-family: var(--title);
    font-size: clamp(14px, 4vw, 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: 3rem;
}
/*.title-box {*/
/*    margin-bottom: 3.5rem;*/
/*}*/
.s-space {
    margin-block: clamp(64px, 7vw, 96px);
}
.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(--color1);
    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;
    }
}
/** 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: calc(100% + 2rem);
    top: 50%;
    z-index: 1;
    right: -1rem;
    display: flex;
    justify-content: space-between;
}
.arrow-swiper > div {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: 0.4s;
}
.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% - 2rem);
        width: 6rem;
        right: 50%;
        transform: translateX(50%);
    }
    .sw {
        padding-bottom: 5rem;
    }
}
/** More Description **/
#more_description .main-content {
    background: var(--gray);
    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>');
}