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

.main-slider .slide video, 
.main-slider .slide iframe {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
}

@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%);
        -ms-transform: translateY(100%);
    }

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

    .rwdPanel.active {
        pointer-events: all;
        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:first-child {
    border-top: 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 0;
    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 li.active li.active a {
    font-weight: normal;
}

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



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

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

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

.rwdPanel  .social-icon svg, .rwdPanel  .social-icon svg * {
    stroke: currentColor;
}

.rwdMenu .lang span.langs-menu-icon {
    margin-right: 10px;
}


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

.rwdMenu .social-list > ul > li {
    border: 0 none;
}

.rwdMenu .social-icon {
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--color-default);
}


.rwdMenu .social-list > ul {
    display: flex;
    justify-content: 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) {

}

@media screen and (max-width: 1600px) {
    #main-menu {
        padding: 0 30px;
    }

    .offer-box-title {
        padding-left: 60px;
    }

    .price-list {
        padding: 80px 110px;
    }

    .footer-box:last-child {
        padding-left: 10%;
    }

    .about-left-content {
        padding-right: 80px;
    }

.person-contact .contact-link .btn-icon {
        width: 16px;
        margin-right: 12px;
        flex-shrink: 0;
        height: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.person-item {

    padding-left: 15px;
    padding-right: 15px;
}
}

@media screen and (max-width: 1440px) {
    #main-menu {
        padding: 0 25px;
    }

    .price-list {
        padding: 70px 100px;
    }

    .contact-link-bottom .btn-icon {
        margin-right: 10px;
    }

    .footer-box:last-child {
        padding-left: 9%;
    }

    .about-left-content {
        padding-right: 70px;
    }
}

@media screen and (max-width: 1366px) {
    .controls.captcha-container {
        width: 100%;
    }

    #main-menu {
        padding: 0 20px;
    }

    .offer-item, .news-item {
        padding: 20px;
    }

    .offer-box, .news-box {
        margin: -20px;
    }

.offer-details-item {
    padding: 20px;
}

    .price-list {
        padding: 60px 90px;
    }

    .news-link {
        padding: 15px;
    }

    .footer-box:last-child {
        padding-left: 8%;
    }

    .about-left-content {
        padding-right: 60px;
    }

    .person-item {
        width: 25%;
        padding-bottom: 30px;
    }
}

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

    .price-list {
        padding: 50px 80px;
    }

    .footer-box:last-child {
        padding-left: 7%;
    }

    .about-left-content {
        padding-right: 50px;
    }
}

@media screen and (max-width: 1200px) {
    #main-menu {
        padding: 0 10px;
    }

    .price-list {
        padding: 40px 80px;
    }

    .footer-box:last-child {
        padding-left: 6%;
    }

    .about-left-content {
        padding-right: 40px;
    }
}

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

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


}

