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

/**
 * RWD PANEL
 */

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

    .rwdPanel-action-open,
    .rwdPanel-action-toggle:not(.main-menu-button) {
        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:first-child {
    border-top: 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;
}

.rwdMenu .social-list > ul > li a {
    padding: 0;
}

.rwdMenu .social-list > ul > li {
    border: 0 none;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(37px / var(--pixel-ratio));
    height: calc(37px / var(--pixel-ratio));
    color: #fff;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin: 0 0 0 14px;
    font-size: 18px;
    transition: all 0.4s;
    background-color: transparent;
}

.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: 1860px) {

    .main-menu-button {
        margin-left: 14px;
    }

    .top-right {
        padding-left: 14px;
    }
}

@media screen and (max-width: 1670px) {
    #main-menu li a {
        padding: 0 15px;
    }

    .logo-info {
        padding-left: 15px;
        width: 160px;
        font-size: 14px;
    }

}

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

    /*#rwd-mainmenu.rwdPanel{*/
    /*    top: 92px!important;*/
    /*}*/
    .top-links {
        margin: -7px 0;
    }

    .top-link {
        padding: 7px;
    }

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

    .offer-item-content {
        margin-bottom: 110px;
    }

    .offer-name {
        font-size: 24px;
    }

    .contact-data-box {
        width: 34%;
    }

    .offer-name {
        margin-bottom: 30px;
    }

    .scrollbar1 .overview {
        padding: 0 70px 0 0;
    }

    .realization-box-container {
        padding-bottom: 100px;
    }

    .other-box-container {
        padding-bottom: 100px;
    }

    .contact-box-container {
        padding-bottom: var(--space-50);
    }

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

    .domain-item-image {
        padding: 0;
    }

    .main-menu-button {
        /*width: 38px !important;*/
    }

    .swiper-scrollbar {
        bottom: -55px !important;
    }

}

@media screen and (max-width: 1440px) {
    .realization-box-content .swiper-dots{
        bottom: -60px;
    }

    #content > *:not(section.slider):not(section.offer-box-container) {
        max-width: 1300px;
    }

    .top-link > .caption {
        /*display: none;*/
    }

    .top-link .btn-icon {
        margin-right: 0;
    }

    .top-links {
        padding-left: 15px;
    }

    .offer-item-content {
        margin-bottom: 90px;
    }

    .offer-name {
        font-size: 23px;
    }

    .contact-data-box {
        width: 35%;
    }

    .offer-name {
        margin-bottom: 25px;
    }

    .scrollbar1 .overview {
        padding: 0 60px 0 0;
    }

    .realization-box-container {
        padding-bottom: 90px;
    }


}

@media screen and (max-width: 1366px) {
    .domains-header{
        padding-top: 13px;
    }

    #main-menu li a {

    }

    .logo-info {
        width: 155px;
        font-size: 13px;
    }


    .about-box-container {
        padding-bottom: 140px;
    }

    .offer-item-content {
        margin-bottom: 70px;
    }

    .offer-link {
        padding-left: 25px;
        padding-right: 25px;
    }

    .offer-name {
        background-size: 30%;
    }

    .offer-name {
        background-size: 30% !important;
        background-position: left center;
        padding-top: 5px;
        padding-bottom: 5px;
        display: flex;
        align-items: center;
        padding-left: 34px;
    }

    .offer-name {
        font-size: 22px;
    }

    .contact-data-box {
        width: 36%;
    }

    .contact-item {
        padding-top: 10px;
    }

    .offer-name {
        margin-bottom: 20px;
    }

    .scrollbar1 .overview {
        padding: 0 50px 0 0;
    }

    .realization-box-container {
        padding-bottom: 80px;
    }

    .realization-text {
        width: 53%;
    }

    .slogan2 {
        bottom: -30%;
        right: 6%;
    }

    .swiper-scrollbar {
        bottom: -46px !important;
    }
}

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

    .swiper-scrollbar {
        bottom: -42px !important;
    }

    .top-right {
        padding-left: 10px;
    }

    .logo-info {
        padding-left: 10px;
    }

    .offer-item-content {
        margin-bottom: 50px;
    }

    .offer-link {
        padding-left: 20px;
        padding-right: 20px;
    }

    .offer-name {
        font-size: 21px;
    }

    .contact-data-box {
        width: 37%;
    }

    .offer-name {
        margin-bottom: 15px;
    }

    .scrollbar1 .overview {
        padding: 0 40px 0 0;
    }

    .realization-box-container {
        padding-bottom: 70px;
    }

    .other-box-container {
        padding-bottom: 90px;
    }

    .slogan2 {
        bottom: -90px;
    }
}

