@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) {
    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: #000;
    border: none;
}
.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}
.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: var(--color-primary);
}

.rwdMenu > ul > li > *:first-child {
    text-transform: uppercase;
}
.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

.rwdMenu > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 15px);
}
.rwdMenu > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 30px);
}
.rwdMenu > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 45px);
}
.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 60px);
}
.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 75px);
}

.rwdMenu li > *:first-child > .fa,
.rwdMenu li > *:first-child > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}
.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}
.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}
.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

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

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

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}
.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}
.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

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

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    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: 1880px) {
    .main-slider-pagination-wrapper {
        bottom: calc(2 * var(--space-50) + 25px);
    }
    .main-offer-section {
        padding-top: 118px;
    }

    .main-realization-section {
        padding-top: 118px;
    }
}

@media screen and (max-width: 1800px) {
    .contact-bannaner-inner {
        padding: calc(2 * var(--space-40)) calc(3 * var(--space-50));
    }

    .header-right {
        gap: calc(1 * var(--space-40));
    }
    #main-menu > ul {
        gap: var(--space-25);
    }
}

@media screen and (max-width: 1600px) {
    .page-title {
        font-size: 48px;
        line-height: 58px;
    }
    .news-view-page-title {
        font-size: 34px;
        line-height: 40px;
    }

    .text-page-heading .page-heading-left {
        max-width: 480px;
    }

    .page-title:before {
        margin-top: 5px;
    }

    .header-right {
        gap: calc(1 * var(--space-25));
    }
    #main-menu > ul {
        gap: 15px;
    }
    #main-menu > ul > li > a {
        font-size: 13px;
    }
    .offer-page-heading {
        gap: calc(2 * var(--space-60));
    }
    .contact-bannaner-inner:not(.contact-view-bannaner-inner) {
        padding: calc(4 * var(--space-40) + 2px) calc(3 * var(--space-50));
    }
}

@media screen and (max-width: 1440px) {
    .contact-view-bannaner-inner .contact-bannaner-link {
        font-size: var(--font-32);
    }

    .page-title {
        font-size: 38px;
        line-height: 48px;
    }
    .news-view-page-title {
        font-size: 28px;
        line-height: 34px;
    }
    .page-title:before {
        margin-top: 0;
    }
    .text-page-heading .page-heading-left {
        max-width: 400px;
    }

    .header-right {
        gap: 10px;
    }
    #main-menu > ul {
        gap: 10px;
    }
    #main-menu > ul > li > a {
        font-size: 12px;
    }
    .header-right .social {
        width: 40px;
        height: 40px;
    }
    .logo {
        width: 300px;
    }
    .footer-cols {
        width: 73%;
    }
    .offer-item-wrapper {
        padding: var(--space-40);
    }
    .offer-list {
        margin: calc(-1 * var(--space-40));
    }
    /*.offer-list .offer-item-plus {*/
    /*    width: 46px;*/
    /*    height: 46px;*/
    /*}*/
    /*.offer-list .offer-item-plus .line-1 {*/
    /*    width: 46px;*/
    /*}*/
    /*.offer-list .offer-item-plus .line-2 {*/
    /*    height: 46px;*/
    /*}*/
    .offer-item-name {
        font-size: 18px;
    }
    .contact-bannaner-inner:not(.contact-view-bannaner-inner) {
        padding: calc(4 * var(--space-40) + 2px) calc(2 * var(--space-50));
    }
    .section-heading-right {
        gap: calc(2 * var(--space-40));
    }
}

@media screen and (max-width: 1360px) {
    .about-top {
        align-items: center;
    }
}

@media screen and (max-width: 1280px) {
    .header-right > .social-item {
        padding: 3px;
    }
    .header-right > .social-list > ul > li {
        padding: 2px;
    }
    .logo {
        width: 255px;
    }
    .bananer-section-right {
        gap: calc(2 * var(--space-40));
    }
    .bananer-section-inner {
        gap: calc(2 * var(--space-40));
    }
}

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

