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

/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    #rwd-mainmenu {
        display: none;
    }

    .rwdPanel-action-open, #rwd-langs + .rwdPanel-action-toggle {
        display: none !important;
    }
}

@media screen and (min-width: 1280px) {
    #rwd-langs,
    .lang-rwd-button {
        display: none !important;
    }


}

@media screen and (max-width: 1139px) {
}

/**
 * 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-right: auto;
    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 (min-width: 1440px) {
    .rwdPanel {
        display: none;
    }
}

@media screen and (max-width: 1440px) {
    .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;
    }

    /* header */
    #main-menu ul li a {
        font-size: 14px;
    }

    .header-inner .menu-links {
        gap: var(--space-25);
    }

    .menu-links {
        gap: calc(var(--space-40) - 10px);
    }

    .header-inner .logo {
        max-width: 75px;
    }

    .langs-menu.langs-menu--list li {
        margin: 4px;
    }

    /* slider mainpage */
    .background-img {
        left: -10%;
    }

    /* ----- subpages ----- */
    /* post */
    .article-right {
        margin-left: 30px;
    }

    /* contact */
    .contact-up-arrows {
        max-width: 300px;
    }
}

@media screen and (max-width: 1280px) {

    .background-img {
        left: -8%;
    }

    /* header */
    #main-menu ul li a {
        font-size: 13px;
    }

    .menu-links {
        gap: calc(var(--space-25));
    }

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

    .header-inner .logo {
        margin-right: 10px;
    }

    .about-inner-up {
        gap: 25px;
    }

    #main-menu {
        transition: flex-grow .4s;
    }

    header.sticky #main-menu {
        flex-grow: 1;
    }

    .header-inner-right-img {
        width: 42%;
    }
    .rwdButton {
        margin-left: auto;
        margin-right: unset;
    }

    /* service */
    .service-box-text {
        padding: calc(var(--space-60) * 3.5) 0 calc(var(--space-60) * 3) var(--space-60);
    }

    /* footer */
    .footer-arrows {
        display: none;
    }

    .footer-img{
        left: unset;
    }

    /* ----- subpages ----- */
    /* about */
    .offer-box {
        width: 50%;
    }
}

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

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

