/*h1 {*/
/*    margin: 0;*/
/*    position: absolute;*/
/*}*/
.about-us {
    margin: 0 0 100px 0;
    display: flex;
    flex-direction: column-reverse;
}
.about-us__wrapper-first {
    margin: 0 0 100px 0;
}
.about-us__wrapper-second {
    margin: 0 0 40px 0;
}
.about-us .about-us__box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.about-us .about-us__box > div {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    border-right: 2px solid var(--turquoise);
}
.about-us__box-h1 {
    margin: 0 0 40px 0;
    font-size: 20px;
    font-weight: 600;
}
.about-us__box-text {
    margin: 0 0 50px 0;
    font-size: 16px;
    font-weight: 400;
}
.about-us > div {
    width: 100%;
    position: relative;
}
.about-us__wrapper-second img {
    width: 100%;
}

.about-us__box-h2 {
    margin: 0 0 40px 0;
    font-size: 20px;
    font-weight: 600;
}
.about-us__services__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.about-us__services__box {
    padding: 20px 10px;
    box-shadow: 0 12px 12px 0 #0000001F;
}
.about-us__services__box-title {
    margin: 0 0 30px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: var(--turquoise);
}
.about-us__services__box-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

@media screen and (min-width: 576px) {
    .about-us .about-us__box > div {
        width: calc(50% - 5px);
    }
}

@media screen and (min-width: 768px) {
    .about-us__services__wrapper{
        flex-direction: row;
        flex-wrap: wrap;
        gap: 21px;
    }
    .about-us__services__box {
        width: 48%;
    }
}

@media screen and (min-width: 992px) {
    .about-us {
        flex-direction: row;
        gap: 20px;
    }
    .about-us > div {
        width: 50%;
    }
    .about-us .about-us__box > div {
        width: calc(100% / 3 - 3px* 3);
        border-right: 2px solid var(--turquoise);
    }
    .about-us__box-h1 {
        margin: 0;
        font-size: 24px;
    }
    .about-us__box-text {
        margin: 0 0 50px 0;
    }

    .about-us__wrapper-first {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .about-us__wrapper-second {
        margin: 0;
    }
    .about-us__box-h2 {
        margin: 0 0 50px 0;
        font-size: 24px;
    }
    .about-us__services__wrapper {
        flex-wrap: nowrap;
    }
    .about-us__services__box {
        width: auto;
    }
}