@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important;
    }
}

/**
 * RWD PANEL
 */

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

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

@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;
    border-radius: 6px;
}

.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: 1670px) {
    .slide-text {
        padding-bottom: 170px;
    }

    .footer-right {
        width: 58%;
    }

    #main-menu ul {
        gap: var(--space-40);
    }

    #main-menu li a {
        font-size: 14px;
    }
}

@media screen and (max-width: 1600px) {
    .logo {
        width: 230px;
    }

    .top-right a.btn {
        padding: 0 12px;
    }

    .btn-lg {
        padding: 0 25px;
    }

    .bottom-item-content {
        font-size: 17px;
    }

    .slider-bottom-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .bottom-item {
        max-width: 40%;
    }

    .slide-text {
        padding-bottom: 165px;
    }

    .price-list-text {
        width: 62%;
    }

    .footer-right {
        width: 59%;
    }
}

@media screen and (max-width: 1440px) {
    .logo {
        width: 200px;
    }

    #main-menu ul {
        gap: var(--space-25);
    }

    #main-menu li a {
        font-size: 13px;
    }

    .btn-lg {
        padding: 0 22px;
    }

    .service-item {
        padding: 20px;
    }

    .slider-bottom-wrapper {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .slide-text {
        padding-bottom: 160px;
    }

    .price-list-text {
        width: 63%;
    }

    .footer-right {
        width: 60%;
    }
}

@media screen and (max-width: 1366px) {
    .btn-lg {
        padding: 0 20px;
    }

    .slider-bottom-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .bottom-item-content {
        font-size: 16px;
    }

    .slide-text {
        padding-bottom: 155px;
    }

    .services-box-title {
        max-width: 68%;
    }

    .info-text {
        width: 55.5%;
        padding-right: 0;
    }

    .bottom-item {
        max-width: 34%;
    }

    .price-list-text {
        width: 64%;
    }

    .footer-right {
        width: 61%;
    }

    footer .bottom-item-content {
        font-size: 16px;
    }

    footer .bottom-item-header {
        font-size: 14px;
    }

    .bottom-item-footer {
        font-size: 14px;
    }

    .contact-link {
        min-height: 1px;
        padding: 20px;
    }

    .contact-link .btn-icon {
        width: 20px;
        height: 20px;
        margin-right: 17px;
    }

    .contact-link a {
        white-space: nowrap;
    }
}

@media screen and (max-width: 1280px) {
    #main-menu li a {
        font-size: 12px;
    }

    .top-right a.btn {
        font-size: 13px;
        height: 42px;
        line-height: 40px;
        padding: 0 10px;
    }

    #main-menu ul {
        gap: 15px;
    }

    .service-item {
        width: 25%;
    }

    .btn-lg {
        padding: 0 17px;
    }

    .slider-bottom-wrapper {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .slide-text {
        padding-bottom: 150px;
    }

    .price-list-text {
        width: 65%;
    }

    .footer-right {
        width: 62%;
    }

    .contact-list {
        margin: -10px;
    }

    .contact-link-wrapper {
        padding: 10px;
    }
}

@media screen and (max-width: 1200px) {
    .btn-lg {
        padding: 0 15px;
    }

    .slider-bottom-wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .bottom-item-content {
        font-size: 15px;
    }

    .slide-text {
        padding-bottom: 130px;
    }

    .services-box-title {
        max-width: 72%;
    }

    .price-list-text {
        width: 66%;
    }

    .footer-right {
        width: 63%;
    }

    .contact-list {
        margin: -5px;
    }

    .contact-link-wrapper {
        padding: 5px;
    }
}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
    }

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

@media screen and (max-width: 1139px) {
    .logo {
        flex-shrink: unset;
    }

    .footer-bar-content {
        gap: 10px;
        flex-direction: column;
    }

    .footer-bar-left {
        justify-content: center;

    }

    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

    .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 {
        background: var(--color-secondary);
    }

    .top {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #content, .subpage #content {
        padding-top: 78px;
    }

    .services-box-title {
        max-width: 100%;
    }

    .slider-bottom-wrapper {
        position: relative;
    }

    .slide-text {
        padding-bottom: 35px;
    }
}

