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

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }
    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none!important;
    }
}

@media screen and (max-width: 1139px) {
    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -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 0;
    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;
}

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

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

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 10px 0px 10px 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: 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: 1900px) {
.footer-boxes-wrapper {
    padding-bottom: var(--space-40);
    padding-top: 80px;
}

.footer-top {
    margin-bottom: var(--space-40);
}

.footer-col-title {
    margin-bottom: var(--space-40);
}
}

@media screen and (max-width: 1820px) {
button.prev.slick-arrow {
    left: -50px;
}

button.next.slick-arrow {
    right: -50px;
}

}


@media screen and (max-width: 1800px) {
	
.mainpage .services-box, .review-slider, .news-wrapper-slider  {
    padding: 0 45px;
}	

button.prev.slick-arrow {
    left: -5px;
}

button.next.slick-arrow {
    right: -5px;
}

#main-menu li a {
    padding: 34px 26px 35px;
}
}

@media screen and (max-width: 1670px) {
    .footer-left {
        width: 67%;
    }

    .footer-box {
        width: 43%;
    }
	
	.footer-box-container  .photo-bg {
    mask-image: none!important;
    -webkit-mask-image: none!important;
}

    .footer-box-container .photo-bg img {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer-box-container .photo-bg {
        mask-image: none !important;
        -webkit-mask-image: none !important;
        height: 100%;
        border-radius: 50px 50px 0 0 !important;
        overflow: hidden;
    }
	
	.contact-box-container .photo-bg {
    border-radius: 0 0 50px 50px;
}
	
	.footer-boxes-wrapper {
    padding-top: 60px;
}
.mask.footer-mask {
    background: rgba(0, 0, 0, 0.6);
}

.mask.contact-mask {
    background: rgba(0, 0, 0, 0.7);
}
.review-item-content {
    padding: 15px;
}
#main-menu li a {
    padding: 34px 24px 35px;
}
}

@media screen and (max-width: 1600px) {
    .social-list > ul > li {
        padding: 5px;
    }

    .social-list > ul {
        margin: -5px;
    }

    .news-box {
        margin: -30px -30px -6px;
    }

    .news-box .news {
        padding: 30px;
    }
	
	.about-box-title {
    line-height: 91px;
}

.strategy-box-container {
    margin-top: -90px;
}

.mainpage .review-item {
    padding: 0 15px;
}

.subpage .about-box-container:before {

    height: 53%;
}

.slider-text-box {
    padding-bottom: 0;
}
    #main-menu li a {
        padding: 34px 16px 35px;
        font-size: 14px;
    }
}

@media screen and (max-width: 1440px) {
    .logotype img {
        max-width: 80%;
    }

    .news-box {
        margin: -25px -25px -6px;
    }

    .news-box .news {
        padding: 25px;
    }
	
		.about-box-title {
    line-height: 83px;
}

.mainpage .review-item {
    padding: 0 10px;
}

.slider-text-right .btn {
    margin-top: 20px;
    margin-bottom: 10px;
}

    #main-menu li a {
        padding: 34px 13px 35px;
    }
}

@media screen and (max-width: 1366px) {
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 24px;
    }

    .service-text h3 {
        margin-bottom: 15px;
    }

    .service-text {
        margin-bottom: 20px;
    }

    .news-box {
        margin: -20px -20px -6px;
    }

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

    .form-box-wrapper {
        width: 62.3%;
    }
	
.description {
    margin-bottom: 20px;
    -webkit-line-clamp: 6;

}

		.about-box-title {
    line-height: 76px;
}

#main-menu li a {
    padding: 34px 25px 35px;
}

.review-header {
    flex-direction: column-reverse;
}

.item-rating-star-container {
    margin-bottom: 9px;
}

    #main-menu li a {
        padding: 34px 8px 35px;
        font-size: 14px;
    }
}

@media screen and (max-width: 1280px) {
    .footer-slogan {
        font-size: 3.5vw;
    }

    .news-box {
        margin: -15px -15px -6px;
    }

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

    .subpage .logotype-slider a {
        width: 20%;
        margin-bottom: 0;
    }

    .subpage .logotype-slider a:nth-child(7) {
        margin-left: 0;
    }
	
			.about-box-title {
    line-height: 73px;
}

.mainpage .services-box, .review-slider, .news-wrapper-slider  {
    padding: 0px 50px;
}	

button.prev.slick-arrow {
    left: 5px;
}

button.next.slick-arrow {
    right: 5px;
}

    #main-menu li a {
        padding: 34px 7px 35px;
        font-size: 12px;
    }
}

