@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important;
    }
}

/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }

    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none !important;
    }
}

@media screen and (max-width: 1139px) {
    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -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: var(--square-size);
    height: var(--square-size);
    padding: 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: var(--square-radius);
}

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

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

.rwdButton.rwdPanel-action-toggle.active {
    color: #fff;
    background-color: var(--color-primary);
}

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

.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -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: 1800px) {
    .offer-item {
        padding: 10px;
    }

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

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

@media screen and (max-width: 1700px) {
    .logotypes-arrow-left {
        left: 0;
    }

    .logotypes-slider-container {
        padding: 0 55px;
    }

    .logotypes-arrow-right {
        right: 0;
    }
}

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

    .mainSlider-nav-wrapper {
        bottom: var(--space-50);
    }

    .mainSlider-slide .btn {
        bottom: var(--space-50);
    }

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

    .opinion {
        padding: calc(var(--space-40) + var(--space-50)) calc(var(--space-25));
    }

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


    .news-list.news-page .text {
        font-size: 13px;
        text-justify: inter-word;
        hyphens: auto;
        overflow-wrap: break-word;
    }

    .offer-item-wrapper {
        width: 20%;
    }

    .offer-item-empty {
        display: none;
    }

    .file-item .icon {
        width: 30px;
    }

    .square-files {
        width: 42px;
        height: 42px;
    }

    .mainpage section:not(.mainSlider-section) {
        min-height: unset;
    }

    .mainpage section.opinions-section {
        padding-bottom: calc(var(--space-40) * 2);
    }

    .mainNews-section {
        padding-bottom: calc(var(--space-40) * 2) !important;
    }
}

@media screen and (max-width: 1440px) {
    .footer-cols {
        gap: 4%;
    }

    .blog-item {
        padding: 10px;
    }

    .files-name {
        font-size: 12px;
    }

    .square-files {
        width: 38px;
        height: 38px;
    }

    .news-slider {
        margin: -10px;
    }

    .offer-item {
        padding: 5px;
    }

    .offer-slider {
        margin: -5px;
    }

    .contact-top .section-title {
        font-size: calc(var(--font-60) * 1.5);
    }

    .news-categories-title {
        font-size: 14px;
    }

    .news-categories-item {
        font-size: 14px;
    }

    .news-categories {
        max-width: 400px;
        padding-right: var(--space-50);
        margin-right: var(--space-50);
    }

    .news-categories-wrapper {
        width: 400px;
    }

    .news-list {
        width: calc(100% - 400px);
    }

    .news-list.news-page .blog-item {
        padding: 15px;
    }

    .news-list.news-page {
        margin: -15px;
    }

    .offer-view-section {
        min-height: 600px;
    }

}

@media screen and (max-width: 1280px) {
    .footer-cols {
        gap: 3%;
    }

    .contact-top-right-item {
        padding: 20px;
    }

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

    .offer-item-inner .offer-name {
        font-size: 13px;
    }
}

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

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

