/*General Css*/
:root {
    --main-color: rgb(255, 204, 0);
    --second-color: #282d91;

    --default-fs: 16px;
    --lg-fs: 25px;
    --md-fs: 20px;
    --sm-fs: 18px;

    --range-xxl: 50px;
    --range-xl: 40px;
    --range-lg: 30px;
    --range-md: 20px;
    --range-sm: 15px;
}

body {
    font-weight: 400;
    font-size: var(--default-fs);
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 26px;
}

h2 {
    font-size: 24px;
} 

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

a:hover {
    color: var(--main-color) !important;
    text-decoration: none;
}

a {
    color: #333;
}

.short-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-1 {
    -webkit-line-clamp: 1;
}

.clamp-2 {
    -webkit-line-clamp: 2;
}

.clamp-3 {
    -webkit-line-clamp: 3;
}

.clamp-4 {
    -webkit-line-clamp: 4;
}

.icon-input {
    font-family: "Font Awesome 5 Pro";
    /*add &#x before font unicode*/
}

.img-mw100 {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 70px;
}

.img-w100 {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.img-center {
    margin: 0 auto;
    display: block;
}

.menu-button {
    display: none;
}

.menu-button button {
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
}

.disabled {
    display: none;
}

.btn {
    background-color: transparent;
    padding: 0;
}

.btn-main {
    padding: .5em 2em;
    background-color: #f0ba18;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.btn-main:hover {
    color: #fff !important;
    background-color: var(--main-color);
}

.pd-tb-xxl {
    padding: var(--range-xxl) 0;
}

.btn-main.no-bg {
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.btn-main.btn-white {
    color: #fff;
    border-color: #fff;
}

.border-radius-30 {
    border-radius: 30px;
}

.no-bg {
    background-color: transparent;
    background-image: none;
}

.box-head {
    margin-bottom: 20px;
}

.head-title {
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--main-color);
}

.head-title.--leftline {
    position: relative;
    padding-left: 0;
}

.head-title {
    display: inline-block;
    position: relative;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 0;
    margin-bottom: 0;
}

.head-title.--sm-title {
    font-size: 22px;
}

.head-title.--sm-title:before {
    left: 0;
    width: 50px;
    transform: translateX(0);
}

.head-title.--remove-underline:before {
    display: none;
}


/*Index Css*/
.box-intro .desc {
    color: #444;
    text-align: justify;
}

.box-intro .desc ul {
    padding-left: 0;
}

.box-intro .desc ul li {
    list-style: none;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.box-intro .desc ul li i {
    color: var(--main-color);
    margin-right: 5px;
}

.box-commit {
    padding-top: 100px;
}

.commit-title {
    margin-bottom: 70px;
}

.box-commit .row > div {
    margin-bottom: 100px;
}

.commit-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.commit-item .commit-left {
    width: 65%;
    padding-right: 15px;
    position: relative;
}

.commit-item .commit-left:before {
    content: '';
    width: 250px;
    height: 250px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 25px 0px 20px -10px rgb(0 0 0 / 15%);
}

.commit-item .commit-left:after {
    content: '';
    position: absolute;
    right: -5px;
    top: calc(50% - 4px);
    width: 25px;
    height: 25px;
    background-color: #fff;
    transform: rotate(45deg) translateY(-50%);
    box-shadow: 5px -5px 10px -3px rgb(0 0 0 / 15%);
}

.commit-item .commit-left .commit__img {
    padding-bottom: 20px;
    position: relative;
}

.commit-item .commit-left .commit__content {
    position: relative;
}

.commit-item .commit-left .commit__content h5,
.commit-item .commit-left .commit__content .commit-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
    padding-right: 55px;
    font-weight: 700;
}

.commit-item .commit-left .commit__content .desc {
    padding-top: 10px;
    font-size: 16px;
    color: #666;
}

.commit-item .commit-right {
    width: 25%;
    background-color: var(--main-color);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.commit-item .commit-right .commit__number {
    font-family: "SVN-Zero";
    font-size: 30px;
    padding-right: 35px;
    color: #fff;
    line-height: 1em;
    margin-bottom: 8px;
}

.home-banner-slide .owl-nav [class*='owl-'] {
    top: 50%;
}

/*Responsive CSS*/

@media (max-width: 1199px) {
    
}

@media (max-width: 991px) {
    .commit-item .commit-right .commit__number {
        padding-right: 25px;
    }
}

@media (max-width: 767px) {
    .box-news.pd-tb-xxl,
    .box-video.pd-tb-xxl,
    .box-price.pd-tb-xxl {
        padding: 50px 0;
    }

    .box-commit .row > div:last-child {
        margin-bottom: 70px;
    }

    .box-commit {
        padding-top: 50px;
    }

    .commit-item .commit-left .commit__content .desc {
        font-size: 14px;
    }
}


.news-item {
    border-radius: 5px;
    box-shadow: 0 1px 3px rgb(1 1 1 / 30%);
    overflow: hidden;
}

.news-item:hover {
    box-shadow: 0 3px 8px rgb(0 0 0 / 30%);
}

.news-item .news__body {
    padding: 20px 15px;
}

.news-item .news__body .news-category {
    font-size: 15px;
    color: #dd292f;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.news-item .news__body .news-title {
    font-size: 20px;
    font-weight: 700;
}

.news-item .news__body .desc {
    font-size: 14px;
    margin-top: 15px;
    text-align: justify;
}

.news-item .news__body .box-button {
    display: none;
}

.news-item.--news-flex {
    display: flex;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
}

.news-item.--news-flex .news__img {
    width: 40%;
}

.news-item.--news-flex .news__body {
    width: 60%;
    padding: 10px 0 10px 20px;
}

.news-item.--news-flex .news__body .news-title {
    font-size: 20px;
}

.bg-f5f5f5 {
    background-color: #f5f5f5;
}

.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-img.--fixed {
    background-attachment: fixed;
}

.bg-img.--has-bg-cl {
    position: relative;
}

.bg-img.--has-bg-cl:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #1111119e;
    position: absolute;
    top: 0;
    left: 0;
}

.home-news .row > div {
    margin-bottom: 30px;
}

.box-news-page .page-main .row > div {
    margin-bottom: 30px;
}

.page-title,
.aside-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    margin-bottom: 1rem;
    padding-bottom: 5px;
    text-transform: uppercase;
    position: relative;
}

