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

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

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

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

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

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

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

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

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

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

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

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 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: 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: 1830px) {
    .newsletter-box-title {
        font-size: 64px;
    }
}

@media screen and (max-width: 1800px) {
    .newsletter-box-title {
        font-size: 52px;
        margin-right: var(--space-40);
    }

    .newsletter-box-inner .form .form-control {
        width: 195px;
    }

    .newsletter-form .form-teaser {
        width: 30%;
    }

    .newsletter-box-right {
        width: 70%;
    }
}

@media screen and (max-width: 1700px) {
    #main-menu > ul > li + li {
        margin-left: var(--space-25);
    }

    .offer-box-extra-left {
        margin-right: calc(2 * var(--space-50));
    }

    .contact-item-extra .icon {
        margin-right: 12px;
    }

    .contact-item-extra .icon {
        width: 18px;
        height: 18px;
    }

    .contact-item-extra .icon-email {
        width: 20px;
        height: 14px;
    }

    .offer-box-extra-left {
        font-size: 20px;
    }
}

@media screen and (max-width: 1670px) {
    .news-box-right {
        padding-right: 15px;
    }

    .form-item-container {
        padding: 10px;
    }

    .form-list {
        margin: -10px;
    }

    .trust-list {
        margin: 0;
    }
}

@media screen and (max-width: 1600px) {
    .info-slide .info-left {
        width: 35%;
    }

    .info-center .info-left {
        width: 26%;
    }

    /*.info-slide .info-right {*/
    /*    width: 65%;*/
    /*}*/
    .info-center .info-right {
        width: 74%;
    }

    .info-slide .info-bigText2 {
        bottom: 15px;
    }

    .contact-bigText1, .contact-bigText2 {
        font-size: 90px;
    }

    .contact-left.font-small .contact-bigText1,
    .contact-left.font-small .contact-bigText2{
        font-size: 70px;
    }

    .choice-list {
        margin: -8px;
    }

    .choice-item-container {
        padding: 8px;
    }

    .choice-content {
        padding: var(--space-60) var(--container-padding);
    }

    .header-left nav {
        padding-left: 8%;
    }

    #main-menu > ul > li + li {
        margin-left: 15px;
    }

    .offer-box-icon {
        width: 45px;
        height: 45px;
        margin: -15px;
    }


    .text-columns .text {
        column-gap: var(--space-50) !important;
    }

    .offer-list-hover {
        line-height: 16px;
        font-size: 13px;
    }

    .newsletter-box-inner {
        padding: calc(2 * var(--space-40) + 6px) calc(2 * var(--space-40));
    }

    .newsletter-form .form-teaser{
        margin-right: calc(2 * var(--space-40) - 4px);
    }
}

@media screen and (max-width: 1500px) {
    .news-left {
        width: 30%;
        display: flex;
        align-items: flex-start;
    }

    .news-right {
        width: 70%;
    }

    .big-news-box .date {
        width: 44px;
        height: 44px;
        font-size: 15px;
        font-weight: 700;
    }

    .aboutUs-trust-inner .icon {
        width: 66px;
        height: 66px;
        flex-shrink: 0;
    }

    .aboutUs-trust-text {
        width: unset;
    }

    .form-left {
        width: 35%;
    }

    .form-right {
        width: 65%;
    }

    #toggle-menu .menu:not(.cloneMenu) {
        padding: 20px;
    }

    .choice-item-container {
        width: 25%;
    }

    #main-menu > ul > li + li {
        margin-left: 10px;
    }
}