@media screen and (max-width: 1139px) {
    .social-list ul {

    }

    .offer-item-inner .offer-name {
        font-size: 13px;
    }

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

    .offer-view-section {
        min-height: unset;
    }

    .offer-view-top {
        align-items: center;
    }

    .offer-top-left {
        flex-direction: column;
        width: 45%;
    }

    .logotype {
        width: 20%;
    }

    .contact-top-inner {
        flex-direction: column;
        text-align: center;
    }

    .logo-col {
        display: flex;
        order: -1;
        justify-content: center;
        align-items: center;
        margin-bottom: var(--space-50);
    }

    /* RWD FOOTER */
    .footer-col-title, .footer-title {
        position: relative;
        font-size: 18px;
        text-align: center;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }


    .footer-title:not(.no-toggle).active:after,
    .footer-col-title:not(.no-toggle).active:after {
        transform: translateY(-50%) scaleY(-1);
    }

    .footer-title:not(.no-toggle),
    .footer-col-title:not(.no-toggle) {
        cursor: pointer;
    }

    .footer-col-content:not(.no-toggle),
    .footer-content:not(.no-toggle) {
        display: none;
        padding-bottom: 20px;
    }


    .footer-title:not(.no-toggle):after,
    .footer-col-title:not(.no-toggle):after {
        transition: transform, 500ms;
        position: absolute;
        right: var(--container-padding);
        top: 33%;
        transform: translateY(-50%) rotate(90deg);
        color: #fff;
        width: 10px;
        -webkit-mask-size: contain;
        -mask-size: contain;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        background-color: currentColor;
        -webkit-mask-image: url('../images/icons/arrow-right.svg');
        mask-image: url('../images/icons/arrow-right.svg');
        height: 10px;
        content: "";
    }


    .news-categories-wrapper {
        width: 0;
    }

    .footer-title:not(.no-toggle).active:after,
    .footer-col-title:not(.no-toggle).active:after {
        transform: translateY(-50%) rotate(90deg) scale(-1);
    }

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

    .footer-col {
        width: 100% !important;
        padding: 0 !important;
        text-align: center;
    }

    .footer-col ul li {
        padding: 0 !important;
        width: 100% !important;
    }

    .footer-col ul {
        flex-direction: column !important;
    }

    .header-inner {
        min-height: 79px;
    }

    header {
        background: var(--color-primary);
        padding: 0;
    }

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

    #content {
        padding-top: 79px;
    }

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

    .footer-cols {
        padding-bottom: 10px;
    }

    .map iframe {
        min-height: 400px;
    }

    .contact-top .section-title {
        margin-top: 0;
    }

    .contact-top-right-wrapper {
        margin-top: var(--space-25);
    }

    .gallery-list-item {
        padding: 10px;
    }

    .gallery-list {
        margin: -20px;
    }

    .news-content {
        width: 100%;
    }

    .news-list {
        width: calc(100% + 30px);
    }

    .news-list.news-page .blog-item {
        width: 33.33%;
    }

    .news-categories-aside-btn {
        position: fixed;
        top: 140px;
        left: 0;
        width: 46px;
        height: 46px;
        background: #fff;
        color: var(--color-primary);
        z-index: 151;
    }

    .news-categories-aside-btn.active {
        left: 400px;
    }

    .news-categories-aside-btn .fa-bars {
        font-size: 24px;
        color: var(--color-primary);
    }

    .news-categories-aside-btn.active .fa-bars {
        display: none;
    }

    .news-categories-aside-btn .icon-x {
        font-size: 24px;
        font-weight: 700;
        display: none;
        color: var(--color-primary);
    }

    .news-categories-aside-btn.active .icon-x {
        display: unset;
    }

    .news-categories {
        left: -450px;
        overflow: hidden;
        margin: 0;
        border: 0;
        transition: all 0.3s;
        position: fixed;
        z-index: 151;
        width: 400px;
        height: 100vh;
        background: #fff;
        top: 79px;
        padding: var(--space-50) var(--space-25);
        overflow-y: auto;
    }

    .news-categories-shadow::before {
        content: '';
        inset: 0;
        position: fixed;
        background: var(--color-primary);
        z-index: 3;
        opacity: 0;
        pointer-events: none;
    }

    .news-categories-shadow.active::before {
        opacity: 0.7;
    }

    .news-categories.active {
        left: 0;
    }

    .mainSlider-inner {
        aspect-ratio: unset;
        padding-top: var(--space-40);
    }

    .news-categories-item-wrapper {
        margin-bottom: var(--space-60);
    }


    .news-categories-item {
        color: var(--color-primary);
        padding: 6px calc(var(--space-25) - 5px);
    }

    .news-categories-title {
        color: var(--color-primary);
    }

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

    .news-pagination {
        width: 100%;
    }


    .contact-top-right-item {
        display: flex;
        flex-direction: column;
    }


    .contact-top-right-item-content[href*=mailto] {
        font-size: 13px;
    }

    .offer-section .section-header + .offer-list-wrapper {
        margin-top: var(--space-60);
    }

    .news-categories-item:first-child {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .news-categories-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

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

    .team-item-wrapper {
        padding: var(--space-25);
    }

    .team-list {
        margin: calc(var(--space-25) * -1);
    }

    .team-item .team-item-phone .caption {
        transition: max-width .35s, opacity .2s .15s, padding-left .3s;
        max-width: 130px;
        opacity: 1;
        pointer-events: initial;
        padding-left: 15px;
    }

    .container-custom {
        padding-left: 100px;
        padding-right: 100px;
    }

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

    .opinion-item{
        padding: 10px;
    }

}

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

    .file-item-wrapper {
        width: 33.33%;
    }

    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .news-list.news-page .blog-item {
        width: 50%;
    }

    .mainAbout-section .section-content .texts-wrapper {
        gap: var(--space-60);
    }

    .mainAbout-section .section-content .section-bottom.two {
        gap: var(--space-60);
    }

    .logotype {
        padding: 2px;
    }

    .logotypes-arrow-left, .logotypes-arrow-right {
        top: -40px;
    }

    .logotypes-main .section-header {
        margin-bottom: 80px;
    }


    .mainAbout-section .section-header {
        display: flex;
        gap: var(--space-60);
        flex-direction: column;
        margin-bottom: var(--space-60);
    }

    .mainAbout-section .section-header:before {
        display: none;
    }

    .logotype-slider {
        margin: -2px;
    }

    .footer-bar-content > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .logotype-list {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .blog-title {
        font-size: 17px;
    }

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

    .footer-bar-links:has(li) + .copyright:before {
        display: none;
    }

    .contact-top-right-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .contact-top-right-item {
        width: calc(50% - 10px);
        margin: 0 auto;
    }

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

    .section-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: var(--space-40);
    }

    .section-header-right {
        margin: 0 !important;
        align-self: unset !important;
        min-height: unset !important;
    }

    .mainAbout-section .section-header {
        margin-bottom: var(--space-60);
    }

    .mainAbout-section .section-content .texts-wrapper {
        flex-wrap: wrap;
    }

    .mainAbout-section .section-content .section-bottom.two {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
    }

    .mainAbout-section .section-content .section-bottom.two > *:first-child {
        margin-bottom: 0;
    }


    .logotypes-main .section-header {
        display: flex;
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
    }

    .logotypes-main .section-header:before {
        display: none;
    }

    .mainAbout-section .section-content .section-bottom.two > * {
        width: unset !important;
    }

    .mainAbout-section .section-content .texts-wrapper .text {
        width: 100%;
        max-width: unset;
        text-align: center;
    }

    .mainAbout-section .section-content .texts-wrapper .text + .text {
        width: 100%;
        max-width: unset;
    }

    .mainAbout-section {
        padding-bottom: var(--space-60);
    }


    .logotypes-slider-container {
        padding: 0;
    }

    .subpage .mainAbout-section .section-header + .section-content {
        margin-top: var(--space-60);
    }

    .mainNews-section .section-header {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        flex-direction: row;
    }

    .mainNews-section .section-header:before {
        display: none;
    }

    .mainAbout-section .section-content .section-bottom.two {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .filters-form .btn-wrapper {
        width: 100%;
        padding-right: 0;
    }

    .section-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: var(--space-40);
    }


    .section-header-right {
        margin: 0 !important;
        align-self: unset !important;
        min-height: unset !important;
    }

    .grid-header .btn-square {
        width: 38px;
        height: 38px;
    }

    .grid-header .btn {
        min-height: 38px;
        min-width: unset;
        padding: 5px 15px;
    }

    .offer-item-inner {
        padding: 12px;
    }

    .offer-item-inner .offer-name {
        font-size: 12px;
    }

    .footer-bar-links:has(li) + .copyright:before {
        display: none;
    }

    .offer-view-top {
        flex-direction: column;
    }

    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .offer-top-left {
        width: 75%;
    }

    .offer-top-left .section-title {
        text-align: center;
    }

    .offer-view-section {
        padding-bottom: var(--space-60);
    }

    .offer-top-right {
        max-width: unset;
        text-align: center;
        margin: 0;
        align-items: center;
    }

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

    .logotype {
        width: 25%;
    }

    .mainSlider-slide .btn {
        bottom: 80px;
    }

    .mainSlider-nav-wrapper {
        bottom: 20px;
    }

    .mainSlider-inner {
        padding-bottom: 140px;
    }

    .file-item-wrapper {
        padding: 7px;
    }

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

    .logotypes-main .section-title {
        font-size: calc(var(--font-60) * 1 + 8px);
    }

    .logotypes-main .btn-square,
    .opinion-box-container .btn-square {
        width: 38px;
        height: 38px;
    }

    .container-custom {
        padding-left: 70px;
        padding-right: 70px;
    }

    .opinion-box-wrapper .slider-arrows .prev {
        left: -54px;
    }

    .opinion-box-wrapper .slider-arrows .next {
        right: -54px;
    }

    .files-list-wrapper {
        margin: -7px;
        margin-bottom: var(--space-60);
    }

    .aboutUs-desc-section {
        padding: var(--space-25) 0 calc(var(--space-40) + var(--space-50));
    }

    .offer-top-right {
        gap: calc(var(--space-25) + var(--space-60));
    }

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

    .aboutUs-desc-section .section-header + .text {
        margin-top: 0;
    }

    .aboutUs-desc-section {
        padding-top: var(--space-60);
    }

    .aboutUs-desc-section .section-header {
        margin-bottom: var(--space-60);
    }

    .aboutUs-desc-section .text h2 {
        margin-bottom: 0;
    }


}

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