@media screen and (max-width: 1139px) {
    .bannaner-bg-deco-5 {
        display: block;
        bottom: -1px;
        left: -1px;
        width: 7.2%;
        min-width: 40px;
    }
    .bannaner-bg-deco-6 {
        display: block;
        bottom: -1px;
        left: 15%;
        width: 7.2%;
        min-width: 40px;
    }

    .bannaner-bg-deco-4 {
        display: none;
    }

    .files-item-wrapper {
        width: 25%;
    }

    .section-heading-right .text {
        margin-top: unset;
    }

    .page-title {
        gap: 10px;
    }

    .text-page-heading .page-heading-left {
        max-width: unset;
    }

    .page-title {
        line-height: 40px;
    }

    .rwdPanel .social-list {
        display: none;
    }
    .header-inner {
        min-height: 75px;
    }
    .mainpage header {
        border: none;
    }
    .mainpage header .header-bg {
        opacity: 1;
    }
    .mainpage #content {
        padding-top: 75px;
    }
    #content {
        padding-top: 75px;
    }
    .footer-top-inner {
        flex-direction: column-reverse;
    }
    .footer-top {
        padding-top: calc(2 * var(--space-50));
    }
    .footer-cols {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: var(--space-50);
    }
    .footer-col {
        width: 100%;
        max-width: unset;
        position: relative;
    }
    .footer-cols > .footer-col:not(:last-child):before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(-0.5 * var(--space-50));
        height: 1px;
        background-color: rgba(255, 255, 255, .2);
    }
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    .footer-logo img {
        max-width: 125px;
    }
    .footer-col-content {
        display: none;
    }
    .footer-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer-heading:after {
        font-family: 'FontAwesome', sans-serif;
        content: "\f078";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        order: 2;
        margin-left: auto;
        transition: .4s all;
        font-size: 15px;
    }
    .footer-heading.active:after {
        transform: rotate(180deg);
    }
    .page-heading:not(.page-heading-contact) {
        flex-direction: column;
        gap: var(--space-50);
    }
    .page-title {
        font-size: var(--font-48);
    }
    .news-view-page-title {
        font-size: 28px;
        line-height: 34px;
    }
    .page-title:before {
        width: 40px;
        height: 40px;
    }
    .page-title::first-line {
        line-height: 60px;
    }
    .offer-list {
        margin: calc(-1 * var(--space-25));
    }
    .offer-item-wrapper {
        padding: var(--space-25);
    }
    .offer-list .offer-item-plus {
        width: 36px;
        height: 36px;
    }
    .offer-list .offer-item-plus .line-1 {
        width: 36px;
    }
    .offer-list .offer-item-plus .line-2 {
        height: 36px;
    }
    .offer-item-name {
        font-size: 16px;
    }
    .bananer-section-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-40);
    }
    .bananer-section-right {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-40);
    }
    .bananer-section-right > .btn-primary {
        margin-top: 0;
    }
    .bananer-section-image img {
        max-width: 100px;
    }
    .bannaner-deco1 {
        top: 0;
        right: -2px;
        left: unset;
        transform: unset;
    }
    .about-top {
        flex-direction: column;
        gap: calc(2 * var(--space-50));
    }
    .about-top-image-wrapper {
        padding-right: 0;
    }
    .about-top-image-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .about-top-image {
        max-width: 400px;
    }
    .about-top-image-deco-wrapper .plus {
        width: 28px;
        height: 28px;
    }
    .plus .line-1 {
        width: 28px;
    }
    .plus .line-2 {
        height: 28px;
    }
    .about-top-image-line-1,
    .about-top-image-line-2 {
        left: -15px;
    }
    .about-top-image-line-3 {
        top: -15px;
        height: calc(100% + 30px);
    }
    .about-top-text {
        align-self: flex-start;
        margin: 0 calc(-1 * (var(--space-50) + var(--container-padding)));
    }
    .about-top-image-line-4 {
        top: -15px;
        height: 15px;
    }
    .contact-bannaner-inner {
        flex-direction: column;
        gap: vaR(--space-50);
        align-items: flex-start;
    }
    .contact-bananer-img {
        width: fit-content;
        margin-bottom: 0;
        padding-right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        bottom: 0;
        transform: translateY(25%);
        width: 20%;
    }
    .contact-bannaner-inner {
        padding: 60px calc(3 * var(--space-50));
        padding-right: 17%;
    }
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-heading-right {
        max-width: unset;
        flex-direction: column;
        gap: var(--space-25);
    }
    .main-realization-section {
        padding-top: 60px;
    }
    .main-offer-section {
        padding-top: 60px;
    }
    .main-about-section {
        padding-top: 80px;
    }
    .section-heading-right .text {
        max-width: unset;
    }
    .contact-view-bannaner-right {
        max-width: unset;
        margin-left: 0;
    }
    .contact-view-bannaner-right {
        gap: var(--space-25);
    }
    /*
    Slider
     */
    .about-top-deco {
        top: -80px;
    }
    .main-slider-item {
        padding: calc(4 * var(--space-50) - 10px) 0;
        padding-bottom: calc(5 * var(--space-50) + 10px);
    }
    .main-slider-item-content-img {
        margin-bottom: calc(-1 * (5 * var(--space-50)) - 10px);
    }
    .main-slider-bg-deco-2 {
        top: 0;
    }
    .main-slider-item-content-img-line3 {
        left: -15px;
    }
    .main-slider-item-content-img-line4 {
        top: -15px;
    }
    .main-slider-item-content-img-line2 {
        top: -15px;
    }

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

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

    #main-menu {
        display: none;
    }

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

    .rwd-hide {
        display: none;
    }

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

    .container {
        width: 100%;
    }

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

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

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

    .contact-view-bannaner-inner {
        padding-bottom: calC(3 * var(--space-50));
    }
}

