.firstscreen+link+.about {
    padding-top: 180px
}

.about {
    padding-top: 120px;
    overflow: hidden;
    position: relative;
}

.about-logo {
    z-index: -1;
    position: absolute;
    display: block;
    bottom: -80px;
    right: -80px;
    animation: about_rotate 50s linear infinite;
}

.about-subtitle {
    font-size: 24px;
    line-height: 31px;
    text-transform: uppercase;
    color: var(--main);
    padding-bottom: 25px;
    font-family: "Bicubik", sans-serif;
}

.about-title {
    font-size: 60px;
    line-height: 72px;
    text-transform: uppercase;
    font-family: "Bicubik", sans-serif;
    padding-bottom: 60px;
    max-width: 1100px;
}

.about-title strong {
    color: var(--main)
}

.about-content {
    height: 100%;
    border-top: 1px solid #ec1416;
    padding-top: 40px;
    margin-right: 40px;
}

.about-content__title {
    font-size: 40px;
    line-height: 40px;
    color: var(--main);
    font-family: "Bicubik", sans-serif;
    padding-bottom: 30px;
}

.about-content__description {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 30px;
}

.about-content__description strong {
    color: var(--main);
}

.about-content__link {
    font-size: 20px;
    line-height: 20px;
    font-family: "Bicubik", sans-serif;
    border-bottom: 1px solid #ec1416;
    padding-bottom: 15px;
    padding-right: 34px;
    position: relative;
    z-index: 1;
    transition: color 0.25s;
}

.about-content__link:after {
    content: '';
    height: 16px;
    width: 16px;
    background-image: url(../img/icon-arrow.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 3px;
    right: 0;
    transition: transform 0.25s;
}

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

@keyframes about_rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (hover: hover) {
    .about-content__link:hover {
        color: var(--main)
    }

    .about-content__link:hover:after {
        transform: rotate(90deg);
    }
}

@media (max-width:991px) {
    .about {
        padding-top: 50px;
    }

    .about-subtitle {
        font-size: 20px;
        line-height: 24px;
        padding-bottom: 15px;
    }

    .about-title {
        font-size: 32px;
        line-height: 38px;
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .about-content {
        padding-top: 30px;
        margin-right: 0;
    }

    .about-content__title {
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 15px;
    }

    .about-content__description {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 15px;
    }

    .about-content__link {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 10px;
        padding-right: 30px;
    }

    .firstscreen+link+.about {
        padding-top: 150px
    }
}