@media screen and (max-width: 1200px) {
    .top-link {
        font-size: 12px;
    }

    .logo-info {
        width: 134px;
        font-size: 12px;
    }

    #main-menu li a {

    }

    .offer-item-content {
        margin-bottom: 30px;
    }

    .offer-link {
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .contact-data-box {
        width: 38%;
    }

    .offer-name {
        margin-bottom: 10px;
    }

    .scrollbar1 .overview {
        padding: 0 30px 0 0;
    }

    .realization-box-container {
        padding-bottom: 60px;
    }

    .other-box-container {
        padding-bottom: 80px;
    }
}

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

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

    header.stickable #rwd-mainmenu.rwdPanel {
        z-index: 1;
    }

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


    #rwd-mainmenu.rwdPanel.active {
        pointer-events: all;
        transform: none;
        -ms-transform: none;
    }

    #rwd-mainmenu.rwdPanel {
        z-index: 6;
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: var(--header-height, 99px) !important;
        right: 0;
        bottom: 0;
        width: 20%;
        background-color: rgba(5, 142, 208, 0.9);
        transition-duration: 0.2s;
        transition-timing-function: linear;
        transition-property: transform, -webkit-transform, -ms-transform, top;
        pointer-events: none;
        transform: translateX(100%);
        -ms-transform: translateX(100%);
    }

    header.sticky #rwd-mainmenu.rwdPanel {
        /*top: 99px !important;*/
    }

    .rwdMenu ul.cloneMenu {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-end;
        flex-direction: column;
        max-width: 860px;
        padding-right: var(--container-padding);
    }

    #rwd-mainmenu .rwdMenu {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin: 0 auto;
        height: 100%;
        padding-top: var(--space-40);
        align-items: flex-start;
        position: relative;
    }

    .rwdMenu li {
        border-bottom: 0 none !important;
        align-items: center;
        justify-content: center;
        width: auto;
    }

    .rwdMenu li:first-child {
        border-top: none !important;
    }

    .rwdMenu li > *:first-child {
        line-height: normal;
        color: #ffffff;
        text-align: right;
        font-size: calc(16px / var(--pixel-ratio));
        font-weight: 300;
        position: relative;
        padding: 15px 0;
        letter-spacing: 0.09em;
    }

    .rwdMenu li.active > *:first-child {
        font-weight: 300;
        color: #fff;
        text-decoration: underline;
    }


}

