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

/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {

    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: block;
    }

    button.main-menu-button:hover {
        /*background: #fff;*/
        /*border-color: #fff;*/
    }


    button.main-menu-button:hover span {
        /*background-color: var(--color-primary);*/
    }

    .rwdButton.mainsearch-rwd-button {
        display: none;
    }

    #rwd-mainmenu.rwdPanel.active {
        display: block;
    }

    #rwd-mainmenu.rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 60px !important;
        right: 0;
        bottom: 0;
        width: 20%;
        background-color: #00306D;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        pointer-events: none;
        transform: translateX(100%);
        -ms-transform: translateX(100%);
    }

    header.stickable #rwd-mainmenu.rwdPanel {
        z-index: 1;
        background-color: rgba(0, 48, 109, 0.9);
    }

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

    /*.rwdPanel-scrollLock body {*/
    /*    position: fixed;*/
    /*    width: 100%;*/
    /*    overflow-y: scroll;*/
    /*}*/

    .rwdPanel-action-open,
    .rwdPanel-action-toggle.rwdButton.mainsearch-rwd-button {
        display: none !important;
    }
    .only-mobile{
        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%);
        -ms-transform: translateY(100%);
    }

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

    .rwdPanel.active {
        pointer-events: all;
        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);
    -ms-transform: rotateZ(180deg);
}

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

@media screen and (min-width: 1140px) {

    #rwd-mainmenu .rwdMenu:before {
        content: '';
        position: absolute;
        top: 142px;
        right: 0;
        left: 0;
        bottom: 0;
        background: url(../images/menu_mask.png) no-repeat top right;
    }

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

    .rwdMenu ul.cloneMenu {
        display: none;
    }

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

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

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

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

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

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

    .rwdButton.lang-rwd-button {
        display: none;
    }

    nav#rwd-langs {
        display: none;
    }


    @media screen and (max-height: 700px) {

        /*.rwdMenu ul.cloneMenu {*/
        /*    padding-top: 240px;*/
        /*}*/
    }
}


/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    margin: 0 10px 0 10px;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    transition: all 0.4s;
    border-radius: 50%;
    padding: 10px;
}

.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);
    -ms-transform: scale(0.4);
}

.rwdButton.active > .animIcon--close {
    opacity: 1;
}

.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -ms-transform: scale(0);
}

/* --------------- BREAKPOINTS --------------- */
@media screen and (max-width: 1670px) {
    .news-slider {
        margin: -40px;
    }

    .news-item {
        padding: 40px;
    }

    .bottom-link {
        padding: 60px;
    }

    .bottom-link-item:nth-child(even) .bottom-link {
        padding: 60px;
    }

    .bottom-link-content {
        padding-right: 15%;
    }


    .opinion-box-container {
        padding-top: 125px;
        padding-bottom: 125px;
    }

    .logotype:hover img {
        transform: scale(1.15);
    }

    .history-year:after {
        height: 300%;
    }

    .project-item {
        margin-bottom: 30px;
    }

    button.mouse {
        margin: 0;
        right: var(--container-padding);
    }
}

@media screen and (max-width: 1600px) {
    .domains-header{
        gap: 15px;
    }

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

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

    .news-item {
        padding: 35px;
    }

    .bottom-link {
        padding: 40px;
    }

    .bottom-link-item:nth-child(even) .bottom-link {
        padding: 40px;
    }

    .bottom-link-content {
        padding-right: 12%;
    }

    .opinion-box-container {
        padding-top: 115px;
        padding-bottom: 115px;
    }

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

    .awards-box {
        margin: -50px;
    }

    .award-item {
        padding: 50px;
    }
}

@media screen and (max-width: 1440px) {
    #content > *:not(section.slider) {
        max-width: 1300px;
    }

    .top-right .ue{
        /*display: none;*/
        /*margin-right: 10px;*/
    }

    .title1 {
        max-width: 53%;
    }

    .title3 {
        max-width: 80%;
    }

    .news-slider, .news-box {
        margin: -30px;
    }

    .news-item, .news-box .news-item {
        padding: 30px;
    }

    .opinion-box-container {
        padding-top: 105px;
        padding-bottom: 105px;
    }

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

    .bottom-link {
        padding: 30px;
    }

    .bottom-link-item:nth-child(even) .bottom-link {
        padding: 30px;
    }

    .info-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-item {
        padding: 0;
    }

    .history-info {
        padding: 20px 30px 20px;
    }

    .awards-box {
        margin: -40px;
    }

    .award-item {
        padding: 40px;
    }

    .award-name {
        max-width: 65%;
    }

    .history-photo {
        padding: 20px 30px 20px;
    }
}