@media screen and (max-width: 1200px) {
    .footer-box {
        width: 45%;
    }

    .subpage .about-slogan {
        width: 50%;
    }
	
			.about-box-title {
    line-height: 68px;
}

.strategy-box-container {
    margin-top: -60px;
}

    #main-menu li a {
        padding: 34px 5px 35px;
        font-size: 11px;
    }

.needs-section .needs-box {
    width: 48%;
}

.needs-section .needs-icon {
    width: 60px;
    height: 60px;
}

}

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

@media screen and (max-width: 1139px) {
    .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: #000;
    }

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

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

    .slider-text-box {
        position: relative;
        top: auto;
        right: auto;
        left: 0;
        bottom: auto;
        padding-bottom: 70px;
        padding-top: 70px;
    }

/*    .slider .container {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }*/

  /*  .slider-photo {
        width: 100%;
        height: 100%;
        position: absolute!important;
        left: 0;
        top: 0;
    }
	*/

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

    .slider-text-box {
        padding-left: 0;
        padding-right: 0;
    }

    ul.slick-dots {
        bottom: 20px;
        padding-left: 14px;
    }

    .slick-track {
        display: flex !important;
    }

    .slick-slide {
        height: inherit !important;
    }

    .service-item {
        width: 33.33%;
    }

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

    .footer-slogan {
        padding-right: 0;
    }

    .footer-box {
        width: 50%;
    }

    .subpage .about-header {
        flex-direction: column;
    }

    .about-box-container .page-heading-title {
        width: 100%;
    }


    .subpage .about-slogan:before {
        width: 50px;
        height: 50px;
        left: -70px;
    }

    .subpage .about-slogan {
        color: #fff;
        position: relative;
        margin-top: var(--space-40);
        width: 100%;
        margin-left: 0;
        max-width: 65%;
    }

    .grid-text {
        width: 45%;
    }
	
				.about-box-title {
    line-height: 65px;
}

    .contact-box-container .photo-bg {
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
	
	.photo-label {
    font-size: 12px;
    line-height: 20px;
    padding: 0 20px;
}

.mainSteps-container {
    padding-top: 0;

}

    .slider-photo img {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
    }
	
	    .slider {
        height: 600px;
    }
	
	.slider .slider-photo {
    mask: none; border-radius:0 0 25px 25px;
}

    .rwdPanel + .btn{
        margin-left: 0;
    }
	.top .btn.btn-lg.btn-primary {
    margin-right: 10px;
}
}

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

    .footer-boxes-wrapper {
        flex-wrap: wrap;
    }

    .footer-left {
        width: 100%;
    }

    .footer-right {
        display: none;
    }
	
				.about-box-title {
    line-height: 59px;
}

.mainBenefits .needs-box {
    width: 50%;
}

.needs-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

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

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

    .service-link {
        padding: 15px;
    }

    .service-item.service-item-slogan {
        padding: 13px;
    }

    .logotypes-slider-wrapper {
        flex-wrap: wrap;
    }

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

    .logotype-slider {
        width: 100%;
    }

    .news-box .news {
        width: 50%;
    }

    .form-boxes {
        flex-wrap: wrap;
    }

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

    .form-right {
        display: none;
    }

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

    .map {
        width: 100%;
    }

    .map-right {
        display: none;
    }

    .subpage .logotype-slider a {
        width: 25%;
        margin-bottom: 0;
    }

    .subpage .about-box-container:before {
        display: none;
    }

    .subpage .about-box-container {padding-top: 0;}

    .subpage .about-header {
        padding-top: calc(var(--space-25) + var(--space-50));
        background: #000;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
    }

    .subpage .about-bottom {
        background: #000;
        margin-left: -20px;
        padding-left: 20px;
        margin-right: -20px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .subpage .about-bottom-title {
        color: var(--color-primary);
    }

    .service-bottom {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        background: #000;
        margin-bottom: 30px;
    }
	
				.about-box-title {
    line-height: 55px;
}

.subpage .services-details-container:before {
    height: 40%;

}


.mainSteps-text {
    width: 56%;
}

.slider-text-left {
    width: 100%;
    padding: 0;
    flex-direction: row;
    padding-top: 0px;
}
}


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


