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

    .mobile-only {
        display: none;
    }
}

@media screen and (max-width: 1139px) {
    .header-right {
        display: flex;
        align-items: center;
    }

    .header-right .mobile-only {
        display: flex;
        align-items: center;
    }

    .header-top {
        display: none;
    }

    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 {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.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: 1720px) {
    #main-menu ul {
        gap: var(--space-50);
    }

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

    .offer-item {
        padding: 10px;
    }
}

@media screen and (max-width: 1620px) {
    #main-menu ul {
        gap: var(--space-25);
    }

    .icons-item {
        padding: var(--space-25) 10px;
    }

    .icons-inner {
        width: unset;
        margin: calc(var(--space-25) * -1) -10px;
    }

    .offer-item-content {
        padding: 10px;
    }
    .about-image-banner-title{
        --font-60: max(25px,  2.5vw);
    }
}

@media screen and (max-width: 1440px) {
    .icons-item-title {
        font-size: 18px;
    }

    .btn-xxl {
        min-width: unset;
        min-height: 70px;
        font-size: 18px;
    }

    .icons-item .icon-wrapper {
        width: 130px;
        height: 130px;
    }

    .filters-form .btn-wrapper {
        flex-shrink: 0;
    }

    .offer-item-info-row {
        gap: 10px;
    }

    .offer-item-info-item span {
        display: block;
    }

    .offer-item-info-item {
        width: 50%;
        font-size: 13px;
    }

    .logo a img {
        max-width: 180px;
    }

    .filters-form {
        gap: var(--space-25);
    }

    .filters-form .btn.btn-xl {
        font-size: 18px;
        min-width: unset;
        height: 50px;
    }

    .filters {
        gap: 10px;
    }

    .btn-xl {
        font-size: 18px;
        min-height: 50px;
    }

    .logo a {
        gap: 10px;
    }

    .news-box {
        padding: 10px;
    }

    .file-name {
        font-size: 15px;
    }

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

    .opinion-box:nth-child(3n + 1):after {
        left: var(--space-40);
        right: var(--space-40);
    }

    .opinions-list {
        margin: 0 calc(var(--space-40) * -1);
    }

    .opinion-box {
        padding: var(--space-40) var(--space-40);
    }

    .offer-page .page-title {
        font-size: var(--font-70);
    }

    #content {
        padding-top: 131px;
    }

}

@media screen and (max-width: 1280px) {
    .file-box .btn-lg {
        padding: 0 10px;
    }
    .about-file-item{
        padding: 10px;
    }
    .about-file-item-name{
        font-size: 13px;
    }
    .about-file-item .btn{
        min-width: 156px;
    }
    .flyInfo-item{
        padding: 5px;
    }
    .flyInfo-wrapper{
        margin: -5px;
    }
    .contact-list-column .icon-wrapper{
        padding: 25px;
    }
    .main-about-left {
        padding-right: var(--space-25);
    }

    .main-faq-column {
        padding: 0 20px;
    }

    .main-faq-inner {
        width: calc(100% + 40px);
        margin: 0 -20px;
    }

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

    .price {
        font-size: 18px;
    }

    #content {
        padding-top: 130px;
    }

    .header-bottom {
        gap: var(--space-25);
    }

    .logo a img {
        max-width: 160px;
    }

    #main-menu ul {
        gap: 15px;
    }

    #main-menu li > a {
        font-size: 13px;
    }

    .file-inner .icon-wrapper .icon {
        width: 40px;
        height: 40px;
    }


}

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

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

