.about-wrapper h1 {
    font-family: Josefin Sans;
    margin-top: 7vh;
    margin-left: 3vw;
    font-weight: 300;
    font-size: 4vw;
    color: #ECA428;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
}

.about-wrapper h1::after {
    content: '';
    position: relative;
    margin-top: 10px;
    background-color: #86AA52;
    height: 4px;
    width: 15%;
}

.about-text {
    max-width: 60vw;
    margin-left: 6vw;
    margin-bottom: 50px;
}

.about-text h2 {
    font-family: Josefin Sans;
    color: #86AA52;
    font-weight: 300;
    font-size: 2vw;
    margin-bottom: 10px;
}

.about-text p {
    font-family: Raleway;
    font-size: 1.8vw;
    font-weight: 400;
}

.about-contacts {
    position: absolute;
    right: 3vw;
    top: 30vh;
    height: 50vh;
    padding-left: 4vw;
    border-left: 2px solid black;
}

.about-contacts h3 {
    font-family: Josefin Sans;
    font-size: 2.3vw;
    font-weight: 400;
    color: #ECA428;
    display: flex;
    flex-direction: column;
}

.about-contacts h3::after {
    content: '';
    position: relative;
    background-color: #86AA52;
    height: 3px;
    width: 45%;
}

.about-contacts p {
    font-family: Raleway;
    font-size: 1.5vw;
    margin-top: 10px;
}

@media screen and (max-width: 600px) {
    .about-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-wrapper h1 {
        font-size: 6vw;
        margin-bottom: 3vh;
    }

    .about-wrapper h1::after {
        height: 2px;
        width: 40%;
    }

    .about-text h2 {
        font-size: 4vw;
    }

    .about-text p {
        font-size: 4.2vw;
    }

    .about-contacts {
        display: none;
    }
}