/* We are */
.we-are{
    margin-bottom: 50px;
}
.we-are .title-area{
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 45px 0 30px;
}
.we-are .title-area:after{
    content: '';
    display: flex;
    background-color: #e6101b;
    margin-top: 10px;
    height: 1px;
    width: 45px;
}
.we-are .title-area .title{
    text-transform: uppercase;
    color: #2a2f35;
    font-weight: 700;
    font-family: 'Montserrat';
    font-size: 24px;
    text-align: start;
}
.we-are .items-area{
    display: flex;
    justify-content: space-between;
}
.we-are .items-area .img-area{
    display: flex;
    width: 385px;
    min-width: 385px;
    height: 350px;
    position: relative;
    overflow: hidden;
    justify-content: center;
}
.we-are .items-area .img-area img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.we-are .items-area .img-area .darky{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5)!important;
    transition: 0.5s ease-in;
    opacity: 0;
}
.we-are .items-area .img-area:hover .darky{
    top: 0;
    transition: 0.5s ease-in;
    opacity: 1;
}
.we-are .items-area .img-area .button{
    position: absolute;
    opacity: 1;
    transition: all .6s ease;
    transform: translateZ(0);
    text-transform: uppercase;
    background-color: #e6101b;
    font-family: 'Montserrat';
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 16px 30px;
    color: #2a2f35;
    transition: 0.5s ease-in;
    top: 100%;
    left: 23%;
    opacity: 0;
}
.we-are .items-area .img-area:hover .button{
    top: 45%;
    transition: 0.5s ease-in;
    opacity: 1;
}
.we-are .items-area .img-area .button:hover{
    transition: 0.7s ease-in;
    color: #ffffff;
    background: #2a2f35;
}
.we-are .items-area .text{
    width: 100%;
    padding: 10px 25px 10px 0;
    color: #2a2f35;
    text-align: left;
    font-family: 'Open Sans';
    font-size: 14px;
    line-height: 1.7;
    padding-left: 50px;
}
@media (max-width: 820px) {
    .we-are .items-area {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .we-are .items-area .img-area {
        margin: 30px 0;
    }
    .we-are .items-area .text {
        padding: 10px;
        text-align: center;
    }
}
@media (max-width: 490px) {
    .we-are .items-area .img-area {
        width: 100%;
        min-width: auto;
    }
}

/* About Us */
.about-us2{
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}
.about-us2 .top-area{
    display: flex;
    justify-content: space-between;
}
.about-us2 .top-area .item-vs-button{
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
    min-height: 400px;
    color: #2a2f35;
    padding: 90px 70px;
    justify-content: start;
    width: 50%;
}
.about-us2 .top-area .item-vs-button .text-area{
    color: #828282;
    margin-bottom: 30px;
    text-align: start;
}
.about-us2 .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: #2a2f35;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    width: max-content;
}
.about-us2 .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-us2 .top-area .item-vs-button .button:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.about-us2 .top-area .item-vs-button .button:hover {
    color: #fff;
}
.about-us2 .top-area .item-only-text{
    display: flex;
    width: 50%;
    flex-direction: column;
    padding: 90px 70px;
    background: url("../img/bg-about-us2.jpg") no-repeat center;
    background-size: cover;
}
.about-us2 .top-area .item-only-text .wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.about-us2 .top-area .item-only-text .img{
    margin-right: 10px;
    width: 40px;
    min-width: 40px;
}
.about-us2 .top-area .item-only-text .img svg{
    color: #e6101b;
}
.about-us2 .top-area .item-only-text .text-area{
    display: flex;
    flex-direction: column;
    color: #b8b8b8;
}
.about-us2 .top-area .item-only-text .text-area .title-text{
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Montserrat';
}
@media (max-width: 910px) {
    .about-us2 .top-area {
        flex-direction: column;
    }
    .about-us2 .top-area .item-vs-button {
        width: 100%;
    }
    .about-us2 .top-area .item-only-text {
        width: 100%;
    }
}
@media (max-width: 770px) {
    .about-us2 .top-area .item-only-text .wrapper {
        flex-direction: column;
    }
}
@media (max-width: 555px) {
    .about-us2 .top-area .item-vs-button {
        padding: 45px 35px;
    }
    .about-us2 .top-area .item-only-text {
        flex-direction: column;
        padding: 45px 35px;
    }
}