@media screen and (max-width: 1440px) {
    .jobOffers-top .title.center, .projects-top-content .title {
        font-size: 70px;
    }

    .text-line1 {
        font-size: 70px;
    }

    .jobOffers-banner .title {
        width: 80%;
    }

    .aboutUs-title1, .aboutUs-title2 {
        font-size: 80px;
    }

    .subsystems-img {
        position: relative;
    }

    .subsystems-content {
        display: flex;
    }

    .subsystem-box {
        width: 70%;
    }

    .subsystems-top {
        position: static;
        width: 32%;
    }


    .subsystems-right {
        width: 68%;
        display: flex;
        align-items: center;
    }

    .standard-bg .title {
        font-size: var(--font-48);
    }

    #toggle-menu .menu:not(.cloneMenu) {
        padding: 25px;
    }

    .info-slide .bigText {
        font-size: 4.4vw;
    }

    .info-center .info-bigText2 {
        right: 30%;
    }

    .toggle-image {
        padding-left: calc(2 * var(--space-40));
    }

    .scroll-about-us,
    .scroll-news,
    .scroll-offer {
        bottom: -20px;
    }

    .header-link {
        margin-right: 0;
    }

    #main-menu > ul > li + li {
        margin-left: 0;
    }

    .header-left nav {
        padding-left: 20px;
    }

    .scroll {
        right: 10px;
    }

    .pros-item-container .text {
        max-width: initial;
    }

    .pros-item-container {
        min-height: 180px;
    }

    .imageLeftTextRight .title {
        font-size: 80px;
    }

    .title15 {
        font-size: 70px;
    }

    .title25 {
        font-size: 36px;
    }

    .title3 {
        font-size: 38px;
    }

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

    .newsletter-box-inner {
        padding: calc(2 * var(--space-40) - 5px) var(--space-50);
    }

    .offer-box-extra-contact{
        gap: 15px;
    }

    .offer-box-extra-left {
        margin-right: var(--space-60);
    }


    #main-menu > ul > li > ul {
        padding: 40px 45px 45px 40px !important;
    }
}

@media screen and (max-width: 1390px) {
    .potential-left {
        width: 44%;
    }

    .potential-right {
        width: 56%;
    }

    .potential-bg .title {
        font-size: 60px;
    }

    .text-line1 {
        font-size: 60px;
    }
}

