@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;
    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: 8px;
    left: 10%;
    right: 10%;
    bottom: unset;
    width: auto;
}

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

.rwdButton.rwdPanel-action-toggle.active:before, .rwdButton.rwdPanel-action-toggle:hover:before, .rwdButton.rwdPanel-action-toggle:focus:before {
    background-color: var(--color-secondary);

}

.mainsearch-rwd-button .animIcon span {
    width: 54%;
    margin: 0 auto;
}

.rwdButton.rwdPanel-action-toggle .animIcon {
    transform: rotate(180deg);
    opacity: 0;
}

.rwdButton.rwdPanel-action-toggle .animIcon, .rwdButton.rwdPanel-action-toggle .icon {
    transition-property: opacity, transform;
    transition-duration: 500ms;
}

.rwdButton.rwdPanel-action-toggle.active .icon {
    transform: rotate(-180deg);
    opacity: 0;
}

.rwdButton.rwdPanel-action-toggle.active .animIcon {
    opacity: 1;
    transform: none;
}

.rwdButton.rwdPanel-action-toggle.active, .rwdButton.rwdPanel-action-toggle:hover, .rwdButton.rwdPanel-action-toggle:focus {
    color: #fff;
    background: var(--color-primary);
}

.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: 1850px) {
    header:after {
        left: 83vw;
    }
}

@media screen and (max-width: 1800px) {
    .news .section-header .btn {
        right: 0;
    }

    .logotypesSection .btn.btn-md.btn-seeAll {
        right: 0;
    }
}

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

    .mainpage .news .floatingText {
        margin-top: calc(var(--space-50) * 1);
        position: static;
    }

    #main-menu > ul {
        padding-left: 10px;
    }

    .giftCards .section-left .img-wrapper {
        max-width: 90%;
    }

    header:after {
        left: 1449px;
    }
}

@media screen and (max-width: 1740px) {
    .section-bottom .news-image {
        margin-left: calc(var(--container-padding) * -1);
    }
}

@media screen and (max-width: 1687px) {
    #main-menu ul {
        padding: 0 var(--space-50) 0 10px;

    }

    header:after {
        right: -211px;
        left: unset;

    }

    .stores-header-right {
        padding-left: 20px;
    }


    .mainSlide-bottom {
        padding-left: var(--container-padding);
        margin-left: calc(var(--container-padding) * -1);
    }


    /*.mainLinks-rows .row:nth-child(even) .section-right {*/
    /*    width: calc(47% + var(--container-padding));*/
    /*    margin-left: calc(var(--container-padding) * -1);*/
    /*}*/
    .search-form input.form-control {
        width: 265px;
    }
}

@media screen and (max-width: 1600px) {
    #main-menu > ul {
        padding-right: 10px;
    }

    .newsletter .section-title .second-line {
        padding-left: calc(var(--space-60) * 2 + 20px);
    }

    #main-menu > ul {
        gap: 5px;
    }

    .utilities li .icon-wrapper {
        margin-right: 10px;
    }

    .utilities li {
        font-size: 12px;
    }
}

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

}

@media screen and (max-width: 1440px) {
    .col3 .footer-content {
        padding-left: calc(var(--space-60) + var(--space-25));
    }

    .mainSlider:after {
        content: unset;
    }

    .menu-list .categories {
        width: 45%;
    }

    .menu-list .utilities {
        width: 55%;
    }


    .letter {
        bottom: -77%;
        right: 22%;
    }

    .mainSlide-bottom {
        width: 726px;
        bottom: -1px;
    }

    :root {
        --right-padding: 0;
    }

    .mainSlider-nav {
        top: 20%;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }


    .section-title {
        font-size: 50px;

    }

    .downloads .section-left, .downloads .section-right {
        width: 50%;
    }

    .downloads .section-title {
        font-size: 55px;
    }

    .newsPage .newsBox {
        padding: var(--space-25) 10px;
    }

    .newsPage .news-list {
        margin: calc(var(--space-25) * -1) -10px;
    }

    .btn.btn-md {
        font-size: 13px;
    }

    .stores-header {
        justify-content: space-between;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 20px;
    }

    .stores-header-right {
        padding-left: 0;
        flex-grow: 0;
    }

    .logo {
        width: 150px;
    }

}

