@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) {

    .newsletter-box .form .alert-block .error {
        padding-left: 34px;
    }

    header .login-form {
        display: none;
    }

    .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: var(--color-primary);
    border: none;
}

.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}

.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: var(--color-secondary);
}

.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: 19px;
    height: 19px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px 0;
}

.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
    font-size: 16px;
}

.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}

.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

.rwdMenu .rwdMenu-count {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 14px;
    color: #000;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rwdMenu .user-nav li + li:before {
    display: none;
}

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}

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

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

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

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 15px 15px 15px 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: 6px;
}

.rwdButton .animIcon {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
}

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

.rwdButton.rwdPanel-action-toggle.active {
    color: #fff;
    background-color: #f00;
}

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

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

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

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

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


@media screen and (max-width: 1600px) {
    .offer-section .bottom {
        margin-right: var(--space-60);
        margin-left: var(--space-60);
    }
}

@media screen and (max-width: 1440px) {
    .servicePage .right img {
        margin-right: var(--space-50);
        max-width: 450px;
    }

    .phone-tiles-section .left .img {
        margin-right: var(--space-50);
    }

    .numbers-section .wrapper {
        column-gap: calc(var(--space-50) * 2 - 10px);
    }

    .slider-section .img {
        right: 0;
    }

    .slider-section .wrapper {
        min-height: unset;
    }

}

@media screen and (max-width: 1280px) {
    .tiles-section .text-wrapper {
        padding-left: calc(var(--space-50) * 1.5);
    }

    .tiles-section .inner-wrapper:nth-of-type(even) .text-wrapper {
        padding-right: calc(var(--space-50) * 1.5);
    }

    .numbers-section .icon-number-wrapper {
        justify-content: center;
    }

    .numbers-section .text {
        text-align: center;
    }

    .phone-tiles-section .tile .icon {
        width: 75px;
        height: 75px;
    }

    .phone-tiles-section .tile .icon svg {
        max-width: 65px;
        max-height: 65px;
    }
}

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

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

@media screen and (max-width: 1139px) {
    .popular .popular-text{
        font-size: calc(var(--font-24) - 4px);
    }

    .slider-section .img {
        position: absolute;
        bottom: 0;
        right: max(calc(((100vw - 1720px + 2 * var(--container-padding)) / 2)), calc(var(--container-padding)));
        max-width: 325px;
    }

    .tiles-section .inner-wrapper {
        flex-direction: column;
    }

    .tiles-section img {
        width: 75%;
        margin-bottom: var(--space-50);
    }

    .tiles-section .inner-wrapper .title {
        text-align: center;
    }

    .tiles-section .inner-wrapper .text {
        text-align: center;
    }

    .tiles-section .inner-wrapper:nth-of-type(even) {
        flex-direction: column;
    }


    .tiles-section .text-wrapper {
        width: 100%;
    }

    .phone-tiles-section .tile {
        gap: calc(var(--space-25));
    }

    .phone-tiles-section .tile .icon {
        width: 60px;
        height: 60px;

    }

    .phone-tiles-section .tile .icon svg {
        max-width: 40px;
        max-height: 40px;
    }

    .phone-tiles-section .left .img {
        margin-right: 0;
    }


    .servicePage .right img {
        margin-right: 0;
    }

    .servicePage .form-email {
        max-width: 450px;
    }


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

    #main-menu {
        display: none;
    }

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

    .rwd-hide {
        display: none;
    }

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

    .container {
        width: 100%;
    }

    .article-image {
        margin-right: 25px;
        margin-bottom: 15px;
    }

    .lang .langs-menu-short {
        display: none;
    }

    .lang .langs-menu-long {
        display: block;
    }

    .mainsearch.rwdPanel .mainsearch-search {
        background-color: #f0f;
    }

    .mainsearch.rwdPanel .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
    }

    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }

    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }

    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        flex-grow: 0;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }

    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }

    #content {
        padding: 10px 10px 0 10px;
    }

    footer {
        padding: 0 10px;
    }

    header {
        padding-left: 0;
        padding-right: 0;
    }

    .header-main-content {
        justify-content: end;
    }

    .main-menu-button {
        margin: 0;
        color: #fff;
    }

    header {
        padding-top: 10px;
        background-color: #fff;
    }

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

    .mainpage header:not(.sticky) .logo {
        display: block;
    }

    .mainpage header:not(.sticky) .header-main-content {
        padding: 15px var(--space-50);
        background: var(--gradient-primary);
    }

    .tiles-section .text {
        max-height: unset;
        overflow-y: unset;
        padding: 0;
        margin: 0;
    }

    .tiles-section .text-wrapper {
        padding: unset;
    }

    .tiles-section .inner-wrapper:nth-of-type(even) .text-wrapper {
        padding: unset;
    }

    footer .fa.fa-angle-down {

        margin-left: 5px;
        display: inline-flex;
        transition: all 0.3s;
    }

    footer .footer-title.active .fa.fa-angle-down {
        rotate: 180deg;
    }

    .footer-main {
        padding-top: 65px;
    }

    .footer-wrapper {
        gap: var(--space-40);
    }

    .footer-col-content li:last-of-type {
        margin-bottom: calc(var(--space-40) - 5px);
    }

    .footer-content {
        display: none;
    }

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

    .footer-col:last-of-type {
        width: 100%;
    }

    .footer-logotypes {
        flex-direction: row;
    }

    .footer-col {
        width: 100%;
    }

    .footer-contributors {
        margin-left: 0;
    }

    .footer-col:first-of-type {
        width: 100%;
    }
}

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

    .offer-section .bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-section .popular {
        grid-area: 2/1;
        grid-column: 1 / 2 span;
        width: 50%;
        margin: 0 auto;
        margin-top: 1px;
    }

    .phone-tiles-section .left .img {
        max-width: 350px;
    }

    .servicePage .form-email {
        max-width: 400px;
    }

    .servicePage .right img {
        max-width: 400px;
    }
}