@media screen and (max-width: 1139px) {
    .main-download-section-bg2:after {
        display: block;
        content: "";
        position: absolute;
        background: rgba(255, 255, 255, 0.7);
        inset: 0;
    }
    .flyInfo-item-inner{
        font-size: 17px;
    }
    .flyInfo-item-inner, .flyInfo-big .flyInfo-item-inner{
        padding: 15px;
    }
    .gallery-list-item{
        padding: 10px;
    }
    .gallery-list{
        margin: -10px;
    }

    .news-box-bottom {
        padding: 10px;
    }

    .logotype-item {
        width: 16.666%;
    }

    .footer-top {
        gap: var(--space-40);
        display: flex;
        flex-direction: column-reverse;
    }

    .btn-xxl, .btn-larger {
        min-width: unset;
        min-height: 50px;
        font-size: 16px;
    }

    .icons-item .text {
        line-height: 1.6;
        font-size: 12px;
    }

    .main-faq-inner {
        width: calc(100% + 20px);
        margin: 0 -10px;
    }

    .btn-circle {
        width: 42px;
        height: 42px;
    }

    .toggle-title {
        font-size: 13px;
    }

    .main-faq-column {
        padding: 0 10px;
    }

    .filters-form {
        align-items: center;
    }

    .filters .form-group {
        flex: unset;
        margin-bottom: 0;
        padding: 5px;
        width: 33.333%;
    }

    .filters {
        gap: 0;
        margin: -5px;
        flex-wrap: wrap;
    }

    .header-rwd-bottom {
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: center;
        margin-top: 5px;
    }

    #rwd-mainmenu .social-list {
        display: none;
    }

    .file-box {
        padding: 5px;
    }

    .files-list {
        margin: -5px;
    }

    .news-box-bottom .text {
        font-size: 13px;
        line-height: 1.8;

        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
        overflow: hidden;
    }

    .btn-lg {
        font-size: 13px;
        min-height: 40px;
    }

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

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

    #main-menu {
        display: none;
    }

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

    .rwd-hide {
        display: none;
    }

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

    .container {
        width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

    #content {
        padding-top: 79px;
    }

    .header-top-link .icon {
        color: #fff;
    }

    .header-top-link svg * {
        stroke-width: 2px;
    }

    .header-right .mobile-only {
        gap: 5px;
    }

    .header-right .social-list {
        margin: 0 10px;
    }

    .header-right {
        gap: 5px;
    }

    .header-top-left {
        gap: 5px;
    }

    header .social-list ul {
        gap: 5px;
    }

    .header-top-link {
        padding: 0 !important;
        margin: 0 !important;
        width: 40px;
        height: 40px;
        background: var(--color-primary);
        border: 1px solid var(--color-primary);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .social-list ul li .social {
        width: 40px;
        height: 40px;
        background: var(--color-primary);
        color: #fff;
        border-radius: 50%;
        border: 1px solid var(--color-primary);
    }

    .header-rwd-bottom .header-top-link {
        display: none;
    }

    /*    offer box    */
    .offer-item-title {
        font-size: 17px;
    }

    .price {
        font-size: 17px;
    }

    .offer-item-bottom .btn-lg {
        padding: 5px 10px;
    }

    .offer-item-bottom {
        gap: 10px;
    }

    .offer-item-info-item {
        width: 40%;
    }

    .offer-item-info-item:nth-child(2) {
        width: 60%;
    }

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

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

    .footer-col-content {
        display: none;
    }

    .footer-col-content .social-list ul {
        flex-direction: row;
        width: 100%;
    }

    .footer-col-content ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }


    .footer-title {
        position: relative;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
    }

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

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

    .footer-content:not(.no-toggle) {
        display: none;
    }


    .footer-title:not(.no-toggle):after {
        transition: transform, 500ms;
        position: absolute;
        right: var(--container-padding);
        top: 50%;
        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: "";
    }

    .footer-title {
        position: relative;
    }

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

}