@media screen and (max-width: 1139px) {
    .service-immi, .service-legal{
        display: none;
    }

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

    .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-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;
    }
    .subpage #content {
        padding-top: 106px;
    }
    /* nav */
    header {
        width: 100%;
    }

    .nav {
        justify-content: unset;
    }

    .nav .logo {
        margin-right: auto;
    }
    .subpage .header-inner .logo {
        max-width: 55px;
    }
    .mainpage .header-inner {
        padding: 5px 0;
    }
    #main-menu {
        display: none;
    }

    .header-inner {
        width: 100%;
    }

    .rwdButton {
        margin-left: auto;
        margin-right: unset;
    }

    /* header */
    .header-title {
        font-size: calc(var(--font-48) + 8px);
        line-height: 60px;
    }

    .header-title,
    .header-text {
        max-width: 60%;
    }

    .header-section {
        padding: calc(var(--space-60) * 2) 0;
    }

    .header-box-inner {
        margin-top: 0;
        padding-left: 0;
        padding-bottom: 40px;
    }

    .header-box {
        margin: 125px 0;
    }

    .arrows-bg {
        bottom: 50px;
    }

    .header-inner-right-img {
        width: 47%;
    }
    .slick-dots {
        flex-direction: row-reverse;
        bottom: 40px;
        left: 45%;
    }
    .background-img {
        left: 0;
    }

    /* meet-office & service */
    .meet-office-box-img,
    .service-box-arrows {
        display: none;
    }

    .meet-office {
        min-height: auto;
        background-color: var(--color-primary);
    }
    .meet-office .section-text-left-down-up {
        color: var(--color-default);
    }

    .meet-office-right {
        width: 100%;
        height: 100%;
    }

    .service-inner {
        gap: 0;
    }

    .service-legal {
        right: 190px;
    }

    /* stay-updated & btn-section header */
    .stay-updated-btn,
    .btn-section {
        padding: calc(var(--space-25) - 4px) calc(var(--space-40) - 4px);
    }

    .stay-updated-inner {
        padding-left: 50px;
    }

    /* footer */
    .footer-right {
        width: auto;
        margin-right: unset;
    }

    .footer-arrows {
        display: none;
    }

    .footer-img {
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .footer-img svg {
        width: 100%;
    }

    /* ----- subpages ----- */
    /* about */
    .about-content {
        position: relative;
    }

    .subpage .meet-office {
        min-height: unset;
    }

    .about-inner {
        padding: 0 calc(var(--space-60) * 3) calc(var(--space-60) * 4) calc(var(--space-60) * 3);
    }

    /* offer */
    .subpage .service-box-text {
        width: 100%;
    }

    .subpage .service-inner {
        justify-content: center;
    }

    .offer-container {
        padding: 0 var(--space-60);
    }

    /* post */
    .article-content {
        flex-direction: column;
    }

    .article-right {
        margin-top: 20px;
        margin-left: 0;
        max-width: 900px;
    }

    .article-down-text {
        margin: var(--space-60) auto;
        max-width: 900px;
    }

    .article-image {
        max-width: 60%;
    }

    /* contact */
    .contact-infos .container {
        width: 60%;
    }

    .contact-img {
        width: 40%;
        margin-bottom: auto;
    }

    .contact-up-arrows {
        display: none;
    }

    .contact-text {
        margin-top: 30px;
    }
}

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

    .header-title {
        font-size: calc(var(--font-48) + 12px);
    }
    .header-inner-right-img {
        width: 35%;
    }

    .header-box-inner {
        padding-right: 0;
    }
    .slick-dots {
        bottom: 60px;
    }

    /* service */
    .service-immi,
    .service-legal {
        display: none;
    }

    .service-inner {
        margin: 0;
    }

    .service-box-text {
        padding: var(--space-60) 0 calc(var(--space-60) * 3) var(--space-60);
    }

    /* stay-updated */
    .stay-updated-card {
        max-width: 100%;
    }

    .stay-updated-inner {
        padding-left: 0;
    }

    /* footer */
    .footer-logo {
        transform: translateX(-50%);
    }

    /* ----- subpages ----- */
    /* about */
    .about-content-bg-immi,
    .about-content-bg-legal {
        display: none;
    }

    .about-inner {
        padding: 0;
    }

    .about-inner-text-right {
        margin-right: 0;
    }

    .gallery-about.about-section-padding {
        padding-top: 0;
    }

    .gallery-about.about-section-padding {
        margin: 30px auto 76px auto;
    }

    /* offer */
    .service-container,
    .offer-container {
        padding: 0;
    }

    .subpage .service-box-text {
        padding-bottom: var(--space-60);
    }

    /* post */
    .article-image {
        max-width: 100%;
        margin-right: 0;
    }

    /* contact */
    .contact-img {
        display: none;
    }

    .contact-infos .container {
        width: 100%;
    }

    .contact-text {
        padding-left: 0;
        margin-top: 40px;
    }
    .contact .contact-title {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .background-img .arrows-bg{
        right: 30px;
    }

    .stay-updated-boxText-title{
        min-height: unset;
    }

    .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;
    }
    .subpage #content {
        padding-top: 92px;
    }
    /* header */
    .header-section {
        height: 100%;
    }

    .header-title {
        font-size: calc(var(--font-48) + 5px);
    }
    .header-inner-right-img {
        display: none;
    }
    .header-title,
    .header-text {
        max-width: 100%;
    }
    .subpage .header-inner {
        padding: 8px 0;
    }
    .dots-wrapper {
        display: none;
    }
    /* footer */
    .footer-container {
        flex-direction: column;
        justify-content: center;
        gap: calc(var(--space-40) * 2);
    }

    .footer-container .text {
        margin-right: unset;
    }

    .footer-logo {
        transform: translateX(0);
    }

    .footer-img {
        display: none;
    }

    /* ----- subpages ----- */
    /* offer */
    .offer-container {
        flex-direction: column;
    }

    .offer-box {
        margin-bottom: 40px;
    }

    .offer-box-text {
        max-width: unset;
    }

    .offer-container {
        flex-direction: column;
    }

    .offer-box {
        width: 100%;
    }
    /* contact */
    .controls .row {
        flex-wrap: nowrap;
    }
}

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