.page-title:before,
.aside-title:before {
    content: '';
    width: 20%;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.page-title:after,
.aside-title:after {
    content: '';
    width: 79%;
    height: 2px;
    background-color: var(--second-color);
    position: absolute;
    bottom: 0;
    right: 0;
}

.video-item img {
    max-width: 100%;
}

.video-item .video-title {
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.video-sidebar .video-item:not(:last-child) {
    margin-bottom: 20px;
}

.aside-news .aside-body .news-item {
    display: flex;
    align-items: center;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.aside-news .aside-body .news-item:not(:last-child) {
    margin-bottom: 15px;
}

.aside-news .aside-body .news-item .news__img {
    width: 30%;
}

.aside-news .aside-body .news-item .news__img:before {
    font-size: 14px;
}

.aside-news .aside-body .news-item .news__body {
    width: 70%;
    padding: 0 0 0 10px;
}

.aside-news .aside-body .news-item .news__body .news-title {
    font-size: 13px;
    font-weight: 500;
}

.aside-news .aside-body .news-item .news__body .news-title:hover {
    color: var(--second-color) !important;
}

.aside > div:not(:last-child) {
    margin-bottom: var(--range-xxl);
}

.aside-title {
    font-size: 18px;
    font-weight: 600;
}

.box-breadcrumb {
    background-color: #3333;
    font-size: 14px;
}

.box-breadcrumb a:hover {
    color: var(--second-color) !important;
}

.detail-body h1,
.detail-body h2,
.detail-body h3,
.detail-body h4,
.detail-body h5 {
    margin-top: 20px;
}

.detail-body iframe {
    display: block;
    margin: 0 auto;
}

.detail-body table {
    width: 100% !important;
    border-collapse: collapse;
}

.detail-body table tbody tr:nth-child(even) {
    background-color: #eee;
}

.detail-body table tbody tr td {
    border: solid 1px #aaa;
    padding: 5px 10px 5px 10px;
}

.detail-body h1, 
.detail-body h2, 
.detail-body h3, 
.detail-body h4, 
.detail-body h5 {
    font-weight: 700;
}

.detail-body h1 {
    font-size: 22px;
} 
.detail-body h2 {
    font-size: 21px;
}
.detail-body h3 {
    font-size: 20px;
}
.detail-body h4 {
    font-size: 19px;
}
.detail-body h5 {
    font-size: 18px;
}

.detail-body {
    text-align: justify;
    line-height: 28px;
}

.detail-body img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}

.box-related-post .row > div {
    margin-bottom: 30px;
}

.igi_news-item .news__img img {
    height: 250px;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: .3rem;
}

.box-contact-page .main .row .left .desc {
    font-size: 14px;
    font-weight: 500;
}

.box-contact-page .main .row .right .form-group {
    margin-bottom: .6rem;
}

.box-contact-page .main .row .right .form-control {
    font-size: 14px;
}

.box-contact-page .main .row .right textarea {
    height: 100px;
}

.google-map {
    line-height: 0;
}

.google-map iframe {
    width: 100%;
}

.wpcf7-spinner {
    display: none !important;
}

.btn-2 {
    padding: .5em 1em;
    background-color: var(--second-color);
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 0;
    font-weight: 600;
    border-radius: 10px;
}

.btn-2:hover {
    color: #fff !important;
    background-color: #1ba726;
}

.box-news-page .news-item .news__body .news-title,
.box-related-post .news-item .news__body .news-title {
    font-size: 18px;
}

/* Menu CSS */
.header-nav {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    position: relative;
    background: #111;
}

.header-nav-main {
    display: flex;
    padding: 5px 0;
    align-items: center;
    justify-content: space-between;
}

.header-nav-main .box-logo {
    width: 100px;
}

.header-nav-main .box-nav {
    width: calc(100% - 200px);
}

.header-nav-main .box-menu {
    display: none;
}

.main-menu {
    width: 100%;
}

.main-menu ul {
    padding: 0;
    margin: 0;
}

.main-menu ul li {
    list-style: none;
}

.main-menu > ul > li {
    display: flex;
    align-items: center;
    position: relative;
}

.main-menu ul li a {
    color: #fff;
    font-weight: 600;
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.main-menu > ul > li > a {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.main-menu > ul > li > a:before {
    content: '';
    width: 50%;
    height: 2px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--main-color);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}
.main-menu ul li a:hover:before,
.main-menu > ul > li > a.active:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
    left: 0;
    transform: translateX(0);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #111;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s linear;
    z-index: 999;
}

#mm-main-menu {
    display: none;
}
/* End Menu CSS */

/* Footer Css */

footer, footer a {
    color: white;
}

.footer-main {
    background-color: #111;
    padding: var(--range-xxl) 0;
}

.ft-head {
    padding-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.ft-head:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 50px;
    background-color: var(--main-color);
}

.ft-body {
    font-size: 12px;
}

.ft-body ul {
    padding: 0;
    margin: 0;
}

.ft-body ul li {
    list-style: none;
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.ft-body ul li:last-child {
    margin-bottom: 0;
}

.ft-body ul li i {
    padding-right: 10px;
}

.ft-body ul li a {
    display: block;
}

.ft-body p {
    margin-bottom: 5px;
}

.ft-body iframe {
    width: 100%;
}

.ft-company h5 {
    font-weight: 600;
    font-size: 14px;
}

.footer-bottom {
    padding: 20px 0;
    background-color: #111;
    border-top: 1px solid #eeeeee30;
    font-size: 12px;
    color: #999;
}

/* Owl Carousel Css */

.owl-dots {
    position: absolute;
    width: 100%;
    margin-top: 0 !important;
    bottom: 0;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--main-color);
}

.owl-theme .owl-nav [class*='owl-'] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] i {
    font-size: 40px;
    color: #666;
}

