.main_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    position: absolute;
    inset: 0;
}

.main_video {
    position: relative;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    height: calc(100vh - 120px);
}

.main_video .arrow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000052;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_video .arrow svg {
    transition: inherit;
    fill: var(--color-yellow);
    width: 40px;
    height: 40px;
}

.in_practice {
    margin: 50px 0;
}

.category_item .name {
    margin-bottom: 20px;
}

.category_item .name a {
    color: rgb(97, 98, 106);
    font-style: 18px;
    font-weight: bold;
    text-decoration: none;
}

.in_practice_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media screen and (min-width: 700px) {
    .in_practice_wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.category_item .image img {
    max-width: 100%;
    margin-bottom: 20px;
}

.category_item .name a:hover {
    text-decoration: underline;
}

.about_us {
    background: #FAFAFA;
}

.about_us .info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
}

.about_us_wrapper {
    display: grid;
    grid-template-columns: 1fr;
}

.about_us .bg {
    display: none;
    background-image: url(/assets/images/11.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (min-width: 1300px) {
    .about_us .info {
        padding: 175px;
    }
}

@media screen and (min-width: 700px) {
    .about_us .bg {
        display: block;
    }
    .about_us_wrapper {
        grid-template-columns: 1fr 1fr;
    }    
}

.clients_slider .swiper-slide img {
    max-width: 100%;
}

.clients {
    margin: 80px 0;
}

.clients_container {
    max-width: 85%;
    width: 100%;
    margin: 50px auto;
    position: relative;
}