@media screen and (max-width: 900px) {
    .contact-view-bannaner-inner .contact-bannaner-link {
        font-size: var(--font-24);
    }

    .files-item-content > .btn {
        padding: 10px 15px;
        font-size: 12px;
        gap: 10px;
    }

    .page-title {
        font-size: 28px;
        line-height: 40px;
    }
    .news-view-page-title {
        font-size: 24px;
        line-height: 30px;
    }

    .social {
        width: 42px;
        height: 42px;
    }
    .header-right {
        gap: 10px;
    }
    .realizations-item-wrapper {
        width: 33.33%;
    }
    .gallery-list-item {
        width: 33.33%;
    }
    .btn-arrow {
        width: 42px;
        height: 42px;
    }
    .main-slider-pagination-btn {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }
    .btn-lg {
        min-height: 42px;
        font-size: 13px;
    }
    .offer-item-content {
        padding: 15px;
    }
    .offer-item-wrapper {
        width: 50%;
        padding: var(--space-50);
    }
    .offer-list {
        margin: calc(-1 * var(--space-50));
    }
    .contact-bannaner-link .icon {
        width: 42px;
        height: 42px;
    }
    .contact-bannaner-link {
        font-size: var(--font-24);
    }
    .contact-bannaner-text {
        font-size: max(calc(var(--font-24) - 4px) , 15px);
    }

    .footer-bar-left{
        display: inline-block;
    }
    .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;
    }
}