.owl-theme .owl-nav .owl-prev {
    left: 0;
}

.owl-theme .owl-nav .owl-next {
    right: 0;
}

/* Igitech Css */

.video-popup.active {
    visibility: visible;
}

.video-popup iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.igi_box_btn_video {
    position: absolute;
    top: calc(50% - 22px);
    left: calc(50% - 22px);
}

.igi_btn_video {
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
}

.igi_bg_video {
    border: 3px solid var(--main-color);
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    opacity: 100%;
}

span.igi_open_video {
    position: absolute;
    z-index: 999;
    display: inline-block;
    width: 69px;
    height: 69px;
    background: none;
    line-height: 69px;
    top: 50%;
    transform: translateY(-50%);
    left: calc(50% - 34px);
    border-radius: 50%;
}

span.igi_open_video i {
    font-size: 14px;
    color: var(--main-color);
    width: 69px;
    height: 69px;
    position: absolute;
    left: 0;
    line-height: 69px;
}

.video-popup {
    position: fixed;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    z-index: 9999999;
    overflow: auto;
    background: rgba(0, 0, 0, 0.85);
    visibility: hidden;
}

.video-wrap {
    position: absolute;
    border-radius: 5px;
    width: 900px;
    left: calc(50% - 450px);
    height: 500px;
    top: calc(50% - 250px);
}