@media screen and (max-width: 639px) {
    .offer-top-left {
        width: 100%;
    }

    .offer-view-img {
        min-width: 150px;
    }

    .section-title {
        font-size: calc(var(--font-60) * 1.5 + 8px);
    }


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

    .contact-top-right-item-content[href*=mailto] {
        font-size: 12px;
    }

    .contact-top-right-item {
        padding: 15px;
    }

    .mainNews-section .section-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: var(--space-40);
    }

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

    .breadcrumb > li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

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


    .breadcrumb > li:not(:first-child):not(:last-child) a {
        font-size: 0;
        text-indent: -1000px; /* Apple */
    }

    .logotype-list {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .offer-item-inner {
        padding: 30px;
    }

    .mainpage section:not(.mainSlider-section) {
        padding-bottom: var(--space-60);
    }
}

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

    .logotypes-main .section-header {
        margin-bottom: 10px;
    }

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

    .mainAbout-section .section-content .section-bottom.two {
        flex-direction: column;
        align-items: center;
    }

    .contact-top-right-item {
        width: 100%;
        margin: 0 auto;
    }

    .news-list.news-page .blog-item {
        width: 100%;
    }

    .news-list.news-page .blog-title {
        min-height: unset;
    }

    .logotypes-main .section-header {
        display: flex;
        flex-direction: column;
        font-size: calc(var(--font-60) * 1.5 + 8px);
    }

    .logotypes-arrow-left, .logotypes-arrow-right {
        top: -25px;
    }

    .opinion-box-container .section-heading {
        flex-direction: column;
        gap: 20px;
    }

}

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

    .offer-item-inner {
        padding: 12px;
    }

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

    .team-item-wrapper {
        width: 100%;
    }

    .news-categories-aside-btn.active {
        left: 370px;
    }

    .news-categories {
        width: 370px;
    }

    .logotype-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .logotype {
        width: 33.33%;
    }

    .file-item-wrapper {
        width: 75%;
        margin: 0 auto;
    }

    .section-title {
        font-size: calc(var(--font-60) * 1 + 8px);
    }

    .mainSlider-nav a * {
        display: none;

    }

    .mainSlider-nav a {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border-color: #fff;
    }

    .file-item .icon {
        width: 70px;
        transform: scale(1.4);
        margin-bottom: 10px;
    }

    .mainSlider-nav li.slick-active a {
        background: #fff;
    }
}

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


    .logotype {
        width: 50%;
    }

    .offer-item {
        display: unset;
    }

    .offer-item-inner .offer-icon {
        width: 76px;
        height: 76px;
    }

    .offer-item-inner .offer-icon img {
        width: 25px;
    }

    .file-item-wrapper {
        width: 100%;
    }

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

    .section-header-right .section-arrows .btn {
        margin-left: unset !important;
    }

    .section-header-right {
        gap: 10px;
    }

    .offer-item-inner {
        max-width: 300px;
        aspect-ratio: unset;
        margin: 0 auto;
    }

    .news-categories-aside-btn.active {
        left: 250px;
    }

    .news-categories {
        width: 250px;
    }

    .filters-form .btn-wrapper {
        flex-direction: column;
    }


    .opinion-box-wrapper .slider-arrows .btn {
        position: static;
    }

    .opinion-box-wrapper .slider-arrows{
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .container-custom{
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

}

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

    }
}

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

        --container-padding: 30px;
    }
}

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

    }
}

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


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