@media screen and (max-width: 1139px) {
    .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;
        color: var(--color-primary);

    }

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


    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0 30px;
        padding: 0;
    }

    .header-top {
        display: none;
    }

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

    .slide-text {
        width: 50%;
    }

    .slide-box {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .slider .container {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .slide-text {
        padding-top: 0;
    }

    .description {
        margin-bottom: 0;
    }

    .slider {
        height: auto;
    }

    .news-content {
        align-items: center;
    }

    .news-content-inner {
        align-items: center;
    }

    .price-list {
        padding: 30px;
    }

    .price-list .text.txt {
        padding-right: 0;
    }

    .footer-left {
        width: 80%;
    }

    .offer-details-item {
        width: 33.33%;
    }

    .contact-box-wrapper {
        padding-bottom: 30px;
        position: relative;
        margin-bottom: 30px;
    }

.contact-item {
    padding-bottom: var(--space-40);
}

.logo {
    width: auto;
}

.person-item {
    width: 33.33%;
    padding-bottom: 30px;
}

    .contact-link {
        color: var(--color-default);
        padding: 5px 10px;
        text-align: left;
    }

a.contact-link {
    color: var(--color-default);
}

.contact-links {
    flex-direction: column;
    padding-top: 30px;
    align-items: flex-start;
}

.contact-link .link-icon svg, .contact-link .link-icon svg * {
    fill: var(--color-primary);
}
}

@media screen and (max-width: 960px) {
    .pagination-wrapper ul li {
        margin: 0;
    }

    .pagination-wrapper {
        max-width: 100%;
    }

    .copyright:before {
        display: none;
    }

    .footer-box-container {
        padding-top: 0;
        padding-bottom: 0;
        background-image: none;
    }


    .footer-boxes {
        flex-wrap: wrap;
        padding-top: 0;

    }

    footer .footer-box {
        width: 100% !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 15px 0 15px !important;
        max-width: 100%;
        margin-bottom: 0;
    }

    footer .show-hide {
        display: none;
    }

    footer .footer-col-title {
        background: url(../images/icons/arrow_down2.svg) no-repeat right 5px;
        background-size: 20px 20px;
        margin-bottom: 0;
        font-size: 20px;
        padding-bottom: 15px;
        padding-left: 0;
    }

    .footer-left {
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-right {
        display: none;
    }

    .footer-box .text.txt {
        margin-bottom: 20px;
    }

    .contact-links-bottom {
        margin-bottom: 15px;
    }

    .footer-col-title.footer-col-title-rwd {
        display: block;
    }

    .contact-item {
        width: 33.33%;
        margin-bottom: 0;
    }

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

    .person-item {
        width: 33.33%;
    }
    .offer-link-inner, .subpage .offer-link-inner {
        justify-content: space-around;
        padding-top: 20px;
        padding-bottom: 20px;
    }

.offer-icon, .offer-details-item .offer-icon {
    margin-bottom: 10px;
}

.mainpage .offer-details-item .offer-title, .offer-details-item .offer-title {
    margin-bottom: 10px;
}

.subpage .offer-details-item .offer-icon {
    width: 30%;
    padding-bottom: 30%;
    margin-bottom: 10px;
}

.subpage .offer-details-item .offer-title {
    margin-bottom: 10px;
}
}

@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;
        text-align: center;
    }

    .offer-item, .news-item {
        padding: 10px;
    }

    .offer-box, .news-box {
        margin: -10px;
    }

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

    .about-left, .subpage .about-left {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .about-right {
        width: 100%;
    }

    .about-left-content {
        padding: 0;
        max-width: none;
    }


    .subpage .about-box-container {
        padding-top: var(--space-60);
    }

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

    .offer-details-item {
        width: 50%;
    }

.offer-details-item, .subpage .offer-details-item {
        padding: 10px;
    }

    .offer-box{
        margin:-10px ;
    }


.news-box {
        margin:- 25px  -10px;
    }

.mainpage .offer-details-item .offer-title {
    font-size: 20px;
    margin-bottom: var(--space-30); 
}
    .mainpage .offer-details-item .offer-title {
        font-size: 18px;
   
    }
.subpage .offer-details-box {
    margin: -25px -10px;
}
}

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

    /*.text .table-responsive-wrapper::after {*/
    /*    pointer-events: none;*/
    /*    content: "";*/
    /*    display: block;*/
    /*    position: absolute;*/
    /*    left: 0;*/
    /*    right: 0;*/
    /*    bottom: 0;*/
    /*    height: 45px;*/
    /*    background-size: contain;*/
    /*    background-position: right 15px center;*/
    /*    background-repeat: no-repeat;*/
    /*    background-image: url(../images/rwd-table-hand.webp);*/
    /*    -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;
    }

    .controls.captcha-container .col-sm-6.form-group-lg.form-group {
        width: 50%;
    }


    .controls.captcha-container {
        display: flex;
    }

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

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

    .price-list .text.txt {
        flex-grow: 1;
        width: auto;
        margin-bottom: 15px;
    }

    .offer-wrapper-header {
        background-size: 12% auto;
    }

    .corner-top {
        max-width: 12%;
    }

    .corner-bottom {
        max-width: 12%;
    }

    .about-box-container {
        background-size: 12% auto;
    }

    .subpage .news-box-container {
        background-size: 12% auto;
    }

    .news-item {
        width: 50%;
    }

    .subpage .price-list-container {
        background-size: 12% auto;
    }

    .contact-box-container {
        background-size: 12% auto;
    }


    .person-item {
        width: 50%;
    }



    .map-box-container {
        background-size: 12% , 40%;
    }

    .text-bottom-container {
        background-size: 12% , 12%;
    }

    .text-box-container {
        background-size: 12% auto;
    }

    .offer-details-container {
        background-size: 12% auto;
    }

.table-responsive {
    border: 0 none;
}

.offer-link-inner {
    justify-content: space-around;
}
}

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

    .slider .slider-photo {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        height: 250px;
    }

    .slide-box {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .slide-text {
        width: 100%;
    }

    .offer-details-item {
      
    }

.article-image img {

    width: 100%;
}

.contact-item {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
}
}

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

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

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0;
    }

.offer-link .btn.btn-lg.btn-white {
    padding-left: 10px;
    padding-right: 10px;
}
.person-item {
        width: 100%;
    }

.contact-item {
    width: 100%;
    border: 0 none;
    text-align: center;
}

.contact-box {
    justify-content: center;
    border: 0 none;
}

.contact-item .text.txt h2 {
    text-align: center;
}
.contact-icon{
width: 40px;
    height: 40px;

}

.social-icon {
    width: 40px;
    height: 40px;
}
}

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

    .person-item {
        width: 100%;
        border: 0 none;
    }

.person-box {
    border: 0 none;
}

    .contact-item {
        width: 100%;
    }

.contact-item {
    border: 0 none;
}

.contact-box {
    border: 0 none;
}

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

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

    .controls.captcha-container .col-sm-6.form-group-lg.form-group {
        width: 100%;
    }

    .controls.captcha-container {
        flex-wrap: wrap;
    }

    .news-item {
        width: 100%;
    }

.offer-details-item {
    width: 100%;
    max-width: 320px;
    margin: auto;
}
}

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

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

    .pagination-wrapper ul li {
        padding: 0;
    }
}

@media screen and (max-width: 400px) {
    .contact-link-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;
        --space-30: 25px;

        --font-64: 48px;
        --font-48: 40px;
        --font-40: 36px;
        --font-36: 32px;
        --font-35: 32px;
        --font-30: 26px;
        --font-26: 23px;
        --font-24: 22px;
        --font-20: 19px;
    }
}

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

        --font-64: 45px;
        --font-48: 36px;
        --font-40: 34px;


        --container-padding: 30px;
    }
}

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

        --font-64: 43px;
        --font-48: 34px;
        --font-40: 32px;
        --font-36: 28px;
        --font-35: 28px;
        --font-30: 24px;
        --font-20: 18px;
        --font-18: 17px;
    }
}

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

        --font-64: 40px;
        --font-48: 32px;
        --font-40: 30px;

        --container-padding: 20px;
    }
}

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

        --font-64: 38px;
        --font-48: 30px;
        --font-40: 28px;
    }
}

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

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

@media screen and (max-width: 639px) {
    :root {
        --font-64: 34px;
        --font-48: 30px;
        --font-40: 26px;
        --font-36: 24px;
        --font-35: 23px;
        --font-30: 22px;
        --font-26: 19px;
        --font-24: 18px;
        --font-22: 17px;
        --font-20: 17px;
        --font-18: 16px;
    }
}

@media screen and (max-width: 424px) {
    :root {
        --font-64: 32px;
        --font-48: 24px;
        --font-40: 22px;
        --font-36: 20px;
        --font-30: 20px;
        --font-26: 17px;
        --font-24: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}
