@import url("normalize.css");
@import url("base.css");

/* main styles */
body {
    position: relative;
    background: var(--white);
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--dark);
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 9999;
}
.loading-container {
    width: 100%;
    max-width: 520px;
    text-align: center;
    color: var(--dark);
    position: relative;
    margin: 0 32px;    
}
.loading-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    bottom: 0;
    left: 0;
    border-radius: var(--border-radius);
    animation: movingLine 2.4s infinite ease-in-out;
}  
.loading-text {
    font-size: 5vw;
    line-height: 64px;
    letter-spacing: 10px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-evenly;
}
.loading-text span {    
    position: relative;
    display: inline-block;
    opacity: 0;
    text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3); 
    transform: translatex(0);
    animation: moveLetters 2.4s infinite ease-in-out;    
}  
.loading-text span:nth-child(1) {
    animation-delay: 0.1s;
}
.loading-text span:nth-child(2) {
    animation-delay: 0.2s;
}
.loading-text span:nth-child(3) {
    animation-delay: 0.3s;
}
.loading-text span:nth-child(4) {
    animation-delay: 0.4s;
}
.loading-text span:nth-child(5) {
    animation-delay: 0.5s;
}
.loading-text span:nth-child(6) {
    animation-delay: 0.6s;
}
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    transition: 0.4s ease-in-out;
}
header.fixed {
    background: var(--white);
    box-shadow: var(--shadow);
}
.header-row {
    gap: 50px;
    padding: 15px 0;
    transition: 0.3s ease-in-out;
}
header.fixed .header-row {
    padding: 5px 0;
}
.header-right {
    gap: 20px;
}
.header-phone {
    font-size: 18px;
    line-height: 1;
}
.desc-burger {
    gap: 8px;
    width: auto;
    height: auto;
    background: transparent;
    border: none;    
    padding: 0;
    flex-shrink: 0;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}