@media screen and (max-width: 1060px) {
    .bottom-item {
        max-width: none;
        width: 33.33%;
    }

    .slider-bottom {
        flex-wrap: wrap;
    }

    .bottom-item:last-child {
        width: 100%;
        margin-top: 20px;
    }
	
	.contact-row:nth-child(2) .bottom-item {
    width: 50%;
}

.contact-row:nth-child(2) {
    flex-wrap: wrap;
}
}

@media screen and (max-width: 960px) {
    .service-item {
        width: 33.33%;

    }

    .service-text {
        font-size: 14px;
    }

    .footer-boxes {
        flex-wrap: wrap;
    }

    .footer-left {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-left .footer-box {
        display: flex;
        align-items: center;
    }

    img.logo-min {
        max-width: 30%;
        margin-right: 30px;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 900px) {
    .footer-bar-left {
        display: inline-block;
        text-align: center;
    }

    .footer-bar-links:has(li) + .copyright:before {
        display: none;
    }

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

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

    .about-box {
        flex-wrap: wrap;
    }

    .about-text {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-photo {
        width: 100%;
    }

    .info-box {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .info-photo {
        width: 100%;
        max-width: 644px;
        margin: 0 auto;
    }

    .info-text {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-box-title {
        padding-right: 0;
        font-size: 10vw;
    }

    .footer-bar-links {
        margin-right: 0;
    }
    .title1 {
        font-size: 3vw;
    }

    .title2 {
        font-size: 5vw;
    }

    .contact-link-wrapper {
        width: 50%;
    }

    .subpage .about-photo {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .subpage .about-text {
        width: 100%;
    }

    .subpage .about-box {
        flex-direction: column-reverse;
    }

    .about-grid {
        flex-wrap: wrap;
    }

    .grid-text {
        width: 100%;
        margin-bottom: 30px;
    }

    .grid-photo {
        width: 100%;
        max-width: 694px;
        margin: 0 auto;
    }
	
	.about-photo-wrapper {
    width: 100%;
    position: relative;
}
}

@media screen and (max-width: 767px) {
    .service-item {
        width: 50%;
    }

    .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;
    }

    .about-box-title {
        padding-right: 0;
        font-size: 11vw;
    }

    .text.txt {
        font-size: 14px;
        line-height: 28px;
    }

    .contact-link {
        font-size: 15px;
    }
	
	.top-right .btn {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
}

.controls.captcha-container {
    width: 100%;
}

.col-xs-12.col-sm-6 {
    width: 50%;
}
}

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

}

@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;
    }

    .about-box-title {
        padding-right: 0;
        font-size: 12vw;
    }

    .price-list-item {
        flex-wrap: wrap;
    }

    .price-list-photo-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .price-list-text {
        width: 100%;
    }

    .footer-left .footer-box {
        flex-wrap: wrap;
    }

    img.logo-min {
        margin-bottom: 20px;
    }

    .footer-box .text.txt {
        font-size: 16px;
        line-height: 28px;
    }

    footer .bottom-item {
        max-width: none;
        min-width: 50%;
    }

    .contact-row {
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    footer .bottom-icon {
        width: 20px;
        height: 20px;
    }

    .bottom-icon {
        width: 19px;
        height: 19px;
        margin-right: 7px;
    }

    .bottom-item-header {
        font-size: 14px;
    }

    .bottom-item-content {
        font-size: 14px;
    }

    .contact-link {
        font-size: 14px;
    }
	
	.price-list-text .text.txt h2 {
    margin-bottom: 20px;
}
.price-list-box {
    padding-top: 0;
}
}

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

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

    .service-text-inner {
        flex-wrap: wrap;
    }

    .service-text-left {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .about-box-title {
        padding-right: 0;
        font-size: 13vw;
    }

    .bottom-item:first-child {
        width: 100%;
        margin-bottom: 20px;
    }

    .bottom-item {
        max-width: none;
        width: auto;
    }

    .slide-text {
        padding-bottom: 20px;
    }

    .title1 {
        font-size: 4vw;
        margin-bottom: -4px;
    }

    .title2 {
        font-size: 6vw;
    }

    .contact-link-wrapper {
        width: 100%;
    }

    .contact-box-container  .intro-text .text.txt, .intro-text .text.txt {
        font-size: 16px;
        line-height: 26px;
    }
	
	.slider-bottom-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
}

.slider-bottom {
    padding-left: 0;
    padding-right: 0;
}

    .bottom-item:last-child {
        width: 100%;
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .top-right a.btn {
        font-size: 12px;
        padding: 0 5px;
        height: 40px;
        line-height: 38px;
    }

    .service-item {
        width: 100%;
    }

    .modal-footer > .btn {
        width: 100%;
    }

    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }

    .about-box-title {
        padding-right: 0;
        font-size: 14vw;
    }
	
	.services-box-container {
    padding-bottom: 0;
}

.mainpage .service-item:last-child:before {
    display: none;
}

.mainpage .service-item:last-child .service-text {
    margin-top: 15px;
    margin-bottom: 15px;
}


.mainpage .service-item:last-child .service-text-left {
    margin-bottom: 20px;
}
}

@media screen and (max-width: 424px) {
    .slider-bottom {
        gap: 10px;
    }

    .slider-bottom .bottom-item {
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
    }

    .slider-bottom .bottom-item:nth-child(2),
    .slider-bottom .bottom-item:nth-child(3) {
        width: calc(50% - 5px);
    }

    .slider-bottom-wrapper {
        padding: 10px;
    }

    .bottom-item-header {
        font-size: 13px;
    }

    .bottom-item-content {
        font-size: 12px;
    }

    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .service-item {
        width: 100%;
    }

    .about-box-title {
        padding-right: 0;
        font-size: 15vw;
    }

    img.logo-min {
        max-width: 60%;
    }
	
	    .col-xs-12.col-sm-6 {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    /*.bottom-item {*/
    /*    max-width: none;*/
    /*    width: 100%;*/
    /*    margin-bottom: 20px;*/
    /*    margin-top: 0 !important;*/
    /*}*/
	
    .contact-row:nth-child(2) .bottom-item {
        width: 100%;
    }
}

@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-40: 34px;
        --font-36: 32px;
        --font-35: 32px;
        --font-30: 26px;
        --font-26: 23px;
        --font-24: 22px;
        --font-22: 21px;
        --font-20: 19px;
        --font-19: 18px;
        --font-18: 17px;
    }
}

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

        --font-48: 36px;
        --font-40: 32px;

        --container-padding: 30px;
    }
}

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

        --font-48: 34px;
        --font-40: 31px;
        --font-36: 28px;
        --font-35: 28px;
        --font-30: 24px;
        --font-22: 20px;
        --font-20: 18px;
    }
}

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

        --font-48: 32px;
        --font-40: 28px;
        --font-26: 22px;
        --font-22: 19px;
        --font-18: 16px;

        --container-padding: 20px;
    }
}

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

        --font-48: 31px;
        --font-26: 21px;
        --font-22: 18px;
    }
}

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

        --font-26: 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-35: 24px;
        --font-30: 22px;
        --font-26: 19px;
        --font-24: 18px;
        --font-22: 17px;
        --font-20: 17px;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --font-48: 24px;
        --font-40: 21px;
        --font-36: 20px;
        --font-35: 20px;
        --font-30: 20px;
        --font-26: 17px;
        --font-24: 16px;
        --font-22: 16px;
        --font-20: 16px;
    }
}