.about {
    padding-top: 105px;
}

.about__title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.about__company-name {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.about__subtitle {
    text-align: center;
    font-size: 18px;
}

.about__description {
    max-width: 720px;
    position: relative;
    padding-bottom: 55px;
}

.about__description::before {
    content: '';
    display: block;
    margin: 0px auto;
    margin-top: 20px;
    margin-bottom: 50px;
    height: 29px;
    width: 1px;
    background: #626C70;
}

.about__advantages {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
}

.about__advantage {
    width: 25%;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about__advantage::after {
    content: '';
    position: absolute;
    height: 50px;
    width: 1px;
    background: #D9D9D9;
    right: 0;
}

.about__advantage:last-child::after {
    content: none;
}

.about__advantage:last-child {
    padding-right: 0;
}


.about__advantage-value {
    font-size: 59px;
    font-weight: bold;
    color: #F40305;
    margin-right: 12px;
}

.about__advantage-description {
    font-weight: bold;
    max-width: 80%;
}

.about__advantage-text--addition {
    color: #6A6767;
    display: block;
    font-size: 18px;
}

.about__advantage-text--addition-value {
    font-size: 24px;
    color: #F40305;
}

.about__advantage-text--block {
    display: block;
}
.about__info{
    width: 560px;
    margin: 70px auto 40px;
}
.about__info-video {
    margin-bottom: 40px;
    height: 415px;
}

.about__info-iframe {
    width: 100%;
    height: 100%;
}

.about__info-description p{
    padding-bottom: 50px;
    position: relative;
}

.about__info-description p::after{
    content: '';
    position: absolute;
    width: 110px;
    height: 1px;
    background: #C8C8C8;
    left: calc(50% - 55px);
    bottom: 25px;
}

@media screen and (max-width: 992px){
    .about__advantages{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 15px auto;
    }
    .about__advantage{
        width: 200px;
        margin-bottom: 35px;
    }
    .about__advantage-description{
        max-width: 100%;
    }
    .about__advantage::after{
        content: none;
    }
    .about{
        padding-top: 35px;
    }
}

@media screen and (max-width: 379px){
    .about__info-video{
        height: 220px;
    }
}