@font-face {
    font-family: 'InterVariable';
    src: url("../fonts/InterVariable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/*Common style*/
html {
  scroll-behavior: smooth;
}
body {
    font-family: 'InterVariable';
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #B1B1B1;
    text-align: left;
    position: relative;
    overflow-x: hidden;
    background: url('../images/bg-black.webp') center / contain repeat, 
    url('../images/bg-blur-line.png') center / contain repeat-y, #171717;
}
p {    
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #B1B1B1;
    text-align: left;
}
h1 {
    font-weight: bold;
    font-size: 42px;
    line-height: 52px;
    text-align: left;
    color: #FFFFFF;
}
h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 50px;
    text-align: left;
    color: #FFFFFF;
}
h3 {
    font-weight: 600;
    font-size: 42px;
    line-height: 50px;
    text-align: left;
    color: #FFFFFF;
}
h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    text-align: left;
    color: #FFFFFF;
}
h5 {
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    color: #A3A3A3;
}
ul > li, ol > li {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #B1B1B1;
    text-align: left;
}
ul, ol {
    list-style: none; 
}
a {
    display: block;
    transition: all 0.5s;
    cursor: pointer; 
    text-decoration: none;
    color: #000000;
}
button {
    transition: all 0.5s;
    cursor: pointer; 
}
img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 32px; 
}
.btn {
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    white-space: nowrap;
    color: #000000; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 220px;
    padding: 20px 32px;
    transition:  all 0.5s;
    background-color: #FFFFFF;
    border-radius: 40px;
    width: fit-content;
    box-shadow: 0px 15px 6px rgba(143, 143, 143, 0.03), 0px 8px 5px rgba(143, 143, 143, 0.1), 0px 4px 4px rgba(143, 143, 143, 0.17), 0px 1px 2px rgba(143, 143, 143, 0.2);
}
.white-btn:hover {
    color: #D32017;
}
.white-btn:hover svg path {
    transition: all 0.5s;
}
.white-btn:hover svg path {
    fill: #D32017;
}

/*wp-styles*/
.site-main {
    max-width: 1264px;
    margin: 0 auto;
    padding: 120px 32px 0;
}
.widget-area {
    max-width: 1264px;
    margin: 0 auto;
    padding: 120px 32px; 
}