@media screen and (max-width: 1380px) {
    .contact-right .section-title {
        padding-bottom: var(--space-25);
    }

    .project-container {
        width: 50%;
    }

    .fullscreen {
        min-height: unset;
    }

    .news {
        padding: unset;
    }

    .aboutUs-top-inner {
        padding-bottom: 0;
    }

    .form-left {
        width: 40%;
    }

    .form-right {
        width: 60%;
    }

    .scroll-info {
        bottom: 0;
    }

    .about-us .title {
        font-size: 70px;
    }

    .pros-item-container {
        min-height: unset;
    }

    .contact-bigText1, .contact-bigText2 {
        font-size: 64px;
    }

    .contact-left.font-small .contact-bigText1,
    .contact-left.font-small .contact-bigText2{
        font-size: 58px;
    }

    .number {
        width: 40px;
        height: 40px;
    }

    .number::after {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .big-box .title {
        font-size: calc(var(--font-24) - 2px);
    }

    .menu:not(.cloneMenu) li a {
        min-height: 56px;
        font-size: 18px;
    }

    .contact-left {
        padding: 0;
    }

    .contact-left {
        min-height: 440px;
    }

    .header-left {
        width: 65%;
    }

    .header-right {
        width: 35%;
    }

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

    .text-columns .text span {
        font-size: 17px !important;
    }

    .contact-bigText1 {
        top: 12px;
    }

    .contact-bigText2 {
        bottom: 12px;
    }

    .contact-image {
        max-width: 38%;
    }
}


@media screen and (max-width: 1280px) {
    .jobOffers-top .title.center, .projects-top-content .title {
        font-size: 60px;
    }

    .job-offer-container {
        width: 50%;
    }

    .text-line1 {
        font-size: 50px;
    }

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

    .choice-item-container {
        width: 33.3333%;
    }

    .aboutUs-title1, .aboutUs-title2 {
        font-size: 70px;
    }

    .aboutUs-trust-inner {
        height: unset;
    }

    .aboutUs-trust-box-container {
        width: 50%;
        height: unset;
    }

    .aboutUs-trust-box-container:nth-child(4n - 2) .aboutUs-trust-box, .aboutUs-trust-box-container:nth-child(4n - 1) .aboutUs-trust-box {
        background-color: rgba(0, 2, 39, 0.4);
    }

    .aboutUs-trust-box-container:nth-child(4n - 4) .aboutUs-trust-box, .aboutUs-trust-box-container:nth-child(4n - 3) .aboutUs-trust-box {
        background: transparent;
    }

    .potential-right .lines-left {
        left: -28%;
    }

    .trust-item-container {
        padding: var(--space-25);
    }

    .contact-bigText1, .contact-bigText2 {
        font-size: 60px;
    }

    .contact-left.font-small .contact-bigText1,
    .contact-left.font-small .contact-bigText2{
        font-size: 54px;
    }

    .toggle-item-container {
        width: 33.3333%;
    }

    footer .cols .col {
        width: 25%;
    }

    .col1 .logo {
        width: 90%;
    }

    .standard-name {
        font-size: 20px;
    }

    .langs-menu {
        margin: 0 2px;
    }


    .offer-box-container {
        width: 33.3333%;
    }

    .imageLeftTextRight .title {
        font-size: 70px;
    }

    .logo {
        padding-left: 10px;
    }

    .form-logo {
        padding-left: 22px;
    }

    .mainNumber-number {
        font-size: 42px;
    }

    .mainNumber-item-inner {
        padding: 10px;
    }

    .mainNumber-teaser {
        text-align: center;
    }

    .offer-box-extra{
        width: 66.6666%;
    }

    .newsletter-form .form-teaser{
        margin-right: var(--space-40);
    }

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

    .newsletter-box-inner {
        padding: calc(2 * var(--space-40) - 5px) calc(var(--space-40) - 5px);
    }

    .newsletter-box-inner .form .form-control {
        width: 165px;
    }

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

    .social-toggle{
        width: 42px;
        height: 42px;
    }

    .slider-socials{
        right: 35px;
    }

}

@media screen and (max-width: 1200px) {
    .logotype-container {
        display: flex;
        width: 16.6666%;
    }
}

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

    .jobOffers-top .title.center, .projects-top-content .title {
        font-size: 50px;
    }

    .jobOffers-banner .title {
        width: 100%;
        padding: calc(var(--space-50) * 3) var(--container-padding);
    }


    .project {
        flex-direction: column;
        row-gap: var(--space-25);
    }

    .project-left-bg {
        text-align: center;
        width: 100%;
    }

    .project > div {
        text-align: center;
        width: 100%;
    }

    .person-container {
        width: 50%;
    }

    .news-category .news-box-container {
        width: 50%;
    }

    .news-content {
        flex-direction: column;
        row-gap: var(--space-25);
    }

    .news-content > div {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .big-news-box .date {
        width: 90px;
        height: 90px;
        font-size: 30px;
        font-weight: 700;
    }

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

    .aboutUs-title1, .aboutUs-title2 {
        font-size: 60px;
    }

    .potential-left {
        width: 38%;
    }

    .potential-right {
        width: 62%;
    }

    .potential-bg .title {
        font-size: 40px;
    }

    .advantage-container {
        width: 50%;
    }

    .advantages-list:not(.advantages-list-big, .advantages-list[data-size="4"]) {
        row-gap: calc(var(--space-60) + var(--space-25));
        margin: 0 calc((var(--space-60) + var(--space-25)) * -1);
        display: flex;
        flex-wrap: wrap;
        column-gap: 0;
        justify-content: space-evenly;
    }

    .advantage-container {
        padding: 0 calc(var(--space-60) + var(--space-25));
    }

    .form-inner {
        row-gap: var(--space-25);
        flex-wrap: wrap;
    }

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

    .form-item-container {
        flex-basis: 33.3333%;
    }

    .form-right {
        padding-left: 0;
    }

    .form-logo img {
        max-width: 100%;
        width: unset;
    }

    .about-us-left {
        width: 45%;
    }

    .about-us-right {
        width: 55%;
    }

    .contact-bigText1, .contact-bigText2 {
        font-size: 42px;
    }

    .contact-left.font-small .contact-bigText1,
    .contact-left.font-small .contact-bigText2{
        font-size: 38px;
    }

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

    .partnership-box-container {
        width: 50%;
    }

    .partnership-boxes {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .subsystems-content {
        display: block;
    }

    .subsystems-top {
        width: 100%;
    }

    .subsystems-right {
        width: 100%;
        margin-top: 15px;
    }

    /*.subsystem-box {*/
    /*display: flex;*/
    /*position: static;*/
    /*}*/
    /*.subsystems-img {*/
    /*flex-wrap: wrap;*/
    /*}*/
    /*.subsystems-img img{*/
    /*margin-bottom: 15px;*/
    /*}*/
    /*.subsystem-item {*/
    /*height: unset;*/
    /*width: 50%;*/
    /*padding: 10px;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*position: static;*/
    /*}*/
    /*.subsystem-box {*/
    /*width: 100%;*/
    /*flex-grow: 1;*/
    /*flex-direction: column;*/
    /*}*/
    .subsystems-img {
        justify-content: flex-start;
        max-width: unset;
    }

    /*.subsystem-item .icon-clickable {*/
    /*display: none;*/
    /*}*/
    /*.subsystem-box .img {*/
    /*width: unset;*/
    /*}*/
    .subsystem-box-right {
        padding-left: 0;
        width: 100%;
        padding-top: 0;
    }

    .lines-bg-left::before {
        display: none;
    }

    .header-link {
        margin-right: 10px;
    }

    .header-left {
        width: initial;
    }

    .header-right {
        width: initial;
    }

    .header-content {
        justify-content: space-between;
    }

    .toggle-nav {
        display: none;
    }

    .link-container i {
        display: none;
    }

    header nav a {
        line-height: 24px;
        letter-spacing: 0.7px;
    }

    .advantages-list[data-size="4"] .advantage-container {
        width: 33.3333%;
    }

    .choice-text {
        font-size: 16px;
    }

    .offer-box-icon {
        width: 42px;
        height: 42px;
        margin: -6px;
    }

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

    /*.subsystem-box-right .btn{*/
    /*display: none;*/
    /*}*/
    .about-us .title {
        font-size: 60px;
    }

    .pros-item-container {
        min-height: initial;
    }

    .politic-title-big {
        font-size: calc(2 * var(--font-48) - 5px);
    }

    .standards-list {
        margin: 0;
    }

    .imageLeftTextRight .title {
        font-size: 60px;
    }

    .scroll-section .viewport {
        overflow-y: auto;
    }

    .scroll-section .scrollbar {
        display: none;
    }

    .news-view .article-content-inner::-webkit-scrollbar {
        width: 14px;
    }

    .mainNumbers-list{
        gap: 20px;
    }

    .mainNumbers-item {
        width: calc(33.3333% - 14px);
    }

    .areas-list {
        margin: -20px auto;
    }

    .areas-item {
        width: 50%;
        padding: 20px;
    }

    .newsletter-box-inner {
        display: block;
    }

    .newsletter-box-title {
        margin-bottom: 15px;
    }



    .contact-image-hover{
        opacity: 1;
    }
    .contact-bg:before{
        opacity: 1;
    }

    .contact-image .icon {
        width: 220px;
        height: 220px;
    }

    .rwdPanel .social-list ul{
        display: flex;
        justify-content: center;
    }

    .rwdPanel .social-icon{
        border: 1px solid rgba(0,0,0,0.1);
    }

    .slider-socials{
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .logotype-container {
        display: flex;
        width: 20%;
    }
}

@media screen and (max-width: 1000px) {
    .imageLeftTextRight .title {
        margin-top: 20px;
    }

    .aboutUs-top-inner {
        display: flex;
        flex-direction: column;
        row-gap: var(--space-25);
    }

    .aboutUs-top-left {
        text-align: center;
    }

    .aboutUs-top-right .text {
        padding-left: 12px;
        margin: 0;
    }

    .aboutUs-top-inner > div {
        width: 100%;
    }

    .potential-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: var(--space-25);
    }

    .potential-content > div {
        width: 100%;
        justify-content: center;
    }

    .potential-list {
        padding-left: 0;
    }

    .potential-content .lines {
        width: 40%;
    }

    .potential-right .lines {
        right: -5%;
        bottom: unset;
        top: -264px;
        left: unset;
    }

    .potential-left .lines {
        top: 250px;
    }

    .potential-list {
        row-gap: var(--space-25);
    }

    .logotype-slider.slick-initialized, .logo-slider.slick-initialized {
        max-width: 80vw;
        margin: auto;
    }

    .trust-list {
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .trust-item-container {
        width: 50%;
    }

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

    .req-item-container {
        padding: calc(var(--space-25) + 5px);
    }

    .big-boxes-list {
        padding-bottom: var(--space-50);
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .big-box-container {
        width: 50%;
    }

    .partner-inner {
        column-gap: 25px;
        justify-content: space-around;
    }

    .text-columns .text {
        column-count: 1 !important;
    }

    .contact-image {
        max-width: 48%;
    }

    .offer-box-extra-left{
        margin-right: var(--space-40);
    }
}

@media screen and (max-width: 900px) {
    .btn-container {
        padding: var(--space-25) 0;
    }

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

    .section-top {
        flex-direction: column-reverse;
        text-align: center;
        row-gap: 10px;
    }

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

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

    .politic-item {
        flex-direction: column !important;
    }

    .politic-item > div {
        width: 100%;
    }

    .politic-left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .politic-right {
        padding: var(--space-25) 0 !important;
    }

    .politic-left img {
        height: unset;
        width: unset;
        max-width: 100%;
    }

    .personalPolitic {
        padding-bottom: 0;
        padding-top: 0;
        margin-bottom: calc(var(--space-40) - 6px);
    }

    .section-top {
        padding-bottom: calc(var(--space-40) - 6px);
    }

    .politic-item-container:last-child .politic-right {
        padding-bottom: 0 !important;
    }

    .jobOffers-banner {
        margin-bottom: calc(var(--space-40) + 4px);
    }

    .job-offers {
        padding-top: 0;
    }

    .job-offers-list {
        margin: -11px;
    }

    .job-offer-container {
        padding: 11px;
    }

    .offers {
        margin-bottom: 10px;
    }

    .toggle-row {
        flex-direction: column;
        row-gap: calc(var(--space-25));
    }

    .toggle-row > div {
        width: 100%;
    }

    .toggle-left {
        text-align: center;
    }

    .certificate-content {
        flex-direction: column;
        row-gap: var(--space-25);
    }

    .certificate-content > div {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .certificates-list {
        justify-content: space-evenly;
    }

    .certificate-container {
        width: 50%;
    }

    .choice-item-container {
        width: 50%;
    }

    .aboutUs-title1, .aboutUs-title2 {
        font-size: 40px;
    }

    .aboutUs-title2 {
        padding-left: 0;
    }

    .text-line1 {
        font-size: 40px;
    }

    .info-slide-container {
        flex-wrap: wrap;
    }

    .info-slide-container > div {
        width: 100% !important;
    }

    .info-slide .info-left {
        padding-top: 15px;
    }

    .info .lines {
        display: none;
    }

    .info-slide .img-container::after {
        display: none;
    }

    .info-slide .info-bigText1 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .info-slide .info-right {
        justify-content: center;
        order: -1;
    }

    .info-slide .bigText {
        font-size: 50px;
        padding: 0 10px;
        text-align: center;
    }

    .info-slide .info-bigText2 {
        position: static;
        margin-left: 5px;
    }

    .info-slide .img-container {
        max-width: 100%;
        width: unset;
    }

    .info-left .text {
        width: unset;
    }

    .about-us-content {
        flex-wrap: wrap;

    }

    .about-us-content > div {
        width: 100%;
    }

    .about-us-right {
        padding-left: 0;
    }

    .about-us .section-top {
        padding: var(--space-25) 0;
    }

    .standard-content {
        flex-wrap: wrap;
        row-gap: var(--space-60);
    }

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

    .standard-overlay {
        position: static !important;
        max-width: unset;
    }

    .standard-right {
        padding-left: 0;
    }

    .pros-item-container {
        width: 50%;
    }

    .pros-item-container:nth-child(odd) .pros-item, .pros-item-container:nth-child(even) .pros-item {
        background-color: unset;
        color: var(--color-primary);
    }

    .pros-item-container:nth-child(odd) .text {
        color: unset;
    }

    .pros-item-container .text {
        color: unset;
    }

    .pros-item-container .pros-item {
        background-color: transparent
    }

    .pros-item-container {
        width: 50%;
    }

    .pros-item-container:nth-child(4n - 1) .pros-item, .pros-item-container:nth-child(4n - 2) .pros-item {
        background-color: var(--color-primary);
        color: #ffffff;

    }

    /*.pros-item-container:nth-child(4n - 1) .pros-item svg path, .pros-item-container:nth-child(4n - 2) .pros-item svg path,*/
    /*.pros-item-container:nth-child(4n - 1) .pros-item svg, .pros-item-container:nth-child(4n - 2) .pros-item svg {*/
    /*    fill: #ffffff;*/
    /*}*/

    .standard-section {
        padding-bottom: var(--space-25);
    }

    .standard-right .section-title {
        padding-bottom: var(--space-50);
    }


    .contact-right .section-title {
        padding-bottom: var(--space-25);
    }

    .contact-right {
        padding-left: 25px;
    }

    .contact-right .contact-item {
        padding-top: var(--space-50);
    }


    .reference-content {
        flex-direction: column;
        row-gap: var(--space-25);
    }

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

    .reference-right {
        padding-left: 0;
    }

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

    .strengths-boxes > div {
        width: 100%;
    }

    .projectpreview-top .section-top .section-top-text {
        width: 100%;
        text-align: center;
    }

    .project-bottom-row {
        flex-wrap: wrap;
        row-gap: var(--space-25);
    }

    .project-bottom-row > div {
        width: 100%;
    }

    .project-bottom-left {
        text-align: center;
    }

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

    .req-item-container {
        width: 33.3333%;
    }

    .text-boxes {
        flex-wrap: wrap;
    }

    .text-box {
        width: 100%;
    }

    .partner-products-content .toggle-top {
        justify-content: center;
    }


    footer .cols .col {
        width: 50%;
    }

    .col1 .logo {
        width: 183px;
        padding-bottom: 38px;
        padding-left: 23px;
    }

    .cols {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .image-text-right h2 img {
        max-width: 48px;
    }

    .section-image-right .section-image-right-content {
        margin-bottom: var(--space-50);
    }

    .advantages-list-big {
        flex-wrap: wrap;
        margin: -10px !important;
    }

    .advantages-list-big .advantage-container {
        width: 100% !important;
        padding: 10px !important;
    }

    .advantages-list-big .advantage-container + .advantage-container {
        margin-top: 15px;
    }

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

    .pros::before {
        display: none;
    }

    .standard-name {
        font-size: 18px;
    }

    .reference-left-title, .certificate-left-title {
        left: 50%;
        width: 90%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .advantages-list[data-size="3"] .advantage-container {
        width: 50%;
    }

    .toggle-image {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .toggle-image img {
        margin: 0 auto;
    }

    .text-image .toggle-title {
        width: 50%;
    }

    .text-image .text {
        width: 50%;
    }

    .choice-content {
        background-attachment: fixed;
    }

    .offer-box-icon {
        width: 38px;
        height: 38px;
        margin: -9px;
    }

    /*.subsystem-box-right .btn-close{*/
    /*display: none;*/
    /*}*/
    .about-us .title {
        font-size: 50px;
    }

    .subsystem-box {
        width: 90%;
    }


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

    .logo {
        padding-left: 15px;
    }

    .form-logo {
        padding-left: 14px;
        padding-bottom: 30px;
    }

    .info-slide .bigText {
        left: 0;
    }

    .offer-box-extra-inner{
        padding: 20px 15px;
        display: block;
    }

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

    .newsletter-form {
        display: block;
    }

    .newsletter-form .form-teaser {
        width: 100%;
    }

    .newsletter-box-right {
        width: 100%;
        margin-top: 15px;
    }

    .text-line2{
        margin-bottom: 10px;
    }

    .top .btn{
        margin-bottom: 20px;
    }
}

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

    .jobOffers-top .title.center, .projects-top-content .title {
        font-size: 40px;
    }

    .job-offer-container {
        width: 100%;
    }

    .offer-box-container {
        width: 50%;
    }

    .news-box {

        flex-direction: column;
    }

    .news-box > span {
        width: 100%;
    }

    .pagination-wrapper {
        max-width: unset;
    }

    .aboutUs-top .certificates {
        display: flex;
        width: 100%;
        align-self: center;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: calc(var(--space-50) * 2);
    }

    .aboutUs-top .certificate {
        max-width: 50%;
    }

    .aboutUs-trust-box-container {
        width: 100%;
        height: unset;
    }

    .aboutUs-trust-box-container:nth-child(2n) .aboutUs-trust-box {
        background-color: rgba(0, 2, 39, 0.4);
    }

    .aboutUs-trust-box-container:nth-child(2n + 1) .aboutUs-trust-box {
        background: transparent;
    }

    .advantage-container {
        width: 100%;
    }

    .logotype-slider.slick-initialized, .logo-slider.slick-initialized {
        max-width: 75vw;
        margin: auto;
    }

    .form-item-container {
        flex-basis: 50%;
    }

    .about-us-right .text-container .text:nth-child(2) {
        width: 100%;
    }

    .about-us-right .certificates {
        width: 100%;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .about-us-right .certificate {
        width: unset;
        max-width: 25%;
    }

    .partnership-first .partnership-box {
        padding: 38px;
    }

    .partnership-box-container {
        padding: 0 10px;
        width: 100%;
    }

    .partnership-boxes {
        margin: 0 -10px;
    }

    .aboutUs-top-wrapper {
        display: block;
    }

    .aboutUs-top-left, .aboutUs-top-right {
        width: 100%;
    }

    .aboutUs-top-right {
        margin-top: 20px;
        height: initial;
    }

    .section-title {
        line-height: 1;
    }

    .advantages-list[data-size="4"] .advantage-container {
        width: 50%;
    }

    .info-center .info-right {
        display: block;
    }

    .info-center .info-right .text {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .info-center .info-bigText2 {
        bottom: -7px;
        right: 0;
    }

    .offer-box-icon {
        margin: -4px;
    }

    .contact-image {
        max-width: 62%;
    }

    .btn {
        letter-spacing: 0.7px;
        white-space: normal;
    }

    .info-slide .bigText {
        font-size: 40px;
    }

    .mainContact {
        width: 40px;
        font-size: 16px;
        padding: 18px 12px;
        padding-bottom: 30px;
    }

    .mainNumbers-list {
        margin-right: 0;
    }

    .mainNumber-number {
        font-size: 32px;
    }

    .mainNumbers-item .icon {
        width: 90px;
        height: 90px;
    }

    .offer-box-extra{
        width: 100%;
    }

    .logo{
        padding: 20px;
        padding-left: 0;
    }

    .header-link .icon{
        margin-right: 3px;
    }

}

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

@media screen and (max-width: 664px) {
    .logotype-container {
        display: flex;
        width: 33.3333%;
    }
}

@media screen and (max-width: 670px) {
    header{
        height: initial;
    }
    .header-content{
        position: relative;
        padding-top: 50px;
        height: initial;
    }

    .header-link{
        position: absolute;
        top: 12px;
        width: 100%;
        margin-right: 0;
        justify-content: center;
    }

    #content{
        padding-top: 126px;
    }
}

@media screen and (max-width: 639px) {
    .scroll {
        display: none;
    }

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

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

    .toggle-top {
        flex-direction: column;
        align-items: center;
        row-gap: var(--space-25);
    }

    .toggle-top .text {
        width: 100%;
    }

    .person-container {
        width: 100%;
    }

    .big-news-box .date {
        width: 50px;
        height: 50px;
        font-size: 20px;
        font-weight: 700;
    }

    .reference-text-container, .certificate-text-container {
        flex-direction: column;
    }

    .reference-text-container > div, .certificate-text-container > div {
        width: 100%;
    }

    .certificate-text-container .icon-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .text-line1 {
        font-size: 30px;
    }

    .trust-item-container {
        width: 100%;
    }

    .contact-bigText1, .contact-bigText2 {
        font-size: 28px;
    }

    .contact-left.font-small .contact-bigText1,
    .contact-left.font-small .contact-bigText2{
        font-size: 22px;
    }

    .project-logo-container {
        width: 50%;
    }

    .req-item-container {
        width: 50%;
    }

    .big-box-container {
        width: 100%;
    }

    .toggle-item-container {
        width: 50%;
    }

    .partner-inner {
        row-gap: 10px;
    }

    .partner-logo {
        width: 30%;
    }

    .partner-inner .partner-title {
        text-align: center;
    }

    .partner-inner .partner-title br {
        display: none;
    }

    .partner-inner {
        flex-direction: column;
        justify-content: center;
    }

    h2 {
        font-size: 24px;
    }


    .subsystem-item {
        width: 100%;
    }

    .subsystem-box {
        flex-direction: column;
        align-items: center;
    }

    .subsystem-box {

    }

    .subsystem-box .img {
        width: 60%;
    }

    .subsystem-box-right {
        padding-left: 10px;
    }

    .contact-content {
        display: block;
    }

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

    .contact-image {
        max-width: 50%;
    }

    .news-view .article-content {
        display: block;
    }

    .imageLeftTextRight .title {
        font-size: 40px;
    }

    .contact-bigText1 {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .contact-bigText2 {
        position: static;
        margin-left: 5px;
    }

    .politic-title-big {
        font-size: 30px;
    }

    .mainNumbers-item {
        width: calc(50% - 10px);
    }

    .newsletter-form .form-element-email-container {
        display: block;
    }

    .newsletter-box-right {
        align-items: flex-end;
    }

    .newsletter-box-inner .form .form-control {
        width: 100%;
        margin-top: 10px;
    }

    .news-contact{
        display: block;
    }

    .news-contact-left{
        padding-right: 0;
        width: 100%;
        padding-bottom: 20px;
    }

    .news-contact .offer-box-extra-contact{
        width: 100%;
    }
}

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

    .contact-item-extra .name{
        font-size: 17px;
    }

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

    .jobOffers-top .title.center, .projects-top-content .title {
        font-size: 30px;
    }

    .job-offer {
        row-gap: var(--space-25);
        flex-direction: column;
    }

    .job-offer > div {
        width: 100%;
        padding: 0;
    }

    .offer-box-container {
        width: 100%;
    }

    .project-container {
        width: 100%;
    }

    .news-category .news-box-container, .news-box-container {
        width: 100%;
    }

    .certificate-container {
        width: 100%;
    }


    .logotype-slider.slick-initialized, .logo-slider.slick-initialized {
        max-width: 65vw;
        margin: auto;
    }

    .form-item-container {
        flex-basis: 100%;
    }

    .info-slide .bigText {
        font-size: 30px;
    }

    .pros-item-container {
        width: 100%;
    }

    .pros-item-container:nth-child(4n - 1) .pros-item, .pros-item-container:nth-child(4n - 2) .pros-item {
        background-color: unset;
        color: unset;
    }

    .pros-item-container:nth-child(2n) .pros-item {
        background-color: var(--color-primary);
        color: #ffffff;
    }

    .reference-top .logotype-container {
        width: 33.3333%;
        padding: 11px;
    }

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

    .req-item-container {
        width: 100%;
    }

    .cols {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer .cols .col {
        width: unset;
        min-width: 215px;
        padding-bottom: 5px;
    }

    footer .cols .col:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .col ul {
        margin: 0;
    }

    .aboutUs-title1, .aboutUs-title2 {
        font-size: 32px;
    }

    .aboutUs-title1 span {
        padding-left: 60px;
    }

    .advantages-list[data-size="4"] .advantage-container {
        width: 100%;
    }

    .advantages-list[data-size="3"] .advantage-container {
        width: 100%;
    }

    .offer-box-icon {
        margin: 2px;
    }

    /*.pros-item-container:nth-child(4n - 1) .pros-item svg,*/
    /*.pros-item-container:nth-child(4n - 1) .pros-item svg path {*/
    /*    fill: initial;*/
    /*}*/

    /*.pros-item-container:nth-child(even) .pros-item svg,*/
    /*.pros-item-container:nth-child(even) .pros-item svg path {*/
    /*    fill: #fff;*/
    /*}*/

    .imageLeftTextRight .title {
        font-size: 34px;
    }

    .offer-box .btn {
        opacity: 1;
        top: initial;
        bottom: 20px;
    }

    .text-line1 {
        font-size: 26px;
    }

    .offer-box-title {
        width: 100%;
        padding-right: 30px;
    }

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

    .newsletter-box-inner {
        padding: calc(2 * var(--space-40) - 5px) 15px;
    }

    .areas-item{
        width: 100%;
    }

    .pros-item-container:nth-child(odd) .pros-item {
        background-color: var(--color-primary);
        color: #fff;
    }
    .pros-item-container:nth-child(even) .pros-item {
        background-color: #fff;
        color: #000;
    }


}

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

    .header-link{
        font-size: 11px;
    }

    .choice-item-container {
        width: 100%;
    }

    .subsystem-box {
        flex-direction: column;
    }

    .subsystem-box-right {
        padding-left: 0;
    }

    .offer-top-inner .text-line1 {
        font-size: 20px;
    }

    .offer-box .btn {
        min-width: 160px;
        height: 42px;
    }

    .offer-box-title {
        font-size: 16px;
    }

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

    .offer-box-extra-contact{
        flex-direction: column;
    }
}

@media screen and (max-width: 420px) {
    .politic-title-big {
        font-size: 27px;
    }

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

    .logotype-slider.slick-initialized, .logo-slider.slick-initialized {
        max-width: initial;
        margin: auto;
    }

    .reference-top .logotype-container {
        width: 50%;
        padding: 11px;
    }

    .project-logo-container {
        width: 100%;
    }

    .toggle-item-container {
        width: 100%;
    }

    .standard-left .standard-bg .icon-container {
        display: none;
    }

    .text-image .toggle-title {
        width: 100%;
        padding-right: 0;
    }

    .text-image .text {
        width: 100%;
    }

    .offer-box-icon {
        margin: -4px;
    }

    .contact-image {
        max-width: 64%;
    }

    /*.rwdButton {*/
    /*    margin-right: 0;*/
    /*}*/

    .btn {
        letter-spacing: 0.4px;
    }

    .text-line1 {
        font-size: 19px;
    }

    .text-line2 {
        font-size: 17px;
    }

    .info-slide .bigText {
        font-size: 20px;
    }

    .mainNumbers-item {
        width: 100%;
    }

    .areas-item {
        width: 100%;
    }
}

@media screen and (max-width: 380px) {
    .subsystem-box {
        display: flex;
        position: static;
    }

    .subsystems-img {
        flex-wrap: wrap;
    }

    .subsystems-img img {
        margin-bottom: 15px;
    }

    .subsystem-item {
        height: unset;
        padding: 10px;
        position: static;
    }

    .subsystem-box {
        width: 100%;
        flex-grow: 1;
        flex-direction: column;
    }

    .subsystem-item .icon-clickable {
        display: none;
    }


    .subsystem-box .btn-close {
        display: none;
    }
}

@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-40: 38px;
        --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-40: 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-40: 28px;
        --font-36: 24px;
        --font-30: 22px;
        --font-24: 18px;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --font-48: 24px;
        --font-40: 22px;
        --font-36: 20px;
        --font-30: 20px;
        --font-24: 16px;
    }
}