@media screen and (max-width: 1350px) {
    .mainsearch {
        right: 47px !important;
    }

    .mainsearch-rwd-button.rwdButton {
        width: 42px;
    }

    .mainsearch-rwd-button .animIcon span {
        width: 44%;
    }

    .mainsearch-submit {
        width: 42px;
    }

    .mainsearch-submit .icon {
        width: 12px;
        height: 11px;
    }

    .header-search {
        margin-right: 5px;
    }

    .social-list > ul > li {
        padding: 0;
    }

    .header-buttons .mainsearch-rwd-button .icon {
        width: 11px;
        height: 11px;
    }

    .logo {
        width: 120px;
    }

    .social-list .social-item:nth-child(odd) .social-icon {
        padding: 5px 0px 15px;
    }

    .social-icon {
        display: flex;
        justify-content: center;
        color: #fff;
        align-items: flex-end;
        padding: 5px 0px;
        width: 42px;
        background-color: var(--color-primary);
    }

    .col1 ul li {
        font-size: 13px;
    }

    .col1 {
        padding-right: var(--space-25);
    }

    .footer-cols {
        grid-template-columns: 5fr auto 4fr 1fr;
    }

    .contact-left {
        margin: -20px;
        width: 76%;
    }

    .contact-row {
        margin: -20px;
    }

    .contact-box {
        padding: 20px;
    }

    .contact-img {
        margin-right: calc(var(--container-padding) * -1);
        width: calc(33.3333% + var(--container-padding));
    }

    .newsletter .section-title {
        padding-bottom: 0;
    }

    .newsletter .section-left {
        width: 45%;
    }

    .newsletter .section-right {
        padding-right: 0;
    }

    .logotypesSection-contact .section-header-inner {
        margin-left: 0;
    }


}

@media screen and (max-width: 1280px) {
    .galleryMap .section-right {
        width: 60%;
    }

    #main-menu li > a {
        padding: 5px;
    }

    .galleryMap .section-left {
        width: 40%;
    }

    .logotypesSection {
        clip-path: polygon(64% 0px, 100% 0, 100% 100%, 0% 100%, 0px 200px);
    }

    .logotype-inner {
        padding: 0 32%;
    }

    #main-menu > ul {
        gap: 5px 1px;
    }


    .utilities li .icon-wrapper {
        margin-right: 10px;
    }

    .utilities li {
        font-size: 12px;
    }

    .utilities li .icon-wrapper {
        width: 42px;
        height: unset;
        padding: 5px 13px 13px 13px;
    }

    .section-header-right .map-form .form-control {
        width: 220px;
    }


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

    .shopping .section-right {
        margin-top: -19%;
    }


    .mainSlide-bottom .floatingImg {
        max-width: 36%;
    }


    .section-title {
        font-size: 46px;
    }

    .subpage .aboutUs-content {
        width: 50%;
    }

    .subpage .aboutUs-img {
        width: 50%;
    }

    .aboutUs-img {
        display: flex;
        align-items: center;
    }

    .downloadBox-inner {
        padding: 15px 20px;
        font-size: 15px;
    }

    .downloadBox {
        padding: 5px;
    }

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

    .downloads .section-title {
        font-size: 50px;
    }

    .newsBox-title {
        font-size: 15px;
    }

    .page-title {
        font-size: 50px;
    }


}

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

}

