/*слайдер на главной*/
.slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border: 1px solid #ccc;
}
.slider-wrapper .slider {
    position: relative;
    width: 100%;
    height: 100vh;
}
.slider-wrapper .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}
.slider-wrapper .slide.active {
    opacity: 1;
}
.slider-wrapper .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-wrapper .bg-darky {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
}
.slider-wrapper .layer {
    position: absolute;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: all 1s ease;
}
.slider-wrapper .caption {
    top: 21%;
    left: 14%;
    max-width: 90vw;
}
.slider-wrapper .button {
    top: 40%;
    left: 10%;
}
.slider-wrapper .layer.show {
    opacity: 1;
}
.slider-wrapper .icon-pagination {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px; /* Увеличиваем расстояние между миниатюрами */
    z-index: 10;
}
.slider-wrapper .icon-pagination .dot {
    cursor: pointer;
    height: 50px; /* Диаметр миниатюры */
    width: 50px;
    background-color: transparent; /* Убираем фон */
    border-radius: 50%; /* Делаем миниатюры круглыми */
    overflow: hidden;
    transition: border-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: inset 5px 5px 10px 0 rgb(0 0 0 / 25%);
    padding: 3px;
}
.slider-wrapper .icon-pagination .dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 2px; /* Толщина границы */
    box-shadow: inset 5px 5px 10px 0 rgb(0 0 0 / 25%);
    box-sizing: border-box;
}
.slider-wrapper .icon-pagination .dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Снова делаем картинку круглой внутри рамки */
    position: relative;
    z-index: 2; /* Поднимаем картинку над градиентной рамкой */
}
.slider-wrapper .icon-pagination .dot.active::before {
    background: linear-gradient(to bottom, #ffffff 0%, #777777 100%);
}
.slider-wrapper .wrapper-square {
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
.slider-wrapper .wrapper-square .animated-square {
    position: absolute;
    top: 200px;
    left: 100%; /* Начальная позиция за пределами видимости справа (66% экрана, выходит за пределы 1/3 слева) */
    width: 375px;
    height: 375px;
    background-color: rgba(255, 255, 255, 0.1); /* Полупрозрачный белый цвет */
    border: 17px solid rgba(255, 255, 255, 0.5); /* Полупрозрачная рамка */
    transform: translateX(100%); /* Начальное положение для анимации */
    transition: transform 1.5s ease; /* Плавный выезд справа налево */
    pointer-events: none; /* Исключаем квадрат из взаимодействия с мышью */
    z-index: 5;
}
.slider-wrapper .slide.active .animated-square {
    transform:  translateX(-100%); /* Выезд квадрата на видимую часть слайда */
}
.slider-wrapper .slide:hover .animated-square {
    animation: shake 0.5s ease-in-out; /* Анимация дрожания при наведении */
}
@keyframes shake {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    25% {
        transform: translateY(-50%) translateX(-10px);
    }
    50% {
        transform: translateY(-50%) translateX(10px);
    }
    75% {
        transform: translateY(-50%) translateX(-10px);
    }
}
.slider-wrapper .banner {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}
.slider-wrapper .banner .banner-content{
    display: flex;
    flex-direction: column;
    max-width: 90%;
}
.slider-wrapper .banner .banner-content .icon{
    width: 47px;
    height: 47px;
    margin-bottom: 25px;
    position: relative;
    opacity: 0;
    transform: translateY(-900%);
    transition: transform 4s ease, opacity 1s ease;
}
.slider-wrapper .slide.active .banner .banner-content .icon{
    opacity: 1;
    transform: translateY(0);
}
.slider-wrapper .banner .banner-content .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.slider-wrapper .banner .banner-content .sub-title {
    color: rgb(255, 40, 40);
    line-height: 19px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 16px;
    font-family: Montserrat;
    margin-bottom: 15px;
    position: relative;
    opacity: 0;
    transform: translateY(-700%);
    transition: transform 2s ease, opacity 1s ease;
}
.slider-wrapper .slide.active .banner .banner-content .sub-title {
    opacity: 1;
    transform: translateY(0);
}
.slider-wrapper .banner .banner-content .title {
    font-family: Montserrat;
    color: rgb(255, 255, 255);
    line-height: 47px;
    font-weight: 400;
    font-size: 44px;
    margin-bottom: 10px;
    letter-spacing: 0;
    position: relative;
    opacity: 0;
    transform: translateX(100%); /* Начальное положение справа */
    transition: transform 2s ease, opacity 1s ease;
}
.slider-wrapper .slide.active .banner .banner-content .title {
    opacity: 1;
    transform: translateX(0);
}
.slider-wrapper .banner .banner-content .text {
    font-family: Montserrat;
    color: rgb(255, 255, 255);
    line-height: 42px;
    font-weight: 400;
    font-size: 23px;
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(700%);
    transition: transform 1s linear, opacity 1s ease-in;
}
.slider-wrapper .slide.active .banner .banner-content .text {
    opacity: 1;
    transform: translateY(0);
}
.slider-wrapper .banner .banner-content .button {
    background-color: rgb(255, 40, 40);
    font-family: Montserrat;
    cursor: pointer;
    color: rgb(255, 255, 255);
    line-height: 12px;
    font-weight: 400;
    font-size: 12px;
    padding: 13px 26px;
    width: max-content;
    position: relative;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: translateY(700%);
    transition: transform 2s linear, opacity 1s ease-in-out;
    z-index: 5;
}
.slider-wrapper .banner .banner-content .button:hover {
    opacity: 0.7;
    transition: 0.7s;
}
.slider-wrapper .slide.active .banner .banner-content .button {
    opacity: 1;
    transform: translateY(0);
}
.slider-wrapper .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px; /* Высота полосы */
    width: 0%;
    background-color: red; /* Цвет полосы */
    /*transition: width 0.5s linear;*/
}
@media  (max-width: 980px) {
    .slider-wrapper .caption {
        max-width: 85vw;
        left: 5%;
    }
}
@media (max-width: 820px) {
    .slider-wrapper .banner .banner-content .title {
        font-size: 25px;
    }
    .slider-wrapper .banner .banner-content .text {
        font-size: 18px;
    }
}
@media (max-width: 555px) {
    .slider-wrapper .banner .banner-content {
        max-width: 100%;
    }
    .slider-wrapper .icon-pagination {
        left: 20px;
        bottom: 20px;
        transform: translateY(0);
        top: unset;
        right: unset;
        flex-direction: row;
    }
}

/* Services */
.services.container {
    padding: 60px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}
.services .service-item {
    display: flex;
    width: 31%;
    flex-direction: column;
    margin: 0 0 45px;
    text-align: center;
}
.services .service-item .img-area {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.services .service-item .img-area .blacky{
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
    transition: all .6s ease;
}
.services .service-item .img-area:hover .blacky{
    display: flex;
    opacity: 1;
    position: absolute;
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
    transition: all .7s ease;
}
.services .service-item .img-area .button-a{
    border: 3px solid #e6101b;
    /*border-color: #e6101b;*/
    opacity: 0;
    bottom: -5em;
    transition: all .6s ease;
    color: #e6101b;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    padding: 13px 27px;
    font-size: 12px;
    position: absolute;
}
.services .service-item .img-area:hover .button-a{
    border: 3px solid #e6101b;
    opacity: 1;
    bottom: 37%;
    transition: all .6s ease;
    color: #e6101b;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    padding: 10px 27px;
    font-size: 12px;
    position: absolute;
    z-index: 3;
}
.services .service-item .img-area .button-a:hover{
    border: 3px solid #e6101b;
    transition: all .6s ease;
    color: #000;
    background-color: #e6101b;
}
.services .service-item .img-area img{
    object-fit: cover;
    height: 100%;
    transition: transform 0.7s;
}
.services .service-item:hover img {
    transform: scale(1.05);
}
.services .service-item .title-s {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    text-align: start;
    font-weight: 900;
    font-size: 16px;
    line-height: 18px;
    color: #2a2F35;
}
.services .service-item .text-f {
    text-align: start;
}
@media  (max-width: 1080px) {
    .services .service-item {
        width: 48%;
    }
}
@media (max-width: 490px) {
    .services .service-item {
        width: 100%;
    }
}

/* About Us */
.about-us{
    display: flex;
    flex-direction: column;
}
.about-us .top-area{
    background: url("../img/bg-about-us.jpg") no-repeat center;
    background-size: cover;
    padding: 80px 0 40px;
}
.about-us .top-area .container{
    flex-direction: row;
    justify-content: space-between;
}
.about-us .top-area .item-vs-button{
    display: flex;
    flex-direction: column;
    min-height: 400px;
    color: #2a2f35;
    padding: 35px 85px;
    background: #fff;
    justify-content: center;
    width: 48%;
}
.about-us .top-area .item-vs-button .text-area{
    color: #828282;
    margin-bottom: 30px;
    text-align: start;
}
.about-us .top-area .item-vs-button .button{
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    transform: translateZ(0);
    transition-duration: .3s;
    text-transform: uppercase;
    font-size: 12px;
    background-color: #e6101b;
    font-family: 'Montserrat';
    transition: color .6s ease,background .6s ease;
    padding: 16px 30px;
    line-height: 1;
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    width: max-content;
}
.about-us .top-area .item-vs-button .button:before {
    content: "";
    position: absolute;
    background: #2a2f35;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.about-us .top-area .item-vs-button .button:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.about-us .top-area .item-vs-button .button:hover {
    color: #fff;
}
.about-us .top-area .item-only-text{
    display: flex;
    width: 48%;
    justify-content: space-between;
    padding-top: 30px;
}
.about-us .top-area .item-only-text .img{
    margin-right: 10px;
    width: 40px;
    min-width: 40px;
}
.about-us .top-area .item-only-text .img svg{
    color: #e6101b;
}
.about-us .top-area .item-only-text .text-area{
    display: flex;
    flex-direction: column;
    color: #b8b8b8;
}
.about-us .top-area .item-only-text .text-area .title-text{
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Montserrat';
}
.about-us .bottom-area{
    background-color: #1c2126;
    padding: 50px;
}
.about-us .bottom-area .container{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.about-us .bottom-area .title-text{
    color: #fff;
    margin-right: 10px;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Montserrat';
    line-height: 1.1;
}
.about-us .bottom-area .button{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    transition-duration: .3s;
    text-transform: uppercase;
    background-color: #e6101b;
    font-family: 'Montserrat';
    transition: color .6s ease,background .6s ease;
    padding: 16px 30px;
    line-height: 1;
    color: #2a2f35;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    height: 46px;
    width: max-content;
}
.about-us .bottom-area .button:before {
    content: "";
    position: absolute;
    background: #2a2f35;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.about-us .bottom-area .button:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.about-us .bottom-area .button:hover {
    color: #fff;
}
.about-us .bottom-area .button .icon{
    width: 12px;
    min-width: 12px;
    margin-right: 5px;
}
@media  (max-width: 1080px) {
    .about-us .top-area .item-vs-button {
        padding: 20px 35px;
    }
    .about-us .top-area .item-only-text {
        flex-direction: column;
        justify-content: start;
    }
}
@media (max-width: 770px) {
    .about-us .top-area .container {
        flex-direction: column;
    }
    .about-us .top-area .item-vs-button {
        width: calc(100% - 50px);
        margin: 0 25px 25px;
    }
    .about-us .top-area .item-only-text {
        width: calc(100% - 50px);
        margin: 0 25px 25px;
    }
    .about-us .bottom-area .container {
        flex-direction: column;
    }
    .about-us .bottom-area .title-text {
        margin-bottom: 30px;
        text-align: center;
    }
}
@media (max-width: 425px) {
    .about-us .top-area .item-vs-button {
        width: 100%;
        margin: 0 0 25px;
    }
    .about-us .top-area .item-only-text {
        width: 100%;
        margin: 0 0 25px;
    }
}

/* Stage */
.stage{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 0 20px;
}
.stage .title-section{
    margin-bottom: 30px;
    text-align: left;
    color: #2a2f35;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Montserrat';
    font-size: 24px;
}
.stage .items-area{
    display: flex;
    justify-content: space-between;
}
.stage .items-area .item{
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 30px 10px;
    width: 300px;
}
.stage .items-area .item .icon{
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e6101b;
    margin-bottom: 25px;
    line-height: 70px;
    color: #fff;
    border-radius: 35px;
}
@keyframes scale-down-up {
    0% {
        transform: scale(1); /* Начальное состояние */
        color: #e6101b;
    }
    50% {
        transform: scale(0.7); /* Уменьшение на 30% */
        background-color: #b8b8b8;
    }
    100% {
        transform: scale(1); /* Возврат к исходному размеру */
        color: #e6101b;
    }
}
.item:hover .icon {
    animation: scale-down-up 1s ease-in-out; /* Анимация на 0.6 секунды */
}
.stage .items-area .item .icon svg{
    width: 40%;
    height: 40%;
    color: #ffffff!important;
}
.stage .items-area .item .number1{
    color: #828282;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'Montserrat';
    line-height: 1.1;
    text-align: left;
    display: flex;

}
.stage .items-area .item .item-title{
    color: #2a2f35;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    line-height: 1.1;
    text-align: left;
}
.stage .items-area .item .text{
    margin: 0 0 10px;
    color: #828282;
    text-align: left;
}
@media  (max-width: 1080px) {
    .stage .items-area {
        flex-wrap: wrap;
    }
    .stage .items-area .item{
        width: 48%;
        margin: 0 0 35px;
    }
}
@media (max-width: 555px) {
    .stage .items-area{
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .stage .items-area .item{
        width: 80%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .stage .items-area .item .text {
        text-align: center;
    }
    .stage .title-section {
        text-align: center;
    }
    .stage .items-area .item .item-title {
        text-align: center;
    }
}
@media (max-width: 490px) {
    .stage .items-area .item{
        width: 100%;
    }
}

/* Simples */
.simples{
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../img/bg-simples.jpg") no-repeat center;
    background-size: cover;
    padding: 45px 0 60px;
}
.simples .container {
    overflow: hidden;
}
.simples .title-section{
    display: flex;
    text-align: start;
    margin-bottom: 30px;
    color: #b8b8b8;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat';
}
.simples .items-area {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    user-select: none; /* Отключает выделение текста */
    -webkit-user-drag: none; /* Отключает перетаскивание изображений в WebKit браузерах */
}
.simples .items-area .item {
    position: relative;
    display: flex;
    /*flex: 0 0 calc(1320px / 5 - 10px);*/
    width: calc(100% / 5 - 15px);
    max-width: calc(100% / 5 - 15px);
    min-width: calc(100% / 5 - 15px);
    box-sizing: border-box;
    height: 540px;
    margin-right: 15px;
}
.simples .items-area .item .img-area{
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    width: 100%;
    height: 100%;
    position: relative;
    user-select: none;
}
.simples .items-area .item .img-area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.simples .items-area .item .img-area .black-covered{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.simples .items-area .item .text-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
}
.simples .items-area .item .text-area .sub-title-item{
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    line-height: 10px;
}
.simples .items-area .item .text-area .title-item{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
    line-height: 1.1;
}
@media (max-width: 1380px) {
    .simples .items-area .item {
        position: relative;
        display: flex;
        width: calc(100% / 5 - 12px);
        max-width: calc(100% / 5 - 12px);
        min-width: calc(100% / 5 - 12px);
        box-sizing: border-box;
        height: 440px;
        margin-right: 15px;
    }
}
@media (max-width: 1280px) {
    .simples .items-area .item .text-area .title-item {
        font-size: 14px;
    }
    .simples .items-area .item .text-area {
        padding: 30px 20px;
    }
}
@media (max-width: 910px) {
    .simples .items-area .item {
        width: calc(100% / 4 - 11px);
        max-width: calc(100% / 4 - 11px);
        min-width: calc(100% / 4 - 11px);
    }
}
@media (max-width: 680px) {
    .simples .items-area .item {
        width: calc(100% / 3 - 10px);
        max-width: calc(100% / 3 - 10px);
        min-width: calc(100% / 3 - 10px);
    }
}
@media (max-width: 555px) {
    .simples .items-area .item {
        width: calc(100% / 2 - 7px);
        max-width: calc(100% / 2 - 7px);
        min-width: calc(100% / 2 - 7px);
        height: 320px;
    }
}
@media (max-width: 425px) {
    .simples .items-area .item {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

/* us-services */
.us-services{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}
.us-services .title-section{
    text-transform: uppercase;
    font-weight: 400;
    color: #2a2f35;
    font-family: 'Montserrat';
    font-size: 24px;
    margin-bottom: 30px;
}
.us-services .items-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.us-services .items-area .item{
    position: relative;
    width: 31%;
    height: 220px;
    margin-bottom: 3%;
}
.us-services .items-area .item .img-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.us-services .items-area .item .img-area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 0.7s;
}
.us-services .items-area .item:hover .img-area img{
    transform: scale(120%);
    transition: 0.7s;
}
.us-services .items-area .item .img-area .dark-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10,10,10,0.3);
    transition: 0.7s;
}
.us-services .items-area .item:hover .img-area .dark-wrapper{
    background-color: rgba(10,10,10,0.6);
    transition: 0.7s;
}
.us-services .items-area .item .content-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding: 15px 40px 40px;
}
.us-services .items-area .item .content-area .icon{
    width: 16px;
    height: 14px;
    margin-bottom: 10px;
}
.us-services .items-area .item .content-area .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.us-services .items-area .item .content-area .text{
    color: #fff;
    font-family: 'Montserrat';
    font-size: 21px;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.1;
    text-align: left;
}
.us-services .items-area .item .content-area .button{
    color: #e6101b;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 12px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.7s;
}
.us-services .items-area .item .content-area .button svg{
    width: 10.5px;
    height: 12px;
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.us-services .items-area .item .content-area .button:hover{
    color: #ffffff;
    transition: 0.7s;
}
.us-services .items-area .item .content-area .button:hover svg path{
    color: #ffffff;
    transition: 0.7s;
}
@media (max-width: 820px) {
    .us-services .items-area .item {
        width: 48%;
        height: 180px;
        margin-bottom: 4%;
    }
    .us-services .items-area .item .content-area {
        padding: 8px 20px 20px;
    }
}
@media (max-width: 490px) {
    .us-services .items-area .item {
        width: 100%;
        margin-bottom: 1%;
    }
}

/* Only text */
.only-text{
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat';
    color: #828282;
    margin: 50px 0;
}
@media (max-width: 770px) {
    .only-text {
        text-align: center;
    }
}

/* Contact */
.contact {
    margin: 50px auto;
    display: flex;
    justify-content: center;
}
.contact .container{
    flex-direction: row;
    justify-content: space-between;
}
.contact .form-area{
    width: 49%;
}
.contact form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact input:not(input[type="submit"]){
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #f3f3f3;
    background-color: #f3f3f3;
    padding: 14px;
    color: #2a2f35;
    font-size: 14px;
    vertical-align: middle;
    box-shadow: none;
    border-radius: 0;
    line-height: 15px;
    font-weight: 400;
}
.contact input[type="submit"]:hover {
    opacity: 0.6;
}
.contact .wpcf7-form-control-wrap {
    width: 49%;
}
.contact input[type="submit"] {
    /*margin: 10px;*/
    border: none;
    cursor: pointer;
    background-color: #e30613;
    color: #fff;
    padding: 20px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: opacity 0.7s;
    width: 49%;
    margin-right: 5%;
    opacity: 1;
}
.contact input[type="submit"]:hover {
    opacity: 0.6;
}
.contact textarea {
    width: 100%;
    background-color: #f3f3f3;
    padding: 14px;
    color: #2a2f35;
    font-size: 14px;
    vertical-align: middle;
    box-shadow: none;
    border-radius: 0;
    line-height: 15px;
    font-weight: 400;
    resize: none;
    height: 150px;
    margin-bottom: 30px;
    border: none;
}
.contact .img-area{
    width: 49%;
}
.contact .img-area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 770px) {
    .contact .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contact .form-area {
        width: 80%;
    }
    .contact .img-area {
        margin-top: 50px;
        width: 80%;
    }
}
@media (max-width: 620px) {
    .contact .wpcf7-form-control-wrap {
        width: 100%;
    }
    .contact input[type="submit"] {
        width: 100%;
        margin-right: 0;
    }
}
@media (max-width: 555px) {
    .contact .form-area {
        width: 100%;
    }
    .contact .img-area {

        width: 100%;
    }
}
@media (max-width: 490px) {
    .contact input {
        width: 100%;
        margin-bottom: 20px;
    }
    .contact form {
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 425px) {
    .contact .container {
        padding: 0;
    }
}
