@media screen and (max-width: 900px) {
    .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 0px;
        line-height: 20px;
    }

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

    .copyright:before{ display:none;}

    .about-box {
        padding-left: 0
    }
	
	
				.about-box-title {
    line-height:51px;
}

.slogan-small {
    width: 70%;

}

.packages-box-container .col-xs-4 {
    padding: 15px;
}

.packages-box-container .row{ margin:-15px;}


}

@media screen and (max-width: 830px) {
				.about-box-title {
    line-height:47px;
}


.mainSteps {
    flex-wrap: wrap;
}

.mainSteps-img {
    width: 100%;
    margin-bottom: 30px;
}

.mainSteps-text {
    width: 100%;
}

.service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 24px;
    }
	
	.solution-box {
    flex-wrap: wrap;
}

.solution-text {
    width: 100%;
    margin-bottom: 20px;
}

.solution-photo {
    width: 100%;
}

.packages-box-container .panel-default>.panel-heading {
    font-size: 22px;
}
}


@media screen and (max-width: 767px) {
    .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%;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-item {
        width: 50%;
    }


    .title1:before {
        width: 40px;
        height: 40px;
        left: -60px;
        top: -45px;
    }

    .about-header {
        flex-direction: column;
        align-items: self-start;
    }

    .about-slogan {
        max-width: 100%;
    }

    .about-header {
        flex-direction: column;
        align-items: self-start;
    }

    .about-slogan {
        max-width: 100%;
    }

    .about-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-bottom-title {
        width: 100%;
        margin-bottom: 50px;
    }

    .about-photo {
        width: 100%;
    }

    .about-header {
        flex-direction: column;
        align-items: self-start;
    }

    .about-slogan {
        max-width: 100%;
    }

    .about-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-bottom-title {
        width: 100%;
        margin-bottom: 50px;
    }

    .about-photo {
        width: 100%;
    }

    .mainpage .news {
        width: 100%;
    }

    .news-box-left {
        width: 100%;
        margin-bottom: 30px;
    }

    .news-box-wrapper {
        flex-wrap: wrap;
    }

    .news-box-left .news-photo img {
        width: 100%;
    }

    .news-box-left-header {
        margin-bottom: 30px;
    }

    .news-box-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .news-box-right .news-wrapper:nth-child(odd) {
        width: 45%;
    }

    .news-box-right .news-wrapper:nth-child(even) {
        width: 45%;
    }

    .strategy-box-container {
        margin-top: 0;
    }

    .slogan-text-last {
        flex-direction: column;
    }

    .slogan-small {
        width: 75%;
        margin-bottom: 20px;
    }

    .slogan-text-last .text-line3 {
        padding-left: 0;
        margin-bottom: 20px;
    }

    .slogan-line-box {
        align-items: flex-end;
    }

    .service-item.service-item-slogan {
        padding-bottom: 40px;
    }

    .footer-box-container {
    }

    .footer-top {
        flex-direction: column;
    }
    .footer-box-container {
        padding-top: 20px;
        padding-bottom: 0;
    }

    .footer-left {
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-right {
        width: 100%;
    }

    .footer-boxes {
        flex-wrap: wrap;
        padding-top: 0;
    }

    .footer-boxes .footer-box {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 15px 15px 0 15px !important;
    }
	
	.footer-boxes .footer-box:last-child {
    border-bottom: 0 none;
}

    .footer-boxes .show-hide {
        display: none;
    }

    .footer-boxes .footer-col-title {
        background: url(../images/icons/arrow_down2.svg) no-repeat right 5px;
        background-size: 20px 20px;
        margin-bottom: 0;
        font-size: 20px;
        padding-bottom: 15px;
        padding-left: 0;
    }

    img.logo-min {
        margin: 0 auto 20px;
        display: block;
    }


    .footer-top .footer-box {
        padding-right: 0;
        width: 100%;
        text-align: center;
    }

    .footer-boxes-wrapper {
        flex-wrap: wrap;
        padding-bottom: 0;
    }

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

    .contact-header-left {
        width: 100%;
        margin-bottom: 50px;
    }

    .contact-header-right {
        width: 100%;
        margin-bottom: 50px;
    }

    .subpage .contact-header .about-slogan {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }
    .subpage .about-slogan:before {
        width: 40px;
        height: 40px;
        left: -64px;
    }

    .about-bottom-left {
        width: 100%;
    }

    .about-bottom-left .text.txt {
        margin-bottom: 20px;
    }

    .subpage .about-bottom-title {
        margin-left: 0;
    }

    .subpage .about-photo {
        width: 100%;
    }

    .service-bottom {
        flex-wrap: wrap;
        padding-top: 34px;
    }

    .service-bottom-left {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .service-bottom .service-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 0;
    }

    .services-header {
        margin-left: 70px;
        max-width: 100%;
        width: calc(100% - 70px);
    }

    .services-header .page-heading-title:before {
        width: 50px;
        height: 50px;
        left: -70px;
    }

    .services-header .page-heading-title {
        font-size: 9vw;
    }

    .services-desc {
        width: 100%;
    }

    .subpage .about-photo {
        margin-bottom: 20px;
    }
	
	    .description {
        -webkit-line-clamp: 4;
    }
	
	.slogan-box {
    font-size: 10vw;
}

				.about-box-title {
    line-height:130%;
}

.contact-header .page-heading-title {
    margin-bottom: 30px;
}

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

button.prev.slick-arrow {
    left: 10px;
}

button.next.slick-arrow {
    right: 10px;
}

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

.services-header {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 35px;
}

.service-bottom {
    width: 100%;
    margin: 0;
    padding: 0;
}

.service-icon {
    display: none;
}

.service-bottom-left {
    padding-top: 30px;
}

.subpage .about-bottom-title {
    margin-bottom: 10px;
}

.title1 {
        font-size: 7.5vw;
		margin-bottom: 15px;
		}

.title2 {
    font-size: 5.5vw;
	margin-bottom: 15px;
}

.title3 {
    font-size: 3.5vw;
	margin-bottom: 15px;
}
.packages-box-container .col-xs-4 {
    width: 100%;
}


    .footer-slogan {
        font-size: 4.5vw;
    }
	
	.footer-box .social-list > ul {
    width: 100%;
}
}

@media screen and (max-width: 700px) {
    .grid-item {
        flex-wrap: wrap;
    }

    .grid-text {
        width: 100%;
        margin-bottom: 30px;
    }

    .grid-photo {
        width: 100%;
    }
	
	.news-box-left-header {
    flex-wrap: wrap;
}

.news-box-left-header .btn, .services-box-container .news-box-left-header .btn {
    position: relative;
    margin-top: 20px;
    margin: 0 auto;
}

    .subpage .about-box-container {
        padding-top: 0;
        padding-bottom: 0;
    }
	
	.subpage .about-bottom{ margin-bottom:0}
	
	    .subpage .about-bottom-title {
        margin-bottom: var(--space-60);
    }
}

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

    .slider-text-box-inner {
        flex-direction: column;
    }

    .slider-text-right {
        width: 100%;
        padding-left: 0;
        margin-bottom: 10px;
    }

    .slider-text-left {
        width: 100%;
    }

    .photo-small {
        width: 57%;
    }
	
	   .slider .container {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .slider-photo {
        width: 100%;
        height: 100%;
        position: absolute !important;
        left: 0;
        top: 0;
        -webkit-mask-image: none !important;
        mask-image: none !important;
        border-radius: 0 0 20px 20px;
    }
	
    .slider-photo img {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
    }
    .slider {
        height: 510px;
    }
	
	
	.slogan-box .social-list {
    width: 100%;
}

.slogan-line1 {
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

    .slogan-box {
        font-size: 11vw;
    }
	
	    .needs-section .needs-box {
        width: 100%;
    }
	
	.slider-text-left {
    flex-direction: column;
    padding-top: 10px;
}

.line.text-line1, .line.text-line2, .line.text-line3 {
    width: 100%;
    padding: 0;
}

    .slider-text-left {
        width: 100%;
    }
	
	.slider-text-left .line:before {
    left: -8px;
    top: 3px;
}
}

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

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

    .slogan-line1 {
        flex-direction: column-reverse;
    }

    .text-line1 {
        width: 100%;
        text-align: left;
    }

    .slogan-line1 .social-list {
        width: 100%;
        margin-bottom: 32px;
    }

    .news-box-right .news-wrapper:nth-child(odd) {
        width: 100%;
    }

    .news-box-right .news-wrapper:nth-child(even) {
        width: 100%;
    }

    .news-box-right {
        flex-direction: column;
    }

    .news-box-container {
        margin-bottom: 50px;
    }

    .news-box .news {
        width: 100%;
    }

    .contact-box-container {
        padding-bottom: 10px;
    }

    .subpage .logotype-slider a {
        width: 33.33%;
        margin-bottom: 0;
    }
	
	    .news-box-right .news-wrapper:nth-child(odd) {
        margin-bottom: 20px;
    }
	
	.news-box .news {
    margin-bottom: 0;
}

    .photo-label {
        font-size: 13px;
        padding: 0 18px;
    }
	
	    .footer-box-container .photo-bg {
        border-radius: 30px 30px 0 0 !important;
    }
	
	.contact-box-container .photo-bg {
    border-radius: 0 0 30px 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
}

.title1 {
    font-size: 6.2088vw;
}

.accordion-header-content {
    padding: 4px 46px 5px 0px;
}

.accordion-arrow {
    right: 0;
}

.accordion-name {
    line-height: 140%;
}

.accordion-content .text.text {
    line-height: 140%;
}

.accordion-content {
    display: none;
    padding: 0 0 14px;
}

    .mainBenefits .needs-box {
        width: 100%;
    }
	
	.services-box-container .news-box-left-header {
    margin-bottom: calc(var(--space-25) + var(--space-30));
}
}

@media screen and (max-width: 520px) {
    .top .btn.btn-lg.btn-primary {
        background: var(--color-primary) url(../images/belive.png) no-repeat center center / 62%;
        text-indent: -20000px;
        width: 40px;
        height: 40px;
    }
}
@media screen and (max-width: 480px) {
    .modal-footer > .btn {
        width: 100%;
    }
    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }

    .subpage .contact-header .about-slogan {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        font-size: 10vw;
    }

    .about-slogan {
        font-size: 9.2088vw;
    }
	
    .slider {
        height: 440px;
    }
}

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

    .photo-small-box {
        width: 50%;
    }

    .strategy-box-container .slogan-box {
        font-size: 8vw;
    }

    .slogan-small {
        padding-left: 11px;
    }

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

    .news-box-title {
        width: 100%;
        margin-bottom: 14px;
    }

    .service-item {
        width: 100%;
    }
    .service-item.service-item-slogan {
        padding-bottom: 40px;
    }
    .subpage .logotype-slider a {
        width: 50%;
    }
	
    .news-box-container {
        padding-top: 0;
        padding: 0;
    }
	