@media screen and (min-width: 1140px) {

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

@media screen and (max-width: 1139px) {
    .footer-content {
        display: none;
        padding-top: 20px !important;
    }

    .col1 {
        padding-right: 0;
    }

    .col3 .address {
        margin: 0 auto;
    }

    .col1 .footer-content {
        padding-right: 0;
    }

    .col1 ul {
        display: flex !important;
        flex-direction: column;
    }

    .footer-cols .col2 {
        align-items: center;
    }

    .footer-social {
        margin-top: 20px;
        justify-content: center;
    }

    .col3 .footer-content {
        padding: 0;

    }

    .footer-cols > div {
        text-align: center;
        width: 100%;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
    }

    .col1 ul li {
        min-height: unset;
        margin-bottom: 5px;
    }

    .footer-title.active:after {
        transform: translateY(-50%) rotate(-90deg);
    }

    .footer-title:after {
        transition: transform, 500ms;
        position: absolute;
        right: var(--container-padding);
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        color: #fff;
        font-size: 16px;
        font-family: FontAwesome;
        content: "\f054";
    }

    .footer-title {
        position: relative;
        width: 100%;
        cursor: pointer;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #fff;
    }


    .subpage .aboutUs-content .section-title {
        font-size: var(--font-48);
    }

    .rwdMenu .social-item > a {
        padding: 0;
    }

    .menu-list {
        display: flex;
        flex-direction: column-reverse;
    }

    .utilities {
        margin-bottom: 30px;
    }

    .menu-list .categories, .utilities {
        width: 100%;
    }

    .mainSlide-bottom .floatingImg {
        right: 0;
    }

    .section-header-right .map-form .form-control {
        width: 180px;
    }

    .header-buttons .header-search + .header-social {
        margin-bottom: 0;
    }

    .rwdPanel {
        border-top: 1px solid #000;
    }

    .mainsearch.active {
        width: 100%;
        top: unset;
    }


    .search-form input.form-control {
        width: 100%;
    }

    .mainsearch {
        padding: 30px var(--container-padding) 0;
    }

    #content {
        padding-top: 68px;
    }

    .footer-cols .col2 {
        order: -1;
        margin-bottom: var(--space-40);
    }

    .col1 {
        display: flex;
        justify-content: center;
    }

    .col1 ul {
        margin: 0 auto;
        display: inline-grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-columns: 1fr;
    }

    .col3 {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: var(--space-40);
    }

    .footer-top .col4 {
        padding-bottom: var(--space-25);
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .footer-cols .col2 {
        display: flex;
        justify-content: center;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    header:after {
        display: none;
    }

    .contact-left {
        margin: -10px;
        width: 76%;
    }

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

    .contact-box {
        padding: 10px;
    }

    .megaphone {
        top: -9%;
        right: 8%;
    }

    .mainSlide-bottom .floatingImg {
        max-width: 28%;
    }

    .mainSlider-buttons {
        width: 80%;
        background: unset;
        flex-wrap: unset;
        display: flex;
    }

    .mainSlide-bottom {
        width: 70%;
        max-width: unset;
    }


    .section-title {
        font-size: 40px;
        letter-spacing: 7px;
    }

    .box-title {
        font-size: 21px;
    }

    .subpage .discountBox-thumbnail {
        width: 40%;
    }

    .subpage .discountBox-content {
        width: 60%;
    }

    .subpage .discountBox {
        width: 100%;
        padding: var(--space-25) 0;
    }

    .subpage .discountsList {
        margin: calc(var(--space-25) * -1) 0;
    }

    .downloadBox-inner {
        padding: 10px 15px;
        font-size: 14px;
    }

    .downloadBox-inner .caption {
        letter-spacing: 3px;
    }

    .downloads .section-left {
        justify-content: center;
    }

    .downloads .section-title {
        font-size: 45px;
        letter-spacing: 7px;

    }

    .page-title {
        font-size: 47px;
        letter-spacing: 6px;
    }

    .newsPage .newsBox {
        width: 33.3333%;
    }

    .newsBox-title {
        font-size: 14px;
    }

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

    .header-inner {
        height: unset;
        min-height: 68px;
    }

    .button-wrapper.hexagon {
        width: 42px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        background-color: var(--color-primary);
    }

    .header-buttons .mainsearch-rwd-button.rwdButton {
        margin-bottom: 0;
    }

    .main-menu-button {
        margin: 0;
    }

    .header-social {
        margin-right: 5px;
    }

    .header-buttons {
        padding-top: 0;
        display: flex;
    }

    .galleryMap {
        position: relative;
    }

    .header-inner .logo {
        padding-right: 10px;
        flex-grow: 1;
    }

    .map-floors {
        margin: 0 -5px;
    }

    .galleryMap .asideButton {
        display: block;
        width: 40px;
        height: 40px;
        position: absolute;
        cursor: pointer;
        transition: right, 500ms;
        top: 38px;
        pointer-events: auto;
        right: calc((var(--container-padding) + 51px) * -1);
        background: var(--color-primary);
    }

    .galleryMap .asideButton.active {
        right: -40px;
    }

    .galleryMap .asideButton span:nth-child(1) {
        top: -20px;
    }

    .galleryMap .asideButton.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .galleryMap .asideButton.active span:nth-child(2) {
        opacity: 0;
        transform: rotate(45deg);
    }

    .galleryMap .asideButton.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .galleryMap .asideButton.active span {
        top: 0 !important;
        bottom: 0 !important;
    }

    .galleryMap .section-left .map-menu {
        margin-left: calc(var(--container-padding));
    }

    .galleryMap .asideButton span:nth-child(3) {
        bottom: -20px;
    }

    .galleryMap .asideButton span {
        width: 30px;
        transition-property: transform, top, bottom, opacity;
        transition-duration: 500ms;
        height: 2px;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

    .galleryMap .section-right {
        width: 100%;
    }

    .galleryMap .section-left.active {
        padding-left: var(--container-padding);
        left: calc(var(--container-padding) * -1);
        pointer-events: auto;
    }


    .galleryMap .section-left .map-menu .categories {
        max-height: 100%;
    }

    .categories {
        width: 100%;
        max-height: unset;
        overflow: visible;
    }

    .galleryMap .section-left .map-menu::-webkit-scrollbar {
        width: 3px;
    }

    .galleryMap .section-left .map-menu::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .galleryMap .section-left .map-menu::-webkit-scrollbar-thumb {
        background: var(--color-primary);
    }

    .map-menu {
        overflow-x: visible;
        overflow-y: auto;
        height: 100%;
        max-height: 100%;
    }

    .map-menu-wrapper {
        height: 100%;
    }

    .galleryMap .section-left {
        height: 100%;
        top: 0;
        transition: left, 500ms;
        position: absolute;
        width: 320px;
        left: -350px;
        align-items: flex-start;
        pointer-events: none;
        z-index: 10;
        background-color: #fff;
    }

    .menu-list .utilities {
        width: initial;
        overflow: initial;
        max-height: initial;
    }
}

@media screen and (max-width: 1070px) {
    .info-box {
        width: 50%;
    }
}

@media screen and (max-width: 1000px) {
    .interactive-map-section form .col-xs-12 {
        width: 50%;
    }

    .result-list .media {
        width: 100%;
    }

    .contact-top {
        position: relative;
    }

    .contact-left {
        width: 100%;
        justify-content: center;
    }

    .contact-left .contact-box {
        width: unset;
        min-width: 33.3333%;
    }

    .contact-img {
        width: 20%;
        position: absolute;
        top: -66%;
        margin: 0;
        padding: 0;
        right: calc(var(--container-padding) * -1);
    }


    .btn.btn-category {
        width: calc(25% - 10px);
    }


    .logotype-slide {
        padding-bottom: 100px;
    }

    .logotypesSlider-nav .slick-next {
        margin-top: 0;
    }

    .logotypesSlider-nav {
        top: unset;
        bottom: 36px;
        left: 0;
        right: 0;
        flex-direction: row;
        justify-content: center;
        margin: 0 auto;
    }


    .logotype-slide .logotype {
        width: 25%;
    }

    .logotype-slide .logotype:nth-child(4) {
        margin-left: -18px;
    }

    .logotype:nth-child(odd), .logotype:nth-child(odd) .logotype-img {
        transform: unset;
    }

    .logotype:nth-child(even), .logotype:nth-child(even) .logotype-img {
        transform: scaleY(-1);
    }

    .news .section-titleSmall {
        text-align: left;
    }

    .news .section-top {
        margin-bottom: var(--space-50);
    }

    .news-list {
        width: 66.6666%
    }

    .news-image {
        width: 33.3333%;
    }


    .shopping .section-right {
        margin-top: -12%;
    }

    .downloads .section-title {
        font-size: 40px;
        letter-spacing: 5px;

    }

    .section-title {
        letter-spacing: 5px;

        font-size: 37px;
    }

    .logotypesSection .btn.btn-md.btn-seeAll {
        position: static;
        align-self: center;
        margin-top: 15px;
    }
}

@media screen and (max-width: 900px) {
    .galleryMap .asideButton {
        right: calc((var(--container-padding) + 56px) * -1);
    }

    .newsletter .section-left {
        padding-bottom: 0;
    }

    .logotypesList .logotype {
        width: 25%;
    }

    .shoppingBasket {
        display: none !important;
    }

    .logotypesSection {
        margin-bottom: 20px;
    }

    .logotypesSection {
        clip-path: none;
    }

    .letter {
        display: none !important;
    }

    .megaphone {
        display: none !important;
    }

    .slick-dots {
        flex-direction: row;
        display: flex;
        align-items: center;
    }

    .newsletter .section-left, .newsletter .section-right {
        width: 100%;
    }

    .newsletter .section-content {
        flex-wrap: wrap;
    }

    .contact-box {
        width: 50%;
    }

    .discountsSlider-wrapper {
        position: static;
    }

    .discounts-inner {
        position: relative;
    }


    .mainpage .discountBox-thumbnail {
        width: 35%;
    }

    .mainpage .discountBox-content {
        width: 65%;
    }

    .mainpage .discountBox + .discountBox {
        margin-top: 15px;
    }

    .mainpage .discountBox {
        width: 100%;
    }

    .discountSlider-nav {
        top: 10%;
        right: 0;
        flex-direction: row;
        left: var(--container-padding);
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .mainSlide-bottom .floatingImg {
        display: none;
    }

    .mainSlide-bottom:before {
        content: unset;
    }

    .mainSlide-bottom {
        margin-right: calc(var(--container-padding) * -1);
        padding-right: 200px;
        padding-top: 10px;
        width: calc(100% + var(--container-padding) + var(--container-padding));
        background: #fff;
        clip-path: unset;
    }

    .mainSlide-button {
        bottom: 200px;
        right: 0;
        z-index: 3;
    }

    .mainSlider-buttons {
        width: 100%;
        display: flex;
    }

    .mainSlider-nav {
        top: unset;
        display: flex;
        left: unset;
        right: var(--container-padding);
        bottom: 163px;
        align-items: flex-end;
        flex-direction: row;

        justify-content: flex-end;
    }


    .aboutUs-content .text-wrapper {
        align-items: center;
    }

    .aboutUs-img {
        max-width: 500px;
        margin: 0 auto;
        padding-bottom: 30px;
    }

    .subpage .aboutUs-content {
        padding-left: 0;
    }

    .aboutUs-content .text-wrapper {
        padding-left: 0;

    }

    .aboutUs .section-content > div {
        width: 100%;
    }

    .aboutUs .section-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title {
        font-size: 35px;
    }

    .box-title {
        font-size: 19px;
    }

    .downloadBox-inner {
        font-size: 13px;
    }

    .downloads .section-title {
        font-size: 35px;
        letter-spacing: 3px;

    }

    .view-thumbnail {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .newsView .page-top {
        flex-wrap: wrap;
    }

    .view-content {
        padding: 20px 0 0 0;
        width: 100%;
    }

    .page-title {
        font-size: 40px;
        letter-spacing: 5px;
    }

    .newsPage .newsBox {
        padding: var(--space-25) 5px;
    }

    .newsBox-title {
        font-size: 13px;
    }

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

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

    .aboutUs-content {
        padding-right: 0;
    }

    .sunday .section-content {
        flex-wrap: wrap;
    }

    .sunday .section-title .first-line {
        padding-left: calc(var(--space-60) * 3 + 20px);
        z-index: 3;
        position: relative;
    }

    .sunday .shoppingBasket {
        width: 43%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .sunday .section-right .caption {
        font-size: var(--font-36);
    }

    .sunday .section-left {
        padding-bottom: var(--space-50);
    }

    .sunday .section-left, .sunday .section-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-row .contactList-image .img-wrapper {
        margin: 0;
    }

    .contactList-image {
        margin: 0 auto;
        margin-top: 20px;

    }

    .galleryMap .section-content {
        flex-wrap: wrap;
    }

    .galleryMap .section-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .newsletter .section-title {
        margin-bottom: var(--space-40);
    }
}

@media screen and (max-width: 767px) {
    .shopping .btn {
        margin-right: unset;
    }

    .mainSlider {
        margin-bottom: 0;
    }

    .mainSlider-buttons {
        position: static;
    }

    .mainSlider-buttons .btn {
        padding: 0;
    }

    .news .section-bottom .news-image {
        width: 100%;
        margin-left: calc(var(--container-padding) * -1) !important;
    }

    .news .section-top-wrapper:before {
        content: unset;
    }

    .mainLinks-rows .row:nth-child(odd) .section-right {
        margin-bottom: 0;
        margin-left: 0;
    }

    .mainLinks-rows .row + .row {
        margin-top: 20px;
    }

    .mainLinks-rows .row:nth-child(even) .section-left {
        margin-right: 0;
        justify-content: center;
        align-items: center;
    }

    .aboutUs-img-first {
        display: none !important;
    }

    .mainSlide-img img {
        min-height: unset;
    }

    .mainSlide-content {
        position: static;
    }

    .mainSlider-wrapper-content {
        position: static;
    }

    .mainSlide-bottom {
        padding-right: var(--container-padding);
        padding-bottom: 0;
        position: static;
    }

    .galleryMap .section-header {
        row-gap: 10px;
        flex-wrap: wrap;
    }


    .captcha-container .col-sm-6 {
        width: 50%;
    }

    .info-box {
        padding: 5px
    }

    .info-rows {
        margin: -5px;
    }

    .col1 ul {
        grid-template-columns: auto;
    }

    .contact-left .contact-box {
        width: 50%;
    }

    .contact-img {
        display: none;
    }

    .btn.btn-category {
        width: calc(33.333% - 10px);
    }

    .search-buttons .btn + .btn {
        margin-left: 0;
    }

    .stores-header {
        justify-content: center;
        align-items: center;
    }

    .search-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .search-buttons .btn:last-child {
        margin-left: 0;
    }

    .news-list {
        width: 100%;
        margin: 0;
    }

    .mainpage .news .section-top .news-image img {
        margin-top: 0;
    }

    .news-image {
        width: 50%;
        padding: 0 !important;
        margin: 0 auto !important;
        margin-top: var(--space-50)
    }

    .news .section-bottom {
        flex-direction: column-reverse;
    }

    .news .section-top, .news .section-bottom {
        flex-wrap: wrap;
    }

    .btn-seeAll {
        align-self: unset;
    }

    .shopping .section-content {
        flex-wrap: wrap;
    }

    .shopping .section-left {
        align-items: center;
    }

    .shopping .section-right {
        margin-top: 0;
    }

    .shopping .section-left, .shopping .section-right {
        width: 100%;
    }

    .shopping .section-right .img-wrapper {
        width: 78%;
        margin: 0 auto;
    }

    .section-title {
        font-size: 30px;
    }

    .box-title {
        font-size: 18px;
    }

    .downloadBox {
        width: 100%;
    }

    .downloads .section-title {
        font-size: 30px;
        letter-spacing: 3px;

    }

    .page-title {
        font-size: 35px;
        letter-spacing: 4px;
    }

    .newsPage .newsBox {
        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;
    }

    .aboutUs {
        padding-bottom: calc(var(--space-50) * 2);
    }

    .giftCards .section-content {
        margin-top: 0;
        flex-direction: column-reverse;
    }

    .giftCards .section-right {
        width: 100%;
    }

    .giftCards .section-right {
        align-items: center;
    }

    .mainLinks-rows .row:nth-child(even) .section-right {
        padding-right: 0;
    }

    /*.mainLinks-rows .row:nth-child(even) .section-right {*/
    /*    width: calc(100% + var(--container-padding));*/
    /*    margin-left: calc(var(--container-padding) * -1);*/
    /*}*/
    .pagination-wrapper ul li {
        padding: 0;
    }
}

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

@media screen and (max-width: 639px) {
    .logotypesList .logotype {
        width: 33.333%;
    }

    .btn.btn-lg {
        white-space: wrap;
        font-size: 16px;
    }

    .mainSlide-bottom {
        padding-bottom: 0;
    }

    .logotype {
        margin: 0 -10px;
    }

    .subpage .aboutUs-content .section-title {
        font-size: var(--font-36);
    }

    .mainSlider-nav {
        display: none;
    }

    .logotypesSection {
        background-image: linear-gradient(258deg, #54afe2 0%, #fe8db7 100%) !important;
    }

    .mainSlide-button .btn {
        border-color: #000;
        color: #000;
    }

    .mainSlider-buttons {
        position: static;
        flex-wrap: wrap;
        margin-bottom: calc(var(--space-50) * 2);
        width: calc(100% + var(--container-padding) * 2);
    }

    .mainSlider-nav {
        bottom: unset;
        top: -120px;
    }


    .mainSlide-bottom {
        padding-right: var(--container-padding);
        position: static;
    }

    .galleryMap .section-header {
        flex-wrap: wrap;
        margin-bottom: calc(var(--space-25) + var(--space-60));
    }

    .info-box {
        width: 100%;
    }

    .shopping .section-left {
        padding-right: 0 !important;
    }

    .shopping .section-left .section-title {
        padding-right: 0;
    }

    .info-rows {
        display: grid;
        grid-auto-rows: 1fr;
    }

    .aboutUs-img .img-wrapper {
        width: 100%;
    }

    .logotypesSection-contact .section-header {
        padding-bottom: 0;
    }


    .contact-row .contactList-image {
        width: 100%;
    }

    .contact-box {
        width: 100%;
    }

    .contact-left .contact-box {
        width: 100%;
    }

    .logotypesSection .section-header-inner {
        align-items: center;
    }

    .logotypesSection .btn.btn-md.btn-seeAll {
        margin-right: 0;
    }

    .discountSlider-nav {
        top: 15%;
    }

    .discounts .btn-seeAll {
        margin-right: -20px;
    }

    .mainpage .discountBox-content {

        padding-left: var(--space-50);
    }

    .btn.btn-md.btn-seeAll {
        min-height: 50px;
        padding: 0 20px;
    }

    .aboutUs-img {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .aboutUs-img .logo-wrapper {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    .subpage .discountBox-inner {
        flex-direction: column;
        height: 100%;
        width: 100%;
    }

    .discountBox-content {
        padding: var(--space-50) 0;
    }

    .box-title {
        font-size: 17px;
    }

    .subpage .box-top {
        flex-grow: 1;
    }

    .subpage .discountBox-inner .discountBox-thumbnail {
        flex-shrink: 0;
    }

    .subpage .discountBox-inner .discountBox-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .subpage .discountBox-inner > div {
        width: 100%;
    }

    .subpage .discountBox {
        width: 50%;
        padding: 10px;
    }

    .subpage .discountBox:nth-child(even) {
        align-self: unset;
    }

    .subpage .discountsList {
        align-items: stretch;
        margin: -10px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .downloads .section-content > div {
        width: 100%;
    }

    .downloads .section-content .section-left {
        padding-bottom: 20px;
    }

    .downloads .section-content .section-right .img-wrapper {
        max-width: 320px;
    }

    .downloads .section-content .section-right {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .downloads .section-content {
        flex-wrap: wrap;
    }

    .downloads .section-title {
        font-size: 25px;
    }

    .page-title {
        font-size: 30px;
        letter-spacing: 2px;
    }

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

    .mainSlide-bottom {
        padding-right: var(--container-padding);
        /*padding-bottom: 100px;*/
    }

    .mainSlide-button {
        bottom: 69px;
        right: unset;
        z-index: 16;
        left: 0;
    }


    .btn.btn-lg {
        min-height: 52px;
        padding: 0px var(--space-50);
    }


    .floatingText {
        display: none;
    }

    .logotype-slide .logotype {
        width: 33.333%;
    }


    .btn-goBack {
        letter-spacing: 2.67px;
        min-height: 45px;
        font-size: 13px;
        padding: 10px 38px;
    }

    .btn-goBack .icon {
        width: 32px;
        height: 23px;
    }

    .slick-arrow .icon {
        width: 8px;
        height: 13px;
    }

    .mainSlide-button {
        bottom: 13px;
        right: unset;
        z-index: 16;
        left: 0;
    }
}

@media screen and (max-width: 560px) {
    .section-header-right, .section-header-right .search-form, .section-header-right .form-element-container, .section-header-right .form-element {
        width: 100%;
    }

    .search-form .form-element .element-row {
        align-items: flex-start;
        flex-direction: column;

    }

    .section-header-right .search-form input {
        padding: 6px 0;
    }

    .section-header-right .map-form .form-control {
        width: 100%;
    }

    .subpage .aboutUs-img {
        width: 100%;
    }


    .newsletter-form button {
        justify-content: center;
    }

    .newsletter-form {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .newsletter-form input.form-control {
        border-right: 1px solid #000;
    }

    .newsletter .section-left {
        display: flex;
        margin-bottom: 20px;
        justify-content: center;
    }


    .btn.btn-category {
        font-size: 12px;
        width: calc(50% - 10px);
    }

    .mainpage .news .section-header {
        display: flex;
        flex-direction: column;
        padding-bottom: 0;
        align-items: center;
        text-align: center;
    }

    .news .section-header .btn {
        position: static;
        margin-top: 30px;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .news-image {
        width: 80%;
    }

    .mainpage .discounts {
        margin-bottom: 0;
    }


    .section-title {
        font-size: 25px;
    }

    .box-title {
        font-size: 15px;
    }

    .downloads .section-title {
        font-size: 20px;
    }

    .page-title {
        font-size: 25px;
    }

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

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

    .discountBox .btn.btn-md {
        letter-spacing: 2.8px;
        font-size: 13px;
        height: 40px;
    }

    .mainpage .megaphone {
        display: none;
    }

    .discounts .section-header {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .discountSlider-nav {
        bottom: 0;
        top: unset;
        position: static;
        left: 0;
        order: 44344;
        right: 0;
        justify-content: center;
        margin: 0 auto;
    }

    .sunday {
        padding-bottom: 0;
    }

    .mainpage .discounts {
        margin-bottom: 30px;
        margin-top: 0;
    }

    .mainpage .newsBox {
        padding: 10px;
    }


    .storeBox {
        margin-bottom: 0;
        margin-left: 0 !important;
    }

    .storeBox {
        width: 33.333%;
    }

    .withMargin {
        margin: 0;
    }

    .captcha-container .col-sm-6 {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .mainpage .discounts {
        margin-bottom: 0;
    }

    .header-buttons > .header-social {
        display: none;
    }

    .header-social {
        margin: 0;
    }

    .header-social li {
        border-bottom: none;
    }

    .storeBox {
        margin-bottom: 0;
        margin-left: 0 !important;
    }

    .storeBox {
        width: 50%;
    }

    .withMargin {
        margin: 0;
    }

    .stores-header .section-titleSmall {
        padding-right: 0;
    }

    .pagination-wrapper ul li a, .pagination-wrapper ul li span {
        padding: 5px;
    }

    .pagination-wrapper ul li.next {
        margin-left: 10px;
    }

    .pagination-wrapper ul li.prev {
        margin-right: 10px;
    }


    .search-form input.form-control {
        width: 230px;
    }

    .stores-header-left {
        flex-direction: column;
        align-items: center;
    }

    .search-buttons {
        flex-direction: column;
    }

    .discounts-inner {
        padding-bottom: calc(var(--space-50) * 1);
    }

    .logotypesSection {
        margin-bottom: calc(var(--space-40) * 2);
        background: center center /cover;
    }

    .logotype-slide .logotype {
        width: 50%;
    }

    .discounts-inner {
        padding-top: calc(var(--space-50) * 2);
    }

    .mainpage .discountBox-thumbnail, .mainpage .discountBox-content {
        width: 100%;
    }

    .mainpage .discountsBg {
        display: none;
    }

    .mainpage .discountBox-thumbnail .img-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .mainpage .discountBox-inner {
        flex-wrap: wrap;
    }


    .mainSlider-buttons {
        flex-wrap: wrap;
    }

    .mainSlider-nav {
        top: -162px;
        left: var(--container-padding);
        right: 0;
        justify-content: flex-start;
    }

    .mainSlide-bottom {
        padding-right: var(--container-padding);
        padding-bottom: 0;
    }


    .mainSlide-button {
        position: static;
        right: unset;
        z-index: 16;
        margin: 20px 0;
        left: 0;
    }


    .aboutUs-img .img-wrapper {
        width: 100%;
    }

    .section-title {
        font-size: 22px;
    }

    .box-title {
        font-size: 13px;

    }

    .downloadBox-inner {
        font-size: 12px;
    }

    .downloadBox-inner .caption {
        letter-spacing: 0px;
    }

    .downloads .section-content .section-right .img-wrapper {
        max-width: 260px;
    }

    .page-title {
        font-size: 23px;
    }

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

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

@media screen and (max-width: 420px) {
    .galleryMap .section-left {
        width: 100%;
        left: -106.5%;
    }

    .galleryMap .asideButton {
        right: calc((var(--container-padding) + 44px) * -1);
    }

    .logotypesList .logotype {
        width: 50%;
    }

    .newsletter .section-title .second-line {
        padding-left: 20px;
    }

    .pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
        height: unset;
        width: 44px;
    }

    .pagination-wrapper .icon {
        height: 9px;
    }

    .btn-slide {
        width: 100%;
        height: 36px;
        margin-left: 0 !important;
        padding-left: var(--container-padding);
    }

    .discountsSlider.slick-initialized .slick-slide:not(.slick-active.slick-current) * {
        display: none;
    }

    .mainpage .newsBox {
        width: 100%;
    }

    .news-image {
        width: 100%;
    }

    .shopping .section-right .img-wrapper {
        width: 100%;
    }

    .section-title {
        font-size: 20px;
    }

    .subpage .discountBox {
        width: 100%;
    }

    .downloads .section-title {
        font-size: 18px;
    }

    .page-title {
        font-size: 20px;
    }

    .newsPage .newsBox-thumbnail {
        margin: 0 auto;
    }

    .newsPage .news-list {
        margin: -15px 0;
    }

    .newsPage .newsBox {
        padding: 15px 0;
        width: 100%;
    }


    .galleryMap .section-left {
        padding-right: 0;
    }

    .galleryMap .asideButton.active {
        right: 0;
        top: 0;
    }

    .galleryMap .section-left {
        padding-right: 60px;
    }

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

    .downloads .section-content .section-right .img-wrapper {
        max-width: 230px;
    }
}

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