/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }

    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none !important;
    }

    .mobile-footer {
        display: none !important;
    }

    .mobile-footer.visible {
        display: inline-block !important;
    }

    .footer-content {
        display: inline-block !important;
    }

    .mobile-footer .icon {
        display: none;
    }
}

@media screen and (max-width: 1139px) {
    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
    }

    header.stickable .rwdPanel {
        z-index: -1;
    }

    .rwdPanel.active {
        pointer-events: all;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }

    .rwdPanel-scrollLock body {
        position: fixed;
        width: 100%;
        overflow-y: scroll;
    }
}

/**
 * RWD MENU
 */

.rwdMenu {
    font-size: 1rem;
}

.rwdMenu ul {
    display: block;
    width: 100%;
    padding: 0;
}

.rwdMenu:not(:first-child) > ul {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu + .rwdMenu > ul {
    border-top: none;
}

.rwdMenu ul ul {
    display: none;
    box-shadow: inset 0 3px 5px -1px rgba(0, 0, 0, 0.12);
    background-color: rgba(0, 0, 0, 0.1);
}

.rwdMenu li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu li.slided {
    border-bottom: none;
}

.rwdMenu a {
    color: inherit;
}

.rwdMenu li > *:first-child {
    flex: 1 0 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 46px;
    padding: 5px var(--container-padding);
    text-align: left;
    word-break: break-word;
    color: #000;
    border: none;
}

.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}

.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: var(--color-primary);
}

.rwdMenu > ul > li > *:first-child {
    text-transform: uppercase;
}

.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

.rwdMenu > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 15px);
}

.rwdMenu > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 30px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 45px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 60px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 75px);
}

.rwdMenu li > *:first-child > .fa,
.rwdMenu li > *:first-child > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}

.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}

.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}

.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

.rwdMenu .rwdMenu-count {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 14px;
    color: #000;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rwdMenu .user-nav li + li:before {
    display: none;
}

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}

.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}

.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.rwdPanel .social-list {
    margin: 15px 0;
    text-align: center;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 15px 15px 15px 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
}

.rwdButton .animIcon {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
}

.rwdButton > * {
    transition: all 0.5s;
}

.rwdButton.rwdPanel-action-toggle.active {
    color: #fff;
    background-color: #f00;
}

.rwdButton .animIcon--close span {
    background-color: #fff;
}

.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
}

.rwdButton.active > .animIcon--close {
    opacity: 1;
}

.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
}

/* --------------- BREAKPOINTS --------------- */

@media screen and (max-width: 1880px) {
    .slide-container {
        width: 69%;
    }

}

@media screen and (max-width: 1820px) {
    .slide-container {
        width: 68.5%;
    }

}

@media screen and (max-width: 1750px) {
    .slide-container {
        width: 68%;
    }

}

@media screen and (max-width: 1720px) {
    .slide-container {
        width: 67.6%;
    }

}

@media screen and (max-width: 1700px) {
    .slide-container {

        width: 67.4%;

    }

}

@media screen and (max-width: 1600px) {
    .info-top .section-title {
        left: -17vw;
    }
}

@media screen and (max-width: 1500px) {
    #main-menu {
        margin-left: var(--space-60);
    }

    .first-col {
        width: 40%;
    }

    .second-col, .third-col, .fourth-col {
        width: 20%;
    }

    .third-col-list {
        width: 55%;

    }
}

@media screen and (max-width: 1480px) {
    .info {
        padding-top: var(--space-60);
    }

    .info-top .section-title {
        position: absolute;
        transform: unset;
        left: unset;
        right: -14vw;
        top: -24%;
    }
}

@media screen and (max-width: 1440px) {
    #main-menu ul {
        margin-right: calc(var(--space-60) * 2);
    }

    .authorities-item {
        display: inline-block;
        width: 25%;
        padding: calc(var(--space-25) - 5px) calc(var(--space-25) + 5px);
    }

    .authorities-list {
        margin: calc(-1 * (var(--space-25) - 5px)) calc(-1 * (var(--space-25) + 5px));
    }

    .reports-list {
        margin: -35px -27px;

    }

    .report {
        padding: 35px 27px;
    }
    .middle .scroll{
        margin-right: calc(var(--space-50) * 3);
    }

}