@media screen and (max-width: 1366px) {
    .news-slider, .news-box, .article-box-container .news-box {
        margin: -25px;
    }

    .news-item, .news-box .news-item {
        padding: 25px;
    }

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

    .logotype:hover img {
        transform: scale(1.1);
    }

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

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

    .award-item {
        padding: 30px;
    }

    .award-name {
        max-width: 70%;
    }
}

@media screen and (max-width: 1280px) {
    .title2 {
        font-size: 18px;
    }

    .news-slider, .news-box, .article-box-container .news-box {
        margin: -20px;
    }

    .news-item, .news-box .news-item {
        padding: 20px;
    }

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

    .bottom-link {
        padding: 20px;
    }

    .bottom-link-item:nth-child(even) .bottom-link {
        padding: 20px;
    }

    .awards-box {
        margin: -20px;
    }

    .award-item {
        padding: 20px;
    }

    .award-name {
        max-width: 75%;
    }
}

@media screen and (max-width: 1200px) {
    .title2 {
        font-size: 17px;
    }

    .news-slider, .news-box, .article-box-container .news-box {
        margin: -15px;
    }

    .news-item, .news-box .news-item {
        padding: 15px;
    }

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

    .big-text strong {
        font-size: var(--font-60);
    }

    .info-right {
        width: 23%;
    }
    .year {
        font-size: 16px;
    }
}

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

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

