#about-company {
    position: relative;
}
#about-company .container::before {
    content: '';
    width: 230px;
    height: 230px;
    background-image: url('../../../assets/images/star.svg');
    position: absolute;
    left: 0;
    top: 50%;
    filter: blur(20px);
    opacity: 0.2;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
    transform: translateY(-50%);
}
.about-company__cotnainer {
    background-color: var(--background-thirdly);
    border-radius: 40px;
}
#about-company .container {
    position: relative;
    z-index: 1;
}
#about-company .title-block {
    color: var(--head-primary);
}
#about-company .header-block__name {
    color: var(--main-text-primary);
}
.about-company__text-content {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 60px;
}
.about-company__text p {
    font-size: var(--font-size-13-16);
    font-weight: 400;
    line-height: 130%;
    color: var(--main-text-primary);
    font-family: 'Roboto';
    margin-bottom: 15px;
}
.about-company__text-wrapper {
    width: 49.02%;
}
.about-company__text {
    column-count: 2;
    column-gap: 30px;
}
#about-company__full {
    max-width: 700px;
    border-radius: 20px;
    padding: 45px 20px;
    background-color: var(--background);
}
#about-company__full p {
    color: var(--background-thirdly);
}
.about-company__link {
    cursor: pointer;
    background-color: transparent;
    border: none;
    margin-top: 30px;
    text-transform: uppercase;
    font-size: var(--font-size-13-16);
    font-weight: 700;
    font-family: 'Roboto Condensed';
    color: var(--head-primary);
    position: relative;
    transition: .3s;
    padding-right: 30px;
    display: block;
    width: fit-content;
}
.about-company__link::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url('./images/arrow.svg');
    background-repeat: no-repeat;
    transition: color, right .3s;
}
.about-company__link:hover {
    color: var(--background-secondary);
}
.about-company__link:hover::after {
    right: -10px;
}
.about-company-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.about-company-advantage__name {
    color: var(--main-text-primary);
    font-size: var(--font-size-16-20);
    line-height: 130%;
    font-weight: 400;
    font-family: 'Roboto';
}
.about-company-advantage__value {
    color: var(--second);
    font-size: var(--font-size-30-200);
    font-weight: 400;
    font-family: 'Roboto Condensed';
    line-height: 100%;
}
@media (max-width: 1024px) {
    .about-company__text-wrapper {
        width: 100%;
    }
    .about-company__cotnainer {
        border-radius: 20px;
    }
}
@media (max-width: 768px) {
    .about-company__text-content {
        margin-bottom: 20px;
    }
}
@media (max-width: 500px) {
    .about-company__text {
        column-count: 1;
    }
    .about-company-advantages {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}