@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%);
        -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 > 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);
    -ms-transform: rotateZ(180deg);
}

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

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

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

/**
 * 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: var(--color-primary);
}

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

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

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

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

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

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

}

@media screen and (max-width: 1600px) {
    .benefits-box, .subpage .benefits-box {
        margin: -30px -20px;
    }

    .benefit-item, .subpage .benefit-item {
        padding: 30px 20px;
    }

    .grid-photo {
        width: 43.7%;
    }

    .faq-box-container {
        padding-top: 260px;
    }

    .offices-box-container {
        padding-bottom: 220px;
    }

    .package-slide {
        padding: 30px 25px;
    }

    .package-slider {
        margin: -30px -25px;
    }
}

@media screen and (max-width: 1440px) {
    .footer-top-title {
        margin-bottom: 0;
    }

    .slide-left + .slide-text {
        margin-left: 0;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-right: 25px;
    }

    .grid-photo {
        width: 47.7%;
    }

    .faq-box-container {
        padding-top: 225px;
    }

    .offices-box-container {
        padding-bottom: 190px;
    }

    .reservation-box-container {
        padding-bottom: 270px;
    }

    .package-slide {
        padding: 30px 20px;
    }

    .package-slider {
        margin: -30px -20px;
    }
}

@media screen and (max-width: 1366px) {
    .offer-box {
        margin-left: -20px;
        margin-right: -20px;
    }

    .offer-item {
        padding-right: 20px;
        padding-left: 20px;
    }

    .offer-box-container {
        padding-bottom: 20px;
    }

    .offices-box-container {
        padding-bottom: 180px;
    }

    .offices-box-container {
        padding-top: calc(var(--space-50) + var(--space-60));
    }

    .contact-link-bottom .btn-icon {
        width: 50px;
        height: 50px;
        margin-right: 25px;
    }

    .reservation-box-container {
        padding-bottom: 250px;
    }

    .package-slide {
        padding: 30px 15px;
    }

    .package-slider {
        margin: -30px -15px;
    }
}

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

    .offer-box {
        margin-left: -15px;
        margin-right: -15px;
    }

    .offer-item {
        padding-right: 15px;
        padding-left: 15px;
    }

    .footer-top {
        padding-bottom: 20px;
    }

    .faq-box-container {
        padding-top: 205px;
    }

    .offices-box-container {
        padding-bottom: 160px;
    }

    .reservation-box-container {
        padding-bottom: 230px;
    }

    .package-slide {
        padding: 30px 10px;
    }

    .package-slider {
        margin: -30px -10px;
    }

    .profit-item {
        width: 43%;
    }

    .faq-box-container {
        padding-top: 200px;
    }
}

@media screen and (max-width: 1200px) {
    .offices-box-container {
        padding-bottom: 150px;
    }

    .about-photo img {
        max-width: 80%;
    }

    .reservation-box-container {
        padding-bottom: 210px;
    }

    .package-slide {
        padding: 30px 5px;
    }

    .package-slider {
        margin: -30px -5px;
    }

    .package-title-box {
        padding: 0 10px;
    }

    .profit-item {
        width: 48%;
    }

    .faq-box-container {
        padding-top: 190px;
    }
}

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

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

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

    .footer-bar-content {
        padding: 10px 0;
    }

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

    .about-box-title {
        max-width: 64%;
    }

    .about-photo img {
        max-width: 85%;
    }

    .about-text {
        width: 45%;
        padding-left: 30px;
    }

    .about-photo {
        width: 55%;
    }

    .offer-text {
        padding-left: 0;
        opacity: 1;
    }

    .grid-item .counter-nb-box {
        font-size: 20px;
    }

    .grid-item .counter-text {
        font-size: 13px;
    }

    .grid-item .counter-box {
        width: 161px;
        height: 160px;
    }

    .grid-item .counter-box-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .mainpage .logo {
        display: block;
    }

    .footer-top {
        background: transparent;
    }

    header {
        background: #1A234D;
    }

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

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

    .slider {
        height: auto;
        min-height: 1px;
    }

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

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

    .description {
        max-width: 100%;
    }

    .counter-box {
        width: 180px;
        padding-bottom: 180px;
    }

    .counter-nb-box {
        font-size: 30px;
    }

    .counter-text {
        font-size: 18px;
    }

    .counter-box-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    img.she {
        display: none !important;
    }

    .footer-boxes {
        width: 65%;
    }

    .contact-link-bottom {
        margin-bottom: 25px;
    }

    .footer-top-title {
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
    }

    footer {
        background: transparent;
    }

    .profit-item {
        width: 45%;
    }
}

@media screen and (max-width: 1050px) {
    .offer-box {
        flex-wrap: wrap;
    }

    .offer-item {
        width: 50%;
    }
    .opinion-box:nth-child(2n){
        border-left: unset ;
    }
    .opinion-box{
        border-right: 1px solid rgba(0,0,0,0.1) !important;
    }

    .opinion-box{
        width: 50%;
        border-left: 1px solid rgba(0,0,0,0.1);
    }
}

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

    .footer-boxes {
        width: 70%;
    }

    .reservation-box-container {
        padding-bottom: 190px;
    }

    .package-title {
        margin-bottom: 0;
    }

    .profit-item {
        width: 46%;
    }

    .faq-box-container {
        padding-top: 180px;
    }

}

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


@media screen and (max-width: 900px) {
    .footer-bar {
        text-align: center;
        line-height: normal;
    }
    .package-slider-nav-inner{
        gap: var(--space-25);
        justify-content: center;
    }
    .package-slider-nav{
        top: unset;
        transform: unset;
        position: static;
        margin-bottom: var(--space-60);
    }
    .package-slider-wrapper{
        padding: 0;
    }
    .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;
    }

    .copyright:before {
        display: none;
    }


    .benefit-item, .subpage .benefit-item {
        width: 50%;
        padding: 20px;
    }

    .benefits-box, .subpage .benefits-box {
        margin: -20px;
    }

    .footer-boxes {
        width: 78%;
    }

    .news {
        width: 50%;
    }

    .contact-right {
        display: none;
    }

    .contact-left {
        width: 100%;
    }

    .contact-link .btn-icon {
        width: 60px;
        height: 60px;
        margin-right: 30px;
    }

    .reservation-box-container {
        padding-bottom: 170px;
    }

    .profit-item {
        width: 47%;
    }

    .faq-box-container {
        padding-top: 160px;
    }
}

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

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

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

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

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

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

    .about-text {
        width: 100%;
        padding-left: 0;
    }

    .about-photo img {
        max-width: 100%;
    }

    .offer-item {
        width: 100%;
    }

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

    .offer-title {
        justify-content: flex-start;
        align-items: center;
    }

    span.offer-icon {
        width: 90px;
    }

    .offer-item {
        width: 100%;
    }

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

    .offer-title {
        justify-content: flex-start;
        align-items: center;
    }

    span.offer-icon {
        width: 90px;
    }

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

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

    .grid-photo img {
        max-width: 100%;
    }

    .grid-text {
        width: 100%;
    }

    .footer-boxes {
        width: 90%;
    }

    .reservation-box-container {
        padding-bottom: 150px;
    }

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

    .package-slide {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .package-item-inner {
        width: 100%;
    }

    .package-item-content {
        width: 100%;
    }

    .package-price-box {
        min-height: 1px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .package-title-box {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .package-price-box {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .step {
        width: 100%;
        border-right: 0 none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        margin-bottom: 30px;
    }

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

    .profit-item {
        width: 48%;
    }

    .profit-item {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .faq-box-container {
        padding-top: 140px;
    }
}


@media screen and (max-width: 639px) {
    .slide-left.with-text {
        display: none;
    }
    .opinion-box {
        width: 100%;
        border: unset !important;
        border-bottom: 1px solid rgba(0,0,0,0.1) !important ;
    }
    .service-details-header .btn{
        margin: 0;
    }
    .service-details-header .service-details-photo{
        margin-top: var(--space-25);
    }
    .service-details-header{
        gap: 10px;
        justify-content: center;
    }
    #content, .subpage #content {
        padding-top: 67px;
    }

    .logo a {
        display: block;
        width: 50px;
        transition: width 300ms;
    }

    .benefit-item, .subpage .benefit-item {
        width: 50%;
        padding: 20px 10px;
    }

    .benefits-box, .subpage .benefits-box {
        margin: -20px -10px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .main-menu-button {
        margin-left: 5px;
    }

    .top-right .btn.has-icon .btn-icon {
        margin: 0;
    }

    .top-right .btn.has-icon {
        width: 46px;
        padding: 0 !important;
        height: 46px;
    }

    .top-right .btn.has-icon .btn-caption {
        display: none;
    }

    .slide-text {
        width: 100%;
    }

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

    .mask.mask-about {
        display: none;
    }

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

    .footer-boxes {
        width: 100%;
    }

    .reservation-box-container {
        padding-bottom: 130px;
    }
}

@media screen and (max-width: 560px) {
    .text {
        word-wrap: break-word;
    }
    .whatsapp-button {
        width: 60px;
    }
    .gallery-list-item {
        width: 50%;
    }

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

    .footer-boxes {
        flex-direction: column;
    }

    img.logo-min {
        height: 120px;
    }

    .reservation-box-container {
        padding-bottom: 110px;
    }

    .profit-icon {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }
}

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

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .contact-link .btn-icon,
    .contact-link-bottom .btn-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .contact-link-bottom, .contact-link {
        font-size: 14px;
    }

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

    .subpage .benefit-item, .benefit-item {
        width: 100%;
    }

    .news {
        width: 100%;
    }

    .news-photo img {
        width: 100%;
    }

    .reservation-box-container {
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 424px) {
    .profit-item {
        flex-direction: column;
    }

    .profit-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

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

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

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

    .slide-text {
        width: 100%;
    }

    .slide-left img {
        max-width: 100%;
        height: 140px;
    }

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

    .offices-box-container {
        padding-bottom: 40px;
    }

    .reservation-box-container {
        padding-bottom: 70px;
    }

    .contact-link, .contact-link-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@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-50: 42px;
        --font-48: 40px;
        --font-40: 36px;
        --font-36: 32px;
        --font-35: 32px;
        --font-30: 26px;
        --font-26: 23px;
        --font-24: 22px;
    }
}

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

        --font-50: 38px;
        --font-48: 36px;
        --font-40: 34px;

        --container-padding: 30px;
    }
}

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

        --font-50: 35px;
        --font-48: 34px;
        --font-40: 32px;
        --font-36: 28px;
        --font-35: 28px;
        --font-30: 24px;
        --font-26: 22px;
        --font-18: 17px;
    }
}

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

        --font-50: 33px;
        --font-48: 32px;
        --font-40: 30px;

        --container-padding: 20px;
    }
}

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

        --font-50: 32px;
        --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-50: 36px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-50: 31px;
        --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: 16px;
        --font-18: 16px;
    }
}

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