/* header */
.header {
    padding-top: 41px;
    padding-bottom: 10px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 12;
    transform: translateY(0);
    transition:
        background-color 0.6s ease,
        box-shadow 0.6s ease,
        transform 0.6s ease;
}
header.scrolled {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2.5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-menu__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #D9D9D9;
    box-shadow: 0px 15px 6px rgba(143, 143, 143, 0.03), 0px 8px 5px rgba(143, 143, 143, 0.1), 0px 4px 4px rgba(143, 143, 143, 0.17), 0px 1px 2px rgba(143, 143, 143, 0.2);
}
.menu-toggle {
    transition: opacity 0.3s ease;
}
.menu-toggle.hidden {
    opacity: 0;
}
.header-menu {
    display: none;
    width: 624px;
    height: 516px;
    position: absolute;
    background-image: url('../images/header-menu-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: 0;
    top: 0;
    padding-top: 41px;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease-in-out;
}
.header-menu.active {
    opacity: 1;
    transform: translateX(0);
}
.header-menu__list li a {
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    text-align: right;
    color: #FFFFFF;
    padding: 18px 42px 18px calc(50vw - 600px);
    border: 1px solid #525252;
    background-color: #050505;
    border-left: none;
    border-radius: 0 87px 87px 0;
    width: fit-content;
    opacity: 0;
    transform: translateX(-50px) scale(1);
    transition: opacity 0.5s, transform 0.7s cubic-bezier(0.25, 1.3, 0.4, 1.2);
}
.header-menu__list li a.visible {
    opacity: 1;
    transform: translateX(0) scale(1); 
}
.header-menu__list li {
    margin-bottom: 9px;
}
.header-menu__close {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFFFFF;
    background-color: #050505;
    border-radius: 50%;
    margin-bottom: 12px;
    margin-left: calc(50vw - 600px);
    box-shadow: 0px 15px 6px rgba(143, 143, 143, 0.03), 0px 8px 5px rgba(143, 143, 143, 0.1), 0px 4px 4px rgba(143, 143, 143, 0.17), 0px 1px 2px rgba(143, 143, 143, 0.2);
}
.header-menu__close img {
    max-height: 16px;
}
.header-contacts {
    display: flex;
}
.header-btn {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    color: #404245;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 156px;
    height: 45px;
    padding: 2px 24px 2px 2px;
    background-color: #D9D9D9;
    border-radius: 40px;
    box-shadow: 0px 15px 6px rgba(143, 143, 143, 0.03), 0px 8px 5px rgba(143, 143, 143, 0.1), 0px 4px 4px rgba(143, 143, 143, 0.17), 0px 1px 2px rgba(143, 143, 143, 0.2);
}
.header-btn:hover {
    color: #D32017;
    background-color: #FFFFFF;
}
.header-btn__arrow {
    width: 41px;
    height: 41px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.5s;
}
.header-btn:hover .header-btn__arrow {
    background-color: #D32017;
}
.header-btn__arrow svg path {
    transition: all 0.5s;
}
.header-btn:hover .header-btn__arrow svg path {
    fill: #FFFFFF;
}
/* .header-lang {
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: 19px;
    background-color: #D9D9D9;
    box-shadow: 0px 15px 6px rgba(143, 143, 143, 0.03), 0px 8px 5px rgba(143, 143, 143, 0.1), 0px 4px 4px rgba(143, 143, 143, 0.17), 0px 1px 2px rgba(143, 143, 143, 0.2);
} */
.language-switcher {
    margin-left: 19px;
    border-radius: 50%;
    box-shadow: 0px 15px 6px rgba(143, 143, 143, 0.03), 0px 8px 5px rgba(143, 143, 143, 0.1), 0px 4px 4px rgba(143, 143, 143, 0.17), 0px 1px 2px rgba(143, 143, 143, 0.2);
}

/* footer */
.footer {
    padding-top: 90px;
    background-image: url('../images/M99-footer.svg');
    background-repeat: no-repeat;
    background-size: auto 148px;
    background-position: center bottom;
}
.footer-logo {
    padding: 10px 0;
}
.footer-logo > span {
    display: block;
}
.footer-logo__title {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFA;
}
.footer-logo__subtitle {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
    max-width: 216px;
    margin-bottom: 81px;
}
.top-rated {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.top-rated img {
    max-height: 24px;
    max-width: 24px;
    filter: grayscale(100%);
    margin-right: 10px;
}
.footer-social__list {
    display: flex;
    justify-content: flex-end;
    width: calc(60% - 154px);
}
.footer-social__list > li {
    margin-left: 48px;
} 
.footer-social__item {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    color: #FFFFFA;
    display: flex;
    align-items: center;
    padding: 10px 0;
    opacity: 1;
} 
.footer-social__item:hover {
    opacity: 0.65;
} 
.footer-social__item > img {
    margin-right: 12px;
    max-width: 24px;
} 
.footer-nav {
    border-top: 1px solid #404245;
    padding-top: 30px;
    padding-bottom: 33px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-menu {
    display: flex;
    width: 36%;
    justify-content: space-between;
}
.footer-menu > li {
    margin-right: 36px;
} 
.footer-menu > li > a {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
    padding: 10px 0;
    text-transform: uppercase;
} 
.footer-menu > li > a:hover {
    color: #FFFFFF;
}
.footer-btn {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    color: #F2F2F2; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 134px;
    padding: 10px 0 10px 22px;
    transition:  all 0.5s;
    opacity: 1;
    text-transform: uppercase;
}
.footer-btn:hover {
    opacity: 0.65;
}
.footer-additional {
    border-top: 1px solid #404245;
    padding-top: 40px;
    padding-bottom: 20px;
}
.footer-address {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3; 
    margin-bottom: 70px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-rights {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3; 
    padding: 10px 0;
}
.move-top__btn {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFA;
    text-decoration: underline;
    padding: 10px 0;
    opacity: 1;
}
.move-top__btn:hover {
    opacity: 0.65;
}

/* head */
.head {
    height: 100vh;
    max-height: 800px;
    position: relative;
    padding-top: 96px;
    padding-bottom: 125px;
    position: relative;
} 
.head-3d {
    position: absolute;
    width: 100vw;
    height: 100vh;
    max-height: 800px;
    left: 0;
    top: 0;
    z-index: 10px;
    will-change: transform; 
}
.head-inner {
    width: 100%;
    height: calc(100vh - 161px);
    max-height: 579px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.head-inner::after, .head-inner::before {
    content: '';
    display: block;
    width: 376px;
    height: 1px;
    background-color: rgb(255, 255, 255, 0.6);
    position: absolute;
    top: calc(50% + 20px);
    z-index: -1;
}
.head-inner::after {
    right: 0;
}
.head-inner::before {
    left: 0;
}
.head-top {
    display: flex;
    justify-content: space-between;
}
.head-top h1 {
    max-width: 258px;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFA;
}
.head-top h1 > span {
    font-weight: bold;
}
.head-descr {
    padding-top: 34px;
}
.head-descr__numbers {
    font-weight: bold;
    font-size: 56px;
    line-height: 56px;
    color: #FFFFFA;
    margin-bottom: 11px;
}
.head-descr__text {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #6D6D6D;
}
.head-botton {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.head-botton h2 {
    max-width: 310px;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #B1B1B1;
}
.head-btn {
    z-index: 5;
}

/* preview */
.preview {
    padding-top: 0;
    padding-bottom: 65px;
}
.preview-imgs__item {
    display: flex!important;
    justify-content: center;
    align-items: center;
    height: 600px!important;
}
.preview-imgs__item-img {
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    transition: all 0.5s;
    transform: scale(0.92);
}
.swiper-slide-active .preview-imgs__item-img {
    transform: scale(1.0);
}
.swiper .swiper-button-next, .swiper .swiper-button-prev {
    color: rgb(255, 255, 255, 0.6);
}
.preview-imgs .swiper-button-next {
    right: 16%;
}
.preview-imgs .swiper-button-prev {
    left: 16%;
}
.preview-logos {
    overflow-x: hidden;
    padding-top: 46px;
    padding-bottom: 50px;
    max-width: 1920px;
    margin: 0 auto;
}
.preview-logos__list {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content; 
    will-change: transform; 
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
.preview-logos__item {
    margin: 40px 49px;
    max-height: 45px;
}
.preview-line {
    height: 1px;
    background-color: #7F7F7F;
}

/* aboutus */
.aboutus {
    padding-top: 65px;
    padding-bottom: 100px;
}
.hints {
    margin-bottom: 45px;
    display: flex;
}
.hints-number {
    margin-right: 259px;
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #A3A3A3;
}
.hints-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #A3A3A3;
}
.title-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 81px;
}
.title-hint {
    padding-right: 27px;
    padding-left: 20px;
    max-width: 236px
}
.h2-title {
    max-width: 850px;
}
.h2-title img {
    max-height: 42px;
    display: inline-block;
    position: relative;
    bottom: -9px;
}
.aboutus-list {
    display: flex;
    justify-content: space-between;
}
.aboutus-list__item {
    width: calc(25% - 12px);
    margin-right: 16px;
    min-height: 380px;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s;
}
.aboutus-list__item:hover {
    background-color: transparent;
    border: 1px solid rgb(128, 128, 128, 0.55);
}
.aboutus-list__item:last-child {
    margin-right: 0;
}
.aboutus-list__item-title {
    display: block;
    font-weight: normal;
    color: #000000;
    transition: all 0.5s;
    cursor: default;
}
.aboutus-list__item:hover .aboutus-list__item-title {
    color: #FFFFFF;
}
.aboutus-list__item-numbers {
    display: block;
    font-weight: 600;
    font-size: 124px;
    line-height: 124px;
    color: #000000;
    transition: all 0.5s;
    cursor: default;
}
.aboutus-list__item:hover .aboutus-list__item-numbers {
    color: #FFFFFF;
}

/* services */
.services {
    padding-top: 100px;
    padding-bottom: 100px;
}
.services-item {
    display: flex;
    justify-content: space-between;
    min-height: 175px;
    margin-bottom: 19px;
    border-radius: 8px;
    padding: 8px 8px 8px 277px;
}
.services-item:last-child {
    margin-bottom: 0;
}
.services-item.item-1 {
    background-color: #F2F2F2;
}
.services-item.item-2 {
    background-color: transparent;
    border: 1px solid #FFFFFF;
}
.services-item.item-3 {
    background: linear-gradient(90deg, #000000 13%, #E82A1A 100%);
}
.services-item.item-4 {
    background-color: #1C1C1C;
    border: 1px solid #4A4A4A;
}
.services-item__info {
    max-width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.services-item__number {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #A3A3A3;
    position: absolute;
    opacity: 1;
    transition: all 0.5s;
}
.services-item.item-3 .services-item__number {
    color: #DBDBDB;
}
.services-item:hover .services-item__number {
    opacity: 0;
}
.services-item__title {
    display: block;
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    cursor: default;
}
.services-item.item-1 .services-item__title {
    color: #1C1C1C;
}
.services-item.item-2 .services-item__title,
.services-item.item-3 .services-item__title,
.services-item.item-4 .services-item__title {
    color: #FFFFFF;
}
.services-item__text {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #A3A3A3;
    opacity: 0;
    transition: all 0.5s;
    cursor: default;
}
.services-item.item-3 .services-item__text {
    color: #DBDBDB;
}
.services-item:hover .services-item__text {
    opacity: 1;
}
.services-item__img {
    width: 300px;
    margin-left: 12px;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all 0.85s;
    opacity: 0;
    transform: scale(0.05);
}
.services-item:hover .services-item__img {
    opacity: 1;
    transform: scale(1.0);
}
.services-btn {
    margin: 48px 0 0 auto;
}
.services-mob__text {
    display: none;
}
/* cases */
.cases {
    padding-top: 100px;
    padding-bottom: 100px;
}
.cases-1 .swiper-wrapper, .cases-2 .swiper-wrapper {
    -webkit-transition-timing-function:linear!important;
    -o-transition-timing-function:linear!important;
   transition-timing-function:linear!important;
}
.cases-item {
    padding-bottom: 32px;
}
.cases-item__img {
    height: 333px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all 0.5s;
}
.cases-item:hover .cases-item__img {
    border: 1px solid #FFFFFF;
}
.cases-item h4 {
    margin-top: 16px;
}
.cases-item h5 {
    margin-top: 4px;
}
.cases .hints-number {
    color: #FFFFFF;
}
.cases .hints-title {
    color: #FFFFFF;
}
.case-social {
    display: flex;
    align-items: center;
    margin: 10px 0 6px 0;
}
.case-social img {
    max-height: 14px;
    margin-right: 11px;
}

/* reviews */
.reviews {
    position: relative;
    padding-top: 100px;
    padding-bottom: 140px;
    background: url('../images/review-bg-tab-1.webp') left top 300px / 187px auto no-repeat, 
    url('../images/review-bg-dollar-1.webp') left 247px center / 159px auto no-repeat,
    url('../images/review-bg-board-2.webp') center bottom -14px / 217px auto no-repeat,
    url('../images/review-bg-board-1.webp') right 247px center / 205px auto no-repeat,
    url('../images/review-bg-dollar-2.webp') right 40px top 138px / 205px auto no-repeat,
    url('../images/review-bg-tab-2.webp') right top 340px / 218px auto no-repeat,
    url('../images/review-bg-dollar-3.webp') right -80px bottom 116px / 168px auto no-repeat;
}
.reviews-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 600px;
}
.reviews-item {
    width: 471px;
    border: 1px solid #515151;
    background-color: #0D0D0D;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    transition: transform 0.5s ease-in-out;
    z-index: 3;
}
.review-1 {
    transform: rotate(-16deg);
    left: 50px;
    top: 0;
}
.review-2 {
    transform: rotate(9deg);
    right: 50px;
    top: 0;
}
.review-3 {
    transform: rotate(6deg);
    left: 35px;
    bottom: -10px;
}
.review-4 {
    transform: rotate(-1.2deg);
    right: 35px;
    bottom: -10px;
}
.expanded.review-1, 
.expanded.review-2, 
.expanded.review-3, 
.expanded.review-4 {
    transform: rotate(0deg);
}
.reviews-descr {
    width: 70%;
    padding-right: 27px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
}
.reviews-descr span {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
}
.reviews-details {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 27px;
    position: relative;
}
.reviews-details::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #fff;
    left: 0;
    top: 0;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.5) 100%);
}
.reviews-details > span {
    display: block;
    border: 1px solid #515151;
    padding: 4px 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 8px;
    color: #676767;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
}
.reviews-details > span:first-child {
    font-weight: bold;
    color: #479A36;
}
.reviews-details > span:last-child {
    margin-bottom: 0;
}
.read-more {
    cursor: pointer;
    font-size: 14px;
    color: #E82A1A;
}
.reviews-info {
    width: 100%;
}
.reviews-info__inner {
    max-width: 500px;
    margin: 80px auto 60px;
    position: absolute;
    left: calc(50% - 250px);
    top: 136px;
}
.reviews-info__title {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 62px;
    line-height: 62px;
    text-align: center;
    margin-bottom: 32px;
}
.reviews-info__title span {
    color: #E82A1A;
}
.reviews-info__subtitle {
    color: #A2A2A2;
    text-align: center;
}
.more-text {
    display: none;
}
.reviews-close {
    background-image: url('../images/icon-close-white.svg');
    background-repeat: no-repeat;
    background-size: auto 16px;
    background-position: top right;
    width: 24px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
}
.reviews-item.expanded .reviews-close {
    height: 24px; 
    opacity: 1;  
    cursor: pointer;
    padding-bottom: 30px;
}
.reviews-swiper {
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
    padding: 62px 0 34px 0 !important;
    z-index: 10;
}
.reviews-swiper .swiper-wrapper {
    align-items: center;
}
.swiper .swiper-button-next, .swiper .swiper-button-prev {
    color: rgb(255, 255, 255, 0.6);
}
.swiper .swiper-button-next, .swiper .swiper-button-next  {
    color: rgb(255, 255, 255, 0.6);
}
.reviews-slide__inner {
    padding: 0px 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 600px;
}
.reviews-slide__item {
    width: 376px;
    padding: 13px 44px 36px 19px;
    background-color: #0D0D0D;
    border: 1px solid #515151;
    border-radius: 18px;
    position: relative;
    z-index: 2;
}
.reviews-slide__item.item-1::after,
.reviews-slide__item.item-3::after  {
    content: '';
    display: block;
    width: 15px;
    height: 10px;
    position: absolute;
    background-image: url(../images/review-corner-left.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: -6px;
    bottom: 0px;
    z-index: 1;
}
.reviews-slide__item.item-2::after,
.reviews-slide__item.item-4::after {
    content: '';
    display: block;
    width: 15px;
    height: 10px;
    position: absolute;
    background-image: url(../images/review-corner-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    right: -6px;
    bottom: 0px;
    z-index: 1;
}
.reviews-slide__item.item-1 {
    transform: rotate(-16deg);
    top: -55px;
}
.reviews-slide__item.item-2 {
    transform: rotate(9deg);
    top: -55px;
}
.reviews-slide__item.item-3 {
    transform: rotate(6deg);
    bottom: -60px;
}
.reviews-slide__item.item-4 {
    transform: rotate(-1.2deg);
    bottom: -60px;
}
.reviews-slide__add {
    display: flex;
    position: absolute;
    right: 16px;
    bottom: 14px;
    align-items: center;
}
.reviews-slide__text {
    font-weight: normal;
    font-size: 17px;
    line-height: 22px;
    text-align: left;
    color: #FFFFFF;
}
.reviews-slide__time {
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    text-align: left;
    color: #676767; 
    margin-right: 4px;
}

/* contacts */
.contacts {
    padding-top: 100px;
    padding-bottom: 90px;
}
.contacts-inner {
    display: flex;
    justify-content: space-between;
    background-color: #1C1C1C;
    border: 1px solid #4A4A4A;
    border-radius: 8px;
    padding: 40px 40px 60px 40px;
}
.contacts-left {
    max-width: 697px;
    padding-right: 40px;
}
.contacts-subtitle {
    max-width: 220px;
    color: #9E9E9E;
    margin-bottom: 32px;
}
.contacts .hints-number {
    color: #FFFFFF;
}
.contacts .hints-title {
    color: #FFFFFF;
}

/* page case */
.case-preview {
    padding-top: 145px;
}
.preview-videos__item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px!important;
}
.preview-videos__item-video  {
    width: 100%;
    height: 600px;
    border-radius: 5px;
    transition: all 0.5s;
    transform: scale(0.92);
}
.video-placeholder {
    height: 100%;
    width: 100%;
    background-size: cover;
}
.swiper-slide-active .preview-videos__item-video {
    transform: scale(1.0);
}
.case-preview .swiper-button-next {
    right: 16%;
}
.case-preview .swiper-button-prev {
    left: 16%;
}
.case {
    padding-top: 60px;
    padding-bottom: 90px;
    display: flex;
    justify-content: space-between;
}
.case-info {
    width: calc(100% - 270px);
    margin-right: 50px;
}
.case-additional {
    width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.case-tools {
    padding-bottom: 32px;
}
.case-tools > span {
    display: block;
    font-size: 14px;
    line-height: 21px;
}
.case-tools > span:first-child {
    font-weight: 500;
    color: #FFFFFF;
}
.case-tools > span:last-child {
    font-weight: normal;
    color: #6D6D6D;
}
.case-tools > ul {
    padding-top: 20px;
}
.case-brand {
    font-size: 12px;
    line-height: 18px;
    color: #6D6D6D;
    margin-bottom: 9px;
}
.case-title {
    margin-bottom: 18px;
}
.case-descr {
    max-width: 636px;
    margin-bottom: 71px;
}
.case-details {
    display: flex;
}
.case-details li {
    padding: 12px 34px 16px 12px;
    background-color: #FFFFFF;
    border-radius: 5px;
    margin-right: 18px;
    min-width: auto;
    width: calc(33% - 18px);
    max-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.case-details li:last-child {
    margin-right: 0;
}
.case-details__name {
    color: #6D6D6D;
    margin-bottom: 9px;
}
.case-details__numbers {
    font-weight: bold;
    font-size: 56px;
    line-height: 56px;
    color: #000000;
    display: flex;
    align-items: center;
}
.case-details__numbers img {
    max-height: 20px;
    margin-right: 10px;
    margin-bottom: 8px;
}
.case-details__numbers img:last-child {
    margin-right: 0;
}
.case-details__numbers.numbers-socials {
    display: flex;
    flex-wrap: wrap;
}
.testimonial {
    padding-bottom: 100px;
}
.testimonial-title {
    font-size: 12px;
    line-height: 18px;
    color: #6D6D6D;
    margin-bottom: 19px;
}
.testimonial-inner {
    display: flex;
    padding: 23px 40px;
    border: 1px solid rgb(128, 128, 128, 0.55);
    border-radius: 20px;
    align-items: center;
}
.testimonial-name {
    width: 411px;
    display: flex;
    align-items: center;
    padding-right: 63px;
    position: relative;
}
.testimonial-name::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #fff;
    right: 0;
    top: 0;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,1) 47%, rgba(255,255,255,0.5) 100%);
}
.testimonial-name__img {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.testimonial-name__text {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}
.testimonial-descr {
    width: calc(100% - 411px);
    padding-left: 63px;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
}

/* modals window */
.modal, .overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2.5px);
    z-index: 9;
}
.modal {
    align-items: center;
    justify-content: center;
    transform: translateY(-20px); 
    z-index: 13;
}
.overlay-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2.5px);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.modal-wrapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.modal-content {
    border-radius: 12px;
    max-width: 555px;
    width: 80%;
    overflow-y: auto;
    background-color: #1C1C1C;
    border: 1px solid rgba(128, 128, 128, 0.55);
    padding: 46px 32px;
    position: relative;
}
.close-modal {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s;
    position: absolute;
    right: 21px;
    top: 20px;
    opacity: 1;
}
.close-modal:hover {
    opacity: 0.5;
}
.close-modal img {
    max-height: 16px;
}
.modal-title {
    text-align: center;
    line-height: 40px;
    margin-bottom: 16px;
} 
.modal-subtitle {
    text-align: center;
    margin-bottom: 40px;
}
.modal-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-contact__item {
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    padding: 14px 15px;
    transition: all 0.5s;
    background-color: #3D3D3D;
    border-radius: 134px;
    width: calc(33.33% - 8px);
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-contact__item:last-child {
    margin-right: 0;
}
.modal-contact__item:hover {
    background-color: #FFFFFF;
    color: #D32017;
}
.modal-contact__item svg {
    margin-right: 14px;
}
.modal-contact__item svg path {
    transition: all 0.5s;
    fill: #FFFFFF;
}
.modal-contact__item:hover svg path {
    fill: #D32017;
}


/* .wpml-ls-legacy-dropdown .wpml-ls-current-language:focus .wpml-ls-sub-menu, .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover .wpml-ls-sub-menu {
    visibility: visible;
    opacity: 0;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
} */