/* Count items */
.count-items.container{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 80px auto;
}
.count-items .text-area{
    display: flex;
    flex-direction: column;
    width: 50%;
    position: relative;
}
.count-items .text-area:after{
    content: '';
    display: flex;
    background-color: #e6101b;
    height: 1px;
    width: 45px;
    margin-top: 10px;
}
.count-items .text-area .sub-title{
    text-transform: uppercase;
    font-size: 14px;
    color: #828282;
    line-height: 1.7;
    margin-bottom: 10px;
    font-family: 'Montserrat';
}
.count-items .text-area .title{
    font-weight: 400;
    color: #2a2f35;
    font-family: 'Montserrat';
    font-size: 24px;
}
.count-items .items-area{
    display: flex;
    flex-direction: row;
    width: 50%;
    padding-left: 20px;
    flex-wrap: wrap;
}
.count-items .items-area .item{
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    margin: 0 15px 30px;
    width: 220px;
}
.count-items .items-area .item .icon{
    margin-bottom: 15px;
    width: 23px;
    height: 30px;
}
.count-items .items-area .item:nth-child(2) .icon svg{
    width: 35px;
}
.count-items .items-area .item .number{
    font-family: 'Montserrat';
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.7;
    margin-bottom: 10px;
}
.count-items .items-area .item .text{
    font-family: 'Montserrat';
    color: #828282;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.1;
}
@media  (max-width: 1140px) {
    .count-items.container {
        flex-direction: column;
    }
    .count-items .text-area {
        width: 100%;
        margin-bottom: 30px;
    }
    .count-items .items-area {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .count-items .items-area .item {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

/* Simples */
.simples2{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 0 60px;
}
.simples2 .container {
    overflow: hidden;
}
.simples2 .title-section{
    display: flex;
    text-align: start;
    margin-bottom: 30px;
    color: #2a2f35;
    text-transform: uppercase;
    font-size: 24px;
    font-family: 'Montserrat';
    font-weight: 700;
    flex-direction: column;
    position: relative;
}
.simples2 .title-section:after{
    content: '';
    background-color: #e6101b;
    height: 1px;
    width: 45px;
    margin-top: 10px;
    display: flex;
}
.simples2 .items-area {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;

}
.simples2 .items-area .item {
    position: relative;
    display: flex;
    width: calc(100% / 3);
    max-width: calc(100% / 3 );
    min-width: calc(100% / 3 );
    box-sizing: border-box;
    height: 550px;
    margin-right: 2px;
}
.simples2 .items-area .item .img-area{
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    width: 100%;
    height: 100%;
    position: relative;
    user-select: none;
}
.simples2 .items-area .item .img-area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.simples2 .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);
}
.simples2 .items-area .item .text-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
}
.simples2 .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;
}
.simples2 .items-area .item .text-area .title-item{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
    line-height: 1.1;
}
.simples2 .items-area .item .text-area .button{
    border: 3px solid #e6101b;
    color: #e6101b;
    line-height: 15px;
    padding: 10px 18px;
    margin-top: 20px;
    width: max-content;
    transition: 0.7s;
}
.simples2 .items-area .item .text-area .button:hover{
    transition: 0.7s;
    background: #e6101b;
    color: #2a2F35;
}
@media (max-width: 770px) {
    .simples2 .items-area .item {
        width: calc(100% / 2 + 4px);
        max-width: calc(100% / 2 + 4px);
        min-width: calc(100% / 2 + 4px);
    }
}
@media (max-width: 555px) {
    .simples2 .items-area .item {
        width: calc(100% + 10px);
        max-width:calc(100% + 10px);
        min-width: calc(100% + 10px);
    }
}

/* Videoplayer */
.videoplayer{
    position: relative;
}
.videoplayer .video-bg-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.videoplayer .video-placeholder,
.videoplayer .video-bg {
    position: absolute;
    top: -15vw;
    left: 0;
    width: 100%;
    height: 57vw;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}
.videoplayer .video-mobile-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}
.videoplayer .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.59);
    z-index: 2;
}
.videoplayer .centered-text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.videoplayer .centered-text h2,
.videoplayer .centered-text h4 {
    margin: 0;
}
@media  (max-width: 1080px) {
    .videoplayer .video-placeholder, .videoplayer .video-bg {
        top: -15vw;
        left: -26vw;
        width: 207%;
        height: 116vw;
    }
}
@media (max-width: 770px) {
    .videoplayer .centered-text h2 {
        font-size: 1.5em;
    }
    .videoplayer .centered-text h4 {
        font-size: 1em;
    }
    .videoplayer .video-bg-container {
        height: 500px;
    }
}
@media screen and (max-width: 490px) {
    .videoplayer .video-placeholder,
    .videoplayer .video-bg {
        display: none; /* Скрываем плеер на мобильных */
    }

    .videoplayer .video-mobile-placeholder {
        display: block; /* Показываем заглушку на мобильных */
    }
}
@media (max-width: 490px) {
    .videoplayer .video-bg {
        width: 309%;
    }
    .videoplayer .centered-text h2 {
        font-size: 16px;
    }
    .videoplayer .centered-text h4 {
        font-size: 13px;
    }
}