@media screen and (max-width: 1280px) {
    #main-menu {
        margin-left: 0;
    }

    #main-menu ul {
        margin-right: calc(var(--space-60) * -8px);
    }

    .third-col-list {
        width: 65%;
    }

    .authorities-item {
        width: 33.3333%;
    }

    .middle:before, .middle:after {
        height: 100px;
        width: 100px;
    }

    .news-main:before {
        width: 100px;
        height: 100px;
    }

    .info .img-text {

        font-size: calc(var(--font-36) + 20px);
        line-height: 50px;
    }

    .slide-container {
        width: 67.6%;
    }
}

@media screen and (max-width: 1139px) {
    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

    #main-menu ul {
        margin-right: 0;
    }

    .langs-menu {
        display: none !important;
    }

    .rwd-hide {
        display: none;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
    }

    .container {
        width: 100%;
    }

    .article-image {
        margin-right: 25px;
        margin-bottom: 15px;
    }

    .lang .langs-menu-short {
        display: none;
    }

    .lang .langs-menu-long {
        display: block;
    }

    .mainsearch.rwdPanel .mainsearch-search {
        background-color: #f0f;
    }

    .mainsearch.rwdPanel .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
    }

    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }

    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }

    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        flex-grow: 0;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }

    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }

    header .header-items {
        display: inline-flex;
        width: 50%;
        justify-content: flex-start;
    }

    .main-menu-button {
        margin: 0 0 0 var(--container-padding);
    }

    .header-contact {
        margin-left: var(--space-60);
    }

    header .logo a {
        height: unset;
        width: unset;
    }

    header .logo {
        width: 156px;
    }

    .header-content {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .article-image:after {
        left: calc(100% - 100px);
    }

    .article-image:before, .article-image:after {
        width: 100px;
        height: 100px;
    }

    .article-links .news-list {
        margin: -50px -20px;
    }

    .article-links .article-item {
        padding: 50px 20px;
    }

    footer li .footer-title {
        font-size: var(--font-24);
    }

    .footer-col ul li.footer-content {
        display: none;
    }

    .footer-cols {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .first-col, .second-col, .third-col, .fourth-col {
        width: 100%;
        display: block;
        text-align: center;
    }

    footer .footer-logo {
        margin: auto;
        width: 20%;
        margin-top: 20px;
    }

    .first-col ul, .second-col ul, .third-col ul {
        margin: 0;
    }

    .footer-content {
        margin-bottom: 10px;
    }

    .footer-bar-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .third-col-list {
        width: 100%;
    }

    .footer-col ul {
        display: flex;
    }

    .footer-col ul li.mobile-footer {
        border-bottom: 1px solid #FFFFFF;
        transition: background-color 500ms;
        display: flex;
        justify-content: center;
    }

    footer li .footer-title {
        padding: 15px 0;
    }

    .mobile-footer.active {
        background-color: rgba(61, 96, 160, 0.7);
    }

    .forms:before {

        width: 100px;
        height: 100px;
        margin-bottom: -100px;
    }

    .news-slider {
        margin: -50px -25px;
    }

    .article-item {
        padding: 50px 25px;
    }

    .slide-container {
        width: unset;
    }

    .slide-box {
        width: 100px;
        height: 100px;
    }

    .first-box {
        margin-left: 100px;
    }

    .scroll {
        display: none;
    }

    footer:before, footer:after {
        content: unset;
    }

    header .logo {
        margin: 5.5px 0;
    }

    .slide-nav {
        justify-content: flex-end;

    }

    .info-image .img-container:before {
        width: 100px;
        height: 100px;
    }

    .info-image .img-container:after {
        width: 100px;
        height: 100px;
    }

    .mainpage header:before {
        background: url(../images/header-bg.jpg) center center /cover;
        opacity: 1;
    }

    .mainpage header .apla, header .apla {
        opacity: 1;
    }

    .top-slider .slide {
        min-height: initial;
    }
    .section-title{
        padding-top: 0;
    }
    .info-top .section-title {
        top: -16%;
    }
}

@media screen and (max-width: 1000px) {
    .info-top .section-title {
        top: -15%;
    }

    .info-top {
        padding-top: var(--space-25);
    }

    .slide-container {
        width: 100%;
    }

    .top .section-title {:;
        font-size: calc(var(--font-36) + 15px);
        font-weight: 400;

    }

    .slide-box {
        width: 75px;
        height: 75px;
    }

    .first-box {
        margin-left: 75px;
    }
    .top .apla .column{
        border:none;
    }
}

@media screen and (max-width: 900px) {
    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .footer-bar-content > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .footer-bar-content.footer-bar-content > * {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer-bar .footer-bar-links {
        display: block;
        margin: -3px -8px;
    }

    .footer-bar .footer-bar-links:not(:last-child) {
        margin-bottom: 3px;
    }

    .footer-bar-links > li {
        margin: 3px 8px;
        line-height: 20px;
    }

    .copyright,
    .copyright-undicom {
        margin-top: 4px;
        margin-bottom: 4px;
        line-height: 20px;
    }

    .article-item {
        width: 50%;
    }

    .info-top .section-title {
        left: 0;
        top: -27%;
    }
    .info-top .section-title{
        top: -38%;
        right: -50vw;
    }
    .info-top .section-title {
        top: -20%;
        font-size: 45px;
    }
}

@media screen and (max-width: 850px) {
    .middle-content {
        flex-wrap: wrap;
    }

    .middle .text-container {
        width: 100%;
    }
    .info-top .section-title {
        top: -30%;
    }
}

@media screen and (max-width: 800px) {
    .info-top {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .info-bottom{
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }

    .info-text-container, .info-image {
        width: 100%;
    }

    .info .section-title {
        position: relative;
    }

    .info, .info-top-container, .info .section-title {
        padding-top: 0;
    }

    .info-top .info-image {
        padding-bottom: var(--space-25);
    }

    .info-image:before {
        content: unset;
    }

    .info-top-text .text {
        padding-left: 0;
    }

    .info .page-title {
        bottom: 0;
    }

    .info-text-container.info-bottom-text {
        display: inline-flex;
        flex-direction: column;
        padding-right: 0;
        align-items: center;
    }

    .info-bottom-image {
        margin-top: calc(var(--space-60) * 2 + var(--space-40) - 4px);
    }

    .info .img-text {
        left: 3%;
        width: unset;
        line-height: 60px;
    }

    .info-top .section-title {

        font-size: calc(var(--font-36) * 2 - 10px);
    }

    .top {
        margin-bottom: var(--space-60);
    }

    .info-image .img-container:before {
        width: 150px;
        height: 150px;
    }

    .info-image .img-container:after {
        width: 150px;
        height: 150px;
    }

    .info .img-text {
        width: 80%;
    }

    .middle .section-title {
        font-size: calc(var(--font-36) + 20px);
    }
}

@media screen and (max-width: 767px) {
    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .text .table-responsive-wrapper::after {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45px;
        background-size: contain;
        background-position: right 15px center;
        background-repeat: no-repeat;
        background-image: url(../images/rwd-table-hand.png);
        -webkit-animation-name: rwd-hand-move;
        animation-name: rwd-hand-move;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    .text .table-responsive {
        margin: 0;
        border: none;
    }

    .text table {
        margin: 0;
        min-width: 780px;
    }

    @keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    @-webkit-keyframes rwd-hand-move {
        0% {
            transform: translateX(-20px);
        }
        100% {
            transform: translateX(0);
        }
    }
    .form .form-element-captcha .captcha-image-wrapper {
        margin-bottom: 15px;
    }

    footer .footer-logo {

        width: 40%;

    }

    .authorities-item {
        width: 50%;
    }

    .report {
        width: 50%;
    }



    .forms .col-sm-9 {
        margin-left: unset;
        padding-right: 15px;
    }

    .slide-box {
        width: 50px;
        height: 50px;
    }

    .first-box {
        margin-left: 50px;
    }


    .nav-container{
        display: flex;
        align-items: center;
    }

    .reports-main .news-list .article-link-date {
        padding-top: var(--space-25);
    }

    .news-main .article-item {
        padding: 0px 25px;
    }
    .news-main .nav-container {
        margin-bottom: 90px;
    }
}

@media screen and (min-width: 706px) {
    footer .show-hide {
        display: block !important;
    }

}

@media screen and (max-width: 706px) {
    .article-item {
        width: 100%;
    }

    .reports-list {
        margin: -15px -27px;
    }

    .report {
        width: 100%;
        margin: 0 var(--container-padding);
        padding: 15px 27px;
    }

}

@media screen and (max-width: 639px) {
    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }

    .text table,
    .text iframe,
    .text object {
        max-width: 100%;
        max-width: 100% !important;
        width: 100%;
        width: 100% !important;
    }

    .article-image {
        margin-right: 0;
        margin-top: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 0;
    }

    .breadcrumb > li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a {
        font-size: 0;
        text-indent: -1000px; /* Apple */
    }

    .breadcrumb > li:not(:last-child) a span {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a:after {
        content: "...";
        font-size: 12px;
    }

    .breadcrumb > li + li:before {
        padding: 0 6px;
    }

    .breadcrumb > li:first-child a {
        font-size: 0 !important;
        letter-spacing: 0 !important;
    }

    .breadcrumb > li:first-child a:after {
        content: "\f015";
        display: inline-block;
        font-family: FontAwesome, sans-serif;
        font-size: 12px;
    }

    .gallery-list-item {
        width: 50%;
    }

    .article-links .article-item {
        width: 100%;
    }

    .article-links .article-item {
        padding: 20px 50px;
    }

    .article-links .news-list {
        margin: -20px -50px;
    }

    footer::before, footer::after {
        width: 100px;
        height: 100px;
    }

    footer:after {
        top: -100px;
    }

    .title-container {
        border-left: 1px solid #FFFFFF;
        padding-left: calc(var(--space-60) * 3 - 13px);
    }

    .slide-container {
        border-left: none;
        padding-left: 0;
        flex-wrap: wrap;
    }

    .slide .title-container .title, .slide .more-button {
        width: 100%;
    }

    .slide-boxes {
        padding-top: calc(var(--space-60) * 3 + var(--space-25));
    }

    .info-image .img-container:before {
        width: 100px;
        height: 100px;
    }

    .info-image .img-container:after {
        width: 100px;
        height: 100px;
    }

    .info .img-text {
        left: 3%;
        width: 50%;
        bottom: 2%;
        font-size: calc(var(--font-36));
        line-height: 40px;
    }
    .news-main:before{
        content: unset;
    }
    .news-main .nav-container {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 600px) {
    .news-main .article-item, .reports-main .article-link-desc,
    .news-main .article-item .article-link-desc,
    .reports-main .article-link-date,
    .news-main .article-link-date,
    .news-main .link-title, .reports-main .link-title,
    .news-main .news-list .more-button, .reports-main .news-list .more-button {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .news-slider {
        margin: 0;
        margin-top: 20px;
    }
}

@media screen and (max-width: 560px) {
    .text {
        word-wrap: break-word;
    }

    header .header-items {
        width: 80%;
    }

    .authorities-item {
        width: 100%;
    }

    .forms:before {
        content: unset;
    }

    .top .slide-dots {
        width: 100%;
        justify-content: center;
    }

    .top .slick-dots {
        justify-content: center;
    }

    .slide-boxes {
        padding-top: calc(var(--space-60) * 1 + var(--space-25));
    }
    .reports-main .section-title, .news-main .section-title {
        width: unset;
        text-align: left;
        margin: unset;
        margin-bottom: 10px;
    }
    .nav-container{
        flex-direction: column;


    }
}

@media screen and (max-width: 420px) {
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .article-image:after {
        left: calc(100% - 50px);
    }

    .article-image:before, .article-image:after {
        width: 50px;
        height: 50px;
    }

    .news-main:before {
        width: 50px;
        height: 50px;
    }

    footer::before, footer::after {
        width: 50px;
        height: 50px;
    }

    footer:after {
        top: -50px;
        right: 0;
    }

    .info-image .img-container:before {
        width: 50px;
        height: 50px;
    }

    .info-image .img-container:after {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 319px) {
    body {
        width: 320px;
    }
}

/* --------------- GLOBAL VARIABLES --------------- */

@media screen and (max-width: 1600px) {
    :root {
        --space-60: 55px;
        --space-50: 45px;
        --space-40: 35px;

        --font-48: 40px;
        --font-36: 32px;
        --font-30: 26px;
        --font-24: 22px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --space-60: 50px;
        --space-50: 40px;

        --font-48: 36px;

        --container-padding: 30px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --space-25: 20px;

        --font-48: 34px;
        --font-36: 28px;
        --font-30: 24px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --space-60: 40px;
        --space-50: 35px;
        --space-40: 30px;

        --font-48: 32px;

        --container-padding: 20px;
    }
}

@media screen and (max-width: 1139px) {
    :root {
        --space-60: 35px;
        --space-50: 30px;
        --space-40: 25px;
        --space-25: 15px;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --space-60: 30px;
        --space-50: 25px;
        --space-40: 20px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --container-padding: 15px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-48: 30px;
        --font-36: 24px;
        --font-30: 22px;
        --font-24: 18px;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --font-48: 24px;
        --font-36: 20px;
        --font-30: 20px;
        --font-24: 16px;
    }
}