@media screen and (max-width: 1139px) {
    .realization-box-content .swiper-dots{
        bottom: -40px;
    }

    .domains-header {
        padding-top: 16px;
    }

    .arrow-bottom-domains {
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc(37px / var(--pixel-ratio));
        height: calc(37px / var(--pixel-ratio));
        color: #fff;
        padding: 4px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        transition: all .2s linear;
        border-radius: 50%;
    }

    .swiper-scrollbar {
        bottom: -33px !important;
    }

    .domains-rwd-button {
        padding: 5px;
    }

    .rwdMenu .domains-list {
        justify-content: center;
        flex-wrap: wrap;
        margin: 15px var(--container-padding);
    }

    .rwdMenu .domains-list .domain-item {
        background-color: #333333;
    }

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

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

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0 30px;
    }

    header {
        background: rgba(5, 142, 208, 0.9);
    }

    .logo-info:after {
        height: 40px;
    }

    .top {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    section.slider {
        height: auto;
        min-height: 400px;
        aspect-ratio: unset;
    }

    .offer-hover {
        height: auto;
        opacity: 1;
    }


    .offer-hover {
        height: auto;
        opacity: 1;
        transition: all 300ms ease-out;
    }

    .offer-link {
        padding: 0 15px;
        padding-top: 90px;
    }

    .offer-name {
        background-size: 70px auto !important;
    }

    span.word1 {
        position: relative;
        top: auto;
        left: auto;
        -webkit-text-fill-color: unset;
        -webkit-text-stroke-width: unset;
        -webkit-text-stroke-color: unset;
        color: #fff;
        font-size: var(--font-50);
    }

    span.word2 {
        position: relative;
        top: auto;
        left: auto;
        font-size: var(--font-50);
        -webkit-text-fill-color: unset;
        -webkit-text-stroke-width: unset;
        -webkit-text-stroke-color: unset;
        color: #fff;
    }

    span.word3 {
        position: relative;
        top: auto;
        left: auto;
        font-size: var(--font-50);
        -webkit-text-fill-color: unset;
        -webkit-text-stroke-width: unset;
        -webkit-text-stroke-color: unset;
        color: #fff;
        right: auto;
    }

    .offer-box-header {
        position: relative;
        height: auto;
    }

    .offer-header-title {
        pointer-events: none;
        text-align: center;
    }

    .offer-item.offer-item-odd .offer-item-content {
        padding-top: 0;
    }

    .realization-item a {
        padding: 0 10px;
    }

    .about-slogan {
        left: 0;
    }

    button.mouse {
        bottom: 20px;
    }

    .play {
        width: 80px;
        height: 90px;
    }


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

    .offer-item-content {
        height: auto;
    }

    .offer-header-title {
        display: none;
    }

    .other-box-container {
        padding-bottom: 70px;
    }

    .subcategory-box {
        margin: -10px;
        padding-bottom: 170px;
    }

    .subcategory-item {
        padding: 10px;
    }

    .controls.captcha-container {
        width: 100%;
    }

    .contact-bottom-box {
        align-items: center;
    }

    .main-menu-button {
        width: 36px !important;
    }

    .main-menu-button span {
        height: 2px !important;
    }

    .lang-rwd-button {
        /*margin-left: 15px;*/
    }

    .logo a img {
        /*width: 200px;*/
        /*margin: -14px;*/
    }

    .offer-slider .slick-dots, .realization-box-container .slick-dots {
        display: none !important;
    }

    .offer-link {
        padding-bottom: 60px;
    }

    .offer-slider .swiper-scrollbar {
        bottom: 30px !important;
    }

    .swiper-scrollbar {
        width: calc(100% - 30px) !important;
        margin-left: 15px;
        margin-right: 15px;
        max-width: initial !important;
        transform: initial !important;
        left: 0 !important;
        right: 0 !important;
    }
}

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

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


