.fz-10 {
    font-size: 10px !important;
}

.fz-12 {
    font-size: 12px !important;
}

.fz-14 {
    font-size: 14px !important;
}

.menu-soild>*+*::before {
    content: "|";
    display: inline-block;
    margin: 0 14px;
}

.wordpress-pagination ul li a:hover,
.scale-hover img {
    transition: 0.4s ease-out 0s;
}

.ws-sgct blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #eb2b2d;
}

.ws-sgct blockquote p {
    margin: 0 !important;
}

.ws-sgct code {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.ws-sgct {
    font-size: 16px;
    line-height: 1.5;
}

.ws-sgct p {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .ws-sgct {
        font-size: 16px;
    }
}

.ws-sgct img {
    margin-bottom: 16px;
}

.ws-sgct table {
    margin: 0 0 15px;
    line-height: 2;
}

.ws-sgct table {
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

.ws-sgct table>tbody>tr>td,
.ws-sgct table>tbody>tr>th,
.ws-sgct table>tfoot>tr>td,
.ws-sgct table>tfoot>tr>th,
.ws-sgct table>thead>tr>td,
.ws-sgct table>thead>tr>th {
    border: 1px solid #ddd;
    padding: 7px 10px;
}

.ws-sgct h6 {
    font-size: 16px;
    font-weight: 700;
}

.ws-sgct h5 {
    font-size: 18px;
    font-weight: 700;
}

.ws-sgct h4 {
    font-size: 20px;
    font-weight: 700;
}

.ws-sgct h3 {
    font-size: 22px;
    font-weight: 700;
}

.ws-sgct h2 {
    font-size: 25px;
    font-weight: 700;
}

.ws-sgct ul,
.ws-sgct ol {
    margin: 0 0 20px;
    padding-left: 30px;
}

.ws-sgct ul li,
.ws-sgct ol li {
    line-height: 1.5;
    margin-bottom: 8px;
}

.ws-sgct ol {
    list-style: decimal;
}

.ws-sgct ul {
    list-style: disc;
}

.ws-sgct iframe {
    margin: auto;
}

.ws-sgct .syntaxhighlighter {
    padding: 10px 0;
}

.ws-sgct h2,
.ws-sgct h3,
.ws-sgct h4,
.ws-sgct h5,
.ws-sgct h6 {
    margin: 0 0 16px;
}

.menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    max-width: 320px;
    background-color: var(--bs-primary);
    z-index: 9999;
    transform: translateX(-100%);
    transition: 0.5s;
    padding-bottom: 50px;
}

.menu-mobile>ul {
    list-style: none;
    overflow-y: auto;
    height: calc(100vh - 85px);
}

.menu-mobile>ul li {
    position: relative;
    border-bottom: 1px solid rgba(255, 239, 239, 0.2901960784);
}

.menu-mobile>ul li a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    padding: 15px 10px;
}

.menu-mobile>ul li .li-plus {
    position: absolute;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: block;
    top: 0;
    right: 0;
    color: #fff;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.menu-mobile>ul li .li-plus:before,
.menu-mobile>ul li .li-plus:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: #fff;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -moz-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    -o-transform: translate(-50%, -50%) rotate(-90deg);
}

.menu-mobile>ul li .li-plus:before {
    width: 11px;
    height: 1px;
}

.menu-mobile>ul li .li-plus:after {
    width: 1px;
    height: 11px;
}

.menu-mobile>ul li .clicked {
    transform: rotate(180deg);
}

.menu-mobile>ul li .clicked.li-plus:before {
    display: none;
}

.menu-mobile>ul li>ul {
    margin-top: 0;
    display: none;
}

.menu-mobile>ul li>ul li {
    border: none;
}

.menu-mobile>ul li>ul li a {
    padding-left: 25px;
}

.menu-mobile>ul .current-menu-item a {
    color: var(--bs-primary) !important;
    background: #fff;
}

.menu-mobile>ul .current-menu-item ul a {
    color: #fff;
}

.menu-mobile>ul .current-menu-parent ul {
    display: block;
}

.menu-mobile .menu-mobile-close {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    top: 0;
    right: 0px;
}

.menu-mobile .menu-mobile-close svg {
    color: #fff;
}

.menu-mobile .menu-mobile-close svg path {
    fill: #fff;
    stroke: #fff;
}

.menu-mobile.menu-mobile-active {
    transform: translate(0);
}

.overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.overlay.overlay-active {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 3rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bs-primary);
    cursor: pointer;
    z-index: 9999;
}