@media screen and (max-width: 767px) {
    .files-item-wrapper {
        width: 33.33%;
    }

    .about-top-deco {
        top: -70px;
        right: 8.25%;
    }

    .social-list > ul > li {
        padding: 3px;
    }
    .social-list > ul {
        margin: -3px;
    }
    .offer-item-wrapper {
        padding: var(--space-25);
    }
    .offer-list {
        margin: calc(-1 * var(--space-25));
    }
    .offer-list .offer-item-plus {
        width: 26px;
        height: 26px;
    }
    .offer-list .offer-item-plus .line-1 {
        width: 26px;
    }
    .offer-list .offer-item-plus .line-2 {
        height: 26px;
    }
    .about-top-image-deco-wrapper .plus {
        display: none;
    }
    .main-about-section {
        padding-top: 70px;
    }
    .contact-view-bannaner-middle {
        flex-direction: column;
        gap: var(--space-25);
    }
    .contact-view-bannaner-middle > .social-list {
        margin-top: 0;
    }

    /*
    Slider
     */
    .main-slider-item-content {
        flex-direction: column;
        gap: calc(2 * var(--space-50));
        align-items: flex-start;
    }
    .main-slider-item-content-text {
        width: 100%;
    }
    .main-slider-item {
        padding-top: calc(1 * var(--space-60));
        padding-bottom: calc(3 * var(--space-50));
    }
    .main-slider-bg-deco,
    .main-slider-bg-deco-2 {
        display: none;
    }
    .main-slider-pagination-wrapper {
        bottom: calc(0.5 * (3 * var(--space-50)));
        transform: translateY(50%);
    }
    .main-slider-item-content-img {
        margin-bottom: calc(-1 * (3 * var(--space-50)));
    }
    .main-slider-pagination {
        max-width: 50%;
    }
    .main-slider-item-content-img {
        width: 40%;
    }


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

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

@media screen and (max-width: 639px) {
    .header-right > .social-list {
        display: none;
    }
    .rwdPanel .social-list .social {
        border-color: var(--color-secondary);
        color: var(--color-secondary);
    }
    .rwdPanel .social-list {
        display: block;
    }
    .page-title {
        font-size: var(--font-40);
        line-height: 1.5em;
    }
    .page-title:before {
        width: 36px;
        height: 36px;
    }
    .news-view-page-title {
        font-size: 18px;
        line-height: 24px;
    }
    .realizations-list {
        margin: -4px;
    }
    .main-realization-list {
        margin-bottom: calc(-1 * ((2 * var(--space-60)) + 20px));
    }
    .realizations-item-wrapper {
        padding: 4px;
    }
    .gallery-list {
        margin: -4px;
    }
    .gallery-list-item {
        padding: 4px;
    }
    .offer-item-name {
        font-size: 14px;
    }
    .bananer-section-image img {
        max-width: 85px;
    }
    .contact-bananer-img {
        min-width: 130px;
    }
    .contact-bannaner-inner {
        padding-right: 0 !important;
        padding: 60px calc(1 * var(--space-40) - 5px) !important;
    }
    .contact-bannaner-text + .contact-bannaner-link {
        margin-top: 15px;
    }
    .contact-bannaner-link {
        gap: 8px;
        font-size: 14px;
    }
    .contact-bannaner-link .icon {
        width: 38px;
        height: 38px;
        padding: 11px;
    }
    .contact-view-bannaner-middle .social {
        width: 38px;
        height: 38px;
    }

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

@media screen and (max-width: 560px) {
    .pre-page-title + .page-title {
        margin-top: var(--space-50);
    }

    .files-item-wrapper {
        width: 50%;
    }

    .about-top-container {
        padding: 0;
    }
    .about-top-text {
        align-self: flex-start;
        margin: 0 calc(-1 * var(--container-padding));
    }
    .text {
        word-wrap: break-word;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .map-deco-2 {
        display: none;
    }
    .map-deco-1 {
        display: none;
    }
    .map-deco-3 {
        display: none;
    }
    .map-deco-4 {
        display: none;
    }


    .page-heading-contact .pre-page-title {
        display: none;
    }

    .page-heading-contact .pre-page-title + .page-title {
        margin-top: 0;
    }

    .bananer-section {
        padding: var(--space-50) 0;
    }

    .page-heading-references-wrapper {
        margin-bottom: var(--space-50);
    }

    .page-heading:not(.page-heading-contact) {
        gap: var(--space-40);
    }

    .about-top-text > .page-title + .text {
        margin-top: var(--space-40);
    }

    .bannaner-deco {
        display: none;
    }

    .main-offer-deco {
        display: none;
    }

    .main-offer-section {
        padding-top: var(--space-60);
    }

    .main-about-section {
        margin-bottom: var(--space-60);
    }

    .main-offer-section {
        margin-bottom: var(--space-60);
    }

    .main-slider-item-content-img-symbols {
        display: none;
    }

    .main-slider-item-content-img {
        margin-top: 0;
    }

    .main-slider-item-content {
        gap: calc(2 * var(--space-40));
    }

    .contact-view-bannaner-inner .contact-bannaner-link {
        font-size: 14px;
    }

    .files-item-wrapper {
        padding: var(--space-25) 5px;
    }
    .files-list {
        margin: calc(-1 * var(--space-25)) calc(-1 * 5px);
    }

    .files-item-name {
        font-size: 14px;
    }

    .files-item-content > .btn {
        font-size: 11px;
        padding: 5px 8px;
        gap: 5px;
        min-height: 36px;
    }

    .about-top-deco {
        display: none;
    }

    .main-slider-pagination-wrapper {
        display: none;
    }
    .main-slider-item {
        padding-bottom: calc(1 * var(--space-60));
    }

    .main-slider-item-content-img {
        width: 100%;
        align-self: center;
        max-width: 200px;
        margin-bottom: calc(-1 * (1 * var(--space-60)));
    }

    .main-slider-item-content-text .text {
        font-size: 12px;
    }

    .main-slider-item-content-text > .btn {
        font-size: 12px;
        min-height: 38px;
        margin-top: calc(var(--space-25));
    }

    .contact-bananer-img {
        display: none;
    }
    .realizations-item-wrapper {
        width: 50%;
    }
    .gallery-list-item {
        width: 50%;
    }
    .offer-item-wrapper {
        width: 100%;
    }
    .offer-item {
        max-width: 380px;
        margin: 0 auto;
    }
    .modal-footer > .btn {
        width: 100%;
    }
    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }
}

@media screen and (max-width: 420px) {
    .page-title {
        font-size: 18px;
        line-height: 1.6em;
    }
    .news-view-page-title {
        font-size: 17px;
        line-height: 22px;
    }
    .page-title:before {
        width: 30px;
        height: 30px;
    }

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

    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        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;
    }
}