@media screen and (max-width: 900px) {
    .offer-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-section .img {
        max-width: 275px;
    }

    .numbers-section .number {
        font-size: var(--font-30);
    }

    .numbers-section .icon {
        min-width: 40px;
    }

    .phone-tiles-section .left .img {
        max-width: 280px;
    }


    .servicePage .right img {
        max-width: 350px;
    }

    .servicePage .siteblock-message {
        position: absolute;
        top: calc(var(--container-padding) * 3);
        left: var(--container-padding);
        right: var(--container-padding);
        max-width: unset;
        text-align: center;
    }


    .footer-logo {
        width: 30%;
    }


    .footer-right {
        width: 70%;
    }

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

    .background-wrapper {
        padding: calc(var(--space-50) + 5px) calc(var(--space-50) * 1 + 5px);
    }

    .functions-section .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 820px) {
    .servicePage .newsletter-box {
        display: flex;
        flex-direction: column-reverse;
    }

    .servicePage .form-email {
        position: absolute;
        top: 235px;
        max-width: 580px;
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-box .form .alert-block .error {
        width: calc(100% - 30px);
    }

    .servicePage .btn-newsletter {
        right: 15px;
    }

    .servicePage .form-control {
    }

    .servicePage .newsletter-box .title {
        padding-top: 100px;
    }


}

@media screen and (max-width: 767px) {
    .slider-section{
        padding-bottom: 0!important;
    }

    .slider-section .img{
        bottom: 0!important;
    }

    .slider-section .text-wrapper{
        margin-bottom: 0!important;
    }

    .header-main-right > .user-nav > li:nth-of-type(2){
        display: none;
    }

    .slider-section .btn {
        align-self: center;
        white-space: wrap;
    }

    .slider-section .img {
        padding-left: 30px;
    }

    .slider-section .title {
        text-align: center;
    }

    .slider-section .text {
        text-align: center;
    }

    .slider-section .wrapper {
        flex-direction: column;
    }

    .slider-section .text-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .slider-section .img {
        position: relative;
        bottom: calc(var(--space-50) * -2);
        width: 100%;
        margin-left: auto;
        max-width: 350px;
    }

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

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

    }

    .phone-tiles-section .left {
        display: none;
    }

    .servicePage .right img {
        width: 300px;
    }

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

    .phone-tiles-section .section-title {
        width: 100%;
        text-align: center;
    }


}

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


@media screen and (max-width: 700px) {
    .offer-section .bottom {
        grid-template-columns: repeat(1, 1fr);
    }

    .offer-section .bottom {
        margin-top: calc(var(--space-50) * -4 - var(--space-40) + 2px);
    }

    .offer-section .popular {
        grid-area: 1;
        margin-bottom: 1px;
        grid-column: unset;
        width: 100%;
        margin-top: 1px;
    }
}