@media screen and (max-width: 900px) {
    .realization-box .realization-item{
        padding: 8px;
    }

    .realization-box{
        margin: -8px;
    }

    .realization-item-content-text{
        inset: var(--space-25);
    }

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

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

    .footer-bar-content.footer-bar-content > * {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer-bar .footer-bar-links {
        display: block;
        margin: -3px -8px;
    }

    .footer-bar .footer-bar-links:not(:last-child) {
        margin-bottom: 3px;
    }

    .footer-bar-links > li {
        margin: 3px 8px;
        line-height: 20px;
    }

    .copyright,
    .copyright-undicom {
        margin-top: 4px;
        margin-bottom: 4px;
        line-height: 20px;
    }

    .copyright:before {
        display: none;
    }

    .accordion-header-content {
        padding: 8px 0 7px 0;
    }

    .contact-data-form {
        flex-wrap: wrap;
    }

    .form-box-wrapper {
        width: 100%;
    }

    .form-box-wrapper button.btn.btn-primary.btn-lg {
        margin-top: 19px;
    }

    .contact-data-box {
        width: 100%;
    }

    .bottom-links {
        display: flex;
        flex-wrap: wrap;
    }

    .bottom-links .top-link {
        margin-right: 30px;
    }

    .contact-bottom-title {
        position: relative;
        top: auto;
        left: auto;
        -webkit-text-fill-color: unset;
        -webkit-text-stroke-width: unset;
        -webkit-text-stroke-color: unset;
        color: #fff;
        font-size: var(--font-50);
        padding-right: 15px;
    }

    .contact-bottom-title .line2 {
        display: inline;
        font-size: var(--font-50);
    }

    .contact-bottom-box {
        flex-wrap: wrap;
    }

    .contact-bottom-left {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
        justify-content: center;
    }

    .contact-bottom-title {
        text-align: center;
    }

    .contact-bottom-right {
        width: 100%;
    }

    .rwdPanel .top-links {
        justify-content: center;
        padding-top: 30px;
        flex-wrap: wrap;
    }


    .offer-details-content {
        width: 54%;
        padding-top: 0;
    }

    .advantage-icon {
        height: 70px;
        width: 70px;
        margin-right: 10px;
    }

    .question-contact-icon {
        width: 50px;
        margin-right: 20px;
        height: 57px;
    }

    .question-contact-icon svg, .question-contact-icon img {
        max-width: 60%;
        display: block;
    }

    .question-contact {
        margin: 15px;
    }

    .questions-box {
        margin: -15px;
    }

    .other-box-container {
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 850px) {
    .subcategory-item {
        width: 50%;
        padding: 30px;
        margin-bottom: 0;
    }

    .subcategory-box {
        margin: -30px;
    }

    .subcategory-item:nth-child(5n+4) {
        margin-left: 0;
    }

    .subcategory-item {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .rwdMenu .social-icon {
        background: url(../images/icons/polygon_light_grey.svg) no-repeat center center;
    }

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

    .controls.captcha-container .col-sm-6 {
        width: 50%;
    }

    .about-box {
        flex-wrap: wrap;
    }

    .about-photo {
        width: 100%;
        padding-left: 30%;
        margin-bottom: 40px;
    }

    .about-text {
        width: 100%;
        padding-top: 0;
    }

    .slogan2 {
        right: 0;
        left: auto;
    }

    .about-slogan {
        font-size: 20vw;
    }

    button.mouse {
        display: none;
    }

    .offer-details-photo {
        width: 100%;
        max-width: 580px;
        margin: 0 auto;
    }

    .offer-details {
        flex-wrap: wrap;
    }

    .offer-details-content {
        width: 100%;
        margin: 0 auto;
        padding-top: 30px;
    }

    .realization-details {
        flex-wrap: wrap;
    }

    .realization-photo {
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
    }

    .realization-text {
        width: 100%;
        padding-top: 30px;
    }
}


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

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

    .box-header a.btn.btn-lg.btn-secondary {
        position: relative;
        margin: 10px auto 0;
        right: auto;
    }

    .box-header {
        text-align: center;
    }

    .faq-menu ul li a {
        padding: 0 10px;
    }

    .faq-menu ul li {
        padding: 5px;
    }

    .faq-menu ul {
        margin: -5px;
    }

    .faq-menu {
        margin-bottom: 30px;
    }

    .question-contact {
        width: 400px;
        margin: 10px 0;
        justify-content: flex-start;
    }
}

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

    .realization-box-content .swiper-wrapper .swiper-slide:first-of-type {
        margin-left: 0;
    }

    .realization-box-content .swiper-wrapper .swiper-slide:last-of-type {
        margin-right: 0;
    }

    .domains-title {
        display: none;
    }

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

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

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        margin: 0;
    }

    .logo-info {
        display: none;
    }

    .title1 {
        font-size: 20px;
    }

    .title2 {
        font-size: 20px;
    }

    .other-box-container {
        padding-bottom: 50px;
    }

    .subcategory-item {
        padding: 10px;
    }

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

    .subcategory-name {
        width: 100%;
        padding: 0 10px;
    }

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

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

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

    .realization-name {
        bottom: 10px;
    }

    .contact-item {
        width: 100%;
    }

    .contact-box {
        flex-wrap: wrap;
    }

    .about-photo {
        padding-left: 25%;
        padding-right: 20px;
    }

    .play {
        margin-bottom: 20px;
        width: 50px;
        height: 60px;
    }

    .slogan1 {
        display: none;
    }

    .about-photo {
    }

    .slogan2 {
        display: none;
    }

    .slogan3 {
        display: none;
    }

    .about-box-container {
        padding-bottom: 30px;
    }

    .text.txt {
        font-size: 14px;
        line-height: 28px;
    }

    .offer-item .text.txt {
        font-size: 14px;
        line-height: 28px;
        height: auto;
    }

    .text-intro {
        padding: 30px 0 30px;
    }

    .accordion-content .text.txt {
        font-size: 14px;
        line-height: 28px;
    }

    .accordion-content .text.txt {
        font-size: 14px;
        line-height: 28px;
    }

    .text.txt {
        font-size: 14px;
        line-height: 28px;
    }

    .offer-item .text.txt {
        font-size: 14px;
        line-height: 28px;
        height: auto;
    }

    .text-intro {
        padding: 30px 0 30px;
    }

    .accordion-content .text.txt {
        font-size: 14px;
        line-height: 28px;
    }

    .accordion-content {
        padding: 15px;
    }

    .logotypes-box-container {
        padding-bottom: 30px;
    }

    .logotypes-box-title {
        margin-bottom: 10px;
    }

    .slick-initialized .logotype-item {
        height: 80px;
    }

    .logotype {
        padding: 0 10px;
        height: 80px;
    }

    .slogan-bottom {
        display: none;
    }

    .slogan-top {
        display: none;
    }

    .advantage-item {
        width: 100%;
    }

    .other-box-container {
        padding-bottom: 40px;
    }

    .subcategory-item, .subcategory-item:nth-child(5n+4) {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .realization-box .realization-item {
        width: 100%;
    }

    .realization-box .realization-item img {
        display: block;
        height: auto;
        max-width: 100%;
    }

    .header-logo-text {
        font-size: 11px;
        margin-top: 5px;
        height: initial;
    }

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

@media screen and (max-width: 424px) {
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .pagination-wrapper ul li {
        padding: 0;
    }

    .question-contact {
        width: 290px;
    }

    .question-contact-icon {
        width: 40px;
        height: 44px;
        margin-right: 10px;
    }

    .other-box-container {
        padding-bottom: 30px;
    }

    .controls.captcha-container .col-sm-6 {
        width: 100%;
    }

}

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

    .realization-name {
        bottom: 5px;
    }
}

@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-55: calc(45px / var(--pixel-ratio));
        --font-50: calc(42px / var(--pixel-ratio));
        --font-48: calc(40px / var(--pixel-ratio));
        --font-40: calc(36px / var(--pixel-ratio));
        --font-36: calc(32px / var(--pixel-ratio));
        --font-35: calc(32px / var(--pixel-ratio));
        --font-32: calc(28px / var(--pixel-ratio));
        --font-30: calc(26px / var(--pixel-ratio));
        --font-26: calc(23px / var(--pixel-ratio));
        --font-24: calc(22px / var(--pixel-ratio));
    }
}

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


        --font-55: calc(42px / var(--pixel-ratio));
        --font-50: calc(38px / var(--pixel-ratio));
        --font-48: calc(36px / var(--pixel-ratio));
        --font-40: calc(34px / var(--pixel-ratio));

        --container-padding: 30px;
    }
}

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

        --font-55: calc(40px / var(--pixel-ratio));
        --font-50: calc(36px / var(--pixel-ratio));
        --font-48: calc(34px / var(--pixel-ratio));
        --font-40: calc(32px / var(--pixel-ratio));
        --font-36: calc(28px / var(--pixel-ratio));
        --font-32: calc(26px / var(--pixel-ratio));
        --font-30: calc(24px / var(--pixel-ratio));
        --font-18: calc(17px / var(--pixel-ratio));
    }
}

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

        --font-55: calc(38px / var(--pixel-ratio));
        --font-50: calc(34px / var(--pixel-ratio));
        --font-48: calc(32px / var(--pixel-ratio));
        --font-40: calc(30px / var(--pixel-ratio));

        --container-padding: 20px;
    }
}

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

        --font-55: 35px;
        --font-50: 32px;
        --font-48: 30px;
        --font-40: 28px
    }
}

@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-55: 32px;
        --font-50: 31px;
        --font-48: 30px;
        --font-40: 26px;
        --font-36: 24px;
        --font-32: 23px;
        --font-30: 22px;
        --font-26: 19px;
        --font-24: 18px;
        --font-22: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}

@media screen and (max-width: 424px) {
    :root {
        --font-55: 27px;
        --font-50: 25px;
        --font-48: 24px;
        --font-40: 22px;
        --font-36: 20px;
        --font-32: 20px;
        --font-30: 20px;
        --font-26: 17px;
        --font-24: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}