@media screen and (max-width: 639px) {
    .footer-container .text{
        font-size: 15px;
    }

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

    .header-title {
        font-size: var(--font-48);
        line-height: 50px;
    }

    /* meet office */
    .meet-office .section-text-left-down-up {
        margin-right: 20px;
    }
    .meet-office-right {
        padding: calc(var(--space-60) + 20px) var(--space-60);
        padding-bottom: calc(var(--space-60) * 5.5 + 4px);
    }

    /* ----- subpages ----- */
    /* about */
    .gallery-list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .about-section-padding,
    .gallery-about.about-section-padding {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
    /* contact */
    .subpage .stay-updated .section-title-sub {
        margin-top: 55px;
    }
    .form-element-option-text {
        font-size: 14px;
    }

}

@media screen and (max-width: 560px) {
    .header-section{
        padding-bottom: var(--space-50);
    }

    .text {
        word-wrap: break-word;
    }

    /* nav */
    .nav .logo.nav-logo-small {
        max-width: 60px;
    }
    .section-btn-link {
        width: 95px;
        height: 95px;
    }
    /* header */
    .header-title {
        font-size: var(--font-48);
        line-height: 50px;
    }

    .header-box-inner {
        padding-left: 0;
    }

    .header-box-inner .btn-section {
        margin-top: var(--space-60);
    }
    .header-box {
        margin-top: 60px;
        margin-bottom: 0;
    }

    /* meet office */
    .meet-office .section-text-left-down-up {
        margin-right: 0;
    }

    /* service */
    .service-box-text {
        padding: var(--space-60) 0;
    }

    /* ----- subpages ----- */
}

@media screen and (max-width: 480px) {
    .modal-footer > .btn {
        width: 100%;
    }

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

    /* general */
    .section-text-left-down-up {
        transform: rotate(0deg);
        writing-mode: unset;
        margin-bottom: var(--space-40);
    }

    /* meet-office */
    .meet-office {
        flex-direction: column;
    }

    .meet-office-right {
        padding: var(--space-60);
    }

    .mainpage .meet-office-right .text {
        margin-bottom: 150px;
    }

    /* service */
    .service-inner {
        flex-direction: column;
    }

    .service-box-text {
        padding: 0;
        margin-bottom: 100px;
    }

    .service .section-btn-link,
    .meet-office .section-btn-link {
        padding: 40px;
    }

    /* stay-updated */
    .stay-updated-inner {
        flex-direction: column;
    }

    .stay-updated-card-imgBox .section-btn-link {
        width: 50px;
        height: 50px;
        padding: 18px;
    }

    .stay-updated-inner {
        padding-left: 0;
    }

    .section-padding {
        padding: calc(var(--space-60) * 1) 0;
    }

    .mainpage .stay-updated-cards {
        padding-top: calc(var(--space-60) + 22px);
    }

    /* ----- subpages ----- */
    /* about */
    .subpage .meet-office-right {
        padding: var(--space-60);
    }

    /* offer */
    .subpage .service-inner {
        padding-bottom: 0;
    }

    .subpage .service-box-text {
        margin-bottom: 55px;
    }

    .offer-box-icon {
        max-width: 45px;
    }

    .offer-box {
        gap: 20px;
    }
    /* contact */
    .controls .row .col-sm-6 {
        padding: 0 5px;
    }
    .controls .row .col-sm-6:first-child {
        padding-right: 15px;
    }
}

@media screen and (max-width: 420px) {
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
    /* stay-updated */
    .stay-updated-slider-btn svg {
        width: 40px;
    }
    /* ----- subpages ----- */
    /* contact */
    .contact .text {
        font-size: 16px;
    }
    .controls .row {
        flex-wrap: wrap;
    }
    .controls .row .col-sm-6 {
        padding: 0 var(--row-gap);
    }
}

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