/* ABOUT US */
section.about-us {
    background-color: var(--blue);
    padding-top: calc(var(--padding-x) * 3.5);
}
.about-us-container {
    display: flex;
    gap: clamp(var(--padding-y), 8.5vw, 120px);
}
.about-us-container > * {
    flex: 1;
}
section.about-us .img-with-shape {
    height: 0;
    padding-bottom: 100%;
}
section.about-us .img-with-shape img.cover {
    position: absolute;
    top: 0;
    left: 0;
}
section.about-us .shape {
    top: -16.7%;
    left: -17%;
}
.about-us-descr {
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: calc(var(--padding-x) * .6);
}
.about-us-descr h2 {
    color: var(--green);
}
.about-us-logo {
    max-width: 356px;
    height: auto;
    margin-left: auto;
}
.about-us-logo > .contain {
    object-position: right;
}
@media (max-width: 767.98px) {
    .about-us-container {
        flex-direction: column;
    }
}
@media (min-width: 1600px) {
    section.about-us .shape {
        top: -13.1%;
        left: -13.4%;
    }
}