/* bottom area 1 */
.bottom-area1{
    background-color: #1c2126;
    padding: 50px;
}
.bottom-area1 .container{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.bottom-area1 .title-text{
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat';
    line-height: 1.1;
}
.bottom-area1 .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;
}
.bottom-area1 .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;
}
.bottom-area1 .button:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.bottom-area1 .button:hover {
    color: #fff;
}
.bottom-area1 .button .icon {
    width: 15px;
    margin-right: 5px;
}
@media (max-width: 680px) {
    .bottom-area1 .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .bottom-area1 .title-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

/* Слайдер не на главной */
.slider-content3{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.slider-content3 .content{
    display: flex;
    flex-direction: column;
    height: 332px;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.slider-content3 .content .item1{
    display: flex;
    justify-content: space-between;
    height: 332px;
    position: relative;
}
.slider-content3 .content .item1 .tex-area{
    display: flex;
    flex-direction: column;
    padding: 50px 80px;
    background-color: #F4F4F4;
    width: 50%;
    justify-content: start;
    position: relative;
    left: -150%;
    opacity: 0;
    transition: 0.7s;
}
.slider-content3 .content .item1.active-slide .tex-area{
    left: 0;
    opacity: 1;
    transition: 0.7s;
}
.slider-content3 .content .item1 .tex-area .title{
    font-family: Montserrat;
    color: rgb(42, 47, 53);
    line-height: 29px;
    font-weight: 700;
    font-size: 29px;
    margin-bottom: 10px;
}
.slider-content3 .content .item1 .tex-area .text{
    font-family: "Open Sans";
    color: #1c2126;
    line-height: 18px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 20px;
}
.slider-content3 .content .item1 .tex-area .button{
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 14px;
    background-color: #e6101b;
    font-family: 'Montserrat';
    padding: 16px 30px;
    line-height: 1;
    color: #2a2f35;
    font-weight: 600;
    width: max-content;
}
.slider-content3 .content .item1 .img-area{
    width: 50%;
    height: 100%;
}
.slider-content3 .content .item1 .img-area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-content3 .content .item2{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("../img/bg-slider-1.jpg") no-repeat center;
    background-size: cover;
    padding: 40px 30px;
}
.slider-content3 .content .item2 .title{
    font-family: Montserrat;
    color: #e6101b;
    line-height: 29px;
    letter-spacing: 0;
    font-weight: 700;
    font-size: 29px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    top: -150%;
    opacity: 0;
    transition: 1s;
}
.slider-content3 .content .item2.active-slide .title{
    top: 0;
    opacity: 1;
    transition: 1s;
}
.slider-content3 .content .item2 .text{
    font-family: "Open Sans";
    color: #ffffff;
    line-height: 20px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    width: 40%;
    left: -150%;
    opacity: 0;
    transition: 1s;
    position: relative;
}
.slider-content3 .content .item2.active-slide .text{
    left: 0;
    opacity: 1;
    transition: 1s;
}
.slider-content3 .content .item2 .button{
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 14px;
    background-color: #e6101b;
    font-family: 'Montserrat';
    padding: 16px 30px;
    line-height: 1;
    color: #2a2f35;
    font-weight: 600;
    bottom: -150%;
    opacity: 0;
    transition: 1s;
    position: relative;
}
.slider-content3 .content .item2.active-slide .button{
    bottom: 0;
    opacity: 1;
    transition: 1s;

}
.slider-content3 .dots{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 8%;
    bottom: 8%;
}
.slider-content3 .dots .dot{
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 2px #ffffff;
    transition: background 0.3s ease;
    cursor: pointer;
    border: 1px solid #ffffff;
    margin-right: 3px;
}
.slider-content3 .dots .dot.active{
    background: #ffffff;
}
@media  (max-width: 1080px) {
    .slider-content3 .content .item2 .text {
        width: 90%;
    }
    .slider-content3 .content {
        height: auto;
    }
    .slider-content3 .content .item1 {
        flex-direction: column;
    }
    .slider-content3 .content .item1 {
        height: auto;
    }
    .slider-content3 .content .item1 .tex-area {
        width: 100%;
    }
    .slider-content3 .content .item1 .img-area {
        width: 100%;
    }
}
@media (max-width: 770px) {
    .slider-content3 .content .item1 .tex-area {
        padding: 25px 10px;
    }
}
@media (max-width: 680px) {
    .slider-content3 .content {
        height: auto;
    }
}