.desc-burger span {
    display: block;
    width: 54px;
    height: 2px;
    border-radius: 5px;
}
.desc-burger span:nth-child(3) {
    width: 26px;
}
.desc-burger:hover span:nth-child(1) {
    width: 30px;
    margin-left: 24px;
}
.desc-burger:hover span:nth-child(3) {
    width: 30px;
    margin-left: 24px;
}
.hero {
    width: 100%;
    height: 100vh;
    min-height: 750px;
    overflow: hidden;
}
.hero > .container,
.hero-cont,
.hero-content {
    height: 100%;
}
.hero-content {
    z-index: 1;
}
.hero-title {
    font-size: 92px;
}
.hero-slogans {
    color: var(--white);
    padding: 10px;
}
.hero-utp {
    margin-top: 90px;
    gap: 40px;
}
.hero-utp-item {
    padding: 25px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 300;
    border: 1px solid var(--light);
}
.hero-utp-title {    
    font-weight: 600;
}
.hero-utp-desc {
    margin-top: 5px;
}
.hero-ca {
    margin-top: 25px;
    font-size: 18px;
}
.hero-anim-wrap {
    bottom: 0;
    right: 0;
    width: 45%;
    flex-shrink: 0;
}
.hero-anim-wrap .hero-anim {
    width: 100%;
}
.main-service {
    gap: 50px;
    padding: 25px 0;
    border-top: 1px solid var(--light);
}
.main-service:last-child {
    border-bottom: 1px solid var(--light);
}
.main-service-info {
    flex-grow: 1;
}
.main-service-title {
    font-size: 24px;
    font-weight: 500;    
}
.main-service-title:hover {
    padding-left: 20px;
    color: var(--dark);
}
.main-service-title:after {
    content: '';
    display: block;
    width: 21px;
    height: 21px;
    background-image: url(../images/icons/arrow-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    margin-left: 5px;
    transition: 0.45s all linear;
}
.main-service-title:hover:after {
    opacity: 1;
    margin-left: 10px;
}
.main-service-types {
    margin-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
}
.main-service-type {
    padding: 5px 15px;
    border: 1px solid var(--light);
    border-radius: 15px;
}
.main-service-desc {
    width: 35%;
    flex-shrink: 0;
}
.spec-section {
    overflow: visible;
}
.spec-wrap {
    gap: 100px;
    padding-left: 4%;
}
.spec-header {
    position: sticky;
    top: 20%;
    margin-bottom: 0 !important;
    flex-basis: 50%;
    flex-shrink: 0;
}
.spec-items {
    flex-grow: 1;
    gap: 50px;
}
.spec-item {
    height: 420px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px 0 0 10px;    
    box-shadow: var(--shadow);
    overflow: hidden;
}
.spec-item:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
}
.spec-item-title {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    bottom: 30px;
    left: 30px;
}
.spec-item-title:after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(../images/icons/arrow-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
    transition: 0.45s all linear;
    filter: invert(1);
}
.spec-item:hover .spec-item-title:after {
    margin-left: 20px;
}
.spec-action {
    font-size: 18px;
    margin-top: 30px;
}
.cases-section-header {
    padding: 0 4%;
    gap: 100px;
}
.cases-section-left {
    flex-basis: 50%;
    flex-shrink: 0;
}
.cases-section-right {
    gap: 15px;
}
.cases-section-right .arrow-btn {
    font-size: 20px;
}
.cases-filters {
    gap: 10px;
}
.cases-filter {
    border: 1px solid var(--white);
}
.cases-filter.mixitup-control-active,
.cases-filter:hover {
    background: var(--white);
    color: var(--dark);
}
.cases-wrap {
    flex-wrap: wrap;
    overflow: hidden;
}
.case-item {
    width: 25%;
    aspect-ratio: 1 / 1;    
    color: var(--dark);
    overflow: hidden;
}
.case-text-white {
    color: var(--white);
}
.case-item:hover {
    color: var(--dark);    
}
.case-text-white:hover {
    color: var(--white);
}
.case-item-img {
    bottom: 0;
    right: 0;
    width: 50%;
    height: auto;
}
.case-item-img img {
    height: auto;
}
.case-item-info {
    width: 100%;
    height: 100%;
    padding: 40px 25px;
    transition: box-shadow 0.35s ease;
}
.case-item:hover .case-item-info {
    box-shadow: inset 0 0 15px var(--dark);
}
.case-item-category {
    font-weight: 300;
    padding: 5px;
    font-size: 14px;
    background: var(--dark);
    display: inline-block;
    border-radius: var(--border-radius);
    color: var(--white);
}
.case-text-white .case-item-category {
    background: var(--white);
    color: var(--dark);
}
.case-item-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0;
}
.pros-row {
    gap: 30px;
}
.pros-item {
    flex-basis: 0;
    flex-grow: 1;
}
.pros-item-icon {
    width: 80px;
    height: 80px;
}
.pros-item-title {
    font-weight: 600;
    font-size: 24px;
    margin: 25px 0 15px 0;
}
.work-proc-wrap {
    margin-top: 120px;
}
.work-proc-wrap > h2 {
    font-size: 40px;
    text-align: center;
}
.work-proc-row {
    margin-top: 70px;
    flex-wrap: wrap;
    gap: 100px;
}
.work-proc {
    width: calc((100% - 200px) / 3);
    flex-grow: 1;
}
.work-proc-num {
    font-size: 162px;
    line-height: 1;
    font-weight: 900;
    color: var(--light);
    opacity: 0.15;
    top: -60%;
    left: 0;
    z-index: 0;
}
.work-proc-info {
    z-index: 1;
}
.work-proc-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.clients-section .section-header {
    padding: 0 4%;
}
.client-slider:first-child {
    margin-bottom: 20px;
}
.client-slider:before,
.client-slider:after {    
    content: '';
    position: absolute;    
    width: 200px;
    height: 100%;    
    background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}