.video-popup .igi_closed {
    position: absolute;
    right: 5px;
    top: -10px;
    font-size: 15px;
    z-index: 9999999;
    color: #ffff;
    font-weight: 600;
    width: 30px;
    height: 30px;
    text-align: center;
    background: red;
    border-radius: 50%;
    line-height: 28px;
    cursor: pointer;
}

.navigation {
    clear: both;
    text-align: center;
    margin-bottom: 30px;
}

.navigation .pages {
    margin-right: 15px;
    display: none;
}

.navigation a, .navigation span.current {
    display: inline-block;
    width: 36px;
    line-height: 34px;
    border-radius: 50%;
    text-align: center;
    margin-left: 8px;
    font-weight: 600;
    color: #333;
    background-color: #d4d4d4;
}

.navigation a:hover, .navigation span.current {
    color: #fff;
    background-color: #ddac01;
}

.fixed_right {
    position: fixed;
    bottom: 70px;
    right: 40px;
    z-index: 100;
}

#zalo_mess .play-now .ripple {
    background-position: center center;
}

#face_mess .play-now .ripple {
    background-position: bottom center;
}

#float_button, #zalo_mess, #face_mess {
    margin-top: 30px;
    position: relative;
    height: 40px;
    cursor: pointer;
}

#float_button .play-now {
    display: block;
}

.play-now {
    position: relative;
    border-radius: 50%;
    z-index: 10;
    text-align: center;
}

.play-now .ripple, .play-now .ripple:before, .play-now .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 44px;
    width: 44px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform-origin: center;
    transform-origin: center center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(80, 170, 178, .3);
    -moz-box-shadow: 0 0 0 0 rgba(80, 170, 178, .3);
    -ms-box-shadow: 0 0 0 0 rgba(80, 170, 178, .3);
    -o-box-shadow: 0 0 0 0 rgba(80, 170, 178, .3);
    box-shadow: 0 0 0 0 rgba(80, 170, 178, .3);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.play-now .ripple {
    background-image: url(../images/social_fixed.png);
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

#back-to-top {
    position: fixed;
    right: 10px;
    width: 57px;
    height: 57px;
    background: url(/wp-content/themes/igitech/resources/css/../images/top.png);
    bottom: 10px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    padding-top: 3px;
    font-size: 20px;
    opacity: .6;
    transition: all .3s ease;
    z-index: 999999999999;
}

