@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*:focus,
a:focus,
a:active {
    outline: none;
    color: inherit;
    text-decoration: inherit;
}

:root {
    --light: #f9f9f9;
    --dark: #d7d7d7;
    --middark: #f4f4f4;
    --medium: #d1d1d1;
    --exlight: #f5f5f5;
    --primary: #e11f25;
    --basic: #efc239;
    --lborder: #111762;
    --radius: 20px;

    --titlefont: "Montserrat", sans-serif;
    --textfont: "Montserrat", sans-serif;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

html {
    height: 100%;
    padding-bottom: 2px;
    scroll-behavior: smooth;
}

.overflow {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 600;
    margin: 0px;
    padding: 0px;
}

a,
a span {
    text-decoration: none;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

a:hover,
a:hover span {
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}


.smooth * {
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

.smooth:hover * {
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}


body {
    background-color: #fff;
    color: #454545;
    font-size: 14px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-family: var(--textfont);
}


/* -------------- Top -------------- */

.top-wrapper {
    position: relative;
    z-index: 13;
    /* padding: 5px 0px; */
}

.top-wrapper .logo {
    margin: 3px 0;
    display: block;
}

.top-wrapper .logo img {
    max-width: 100%;
}

/* -------------- Menu -------------- */
.menu-wrapper {
    padding: 0 20px;
    width: 100%;
    display: block;
    /*background-color: var(--primary);*/
    /*background-color: #F2C14E;*/
    background: linear-gradient(85deg, #eed18c 0%, #ba7071 100%);
}

.top-upper {
    background-color: var(--primary);
    padding: 3px 3px 1px 3px;
    color: #fff;
}

.top-upper a {
    color: #fff;
    text-decoration: none;
}

.top-tab {
    padding: 8px 26px 8px 65px;
    border: 1px solid #c17579;
    border-radius: 30px;
    margin: 15px 8px;
    float: right;
}

.tab-title {
    font-weight: 600;
    font-size: 18px;
    /*color: var(--primary);*/
    color: #373634;
    line-height: 20px;
}

.top-tab a {
    text-decoration: none;
    color: #454545;
}

.top-call {
    background: url(../img/call.png) no-repeat center left;
    background-position: 13px 7px;
    /*background-color: var(--basic);*/
}

/* ====================Logo=================== */
/* =========================
   DESKTOP LOGO
========================= */

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
    gap: 18px;
}

.logo-wrapper img {
    width: 90px;
    min-width: 90px;
    max-width: 90px;
    height: auto;
    flex-shrink: 0;
}

.logo-text-content {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.logo-text-content h1,
.logo-text-content h2,
.logo-text-content h3,
.logo-text-content h4,
.logo-text-content h5,
.logo-text-content h6,
.logo-text-content p {
    margin-bottom: 0;
}

/* Phone block */
.top-call {
    white-space: nowrap;
}

/* ==================================================
   MOBILE (0 - 767px)
================================================== */
@media (max-width: 767px) {

    .logo-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .logo-wrapper img {
        width: 70px;
        min-width: 70px;
        max-width: 70px;
    }

    .logo-text-content,
    .top-call {
        text-align: center;
    }
}

.header-top-row {
    display: flex;
    align-items: center;
}

/* ==================================================
   TABLET (768px - 991px)
================================================== */
@media (min-width: 768px) and (max-width: 991px) {

    .logo-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .logo-wrapper img {
        width: 80px;
        min-width: 80px;
        max-width: 80px;
    }

    .logo-text-content,
    .top-call {
        text-align: center;
    }
}


/* ==================================================
   LAPTOP (992px - 1365px)
================================================== */
@media (min-width: 992px) and (max-width: 1365px) {

    .header-top-row .logo-col {
        width: 78%;
        flex: 0 0 78%;
        max-width: 78%;
    }

    .header-top-row .top-tab-col {
        width: 22%;
        flex: 0 0 22%;
        max-width: 22%;
        text-align: right;
    }

    .logo-wrapper {
        justify-content: flex-start;
    }
}


/* ==================================================
   DESKTOP (1366px - 1919px)
================================================== */
@media (min-width: 1366px) and (max-width: 1919px) {

    .header-top-row .logo-col {
        width: 60%;
        flex: 0 0 60%;
        max-width: 60%;
    }

    .header-top-row .top-tab-col {
        width: 40%;
        flex: 0 0 40%;
        max-width: 40%;
        text-align: right;
    }

    .logo-wrapper {
        justify-content: flex-start;
    }
}


/* ==================================================
   LARGE DESKTOP (1920px - 2559px)
================================================== */
@media (min-width: 1920px) and (max-width: 2559px) {

    .header-top-row .logo-col {
        width: 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .header-top-row .top-tab-col {
        width: 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        text-align: right;
    }

    .logo-wrapper {
        justify-content: flex-start;
    }
}

/* ====================================
   EXTRA LARGE SCREENS (2560px+)
==================================== */
@media (min-width: 2560px) {

    .header-top-row {
        display: flex;
        align-items: center;
    }

    .header-top-row .logo-col {
        width: 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .header-top-row .top-tab-col {
        width: 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        text-align: right;
    }

    .logo-wrapper {
        justify-content: flex-start;
    }
}

/* =========================
   MOBILE LOGO
========================= */

.mobile-logo-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}

.mobile-logo-img {
    max-width: 90px;
    height: auto;
}

.mobile-logo-text {
    line-height: 1.3;
}

.mobile-logo-text h1,
.mobile-logo-text h2,
.mobile-logo-text h3,
.mobile-logo-text h4,
.mobile-logo-text h5,
.mobile-logo-text h6,
.mobile-logo-text p {
    margin-bottom: 0;
}

/* Very Small Mobile */
@media (max-width: 575px) {

    .mobile-logo-img {
        max-width: 70px;
        margin-bottom: 10px;
    }

    .mobile-logo-text {
        text-align: center;
        font-size: 11px;
    }

    .mobile-logo-text h1,
    .mobile-logo-text h2,
    .mobile-logo-text h3,
    .mobile-logo-text h4,
    .mobile-logo-text h5,
    .mobile-logo-text h6 {
        font-size: 16px !important;
        line-height: 1.2;
    }
}

/* Small Tablet */
@media (min-width: 576px) and (max-width: 991px) {

    .mobile-logo-img {
        max-width: 80px;
    }

    .mobile-logo-text {
        text-align: left;
        font-size: 12px;
    }
}

/* 
.banner-wrapper {
    width: 100%;
    position: relative;
    z-index: 6
} */

.banner-wrapper {
    width: 100%;
    position: relative;
    z-index: 6;
}

.banner-slider img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* DESKTOP */
.desktop .banner-slider img {
    width: 100%;
    height: 100vh;
    /* or 700px */
    object-fit: cover;
}

/* MOBILE */
.mobile .banner-slider img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.pro-image {
    border-radius: 5px;
    width: 100%;
    border: 4px solid #a6a6a6;
    margin-bottom: 18px;
}

.feature-wrapper {
    border-radius: 12px 0px 0px 12px;
    padding: 40px 30px;
    background-color: #fff;
    position: relative;
    z-index: 8;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.feature-icon {
    text-align: center;
    margin-bottom: 7px;
}

.feature-icon img {
    max-width: 100%;
}

.feature-title {
    text-align: center;
    margin-bottom: 7px;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
}

.feature-data {
    text-align: center;
    font-size: 14px;
    margin-bottom: 12px;
}

/* -------------- Common theme -------------- */
.breadcrumb-wrapper {
    background-color: var(--exlight);
    padding: 8px 0;
}

.breadcrumb {
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 0 0px 0 !important;
}

.breadcrumb ul {
    list-style: none;
    float: left;
    margin: 0;
    padding: 0;
}

.breadcrumb ul li {
    display: inline-block;
    padding: 0 4px;
    color: #7a1616;
}

.breadcrumb ul li a {
    display: block;
    text-decoration: none;
    padding: 4px 4px;
    color: #454545;
}

.socialmedia-menu {
    margin-top: 19px;
    margin-left: 30%;
}

.socialmedia-menu ul {
    list-style: none;
    padding: 0;
    list-style: inline-block;
}

.socialmedia-menu ul li {
    display: inline-block;
}

.socialmedia-menu ul li a {
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding-top: 11px;
    width: 48px;
    height: 48px;
    display: block;
    background-color: #dc3c40;
    border-radius: 50%;
    border-bottom: 0;
}

.socialmedia-menu ul li a:hover {
    color: #fff;
    background-color: #e31e24;
}

.socialmedia-menu ul li:first-child a {
    padding-left: 0 !important;
}



.page-title {}

.page-title h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    width: 100%;
    border-bottom: 1px solid var(--medium);
    padding: 0px 0px 8px 0px;
    margin-bottom: 8px;
    display: inline-block;
}

.page-wrapper {
    padding: 40px 0;
    background-color: var(--exlight);
}


.content-wrapper {
    padding: 15px;
    margin-bottom: 18px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
    min-height: 580px;
}

.ani {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.ani:hover {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.page-title2 {}

.page-title2 h1 {
    font-weight: 900;
    color: #7a3c30;
}

.sub-title {
    font-family: "Gabarito", sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    color: #000;
}

.page-content {
    font-size: 15px;
    text-align: justify;
    margin-bottom: 20px;
}

.page-content h1 {
    color: var(--primary);
    font-size: 22px;
    margin: 12px 0 8px 0;
    padding-bottom: 5px;
    border-bottom: 1px dashed #a2a2a2;
}

.page-content h2 {
    color: var(--primary);
    font-size: 20px;
    margin: 12px 0 8px 0;
    padding-bottom: 5px;
    border-bottom: 1px dashed #a2a2a2;
}

.page-content h3 {
    color: #454545;
    font-size: 20px;
    margin: 12px 0 8px 0;
    padding-bottom: 5px;
    border-bottom: 1px dashed #a2a2a2;
}

.page-content h4 {
    color: var(--primary);
    font-size: 18px;
    margin: 12px 0 8px 0;
    padding-bottom: 5px;
}

.page-content h5 {
    color: #454545;
    font-size: 18px;
    margin: 8px 0;
    padding-bottom: 5px;
}

.page-content h5 {
    color: #454545;
    font-size: 16px;
    margin: 8px 0;
    padding-bottom: 5px;
}

.page-content ul {
    margin-top: 10px;
}

.page-content table {
    border-top: 1px solid #676767;
    border-left: 1px solid #676767;
}

.page-content table td {
    border-bottom: 1px solid #676767;
    border-right: 1px solid #676767;
    padding: 6px;
}

.responsive {
    max-width: 100%;
    height: auto;
}

.smooth {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

/* -------------- Home Page -------------- */

.home-about-wrapper {
    padding: 60px 0 40px 0;
}


.home-list {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
}

.home-list li {
    list-style: none;
    display: block;
    font-size: 18px;
    background: url(../img/li-bg.png) no-repeat left center;
    padding: 8px 0 8px 40px;
}

.home-notice-wrapper {
    /*background: url(../img/notice-bg.png) repeat-x top center #fff;*/
    background-color: #f3e1e1;
    padding: 50px 0;
}

.notice-box {
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-height: 580px;
    ;
}

.notice {
    padding: 6px 0;
    margin-bottom: 12px;
    border-bottom: 1px solid #ed5b5f;
}

.notice-text a {
    color: #373634;
}

.notice-date {
    color: #000000;
    font-size: 15px;
    display: inline-block;
    margin: 5px;
    font-weight: 500;
}

.notice-more {
    background-color: #F4EFE6;
    font-size: 12px;
    display: inline-block;
    border-radius: 8px;
    padding: 4px 8px;
    color: #000000;
}

.notice-more:hover {
    background-color: #bd9618;
    color: #fff;
}

.event-box {
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.link-box {
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.link-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.link-box ul li a {
    text-decoration: none;
    color: #454545;
    padding: 8px 0;
    margin-bottom: 0px;
    display: block;
    border-bottom: 1px solid #ccc;
}

.link-box ul li a:hover {
    text-decoration: underline;
    color: #454545;
}

.scroll-title h1 {
    color: #e11f25;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.scroll-data {
    height: 450px;
    overflow: hidden;
}

.scroll-data2 {
    height: 500px;
    overflow: hidden;
}


.home-links-wrapper {
    padding: 0 0 40px 0;
}

.icon-box {
    background-color: var(--light);
    padding: 20px 12px;
    margin: 15px 5px;
    height: 89%;
    text-align: center;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.link-icon {
    margin: 0 auto 10px auto;
    text-align: center;
    height: 100px;
    width: 100px;
    border-radius: 120px;
    background-color: #313daf;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.link-icon img {
    width: 65px;
    height: auto;
    margin-top: 18px;
}

.icon-box a {
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
}

.icon-box a .link-title {
    color: #454545;
    font-size: 16px;
    font-weight: 600;
}

.icon-box:hover a {
    transform: scale(1.2);
}

.icon-box:hover .link-icon img {
    transform: rotatey(360deg);
}

.home-message-wrapper {
    padding: 60px 0;
    background: url(../img/about-bg.jpg) no-repeat center center;
    background-attachment: fixed;
}

.msg-wrapper {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

.msg-title h1 {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.msg-wrapper a {
    text-decoration: none;
    color: #ccc;
}

.msg-wrapper a:hover {
    text-decoration: none;
    color: #fff;
}

.msg-wrapper img {
    margin-top: 6px;
}

.link-button {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 30px 6px 12px;
    text-decoration: none;
    background: url(../img/more.png) no-repeat right center;
    background-color: var(--medium);
    color: #000;
    font-size: 16px;
    margin: 6px 10px 6px 0;
}

.link-button:hover {
    background: url(../img/more-h.png) no-repeat right center;
    background-color: var(--basic);
    color: #000;
}

.link-button2 {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 30px 6px 12px;
    text-decoration: none;
    background: url(../img/more.png) no-repeat right center;
    background-color: #fff;
    color: #454545;
    font-size: 16px;
    margin: 6px 10px 6px 0;
}

.link-button2:hover {
    background: url(../img/more-h.png) no-repeat right center;
    background-color: #ca9e13;
    color: #000;
}


.home-event-wrapper {
    background-color: #fff;
    padding: 50px 0;
    background: url(../img/event-bg.jpg) no-repeat bottom right;
}

.events-wrapper {
    border-radius: 5px;
    background-color: #fff;
    padding: 8px;
    margin: 10px 0px;
    height: 93%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.events-image {
    overflow: hidden;
    margin-bottom: 8px;
}

.events-image a img {
    border-radius: 5px;
    width: 100%;
    object-fit: cover;
}

.events-title h2 {
    font-size: 14px;
    color: #454545;
    font-weight: 500;
    margin-bottom: 6px;
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.events-date {
    font-size: 14px;
    color: #a52e1c;
}

.events-read-more {
    font-size: 14px;
    color: #c90e1c;
    text-decoration: none;
}

.events-read-more:hover {
    color: #c90e1c;
    text-decoration: underline;
}

.events-wrapper:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.events-wrapper:hover .events-image img {
    transform: scale(1.2);
}

.photo-wrapper {
    background-color: #fff;
    padding: 5px;
    margin: 10px 0px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.photo-image {
    overflow: hidden;
}

.photo-image a img {
    width: 100%;
    object-fit: cover;
}

.photo-wrapper:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.photo-wrapper:hover .photo-image img {
    transform: scale(1.2);
}

.events-wrapper-s {
    background-color: #fff;
    padding: 0 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f5a6a8;
}

.events-image-s {
    overflow: hidden;
    margin-bottom: 8px;
}

.events-image-s a img {
    border-radius: 5px;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.principal-image-s {
    float: left;
    width: 220px;
    margin: 0 15px 10px 0;
}

.principal-image-s img {
    border-radius: 5px;
    width: 100%;
    height: 257px;
    object-fit: cover;
    display: block;
}

.events-title-s h2 {
    font-size: 16px;
    color: #454545;
    font-weight: 400;
    margin-bottom: 6px;
}

.events-date-s {
    font-size: 14px;
    color: var(--medium);
}

.events-read-more-s {
    font-size: 16px;
    color: #c90e1c;
    text-decoration: none;
}

.events-read-more-s:hover {
    color: #c90e1c;
    text-decoration: underline;
}

.events-wrapper-s:hover .events-image-s img {
    transform: scale(1.2);
}

.event-image {
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.event-image a img {
    width: 100%;
    margin-bottom: 10px;
}

.event-gallery {
    margin: 12px 0;
    padding: 10px;
    border: 1px solid #ccc;
    padding: 5px;
}

.event-detailed {
    padding: 10px;
}


.value-wrapper {
    background-color: #f3e1e1;
    padding: 60px 0;
}

.value-box {
    margin: 15px 0;
    text-align: center;
}

.value-number {
    color: #373634;
    font-size: 65px;
    font-weight: 300;
    width: 100%
}

.count {
    display: inline-block;
    color: #373634;
    font-size: 65px;
    font-weight: 300;
}

.value-text {
    color: #373634;
    font-size: 18px;
    width: 100%;
    text-align: center;
}

.value-number:after {
    content: '';
    border: 3px solid #87100e;
    width: 70px;
    display: block;
    margin: 10px auto 19px auto;
    border-radius: 25px;
}

/* .testimonial-wrapper {
    background: url(../img/test-bg.png) no-repeat right top #fff;
    padding: 50px 0;
} */


/* -------------- Contact us Page -------------- */
.contact_us_form fieldset {
    padding: 25px;
    border: 1px solid #107483;
    position: relative;
    width: 100%;
    float: left;
    margin: 15px 1%;
    color: #191919;
    border-radius: 10px;
}

.contact_us_form legend {
    margin-left: 0px;
    width: auto;
    color: #107483;
    padding: 0px 10px 0 10px;
    font-weight: 300;
    font-size: 25px;
    border: 0px;
}

.contact_us_form input,
.contact_us_form select {
    width: 100%;
    border-radius: 4px;
    height: 38px;
    background: transparent;
    border: 1px solid #8a8c8d;
}

.contact_us_form textarea {
    width: 100%;
    border-radius: 4px;
    height: 132px;
    background: transparent;
    border: 1px solid #8a8c8d;
}


/* -------------- Footer -------------- */

.footer-wrapper {
    padding: 50px 0;
    background-color: #6e6d6d;
}

.footer-inner-wrapper {}

.footer-title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
    padding-bottom: 6px
}

.footer-data {
    margin: 0px 0;
}

.footer-data h3 {
    font-size: 20px;
    color: #fff;
}

.footer-data a {
    color: #fff;
    text-decoration: none;
}

.footer-data p {
    color: #fff;
}

.footer-data ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.footer-data ul li {
    margin: 0px;
}

.footer-data ul li:last-child {
    border-bottom: 0px solid #454545;
}

.footer-data ul li a {
    display: block;
    padding: 7px 5px;
    color: #ececec;
    text-decoration: none;
}

.footer-data ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.subscribe-text {
    background-color: #b70f1b;
    border: 1px solid #7d0c13;
    height: 40px;
}

.subscribe-text::placeholder {
    color: #ececec;
}

.subscribe-button {
    background-color: #7d0c13;
    border: 1px solid #7d0c13;
    color: #fff;
    height: 40px;
}

.footer-menu {
    background-color: #373634;
    padding: 16px 0;
    text-align: center;
}

.footer-menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: inline-block;
    text-align: center;
}

.footer-menu ul li {
    margin: 0px;
    border-right: 1px solid #ccc;
    display: inline-block;
}

.footer-menu ul li:last-child {
    border-right: 0px solid #ccc;
}

.footer-menu ul li a {
    display: block;
    padding: 3px 8px 3px 5px;
    color: #ccc;
    text-decoration: none;
}

.footer-menu ul li a:hover {
    color: #fff;
    text-decoration: none;
}

/* -------------- Footer2 -------------- */
.footer2 {
    padding-bottom: 15px;
    background-color: #F4EFE6;
    padding: 18px 0;
}

.footer2 .copy-text {
    font-size: 15px;
    color: #4f4e4e;
}

.footer2 .wc-text a {
    font-size: 15px;
    color: #4f4e4e;
}



/* -------------- student Page -------------- */
.student-wrapper {
    margin: 20px 15px;
    background-color: #f4f4f4;
    padding: 5px;
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.student-image {
    z-index: 8;
    width: 100%;
    padding: 10px 10px 0 10px;
    text-align: center;
}

.student-wrapper:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.student-image {
    position: relative;
}

.student-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.percent {
    position: absolute;
    z-index: 8;
    background: url(../img/per.png) no-repeat left bottom;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    padding: 18px 0 0 0;
    height: 60px;
    width: 108px;
    bottom: 20px;
    left: -4px;
}

.student-title a {
    text-align: left;
    color: #d3111e;
    text-decoration: none;
    padding: 16px 0 14px 12px;
    width: 100%;
    display: block;
    z-index: 11;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.student-title a span {
    text-align: left;
    display: block;
    width: 100%;
    color: #454545;
    font-size: 13px;
}

.student-wrapper:hover .category-title a {
    color: #454545;
}

/* -------------- Product Details Page -------------- */

.prodcut-link-wrapper {
    background-color: #f2f2f2;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 10px;
    float: left;
    width: 100%;
}

.link-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fff;
    float: left;
    margin-right: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.link-image img {
    width: 80%;
    margin-top: 8%;
}

.link-name {
    color: #585858;
    font-size: 18px;
    font-weight: 500;
    float: left;
    margin-top: 3%;
}

.link-name span {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #838383;
}

.prodcut-link-wrapper:hover .link-image {
    scale: 1.4;
}

.prodcut-link-wrapper:hover .link-name {
    margin-left: 4%;
}

.product-detail-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f2f2f2;
    padding: 20px 40px 60px 20px;
    margin-right: -15px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.slider-content img {
    width: 100%;
}

.slider-thumb img {
    width: 100%;
}

.product-detail-image {
    border-radius: 20px;
    padding: 20px;
    background-color: #fff;
}

.product-detail-image a img {
    width: 100%;
}

.inqury-link {
    display: inline-block;
    padding: 12px 22px;
    text-decoration: none;
    color: #595959;
    font-weight: 500;
    background-color: #f5f5f5;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.brochure-link {
    display: inline-block;
    padding: 12px 22px;
    text-decoration: none;
    color: #595959;
    font-weight: 500;
    background-color: #fbfbfb;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.inqury-link:hover {
    color: #fff;
    background-color: #e82f35;
}

.brochure-link:hover {
    color: #fff;
    background-color: #e82f35;
}

.product-detail-data {}

.product-detail-title h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.product-bottom-title {
    position: absolute;
    font-size: 80px;
    color: #fff;
    opacity: 0.9;
    font-weight: 600;
    bottom: -37px;
    right: 0;
}

.reagents-pdf {
    text-decoration: none;
    color: #595959;
    background: url(../img/pdf.png) no-repeat left center #fff;
    background-size: 40px auto;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin: 5px 0;
    border-radius: 10px;
    padding: 15px 5px 15px 50px;
    display: block;
}

.reagents-pdf:hover {
    text-decoration: none;
    color: #fff;
    background: url(../img/pdf.png) no-repeat left center #dc151d;
    background-size: 40px auto;
}

.specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.specs-list li {
    margin: 0;
    background: url(../img/specs-list.png) no-repeat center left;
    padding: 9px 3px 9px 40px;
}

/* -------------- NEW -------------- */

/* ===================================
COMMON AUTO SCROLL
=================================== */

.auto-scroll {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.auto-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 14px;

    animation: autoVerticalScroll 10s linear infinite;
}

.auto-scroll:hover .auto-scroll-track {
    animation-play-state: paused;
}

/* COMMON ITEM */

.auto-scroll-item {
    padding-bottom: 14px;
    border-bottom: 1px solid #a2852b;
}

/* ANIMATION */

@keyframes autoVerticalScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}


/* ===================================
TOPBAR
=================================== */

.topbar {
    background: #F4EFE6;
    color: #555;
    font-size: 11px;
    padding: 5px 10px;
    overflow: hidden;
    white-space: nowrap;
}

.topbar-scroll {
    width: 100%;
    overflow: hidden;
}

.topbar-track {
    display: inline-flex;
    gap: 80px;
    animation: marqueeScroll 20s linear infinite;
}

.topbar-track span {
    font-size: 14px;
    font-weight: 500;
    color: #373634;
}

.topbar:hover .topbar-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.topbar-track {
    width: max-content;
}


/* ===================================
TESTIMONIAL SECTION
=================================== */

.testimonial-wrapper {
    padding: 60px 0;
    overflow: hidden;
    background: #fff;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    padding: 0 60px;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    width: 100%;
    padding: 10px 5px 20px;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

/* ======================
ITEM
====================== */

.testimonial-item {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);

    display: flex;
    flex-direction: column;
}

/* ======================
CARD
====================== */

.testimonial-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 24px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .06);

    transition: .35s ease;

    display: flex;
    flex-direction: column;
    flex: 1;

    min-height: 260px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stars {
    color: #ffb400;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-top i {
    color: #4285F4;
    font-size: 28px;
}

.testimonial-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin: 0 0 15px;

    word-break: break-word;
    overflow-wrap: break-word;
}

/* ======================
READ MORE
====================== */

.testimonial-card .events-read-more {
    margin-top: auto;
}

/* ======================
USER
====================== */

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 18px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;

    border-radius: 50%;
    object-fit: cover;

    border: 3px solid #f2f2f2;
    flex-shrink: 0;
}

.testimonial-user div {
    flex: 1;
    min-width: 0;
}

.testimonial-user h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #222;

    line-height: 1.4;

    word-break: break-word;
    overflow-wrap: break-word;
}

.testimonial-user span {
    font-size: 14px;
    color: #777;
}

/* ======================
ARROWS
====================== */

.testimonial-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    z-index: 10;
    cursor: pointer;

    transition: .3s ease;
}

.testimonial-arrow:hover {
    background: #000;
}

.testimonial-arrow.left {
    left: 0;
}

.testimonial-arrow.right {
    right: 0;
}

/* ===========TOP MENU ============ */

.top-menu ul li:last-child a {
    border-right: 0px;
}

.top-menu .active {
    border-color: #ffcf24;
}

.top-menu ul li ul {
    display: none;
    position: absolute;
    z-index: 30;
    background-color: #373634;
}

.top-menu ul li:hover ul {
    display: block;
}

.top-menu ul li ul li {
    width: 250px;
    display: block;
    background: none;
    text-align: left !important;
    padding: 3px 5px;
    text-align: left !important;
}

.top-menu ul li ul li a {
    font-size: 15px;
    padding: 5px 6px;
}

.top-menu ul li ul li:first-child a {
    padding: 5px 6px !important;
}

.top-menu ul li ul li ul,
.top-menu ul li:hover ul li ul {
    display: none;
    left: 251px;
    top: 0px;
    border-top: 1px solid #ccc !important;
}

.top-menu ul li:hover ul li:hover ul {
    display: block;
}


/* ===================================
TOP MENU
=================================== */

.top-menu {
    padding: 3px 0 0 0;
    z-index: 10;
    margin-left: -24px;
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 999;
}

.top-menu>ul {
    display: inline;
    margin: 0;
    padding: 0;
    list-style: none;
    /* display: flex; */
    align-items: center;
    flex-wrap: wrap;
}

.top-menu ul li {
    display: inline-block;
    margin: 0px;
    position: relative;
    color: #fff;
    float: left;
    list-style: none;
}

/* MAIN LINKS */

.top-menu>ul>li>a {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 15px 16px;

    color: #171614;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;

    text-decoration: none;
    position: relative;

    transition: .35s ease;
}

/* =========================
NORMAL DESKTOP / LAPTOP
========================= */

@media (max-width:1024px) {

    .top-menu>ul>li>a {

        gap: 3px;

        padding: 15px 10px;

        font-size: 8px;
    }

    .custom-container {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
    }

}


@media (min-width:1025px) and (max-width:1599px) {
    .top-menu>ul>li>a {

        gap: 3px;

        padding: 15px 10px;

        font-size: 12px;
    }

    .custom-container {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
    }

}

/* HOVER */

.top-menu ul li>a:hover,
.top-menu ul li>a.active {
    text-decoration: none;
    background: #F4EFE6;
    color: #373634 !important;
}

/* BOTTOM BORDER */

.top-menu ul li>a::after {
    content: "";
    position: absolute;

    left: 16px;
    bottom: 0;

    width: 0;
    height: 3px;

    /*background: var(--basic);*/
    background: #373634;

    transition: .35s ease;
}

.top-menu ul li:hover>a::after,
.top-menu ul li>a.active::after {
    width: calc(100% - 32px);
}

/* ICON */

.dropdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;

    transition: .35s ease;
}

/* ROTATE */

.top-menu>ul>li:hover>a .dropdown-icon {
    transform: rotate(180deg);
}

/* ===================================
DROPDOWN
=================================== */

.nav-dropdown {
    position: absolute;

    top: 100%;
    left: 0;

    min-width: 260px;

    background: #373634;

    padding: 8px 0;

    border-radius: 0 0 8px 8px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .35s ease;

    z-index: 999;
}

/* SHOW */

.top-menu li:hover>.nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN ITEM */

.nav-dropdown li {
    width: 100%;
}

/* DROPDOWN LINK */

.nav-dropdown li a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 12px 18px;

    color: #fff;
    font-size: 14px;

    text-decoration: none;

    transition: .35s ease;
}

/* HOVER */

.nav-dropdown li a:hover {
    background: rgba(255, 255, 255, .08);
    padding-left: 24px;
}

/* SUB MENU */

.nav-sub-dropdown {
    top: 0;
    left: 100%;
    right: auto;

    border-radius: 8px;
}

/* AUTO LEFT OPEN */

.nav-dropdown li.open-left>.nav-sub-dropdown {
    left: auto;
    right: 100%;
}

/* RIGHT ICON */

.nav-sub-dropdown .dropdown-icon {
    transform: none !important;
}

.nav-dropdown li:hover>a .fa-chevron-right {
    transform: translateX(3px);
}

/* ===================================
MOBILE HEADER
=================================== */

.mobile {
    display: none;
}



/* ===================================
MOBY MOBILE MENU
=================================== */

@media(max-width:991px) {

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .mobile .top-wrapper {
        /* padding: 10px 0; */
        background: #fff;
    }

    .mobile .logo img {
        /* max-width: 180px; */
        max-width: 100%;
    }

    /* BUTTON */

    #moby-button {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        cursor: pointer;
    }

    .menuBtn {
        width: 34px;
        height: 26px;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menuBtn span {
        width: 100%;
        height: 3px;

        background: var(--primary);

        border-radius: 20px;

        display: block;
    }

    /* MOBY */

    .moby-wrap {
        background: #fff;
    }

    .moby-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .moby-menu ul li {
        border-bottom: 1px solid #eee;
    }

    .moby-menu ul li a {

        display: block;

        padding: 14px 18px;

        color: #222;
        text-decoration: none;

        font-size: 14px;
        font-weight: 500;
    }

    .moby-menu ul li a:hover {
        background: #f7f7f7;
        color: var(--primary);
    }

    /* SUBMENU */

    .moby-menu ul ul {
        background: #f8f8f8;
    }

    .moby-menu ul ul li a {
        padding-left: 35px;
        font-size: 13px;
    }

    .moby-menu ul ul ul li a {
        padding-left: 50px;
    }

    /* CLOSE */

    .moby-close {

        padding: 16px 18px;

        font-size: 15px;
        font-weight: 600;

        color: #fff;

        background: var(--primary);

        cursor: pointer;
    }
}

/* ===================================
BACK TO TOP BUTTON
=================================== */

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: #c59d5f;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
    background: #111;
    transform: translateY(-5px);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* MOBILE */
@media(max-width:768px) {

    #backToTop {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
        font-size: 16px;
    }

}



.footer2 {
    padding: 18px 0;
}

.visitor-counter {
    display: flex;
    justify-content: center;
}

.visitor-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.3s ease;
}

.visitor-box:hover {
    transform: translateY(-2px);
}

.visitor-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.visitor-info {
    line-height: 1.2;
}

.visitor-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
}

.visitor-count {
    font-size: 18px;
    font-weight: 700;
}

.wc-text {
    display: flex;
    justify-content: flex-end;
}

.event-item {
    padding: 10px 0;
    border-bottom: 1px solid #965c30;
}

.event-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.notice-data {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.notice-data img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.event-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-title {
    font-size: 14px;
    font-weight: 600;
    color: #7a4f31;
    line-height: 1.4;
}

.event-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.event-date {
    font-size: 11px;
    color: #9d7a60;
    font-weight: 500;
}

.event-content a {
    text-decoration: none;
}

.event-item:last-child {
    border-bottom: none;
}

/* =========================
RECENT EVENTS
========================= */

.event-item {
    padding: 12px 0;
    border-bottom: 1px solid #965c30;
}

.event-item:last-child {
    border-bottom: none;
}

.event-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.event-content>a:first-child {
    flex: 1;
    min-width: 0;
}

.notice-data {
    display: flex;
    gap: 12px;
    width: 100%;
}

.notice-data img {
    width: 105px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.event-text {
    flex: 1;
    min-width: 0;
}

.event-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #7a4f31;
    line-height: 1.4;
    margin-bottom: 8px;

    white-space: normal;
    word-break: break-word;
}

.event-date {
    display: block;
    font-size: 12px;
    color: #9d7a60;
    font-weight: 600;
}

.event-file-section {
    margin: 20px 0;
}

.event-pdf-icon {
    font-size: 48px;
    color: #dc3545;
    transition: 0.3s ease;
}

.event-pdf-icon:hover {
    color: #b02a37;
    transform: scale(1.1);
}

.pdf-link {
    text-decoration: none;
}


/* ==============================
============= SIDEBAR ===========
============================== */

.sidebar-box {
    background: #faf8f6;
    border: 1px solid #e4d5c4;
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 20px;
    box-shadow: 0 3px 12px rgba(122, 79, 49, 0.08);
}

.sidebar-title {
    background: transparent;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-bottom: 3px solid #e4d5c4;
}

.sidebar-title h3 {
    /* margin: 0 0 18px; */
    color: #7a4f31;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

/* MENU RESET */

.sidebar-menu,
.sidebar-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* TOP LEVEL MENU */

.sidebar-menu>li>a {
    display: block;
    padding: 13px 18px;
    color: #7a4f31;
    text-decoration: none;
    border-bottom: 1px solid #ece2d6;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

/* TOP LEVEL HOVER */

.sidebar-menu>li>a:hover {
    background: #f1e5d8;
    color: #5f3b23;
    padding-left: 24px;
}

/* TOP LEVEL ACTIVE */

.sidebar-menu>li>a.active {
    background: #7a4f31;
    color: #fff;
    border-left: 4px solid #d9b38c;
}

/* SUB MENU */

.sidebar-submenu {
    background: #fdfbf9;
}

.sidebar-submenu li a {
    display: block;
    padding: 11px 18px 11px 35px;
    border-bottom: 1px solid #ece2d6;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

/* SUBMENU ARROW */

.sidebar-submenu li a::before {
    content: "›";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #7a4f31;
    font-weight: 700;
    font-size: 16px;
}

/* SUBMENU HOVER */

.sidebar-submenu li a:hover {
    background: #f5ebe0;
    color: #7a4f31;
    padding-left: 42px;
}

/* SUBMENU ACTIVE */

.sidebar-submenu li a.active {
    background: #ead8c5;
    color: #7a4f31;
    font-weight: 700;
    border-left: 4px solid #7a4f31;
}

/* LAST ITEM BORDER */

.sidebar-menu>li:last-child>a,
.sidebar-submenu li:last-child a {
    border-bottom: none;
}

/* OPTIONAL PARENT WITH SUBMENU */

.sidebar-menu .has-submenu>a {
    background: #f8f1ea;
    font-weight: 700;
}

/* SCROLLBAR IF MENU IS LONG */

.sidebar-box::-webkit-scrollbar {
    width: 6px;
}

.sidebar-box::-webkit-scrollbar-thumb {
    background: #c9a98a;
    border-radius: 10px;
}


.nav-dropdown.open-left {
    left: auto !important;
    right: 100% !important;
}