.mainpage .services-box, .review-slider, .news-wrapper-slider {
    padding: 0;
}

button.slick-arrow {
        display: none !important;
    }
	
	    .services-header .page-heading-title {
        font-size: 11vw

    }
	
	.footer-bar-content {
    text-align: center;
}

    .title1 {
        font-size: 8vw;
    }
	.title2 {
    font-size: 5vw;
	}
	
	.title3 {
    font-size: 3vw;
}

.news .text.text p {
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

}

@media screen and (max-width: 375px) {
.photo-small {
    width: 100%;
}

.slogan-line3 {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: flex-end;
}

    .text-line3 {
        margin-bottom: 15px;
        text-align: right;
        width: 70%;
    }
}


@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;
        --space-30: 25px;

        --font-60: 48px;
        --font-48: 40px;
        --font-40: 36px;
        --font-36: 32px;
        --font-35: 32px;
        --font-30: 26px;
        --font-26: 23px;
        --font-24: 22px;
    }
}

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

        --font-60: 45px;
        --font-48: 36px;
        --font-40: 34px;

        --container-padding: 30px;
    }
}

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

        --font-60: 43px;
        --font-48: 34px;
        --font-40: 32px;
        --font-36: 28px;
        --font-35: 28px;
        --font-30: 24px;
        --font-18: 17px;
    }
}

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

        --font-60: 40px;
        --font-48: 32px;
        --font-40: 30px;

        --container-padding: 20px;
    }
}

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

        --font-60: 38px;
        --font-48: 30px;
        --font-40: 28px;
    }
}

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

@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-40: 26px;
        --font-36: 24px;
        --font-35: 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-60: 32px;
        --font-48: 24px;
        --font-40: 22px;
        --font-36: 20px;
        --font-30: 20px;
        --font-26: 17px;
        --font-24: 17px;
        --font-20: 16px;
        --font-18: 16px;
    }
}