.popupSearchBox {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    right: 0;
    bottom: 0;
}

.popupSearchBox .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.overlay-content {
    position: relative;
    top: 46%;
    width: 95%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
    max-width: 800px;
}

.popupSearchBox input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: calc(100% - 100px);
    background: white;
}

.popupSearchBox button {
    float: left;
    width: 100px;
    background: #ab1c30 !important;
    font-size: 15px;
    border: none;
    cursor: pointer;
    height: 55px;
    color: #fff;
}

/*Responsive CSS*/

@media (max-width: 1199px) {
    
}

@media (max-width: 991px) {
    :root {
        --range-xxl: 30px;
    }

    .box-nav {
        display: none;
    }

    .header-nav-main {
        justify-content: space-between;
    }

    #mm-main-menu {
        display: flex;
        z-index: 999999;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: .4s ease;
    } 

    #mm-main-menu.mm-menu_opened {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .header-nav-main .box-menu {
        display: block;
    }

    .header-nav-main .box-menu i {
        color: #fff;
    }

    .main-menu ul {
        flex-direction: column;
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        background-color: transparent;
    }

    .mm-listitem__btn {
        padding-right: 35px !important;
    }

    .mm-menu {
        background-color: transparent;
    }

    .mm-panels {
        background-color: transparent;
    }

    .mm-panel {
        background-color: #fff;
    }

    .mm-navbar__title {
        background-color: #fff;
    }

    .mm-navbar__btn {
        background-color: #fff;
    }

    .main-menu {
        width: 80%;
    }

    .mm-wrapper__blocker {
        background-color: #1111119e;
        z-index: 99999;
    }

    .head-title {
        font-size: 20px !important;
    }

    .news-item .news__body .news-title {
        font-size: 16px;
    }

    .news-item .news__body .news-category {
        margin-bottom: 5px;
    }

    .news-item .news__body .desc {
        margin-top: 5px;
    }

    .video-wrap {
        width: 100%;
        left: 0;
    }

    .igi_news-item .news__img img {
        height: 200px;
    }

    .header-nav-main .box-logo img {
        max-height: 45px;
    }
}

@media (max-width: 767px) {
    .ft-bottom-main {
        flex-direction: column;
    }

    .ft-bottom-main .ft-left {
        padding-bottom: 10px;
    }

    .header-nav-main .box-logo {
        width: 70%;
    }

    .home-news .nav-tabs .nav-item {
        margin-bottom: 5px;
    }

    .home-news .nav-tabs {
        justify-content: flex-start !important;
        align-items: flex-start;
    }

    .news-item.--news-flex .news__body .news-title {
        font-size: 16px;
    }

    .video-wrap {
        height: 250px;
    } 

    .ft-head {
        margin-bottom: 15px;
    }
}

@media (max-width: 320px) {
    
}

@media (min-width: 992px) and (max-width: 1199px) {
    
}

@media (min-width: 768px) and (max-width: 991px) {
    .video-sidebar {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .video-sidebar .video-item {
        width: calc(50% - 15px);
    }
}

@media (min-width: 1024px){
    .main-menu ul li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-menu ul li:hover > .btn-dropdown {
        color: var(--main-color);
    }

    .main-menu ul li:hover > a {
        color: var(--main-color);
    }

    .aside {
        position: sticky;
        top: 55px;
        min-height: 100vh;
        overflow: auto;
    }

    .aside::-webkit-scrollbar {
      display: none;
    }

    .aside {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }
}

@media (min-width: 1200px){
    .container {
        max-width: 1200px;
    }
}