@media screen and (max-width: 1000px) {
    .main-faq-column {
        width: 100%;
        padding: 0;
    }
    .flyInfo-item{
        width: 50%;
    }
    .flyInfo-big{
        width: 100%;
    }
    .tab-pane .file-box {
        width: 33.33%;
    }
    .footer-logo {
        width: 200px;
    }

    .about-top-item + .about-top-item {
        margin-top: var(--space-60);
    }

    .main-about-left, .about-top-item-content {
        width: 100%;
        padding: 0 !important;
    }

    .main-about-right, .about-top-item-image {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-about-right img, .about-top-item-image img {
        max-width: min(500px, 100%);
    }

    .main-about-inner, .about-top-item {
        display: flex;
        gap: var(--space-40);
        flex-direction: column-reverse !important;
        align-items: center;
    }

    .icons-inner {
        justify-content: center;
    }

    .icons-item-title {
        font-size: 17px;
    }

    .icons-item {
        width: 25%;
    }

    .main-faq-column + .main-faq-column .toggle-item:first-child .toggle-top {
        border-top: none;
    }

    .main-faq-inner {
        flex-direction: column;
        margin: 0;
        width: 100%;
    }

    /* offer box */
    .offer-item {
        width: 50%;
    }

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

    .price {
        font-size: 18px;
    }

    .offer-item-bottom .btn-lg {
        padding: 5px 10px;
    }

    .offer-item-bottom {
        gap: 10px;
    }

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

    .offer-item-info-item:nth-child(2) {
        width: 50%;
    }

    .offer-item-info-item span {
        display: inline-block;
    }


    .btn-xl {
        font-size: 16px;
        min-height: 44px;
    }

    .file-box {
        width: 33.333%;
    }

    .file-inner .icon-wrapper {
        aspect-ratio: 1;
        width: 27%;
        display: block;
    }

    .file-inner .icon-wrapper .icon {
        width: 100%;
        height: 100%;
    }

    .item-rating-star .fa-fw {
        width: unset;
    }

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

    .text {
        font-size: 13px;
        line-height: 2;
    }
}

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

    @keyframes float {
        0% {
            transform: translate(-2%, 6%) rotate(-1deg);
        }
        100% {
            transform: translate(2%, -6%) rotate(1deg);
        }

    }

   .how-it-works-circle{
       display: none !important;
    }
    .how-it-works-inner.draw .how-it-works-logo img{
        transform: none !important;
    }
    .how-it-works-inner{
        transform: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .how-it-works-items{
        gap: var(--space-60) var(--space-25);
    }
    .how-it-works-inner .how-it-works-texts{
        transition-delay: 300ms !important;
        transform: none !important;

    }
    .how-it-works-inner .icon-wrapper{
        transition-delay: 0ms !important;
        transform: none !important;
    }
    .how-it-works-logo{
        transform: none;
    }
    .how-it-works-inner.draw .how-it-works-logo{
        transform: translate(-2%, 6%) rotate(-1deg);
    }
    .how-it-works-logo{
        width: 80%;
        position: static;
    }
    .how-it-works-decorations{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: var(--space-60);
        position: relative;
        width: 150px;
    }

    .how-it-works-item .icon-wrapper {
        padding: 15px;
    }
        /* offer box */
    .offer-item-info-item {
        width: 40%;
    }
    .contact-list-column .icon-wrapper{
        padding: 20px;
    }
    .offer-item-info-item:nth-child(2) {
        width: 60%;
    }

    .offer-item-info-item span {
        display: block;
    }

    .main-download-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

}

@media screen and (max-width: 900px) {
    .about-image-banner-inner{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-image-banner-title.page-title{
        order: -2;
        width: unset !important;
    }
    .about-image-banner-image{
        order: -1;
        margin: var(--space-25) 0;
    }
    .page-title, .section-title{
        margin-top: 0;
        margin-bottom: 0;
    }
    .about-image-banner-title{
        position: static;
        text-align: center;
        max-width: 500px;
        width: 100%;
        transform: none;
    }
    .about-image-banner-title-2{
        padding-right: 10%;
    }
    .about-image-banner-title-6{
    text-align: right;
    }
    .about-image-banner-title-1{
        text-align: left;
    } .about-image-banner-title-5{
        text-align: right;
    padding-right: 10%;
    }
    .contact-list{
        flex-wrap: wrap;
        gap: var(--space-25) 0;
        justify-content: center;
    }
    .offer-top{
        gap: var(--space-25);
        flex-direction: column;
    }
    .contact-list-column{
        border: none !important;
        width: 50%;
    }
    .tab-pane .file-box {
        width: 37%;
    }
    .offer-top-right{
        padding-top: 0;
    }
    .offer-top-image{
        width: min(100%, 560px);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        padding: 0;
    }
    .offer-top-right{
        width: 100%;
    }

    .contact-form-right{
        display: none;
    }
    .contact-form{
        max-width: unset;
        padding: 0;
        width: 100%;
    }
    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }
    .gallery-list-item{
        padding: 5px;
    }
    .gallery-list{
        margin: -5px;
    }


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

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

    .opinion-name {
        font-size: 17px;
    }

    .news-box {
        width: 50%;
    }

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

    .filters-form .btn.btn-xl {
        font-size: 16px;
        min-width: unset;
        height: 45px;
    }
    .newsletter-section-inner{
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .tab-header .btn{
        min-width: 150px;
    }
    .tab-pane .file-box {
        width: 100%;
    }
    .newsletter-section-inner{
        display: flex !important;
        flex-direction: column;
        gap: var(--space-40);
    }
    .how-it-works-items .icon-wrapper{
        width: max(15.5%, 70px);
    }
    .how-it-works-item{
        justify-content: center !important;
    }
    .how-it-works-items{
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
    }

    .newsletter-section-image{
        order: 2;
        margin: 0 !important;
        margin-bottom: -7vw !important;
        align-self: center;
        width: 400px;
        max-width: 100%;
    }
    .newsletter-section-inner .text{
        text-align: center;
    }
    .filters-form .btn.btn-link {
        position: static;
        transform: unset;
        margin: 10px auto 0;
    }
    .main-download-section{
        color: #fff;
    }
    .main-download-inner .text{
        color: #fff;
    }
    .main-download-section{
        background: var(--color-primary);
    }
    .main-download-section-bg2{
        display: none;
    }
    .logotype-item {
        width: 20%;
    }

    .logotypes-section-inner {
        padding: var(--space-40) 0;
    }

    .filters-form .btn-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    /* offer box */
    .offer-item-title {
        font-size: 17px;
    }

    .price {
        font-size: 16px;
    }


    .file-box {
        width: 50%;
        max-width: 300px;
        margin: 0 auto;
    }

    .filters-form {
        flex-direction: column;
        align-items: center;
    }

    .opinion-box:nth-child(2n + 1):after {
        content: "";
        left: var(--space-40);
        right: var(--space-40);
        display: block;
        height: 1px;
        margin-top: calc(var(--space-50) - 1px);
        position: absolute;
        background: #d9d9d9;
    }

    .opinion-box:nth-last-child(2):after, .opinion-box:nth-last-child(1):after {
        display: none !important;
    }

    .opinion-box {
        width: 50%;
    }

    .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) {
    .icons-item {
        width: 33.333%;
    }
    .contact-list-column .icon-wrapper {
        width: 94px;
    }
    @media screen and (min-width: 561px) {
        /* offer box */
        .offer-item-bottom {
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .offer-item-info-item .caption span {
            display: inline;
        }

        .offer-item-info-row {
            padding: 5px 0;
            flex-direction: column;
        }

        .offer-item-info-item:nth-child(2) {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .offer-item-info-item {
            width: 100% !important;
            padding-top: 5px;
        }

        .main-slider-item-content {
            padding: var(--container-padding);
        }

        .offer-item-title {
            margin-bottom: 15px;
        }

        .offer-item-price {
            text-align: center;
        }

        .price {
            font-size: 19px;
            justify-content: center;
            text-align: center;
        }
    }
    .filters .form-group:nth-child(2), .filters .form-group:nth-child(3) {
        width: 50%;
    }

    .filters .form-group {
        width: 100%;
    }

    .header-right .mobile-only .social-list {
        display: none;
    }

    .main-slider-arrows-wrapper {
        display: none;
    }

    #rwd-mainmenu .social-list {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: var(--space-25);
    }

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

    .about-image-banner-title:not(.page-title){
        text-align: center !important;
        padding: 0 !important;
        font-size: calc(var(--font-60) + 5px);

    }

    .opinion-box:after {
        display: none !important
    }
    .contact-list-column{
        width: 100%;
    }
    .flyInfo-item{
        width: 100%;
    }
    .tab-header .btn{
        min-width: calc(50% - 10px);
    }
    .section-header:has(.section-header-right):before {
        display: none;
    }

    .section-header {
        display: flex !important;
        gap: var(--space-40) !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .gallery-list-item{
        width: 50%;
    }

    .logotype-item {
        width: 25%;
    }

    .header-top-left {
        display: none;
    }

    .header-rwd-bottom .header-top-link {
        display: flex;
    }


    .opinion-box:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .opinion-box {
        width: 100%;
    }

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

    .file-name {
        font-size: 13px;
    }

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

    .newsletter-modal-form .captcha-container .col-sm-8,
    .newsletter-modal-form .captcha-container .col-sm-4 {
        width: 100% !important;
    }

    .news-box-bottom .text {
        font-size: 12px;
    }

    .btn-lg {
        font-size: 12px;
        min-height: 36px;
    }

    .toggle-top {
        flex-direction: column;
    }


    .offer-item {
        width: 100%;
    }

    .offer-item-info-item .caption span {
        display: inline;
    }

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

    .offer-item-title {
        font-size: 20px;
    }

    .price {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .news-box-title {
        min-height: unset;
    }
    .flyInfo-item-inner {
        font-size: 16px;
    }
    .icons-item {
        width: 50%;
    }

    .icons-item .icon-wrapper {
        width: 110px;
        padding: 30px;
        height: 110px;
    }

    .offer-item-info-item {
        width: 50% !important;
    }

    .offer-item-info-item .caption span {
        display: block;
    }

    .file-box {
        width: 100%;
    }

    .news-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .main-news-section .news-box {
        max-width: unset;
    }

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

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

@media screen and (max-width: 420px) {
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
    .about-file-item{
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .logotype-item {
        width: 33.333%;
    }

    .filters .form-group {
        width: 100% !important;
    }

    .logo a img {
        max-width: 120px;
        max-height: 40px;
    }

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

@media screen and (max-width: 380px) {
    /* offer box */
    .offer-item-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .offer-item-info-item .caption span {
        display: inline;
    }

    .offer-item-info-row {
        padding: 5px 0;
        flex-direction: column;
    }

    .offer-item-info-item:nth-child(2) {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .offer-item-info-item {
        width: 100% !important;
        padding-top: 5px;
    }

    .main-slider-item-content {
        padding: var(--container-padding);
    }

    .offer-item-title {
        margin-bottom: 15px;
    }

    .offer-item-price {
        text-align: center;
    }

    .price {
        font-size: 19px;
        justify-content: center;
        text-align: center;
    }
}

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

