.about{
    display: flex;
    text-align: center;
    color: #2E2E2E;
    position: relative;
}

.about-content{
    background-color: #DFDFDF;
    padding: 50px 43px;
    width: 60%;
    position: absolute;
    right: 0;
    bottom: -50px;
}

.about-content h2{
    /* font-family: 'Kyiv*Type Serif Medium', serif; */
    font-family: 'Montserrat Regular', sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 54px;
    font-feature-settings: 'ss04' on;
    margin-bottom: 35px;
}

.about-content p{
    font-family: 'Montserrat Regular', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.about-content a{
    font-family: 'Montserrat Medium', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    background-image: url('../../../../assets/images/about-arrow.svg');
    background-repeat: no-repeat;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 0;
    width: 240px;
    background-position: right 0 top 50%;
    text-align: left;
    transition: 1s all;
}
.about-content a:hover{
    animation: arrowBack 1s linear;
    transition: 1s all;
}
@media screen and (max-width: 1024px) {
    .about{
        flex-direction: column;
    }
    .about-content{
        position: static;
        width: 100%;
    }
    .about-content{
        padding: 30px 20px;
    }
    .about-content h2{
        font-size: 31px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .about-content p{
        font-size: 16px;
        line-height: 1.2;
    }
    .about-content a{
        margin-top: 50px;
        font-size: 16px;
        line-height: 1.2;
    }
}

@keyframes arrowBack {
    0% {
        background-position: right 0px top 50%;
	}
    50% {
        background-position: right 10px top 50%;
	}
    100% {
        background-position: right 0px top 50%;
	}
}