.swal2-html-container {
    font-size: 16px;
}

.c-img {
    position: relative;
    width: 100%;
    display: block;
    padding-top: 70%;
}

.c-img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.scale-hover {
    display: block;
    overflow: hidden;
    width: 100%;
}

.scale-hover:hover>img {
    transform: scale(1.09);
}

.wordpress-pagination {
    justify-content: center;
    margin: 5rem 0 3rem 0;
}

.wordpress-pagination ul {
    display: flex;
    justify-content: center;
}

.wordpress-pagination ul li.active a {
    background: linear-gradient(to right, #2180b1 30%, var(--bs-primary) 100%);
    color: #fff;
}

.wordpress-pagination ul li a {
    float: left;
    margin: 0 2.5px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    background: #f6f6f6;
    border: solid 1px #ebebeb;
    text-align: center;
    font-size: 14px;
    padding: 0;
    line-height: 50px;
    color: #282828;
    text-decoration: none;
}

.wordpress-pagination ul li a svg {
    width: 10px;
    height: 14px;
    margin-bottom: 2px;
}

.wordpress-pagination ul li a svg path {
    stroke: var(--bs-primary);
}

.wordpress-pagination ul li a:hover {
    background: var(--bs-primary);
    color: #fff;
}

.wordpress-pagination ul li a:hover svg path {
    stroke: #fff;
}

@media (min-width: 991px) {
    .col-lg-1-5 {
        width: 20% !important;
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

@media (max-width: 767px) {
    .scroll-snap {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
}

.scroll-snap .item {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

@media only screen and (max-width: 1200px) {
    html {
        font-size: 52%;
    }
}

@media (min-width: 992px) {
    .gutter-20 {
        margin-left: -20px;
        margin-right: -20px;
    }

    .gutter-20>[class*=col-] {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.gutter-15 {
    margin-left: -15px;
    margin-right: -15px;
}

@media (max-width: 991px) {
    .gutter-15 {
        margin-left: -10px;
        margin-right: -10px;
    }
}

.gutter-15>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 991px) {
    .gutter-15>[class*=col-] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.row-cop {
    margin-right: 0;
    margin-left: 0;
}

.row-cop>* {
    padding-right: 0;
    padding-left: 0;
}

@font-face {
    font-family: 'LeelawadeeUI';
    src: url('../fonts/leelauib.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    overflow: hidden;
    overflow-y: scroll;
}

body.hidden {
    overflow: hidden;
}

:root {
    --bs-primary-rgb: 35, 59, 123;
    --bs-secondary-rgb: 49, 137, 69;
    --font-2: 'LeelawadeeUI';
    --font-3: "Roboto Condensed", sans-serif;
    --shadown: 0 4px 4px 2px rgb(0 0 0 / 15%)
}

.font-3 {
    font-family: var(--font-3);
}

.font-2 {
    font-family: var(--font-2);
}

.flex-1 {
    flex: 1;
}

.filter-white {
    filter: brightness(0) invert(1);
}

.container-fluid,
.container {
    padding: 0 15px;
}

.w-50px {
    width: 50px;
}

.text-hover-primary:hover {
    color: var(--bs-primary) !important;
}

.text-hover-secondary:hover {
    color: var(--bs-secondary) !important;
}

.bg-hover-primary:hover {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
}

.bg-hover-secondary:hover {
    background-color: var(--bs-secondary) !important;
    color: #fff !important;
}

.row.list-content {
    max-width: 900px;
}

.btn-main {
    text-align: center;
    padding: 6px 20px;
    background: #318945;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
}

.text-center .btn-main {
    margin: 0 auto;
}

.btn-main:hover {
    background-color: var(--bs-primary) !important;
    color: #fff;
}

.btn-main.btn-main-primary {
    background: #f48120;
}

.form-control {
    font-size: 16px;
}

.overlay-img {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    pointer-events: none;
    z-index: 2;
}

.text-white .flickity-page-dots .dot {
    background-color: #fff;
}

.bg-gray {
    background-color: var(--bs-gray-100);
}

@media screen and (min-width: 1320px) {
    .container {
        max-width: 1300px
    }
}

@media screen and (min-width: 1200px) {
    .container-fluid {
        padding: 0 50px;
    }

    .btn-main.btn-main-large {
        padding: 10px 25px;
        min-width: 200px;
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .btn-main {
        padding: 5px 15px;
        font-size: 14px;
    }
}