.about-company,
.about-company * {
    box-sizing: border-box;
}

.about-company {
    margin-top: 26px;
}

.about-company__intro {
    margin-bottom: 15px;
}

.about-company__intro h2 {
    margin: 0;
    color: #000;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
}

.about-company__intro h2:not(:last-child) {
    margin: 0 0 20px;
}

.about-company .about-company__intro p {
    margin: 0;
    color: #2d2d2d;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
}

.about-company .about-company__intro p:not(:last-child) {
    margin-bottom: 10px;
}

.about-company__clients {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.about-company__client {
    display: flex;
    align-items: center;
    padding: 20px 15px 20px 11px;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    background-color: #fff;
    border-left: 4px solid #118BDD;
}

.about-company__goal {
    position: relative;
    padding: 15px 15px 15px 11px;
    margin-bottom: 35px;
    background-color: #fff;
    border-left: 4px solid #118BDD;
}

.about-company__goal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-size: 100% 100%,
                     220px 64px,
                     220px 64px;
    background-position: center,
                         right 165px top -16px,
                         right 275px top 16px;
    background-image: linear-gradient(to left, transparent 0%, #fff 100%),
                      url("./img/bg-company-goal-pattern.svg"),
                      url("./img/bg-company-goal-pattern.svg");
    z-index: 2;
}

.about-company__goal h2 {
    margin: 0;
    padding: 0;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
}

.about-company__goal h2::after {
    display: none;
}

.about-company__goal h2:not(:last-child) {
    margin-bottom: 10px;
}

.about-company .about-company__goal p {
    margin: 0;
    color: #2d2d2d;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
}

.about-company .about-company__goal p:not(:last-child) {
    margin-bottom: 10px;
}

.about-company__goal > * {
    position: relative;
    z-index: 3;
}

.about-company__gallery:not(:last-child) {
    margin-bottom: 35px;
}

.about-company__gallery .owl-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.about-company__gallery .owl-dot {
    width: 6px;
    height: 6px;
    background-color: #adadad !important;
    border-radius: 50%;
    transition: background-color .3s;
}

.about-company__gallery .owl-dot.active {
    background-color: #118BDD !important;
}

.about-company__gallery .owl-dot span {
    display: none;
}

.about-company__gallery-item {
    display: flex;
    flex-direction: column;
}

.about-company__gallery-item-media {
    width: 100%;
}

.about-company__gallery-item-media--video {
    position: relative;
    aspect-ratio: 16/9;
    background-color: #000;
}

.about-company__gallery-item-img {
    display: block;
    width: 100%;
    height: auto;
}

.about-company .about-company__gallery-item-text {
    margin: 15px 0 0;
    text-align: center;
    font-weight: 400;
    font-style: Italic;
    font-size: 14px;
    line-height: 160%;
}

.about-company__gallery-item-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.about-company__gallery-item-poster:focus {
    outline: none;
}

.about-company__gallery-item-poster::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.3);
    z-index: 1;
}

.about-company__gallery-item-poster::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background-color: #118BDD;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("./img/icon-video-play.svg");
    background-size: 26px auto;
    transition: background-color .3s;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.about-company__gallery-item-poster:hover::after,
.about-company__gallery-item-poster:focus::after {
    background-color: #32a1df;
}

.about-company__gallery-item-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-company__gallery-item-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 1025px) {
    .about-company {
        margin-bottom: 45px;
    }

    .about-company__intro h2::after {
        display: none;
    }

    .about-company__intro h2 {
        padding: 0;
        text-align: center;
        font-size: 32px;
    }

    .about-company__intro {
        max-width: 900px;
        margin-right: auto;
        margin-bottom: 35px;
        margin-left: auto;
    }

    .about-company .about-company__intro p {
        font-size: 16px;
    }

    .about-company .about-company__intro p:not(:last-child) {
        margin-bottom: 15px;
    }

    .about-company__clients {
        flex-direction: row;
        gap: 25px;
        margin-bottom: 35px;
    }

    .about-company__client {
        flex-basis: calc(20% - (25px * 4 /5));
        align-items: flex-start;
        padding: 30px 25px 35px 21px;
        font-size: 16px;
    }

    .about-company__goal {
        padding: 25px 25px 30px 21px;
    }

    .about-company__goal h2 {
        font-size: 24px;
    }

    .about-company__goal h2:not(:last-child) {
        margin-bottom: 25px;
    }

    .about-company .about-company__goal p {
        font-size: 16px;
    }

    .about-company .about-company__goal p:not(:last-child) {
        margin-bottom: 15px;
    }

    .about-company__gallery-item-text {
        align-self: center;
        max-width: 900px;
    }

    .about-company__gallery .owl-dots {
        gap: 12px;
        margin-top: 20px;
    }

    .about-company__gallery .owl-dot {
        width: 8px;
        height: 8px;
    }
}