.client-slider:before {
    left: 0;
    top: 0;
}
.client-slider:after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.client-slider .swiper-wrapper {
    transition-timing-function: linear;
}
.client-slide {
    width: 250px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.client-slide img {
    height: auto;
}
.partners-wrap {
    gap: 100px;
}
.partners-wrap .section-header {
    width: 50%;
    flex-shrink: 0;
    padding-left: 4%;
}
.partners-slider {
    flex-grow: 1;
}
.partner-slide {
    display: flex;
    flex-direction: column;
    height: 400px;
}
.partner-slide-inner {
    height: 50%;
    border: 0.5px solid var(--light-grey);
    overflow: hidden;
}
.partner-slide-inner img {
    width: 80%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    transition: 0.45s all linear;
}
.partner-slide-inner:hover img {
    transform: scale(1.12);
}
.partners-slider-nav {
    gap: 10px;
    margin-bottom: 15px;
}
.partners-slide-prev,
.partners-slide-next {
    position: static;
    width: 40px;
    height: 40px;
    margin: 0;
    opacity: 0.3;
}
.partners-slide-prev:hover,
.partners-slide-next:hover {
    opacity: 0.6;
}
.partners-slide-prev:after,
.partners-slide-next:after {
    display: none;
}
.partners-slide-prev img {
    transform: scale(-1, 1);
}
.reviews-row:not(.swiper-initialized) {
    overflow: visible;
}
.reviews-row:not(.swiper-initialized) .swiper-wrapper {
    gap: 25px;
    flex-wrap: wrap;
}
.reviews-row.swiper-initialized {
    display: block;
    padding: 0 20px 20px;
}
.review-item {
    width: calc((100% - 75px) / 4);
    height: auto !important;
    border-radius: var(--border-radius);
    padding: 20px;
    font-size: 14px;    
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.review-item:nth-child(2), 
.review-item:nth-child(4n) {
    width: calc((100% - 25px) / 2);
}
.review-item-top {
    gap: 20px;
}
.review-rating {
    width: 60px;
    height: 10px;
    background: url(../images/icons/rating-star.svg) repeat-x;
}
.review-item-top > img {
    width: auto;
    height: 20px;
}
.review-item-info {
    margin: 15px 0;
}
.review-item-info-top {
    gap: 15px;
}
.review-item-author {
    font-weight: 600;
}
.review-item-date {
    color: var(--light);
}
.review-text-content {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;    
    margin-top: 10px;
}
.read-review {
    margin-top: auto;
    color: var(--link);
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}
.read-review svg {
    fill: var(--link);
}
.read-review:hover {
    gap: 10px;
}
.reviews-row:not(.swiper-initialized) .reviews-slider-nav {
    display: none;
}
.reviews-row.swiper-initialized .reviews-slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 25px;
}
.reviews-slider-btn {
    position: static;
    margin: 0;
    width: 40px;
    height: 40px;
}
.reviews-slider-btn:after {
    display: none;
}
.reviews-slider-btn.swiper-button-prev img {
    transform: scale(-1, 1);
}
.mfp-review-content {
    background: var(--white);
    max-width: calc(100% - 20px);
    width: 600px;
    border-radius: var(--border-radius);
    margin: 0 auto;
    padding: 30px;
}
.reviews-section-header .arrow-btn {
    font-size: 20px;
}
.contacts-form-wrap {
    gap: 50px;
}
.contacts-section-header {
    flex-basis: 40%;
    flex-shrink: 0;
    margin-bottom: 0 !important;
}
.contacts-section-info {
    margin-top: 40px;
}
.contacts-section-info h4 {
    font-size: 26px;
    margin-bottom: 10px;
}
.contacts-section-contacts {
    gap: 10px;
}
.to-form {
    margin-top: 15px;
}
.to-form > span {
    font-size: 32px;
    color: var(--light);
}
.to-form-arrow {
    font-size: 26px;
    font-weight: 700;
    margin-top: 10px;
}
.to-form-arrow:after {
    content: '';
    display: block;
    flex-grow: 1;
    width: 100px;
    height: 50px;
    background-image: url(../images/icons/arrow-form.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-7deg);
}
.contacts-section-form {
    flex-grow: 1;
}
.form-fields {
    gap: 25px;
    margin-bottom: 25px;
}
.form-field {
    flex-basis: 0;
    flex-grow: 1;
}
.form-field input,
.form-field textarea {
    font-size: 18px;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: var( --border-radius);
    padding: 15px;
    color: var(--dark);
    transition: 0.35s ease;
    box-shadow: var(--shadow);
}
.form-field textarea {
    resize: none;
}
.form-field input:focus,
.form-field textarea:focus {
    box-shadow: none;
}
.form-fields-wrap {
    margin-bottom: 25px;
}
.form-fields-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.form-chk-wrap,
.form-radio-wrap {    
    flex-wrap: wrap;
    gap: 15px;
}
.form-chk-label > input,
.form-radio-label > input {
    display: none;
}
.form-chk,
.form-radio {
    position: relative;
    font-size: 14px;
    border-radius: var(--border-radius);
    padding: 10px 20px 10px 40px;
    margin-bottom: 0;
    border: 1px solid var(--light);
    color: var(--light);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.form-chk:hover,
.form-radio:hover {
    background: rgba(255,255,255,0.2);
}
.form-chk:before,
.form-radio:before {
    content: '';
    display: block;
    height: 20px;
    width: 20px;
    background: var(--light);    
    position: absolute;
    left: 10px;
    transition: all 0.3s ease;
}
.form-chk:after,
.form-radio:after {
    content: '';
    display: block;
    height: 14px;
    width: 14px;
    background: var(--link);    
    position: absolute;
    left: 13px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}
.form-chk:before,
.form-chk:after {
    border-radius: 3px;
}
.form-radio:before,
.form-radio:after {
    border-radius: 50%;
}
.form-chk-label > input:checked + .form-chk,
.form-radio-label > input:checked + .form-radio {
    background: var(--link);
    color: var(--white);
    border-color: var(--link);
    box-shadow: none;
}
.form-chk-label > input:checked + .form-chk:before,
.form-radio-label > input:checked + .form-radio:before {
    background: var(--white);
}
.form-chk-label > input:checked + .form-chk:after,
.form-radio-label > input:checked + .form-radio:after {
    opacity: 1;
}
.form-field.file-field > input {
    display: none;
}
.file-field-wrap {
    gap: 15px;
}
.file-field-btn {
    font-weight: 600;
    gap: 10px;
}
.file-field-btn:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../images/icons/upload.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.file-field-btn .uploaded-info {
    display: none;
}
.file-field-btn.active:before,
.file-field-btn.active > span {
    display: none;
}
.file-field-btn.active .uploaded-info {
    display: block;
    text-align: center;
}
.uploaded-info u {
    font-size: 12px;    
    font-weight: 300;
    text-transform: uppercase;
}
.file-field-clear {
    display: none;
    width: 24px;
    height: 24px;
    background-image: url(../images/icons/remove.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.45s ease;
}
.file-field-clear:hover {
    transform: rotate(360deg);
}
.file-field-btn.active + .file-field-clear {
    display: block;
}
.form-footer {
    gap: 25px;
}
.form-footer > .btn {
    width: 50%;
    font-size: 22px;
    padding: 20px;
    flex-shrink: 0;
}
.form-footer .form-agreement {
    flex-grow: 1;
    font-size: 14px;
}
.form-footer .form-agreement a {
    text-decoration: underline;
}
footer {
    padding: 80px 0 40px 0;
}
.footer-top {
    gap: 40px;
}
.footer-top-item {
    flex-basis: 0;
    flex-grow: 1;
}
.footer-menu-wrap > h5 {
    font-size: 24px;
}
.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 20px 0 0;
}
.footer-socials {
    gap: 20px;
}
.footer-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}
.footer-social:hover {
    transform: translateY(-7px);
}
.footer-cert {
    width: 100px;
    margin-top: 10px;
}
.footer-bottom {
    font-size: 12px;
    color: var(--light);
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--light);
}
.site-overlay {
    position: fixed;    
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 20;
}
.site-overlay.active {
    opacity: 1;
    visibility: visible;
}
.burger-menu {
    position: fixed;    
    top: 0;
    right: 0;
    display: flex;
    visibility: hidden;    
    flex-direction: column;
    width: 900px;
    max-width: 100%;
    height: 100%;
    padding: 160px 100px 60px 100px;
    transition: transform .3s, visibility .3s;
    transform: translateX(100%);
    background-color: var(--white);
    backface-visibility: hidden;
    overflow-y: auto;
    z-index: 30;
}
.burger-menu.opened {
    visibility: visible;
    transform: translateX(0);
}
.burger-menu-close {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
    background-image: url(../images/icons/remove.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.burger-menu-content {
    gap: 180px;
}
.burger-menu-item {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 24px;
    flex-shrink: 0;
    gap: 20px;
}
.parent-menu-item {
    gap: 20px;
}
.submenu-toggler {
    width: 24px;
    height: 24px;
    background-image: url(../images/icons/chevron-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.parent-menu-item.opened .submenu-toggler {
    transform: rotate(180deg);
}
.submenu-item {
    margin: 10px 0 0;
    font-size: 18px;
    display: none;
    list-style: none;
    padding: 0 0 0 30px;
}
.submenu-item li:not(:last-child) {
    margin-bottom: 5px;
}
.burger-menu-item-small {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
    font-size: 24px;
    margin-bottom: 60px;
}
.burger-menu-contacts {
    gap: 15px;
    font-size: 20px;
    white-space: nowrap;
}
.burger-menu-socials {
    margin-top: 30px;
    gap: 15px;
}
.burger-menu-socials a {
    width: 40px;
    transition: 0.35s ease;
}
.burger-menu-socials a:hover {
    transform: translateY(-7px);
}
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    opacity: 0;
    width: 650px;
    max-width: 96%;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: 0.45s ease-in-out;
    z-index: 30;
}
.modal.shown {
    transform: translate(-50%,-50%) scale(1);
    opacity: 1;
}
.modal-close {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    background-image: url(../images/icons/remove.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    transition: 0.4s ease;
}
.modal-close:hover {
    transform: rotate(360deg);
}
.modal-header {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.modal-content {
    margin-top: 25px;
}
.modal-form .form-agreement {
    text-align: center;
}
.to-up {
    position: fixed;
    bottom: 60px;
    right: 20px;
    display: none;    
    width: 46px;
    height: 46px;
    background: var(--dark);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 3;
}
.to-up:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../images/icons/chevron-up.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.page-title {
    font-size: 42px;
}
.page-title-center {
    text-align: center !important;
}
.text-page-cont {
    margin-top: 40px;
}
.crumbs-wrap {
    margin-bottom: 20px;
}
ul.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 20px;
}
li.breadcrumb-item.active {
    color: var(--light);
}
li.breadcrumb-separator {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--link);
}
.inner-pagetitle {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 50px;
}
.about-wrap {
    gap: 100px;
    max-width: 100%;
    margin: 0 auto;
}
.about-text {
    flex-basis: 50%;
    font-size: 20px;
    color: var(--dark-lighter);
}
.about-img {
    flex-shrink: 0;
}
.about-text h3 {
    font-size: 48px;
    color: var(--dark);
}
.about-text h3 span {
    color: var(--link);
}
.about-nav {
    margin-top: 70px;
    gap: 100px;
    font-size: 20px;
    font-weight: 700;
}
.about-nav-item {
    padding: 10px 25px;
    border: 1px solid var(--dark-lighter);
    border-radius: var(--border-radius);
    background: var(--dark);
    color: var(--white);
}
.about-nav-item:hover {
    background: var(--link);
    border-color: var(--link);    
}
.team-row {
    gap: 40px;
    flex-wrap: wrap;
}
.team-item {
    width: calc((100% - 80px) / 3);
}
.team-item-info {
    padding: 20px 10px 0 10px;
}
.team-item-info p {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.team-item.team-item-vac {
    background: var(--link);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    gap: 15px;
    box-shadow: var(--shadow);
}
.team-item.team-item-vac p {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}
.team-item.team-item-vac span {
    font-size: 20px;
}
.team-item.team-item-vac a {
    text-decoration: underline;
}
.cert-item {
    width: 420px;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.cert-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.cert-item.swiper-slide-active {
    height: 550px;
    box-shadow: none;
}
.cert-slider-bottom {
    bottom: 15px;
    left: 450px;
    gap: 40px;
    width: calc(100% - 450px);
}
.cert-slider-nav {
    gap: 15px;   
    z-index: 2;
}
.cert-slider-btn {
    position: static;
    width: 60px;
    height: 60px;
    margin: 0;
    border-radius: 5px;
    padding: 5px;
    background: var(--link);
    box-shadow: var(--shadow);
}
.cert-slider-btn img {
    filter: invert(1);
}
.cert-slider-btn.swiper-button-prev img {
    transform: scale(-1, 1);
}
.cert-slider-btn:after {
    display: none;
}
.cert-slider-btn:hover {
    box-shadow: none;
}
.cert-slider-icons {
    gap: 25px;
}
.cert-slider-icons img {
    width: 80px;
    height: 80px;
    box-shadow: var(--shadow);
    object-fit: cover;
    background: var(--link);
    padding: 10px;
    border-radius: var(--border-radius);
}
.btn-zoom {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    background-image: url(../images/icons/zoom.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    opacity: 0;
    transition: 0.4s ease-in-out;
}
.btn-zoom-container:hover .btn-zoom {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}
.about-review {
    gap: 100px;
}
.about-review-info {
    flex-basis: 35%;
    flex-shrink: 0;
}
.about-review-author {
    gap: 10px;
}
.about-review-author-img {
    flex-shrink: 0;
}
.about-review-author-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
    padding: 10px;
    box-shadow: var(--shadow);
}
.about-review-author-img img:last-child {
    transform: translateX(-30px);
    z-index: -1;
}
.about-review-author-name {
    font-size: 20px;
    flex-grow: 1;
}
.about-review-author-name p {
    font-size: 24px;
    font-weight: 700;    
    margin: 0 0 10px 0;
}
.about-review-content {
    flex-grow: 1;
    gap: 40px;
}
.about-review-company {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}
.about-review-text {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 20px;
    text-overflow: ellipsis;
}
.about-review-text p:first-child {
    margin-top: 0;
}
.about-review-text p:last-child {
    margin-bottom: 0;
}
.about-review-img {
    width: auto;
    height: 350px;
    flex-shrink: 0;
    border: 1px solid var(--light-grey);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.about-review-img img {
    height: 100%;
    object-fit: contain;
}
.about-review-img .btn-zoom {
    filter: invert(1);
}
.about-reviews-nav {
    top: 70%;
    left: 0;
    gap: 25px;
    z-index: 2;
}
.about-reviews-btn {
    position: static;
    margin: 0;
    width: 60px;
    height: 60px;
}
.about-reviews-btn:after {
    display: none;
}
.about-reviews-btn img {
    filter: invert(1);
}
.about-reviews-btn.swiper-button-prev img {
    transform: scale(-1, 1);
}
.about-review-txt .read-review {
    color: #fff;
    margin-top: 30px;
    font-size: 20px;
    text-decoration: underline;
}
.about-review-txt .read-review svg {
    fill: var(--white);
}
.map {
    height: 650px;
    width: 100%;
    filter: grayscale(1);
}
.contacts-wrap {
    gap: 250px;
}
.contacts-left {
    gap: 30px;
}
.contacts-email {
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--dark);
}
.contacts-phone {
    font-size: 32px;
}
.contacts-right {
    gap: 25px;
}
.contacts-right-item > span {
    font-size: 24px;
    font-weight: 300;
    color: var(--light);
}
.contacts-right-item > div {
    font-size: 28px;
}
.contacts-right-item .burger-menu-socials {
    margin-top: 10px;
}
.client-form-wrap {
    max-width: 100%;
    width: 820px;
    margin: 0 auto;
    background: var(--light-grey);
    padding: 25px;
    border-radius: var(--border-radius);
}
#client-services-list {
    width: 100%;
}
.client-services-label {
    margin-bottom: 5px;
    font-weight: 600;
}
#client-form .select2-container .select2-selection--multiple {
    min-height: 54px;
    border-color: #e3e3e3;
    border-radius: var(--border-radius);
}
#client-form-submit {
    margin: 0 auto;
    display: flex;
    gap: 5px;
}
/* Media */
@media (max-width: 1200px) {
    .section {
        padding: 50px 0;
    }
    .hero-title {
        font-size: 70px;
    }
    .hero-anim-wrap {
        display: none;
    }
    .section-title {
        font-size: 32px;
    }
    .section-title-small {
        font-size: 24px;
    }
    .spec-wrap {
        gap: 50px;
    }
    .spec-item-title {
        font-size: 32px;
        left: 20px;
        bottom: 20px;
    }
    .cases-section-header {
        gap: 50px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cases-section-right {
        align-items: center;
    }
    .case-item {
        width: calc(100% / 3);
        flex-grow: 1;
    }
    .pros-row {
        flex-wrap: wrap;
    }
    .pros-item {
        flex-basis: calc((100% - 30px) / 2);
    }
    .partners-wrap {
        gap: 0;
        flex-wrap: wrap;
        padding: 0 4%;
    }
    .partners-wrap .section-header {
        width: 100%;
        flex-shrink: 0;
        padding-left: 0;
    }
    .about-img {
        display: none;
    }
    .about-text {
        flex-basis: 100%;
    }
    .team-item.team-item-vac p {
        font-size: 24px;
    }
    .team-item.team-item-vac span {
        font-size: inherit;
    }
    .cert-slider {
        padding: 0 20px;
        padding-bottom: 20px;
    }
    .cert-slider-bottom {        
        width: 100%;
        position: static;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cert-item,
    .cert-item.swiper-slide-active {
        height: 420px;
        box-shadow: var(--shadow);
    }
    .about-review {
        gap: 50px;
        flex-direction: column;
    }
    .about-review-info {
        flex-basis: 100%;
        flex-shrink: 0;
    }
    .about-reviews-nav {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }    
}
@media (max-width: 992px) {
    .hero-content,
    .hero-cont {
        width: 100%;
    }
    .hero-title {
        font-size: 58px;
        text-align: center;
    }
    .hero-ca {
        margin-top: 45px;
        text-align: center;
    }
    .hero-utp {
        margin-top: 60px;
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }
    .burger-menu {
        padding: 100px 60px 60px;
    }    
    .spec-wrap {
        gap: 50px;
        flex-direction: column;
        padding: 0 4%;
    }
    .spec-header {
        position: static;
        flex-basis: 100%;
    }
    .spec-items {
        width: 100%;
    }
    .spec-item {
        border-radius: var(--border-radius);
    }
    .review-item {
        width: calc((100% - 25px) / 2);
    }
    .contacts-form-wrap {
        gap: 30px;
        flex-direction: column;
    }
    .contacts-section-header {
        flex-basis: 100%;
    }
    .to-form-arrow {
        display: none;
    }
    .team-item {
        width: calc((100% - 40px) / 2);
    }
    .contacts-wrap {
        gap: 50px;
        flex-direction: column;
    }
    .map {
        height: 450px;
    }
}
@media (max-width: 768px) {
    .burger-menu-close {
        top: 10px;
        right: 10px;
    }
    .burger-menu-content {
        gap: 20px;
        flex-direction: column;
    }
    .hero {
        height: auto;
        min-height: auto;
        padding: 180px 0 60px 0;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-utp {
        margin-top: 40px;
        align-items: stretch;
    }
    .section-title {
        font-size: 24px;
    }
    .section-title-small {
        font-size: 18px;
    }
    .section-subtitle {
        font-size: 16px;
    }
    .main-service {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .main-service-desc {
        width: 100%;
    }
    .case-item {
        width: 50%;
    }
    .case-item-title {
        font-size: 20px;
    }
    .work-proc-row {
        gap: 50px;
    }
    .work-proc {
        width: calc((100% - 50px) / 2);
    }
    .work-proc-num {
        top: -40%;
    }
    .footer-top {
        gap: 40px 20px;
        flex-wrap: wrap;
    }
    .footer-top-item {
        flex-basis: calc((100% - 20px) / 2);
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .about-text h3 {
        font-size: 32px;
    }
    .about-nav {
        margin-top: 30px;
        gap: 15px;
        flex-wrap: wrap;
        font-size: 16px;
    }
    .about-review-company {
        font-size: 26px;
    }
    .about-review-text {
        font-size: 16px;
    }
}
@media (max-width: 534px) {
    body {
        font-size: 14px;
    }
    .logo {
        width: 100px;
    }
    .header-phone {
        font-size: 14px;
    }
    .burger-menu-content {
        gap: 15px;
    }
    .burger-menu-item,
    .burger-menu-item-small {
        font-size: 18px;
        gap: 15px;
    }
    .submenu-item {
        font-size: 15px;
    }
    .hero-slogans {
        display: block;
        width: fit-content;
        margin: 0 auto;
        height: 70px;
    }
    .typed-cursor {
        display: none !important;
    }
    .hero-utp-item {
        padding: 15px;
        font-size: inherit;
    }
    .section-title,
    .section-header {
        margin-bottom: 40px;
    }
    .spec-items {
        gap: 30px;
        flex-direction: row;
        overflow: scroll;
    }
    .spec-item {
        width: 350px;
        height: 350px;
        flex-shrink: 0;
    }
    .cases-filters {
        flex-wrap: wrap;
    }
    .cases-wrap {
        flex-wrap: wrap;        
        flex-wrap: nowrap;
        overflow: scroll;
        background: var(--white);
    }
    .case-item {
        width: 350px;
        height: 350px;
        flex-shrink: 0;
    }
    .pros-item {
        flex-basis: 100%;
    }
    .pros-item-icon {
        width: 50px;
        height: 50px;
    }
    .pros-item-title {        
        font-size: 20px;
        margin: 10px 0;
    }
    .work-proc-wrap {
        margin-top: 50px;
    }
    .work-proc-wrap > h2 {
        font-size: 30px;
    }
    .work-proc-row {
        gap: 25px;
    }
    .work-proc {
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    .work-proc-num {
        position: static;
        font-size: 48px;
    }
    .partner-slide {
        height: 220px;
    }
    .reviews-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .reviews-section-header .arrow-btn {
        margin: 0 auto;
    }
    .review-item {
        width: 280px;
        padding: 15px;
    }
    .form-fields {
        gap: 15px;
        margin-bottom: 15px;
        flex-direction: column;
    }
    .form-field input, 
    .form-field textarea {
        font-size: inherit;
    }
    .form-footer {
        gap: 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .form-footer > .btn {
        width: 100%;
        padding: 10px 25px;
    }
    .about-text {
        font-size: inherit;
    }
    .cert-item,
    .cert-item.swiper-slide-active {
        width: 280px;
        height: 280px;
    }
    .about-review-author-img img {
        width: 60px;
        height: 60px;
    }
    .about-review-author-img img:last-child {
        transform: translateX(-15px);
    }
    .about-review-author-name {
        font-size: inherit;
    }
    .about-review-author-name p {
        font-size: 18px;
    }
    .about-review-content {
        gap: 20px;
    }
    .about-review-img {
        height: 180px;
    }
    .about-review-company {
        font-size: 20px;
    }
    .about-review-text,
    .about-review-txt .read-review {
        font-size: inherit;
    }
    .contacts-wrap {
        gap: 20px;
    }
    .contacts-left,
    .contacts-right {
        gap: 15px;
    }
    .contacts-email,
    .contacts-phone {
        font-size: 28px;
    }
    .contacts-right-item > span {
        font-size: inherit;
    }
    .contacts-right-item > div {
        font-size: 20px;
    }
    .client-slide {
        width: 120px !important;
    }
    .inner-pagetitle {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .crumbs-wrap {
        margin-bottom: 5px;
    }
    ul.breadcrumb {
        font-size: inherit;
    }
    .team-item.team-item-vac {
        padding: 25px 15px;
        width: 100%;
    }
    .cert-slider-icons {
        gap: 10px;
        flex-wrap: wrap;
    }
}
@media (max-width: 360px) {
    .container {
        width: 96%;
    }
    .header-row {
        gap: 20px;
    }
    .header-phone {
        font-size: 0;
    }
    .header-phone:before {
        content: '';
        display: block;
        width: 28px;
        height: 28px;
        background-color: var(--dark);
        border-radius: 5px;
        background-image: url(../images/icons/phone2.svg);
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: center;
    }
    .burger-menu {
        padding: 60px 20px;
    }
    .burger-menu-close {
        top: 5px;
        right: 5px;
        width: 32px;
        height: 32px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-slogans {
        height: 60px;
    }
    .section-title {
        font-size: 18px;
    }
    .main-service-types {
        gap: 10px;
    }
    .work-proc-row {
        margin-top: 25px;
    }
    .work-proc-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .form-chk-wrap, 
    .form-radio-wrap {
        gap: 10px;
    }
    .form-chk, 
    .form-radio {
        font-size: 12px;
        padding: 10px 10px 10px 32px;
    }
    .form-chk:before, 
    .form-radio:before {
        width: 16px;
        height: 16px;
    }
    .form-chk:after, 
    .form-radio:after {
        width: 10px;
        height: 10px;
    }
    .form-footer .form-agreement {
        font-size: 12px;
    }
    .team-row {
        gap: 40px 20px;
    }
    .team-item {
        width: calc((100% - 20px) / 2);
    }
    .team-item-info {
        padding: 10px 5px 0 5px;
    }
    .team-item-info p {
        font-size: 16px;
        margin: 0 0 5px 0;
    }
}