@media screen and (max-width: 1139px) {
    .rwdButton{
        width: 38px;
        height: 38px;
    }

    .rwdButton .animIcon span{
        left: 3px;
    }

    .main-menu-button{
        margin-left: 0!important;
    }

    .icon.arrow-bottom-domains{
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255, 255, 255, 0.6);
        color: #fff;
        border-radius: 50%;
    }

    .icon.arrow-bottom-domains.active{
        transform: rotate(180deg);
    }

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

    .rwdMenu .domains-list .domain-item{
        background-color: var(--color-primary);
    }

    .domains-header{
        margin-left: auto;
    }

    .top-right{
        margin-left: 0;
        padding-left: 5px;
    }

    .rwdButton[data-panel="rwd-domains"]{
        margin: 0;
        width: 38px;
        height: 38px;
        background-color: #fff;
        flex-shrink: 0;
        padding: 7px;
    }

    .domains-header > .domains-list{
        /*display: none;*/
    }

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

    .logo .domains-header.active {
        opacity: 1;
        pointer-events: initial;
    }

    .rwdPanel-scrollLock .logo .domains-header.active {
        opacity: 0;
        pointer-events: none;
    }

    .rwdPanel-scrollLock .icon.arrow-bottom-domains.active{
        transform: rotate(0);
    }

    .slide-video img{
        min-height: 450px;
        object-fit: cover;
    }

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

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

    .social-list {
        margin-left: 10px;
    }

    .slider-photo img {
        display: block;
        max-width: 100%
    }

    .slider {
        height: auto;
        min-height: 1px;
    }

    .service-text {
        top: 50px;
    }

    .service-item {
        padding-bottom: 70px;
    }

    .logotype img {
        max-width: 80%;
    }

    .logotype:hover img {
        transform: scale(1);
    }

    .map-box {
        margin-left: -37px;
        width: 100%;
    }

    .contact-item {
        width: 100%;
        display: flex;
        margin-bottom: 30px;
    }

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

    .map-box {
        margin: 0;
        width: 50%;
    }

    .contact-item .text.txt {
        width: 50%;
        padding-right: 20px;
    }

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

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

    .contact-logo {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

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

    .info-right {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .info-box {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        gap: var(--space-30);
    }

    nav.info-menu {
        margin: 0;
    }

    .info-right-title {
        display: none;
    }

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

    header {
        background: #00306D;
    }

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

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

    .job-item:nth-child(even), .job-item {
        padding: 0;
        margin-bottom: 30px;
    }

    .main-menu-button {
        width: 46px;
        height: 46px;
    }

    .animIcon.animIcon--hamburger span {
        left: 12px;


    }

    .animIcon.animIcon--hamburger.active span:nth-child(1) {
        margin-top: 30%;
    }

    .animIcon.animIcon--hamburger.active span:nth-child(3) {
        margin-top: 65%;
    }

    .about-box-subtitle {
        width: 100%;
        max-width: 100%;
    }

    .about-text {
        width: 100%;
    }

    .about-text-wrapper {
        margin-bottom: 0;
    }

    .about-box-subtitle:last-child {
        max-width: 100%;
    }
	
	.slider-text .text.txt {
    max-width: 90%;
}

button.mouse {
    display: none;
}
}

@media screen and (max-width: 960px) {
    .award-name {
        max-width: 90%;
    }
}

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


@media screen and (max-width: 900px) {
    .big-text {
        font-size: var(--font-30);
    }

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

    .about-box-subtitle {
        max-width: 100%;
    }

    .about-text {
        width: 100%;
    }

    .about-box-subtitle:last-child {
        max-width: 100%;
    }

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

    .news-item {
        width: 50%;
    }

    .bottom-link {
        padding: 15px;
    }

    .bottom-link-item:nth-child(even) .bottom-link {
        padding: 15px;
    }

    nav.info-menu ul {
        flex-wrap: wrap;
    }

    nav.info-menu ul li a {
        padding: 10px;
    }

    .history-year, .about-box-container .history-year {
        order: 2;
        width: 170px;
        height: 170px;
        margin: 15px auto 0;
    }

    .history-info, .about-box-container .history-info {
        width: 100%;
        order: 3;
    }

    .history-year:after {
        display: none;
    }

    .award-name {
        max-width: 100%;
    }

    a.project-item {
        flex-wrap: wrap;
    }


.history-photo {
    width: 100%;
    text-align: center;
    order: 1;
    padding: 10px 0;
    margin-bottom: 10px;
}

    .history-photo img {
        display: block;
        margin: 0 auto;
    }
	
	.slider .container {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
}

.slider-text-box {
    position: relative;
    padding-bottom: 20px;
}

.slider {
    background: rgba(0,48,109,0.5);
}
}


@media screen and (max-width: 767px) {
    .top-right .ue{
        /*display: none;*/
    }

    .logo{
        flex-shrink: 0;
    }

    .big-text {
        font-size: var(--font-24);
    }

    .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: 100%;
    }

    .bottom-link-item {
        width: 100%;
    }

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

    .media-logotypes ul li {
        width: 50%;
        padding: 9px;
    }

    .person-item {
        width: 100%;
    }

    .person-photo {
        width: 26%;
    }

    .person-content {
        width: 70%;
    }
}


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

    .rwdMenu a.ue {
        text-align: center;
        background: var(--color-primary);
        display: block;
        padding-top: 10px;
        padding-bottom: 10px;
        max-width: 200px;
        margin: 10px auto;
    }

    .rwdMenu a.ue img {
        margin: 0 auto;
    }

    .slider-text-box {
        position: relative;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .slider {
 
    }

    .title2 {
        display: none;
    }

    .main-slider .slick-dots {
        display: none !important;
    }

    .slider-text {
        padding: 0;
    }

    .service-photo {
        width: 100%;
    }


    .service-link {
        flex-wrap: wrap;
    }

    .service-text, .service-item:nth-child(even) .service-text {
        width: 100%;
        padding: 20px;
        max-width: 100%;
        margin: 0;
        position: relative;
        top: 0;
    }

    .service-text-content {
        padding: 0 30px;
    }

    .service-item {
        padding-bottom: 30px;
    }

    .award-item {
        width: 100%;
    }

    .award-item-content, .award-item:nth-child(even) .award-item-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .award-photo {
        width: 50%;
        padding-bottom: 50%;
    }

    .award-name {
        width: 50%;
        max-width: 50%;
        padding-top: 0 !important;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 560px) {
    .rwdButton{
        margin: 0 0 0 10px;
    }

    .domains-title{
        display: none;
    }

    .top-right > .social-list{
        display: none;
    }

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

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

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

    .logotypes-box-title, .members-box-title {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .news-box-title {
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

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

    .slider-nav-box {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .slider-nav button {
        width: 46px;
        height: 46px;
        margin-left: 6px;

    }

    .job-link {
        flex-wrap: wrap;
    }

    .job-photo {
        width: 100%;
        margin-bottom: 30px;
    }

    .job-content {
        width: 100%;
    }

    .project-item:nth-child(even), .project-item {
        flex-direction: column;
    }
    .about-box-container .history-photo{
        width: 100%;
    }
    .history-year, .about-box-container .history-year {
        margin: 0 auto 20px;
        width: 100px;
        height: 100px;
        padding-bottom: 100px;
    }

    .history-info, .about-box-container .history-info, .about-box-container .project-item:nth-child(even) .history-info {
        width: 100%;
        padding: 0;
    }
	
	.history-photo {
    margin-bottom: 19px;
}
}

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

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

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

    .rwdMenu .social-list > ul > li .social-icon {
        color: var(--color-primary);
        border-color: var(--color-primary);
    }

    .news-item {
        width: 100%;
    }

    .contact-item {
        flex-direction: column;
    }

    .map-box {
        width: calc(100% + 37px);
        margin-left: -37px;
    }

    .contact-item .text.txt {
        width: 100%;
        padding-right: 0;
    }
}

@media screen and (max-width: 424px) {
    .person-photo{
        display: none;
    }.person-content{
    width: 100%;
         }

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

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

    .service-title {
        left: 20px;
    }

    .service-text-content {
        padding: 0 5px;
    }

    nav.info-menu ul li {
        width: 100%;
    }

    nav.info-menu ul li a:after {
        display: none;
    }

    .media-logotypes ul li {
        width: 100%;
    }

    .award-item-content, .award-item:nth-child(even) .award-item-content {
        flex-direction: column;
    }

    .award-photo {
        width: 100%;
        padding-bottom: 100%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 380px) {
    .top-right .ue{
        display: none;
    }
}
@media screen and (max-width: 319px) {
    body {
        width: 320px;
    }
}

/* --------------- GLOBAL VARIABLES --------------- */

@media screen and (max-width: 1600px) {
    :root {
        --space-60: 55px;
        --space-50: 45px;
        --space-40: 35px;

        --font-60: calc(48px / var(--pixel-ratio));
        --font-48: calc(40px / var(--pixel-ratio));
        --font-45: calc(39px / var(--pixel-ratio));
        --font-43: calc(37px / 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-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-60: calc(45px / var(--pixel-ratio));
        --font-48: calc(36px / var(--pixel-ratio));
        --font-45: calc(35px / var(--pixel-ratio));
        --font-43: calc(35px / var(--pixel-ratio));
        --font-40: calc(34px / var(--pixel-ratio));

        --container-padding: 30px;
    }
}

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

        --font-60: calc(43px / var(--pixel-ratio));
        --font-48: calc(34px / var(--pixel-ratio));
        --font-45: calc(33px / var(--pixel-ratio));
        --font-43: calc(32px / var(--pixel-ratio));
        --font-40: calc(32px / var(--pixel-ratio));
        --font-36: calc(28px / var(--pixel-ratio));
        --font-35: calc(28px / var(--pixel-ratio));
        --font-30: calc(24px / var(--pixel-ratio));
        --font-24: calc(20px / var(--pixel-ratio));
        --font-22: calc(19px / var(--pixel-ratio));
        --font-20: calc(18px / var(--pixel-ratio));
        --font-19: calc(18px / 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-60: calc(40px / var(--pixel-ratio));
        --font-48: calc(32px / var(--pixel-ratio));
        --font-45: calc(32px / var(--pixel-ratio));
        --font-43: calc(31px / 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-60: 38px;
        --font-48: 30px;
        --font-45: 30px;
        --font-43: 29px;
        --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;
        --font-60: 36px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-60: 34px;
        --font-48: 30px;
        --font-45: 28px;
        --font-43: 27px;
        --font-40: 26px;
        --font-36: 24px;
        --font-35: 23px;
        --font-30: 22px;
        --font-26: 19px;
        --font-24: 18px;
        --font-22: 17px;
        --font-20: 16px;
        --font-19: 16px;
        --font-18: 16px;
    }
}

@media screen and (max-width: 424px) {
    :root {
        --font-60: 32px;
        --font-48: 24px;
        --font-45: 23px;
        --font-43: 23px;
        --font-40: 22px;
        --font-36: 20px;
        --font-30: 20px;
        --font-26: 17px;
        --font-24: 17px;
        --font-20: 16px;
        --font-19: 16px;
        --font-18: 16px;
    }
}