@media screen and (max-width: 639px) {
    .footer-col:first-of-type .footer-links{
        grid-template-columns: 1fr;
    }

    .offer-list {
        grid-template-columns: 1fr;
    }

    .date-and-star-extra {
        margin-bottom: 80px;
    }


    .opinions-section .prev {
        left: var(--space-40);
        bottom: unset;
        top: -45px;
    }

    .opinions-section .next {
        right: var(--space-40);
        bottom: unset;
        top: -45px;
    }

    .opinions-section .prev, .opinions-section .next {
        width: 50px;
        height: 50px;
    }

    .footer-contributors .title {
        text-align: center;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-right {
        width: 100%;
    }

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

    .footer-contributors .title {
        margin-right: 0;
        margin-bottom: var(--space-25);
    }

    .footer-col-content li {
        display: flex;
        justify-content: center;
    }

    .footer-col-title {
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-col:last-of-type .footer-col-title {
        border-bottom: 0;
    }

    .footer-col:last-of-type {
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-contributors {
        margin-top: var(--space-40);
    }

    .footer-col-title {
        text-align: center;
    }

    .footer-contributors .logotypes-wrapper, .footer-logotypes {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: var(--space-25);
    }

    .footer-contributors .logotypes-wrapper .footer-logotype, .footer-logotype {
        width: calc(25% - var(--space-25));
    }

    .tiles-section img {
        width: 85%;
    }

    .numbers-section .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .servicePage .right img {
        margin-bottom: 28px;
        margin-right: 112px;
    }

    .text-content-section .img {
        width: 90%;
        margin: 0 auto;
        float: unset;
        margin-bottom: var(--space-50);
    }

    .servicePage .right img {
        width: 250px;
    }

    .servicePage .newsletter-box .title {
        position: absolute;
        max-width: unset;
        text-align: center;
        top: 240px;
    }

    .servicePage .siteblock-message {
        font-size: 45px;
    }

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

    .custom-shape {
        width: 357px;
        height: 30px;
        background-color: #fff;
        opacity: 1;
        clip-path: path("M0,0 L0,0 C55.25,-5 34,30 80.75,30 L272,30 C301.75,30 297.5,-5 335.75,0 L357,0 L0,0 Z");
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) rotate(180deg);
    }

    header .custom-shape {
        left: 48%;
    }


    footer .custom-shape {
        width: 336px;
        height: 30px;
        background-color: #fff;
        opacity: 1;
        clip-path: path("M0,0 L0,0 C52,-5 32,30 76,30 L256,30 C284,30 280,-5 316,0 L336,0 L0,0 Z");
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) rotate(180deg);
    }

    footer .custom-shape-text {
        left: 49.5%;
    }
}

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

    .footer-logo {
        width: 40%;
    }

    .functions-section .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .phone-tiles-section .tiles-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .text {
        word-wrap: break-word;
        font-size: 14px;
    }

    .servicePage .right img {
        margin-right: 75px;
    }

    .servicePage .btn-newsletter {
        width: 100px;
    }

    .header-main-right .user-nav .user-nav-item {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .header-main-inner{
        gap: var(--space-25);
    }

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

    .footer-contributors .logotypes-wrapper .footer-logotype, .footer-logotype {
        width: calc(33.33% - var(--space-25));
    }

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

    .servicePage .right img {
        margin-right: 27px;
        width: 225px;
    }

    .tiles-section img {
        width: 100%;
    }
}

@media screen and (max-width: 440px) {
    .header-main-right .user-nav {
        display: none;
    }

    .header-main-content {
        padding: 15px var(--space-40);
    }

    .header-main-right {
        justify-content: space-between;
        width: 100%;
    }
}

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

    #rwd-mainmenu .header-btn {
        display: flex;
        margin-top: 15px;
        margin-left: 15px;
    }

    .header-main-right {
        justify-content: end;
    }

    .header-main-content .header-btn {
        display: none;
    }

    .footer-logo {
        width: 50%;
    }

    .offer-section .bottom {
        margin-right: var(--space-25);
        margin-left: var(--space-25);
    }

    .text-content-section .img {
        width: 100%;
    }

    .newsletter-box .form .alert-block .error {
        padding-left: 19px;
    }

    .footer-bar-links {
        margin: 0;
    }


    .servicePage .form-group-lg .form-control {
        padding: 10px 40px 10px 16px;
    }

    .servicePage .btn-newsletter {
        width: 115px;
    }

    .servicePage .btn-newsletter {
        font-size: 14px;
    }

    .servicePage .siteblock-message {
        font-size: 40px;
    }

    .servicePage .newsletter-box .title {
        font-size: 22px;
    }

    .servicePage .right img {
        margin-right: 0;
    }


}

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

