.about {
    position: relative;
    padding: 48px 16px;
    background: var(--green-dark);
}

.about::before {
    content: '';
    background: url("../images/rect.png"), var(--green-dark);
    background-blend-mode: darken;
    background-blend-mode: darken;
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: 0;
    opacity: .3;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 20%;
}

@media screen and (min-width: 1024px) {
    .about {
        padding: 96px 0;
    }

    .about::before {
        width: 33%;
        height: 100%;
    }
}

.about--container {
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 1024px) {
    .about--container {
        display: flex;
        align-items: center;
        gap: 110px;
    }
}

.about--grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    z-index: 1;
}

.about--grid img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 16px;
    height: 150px;
    width: calc(50% - 8px);
}

.about--grid img:nth-child(1) {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .about--grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(3, auto);
        grid-column-gap: 32px;
        grid-row-gap: 32px;
    }

    .about--grid img {
        width: 100%;
    }

    .about--grid img:nth-child(1) {
        grid-area: 1 / 1 / 2 / 13;
    }

    .about--grid img:nth-child(2) {
        grid-area: 2 / 1 / 3 / 6;
    }

    .about--grid img:nth-child(3) {
        grid-area: 2 / 6 / 3 / 13;
    }

    .about--grid img:nth-child(4) {
        grid-area: 3 / 1 / 4 / 9;
    }

    .about--grid img:nth-child(5) {
        grid-area: 3 / 9 / 4 / 13;
    }

    .about--grid .small {
        height: 160px;
    }

    .about--grid .medium {
        height: 250px;
    }

    .about--grid .large {
        height: 350px;
    }
}

.about--content {
    color: var(--white);
    margin-bottom: 32px;
}

@media screen and (min-width: 1024px) {
    .about--content {
        margin-bottom: 0;
        max-width: 430px;
        width: 100%;
    }
}

.about--content .uptitle {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--inter);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 24px;
}

@media screen and (min-width: 1024px) {
    .about--content .uptitle {
        font-size: 1rem;
    }
}

.about--content .uptitle::before {
    content: '';
    height: 32px;
    width: 32px;
    -webkit-mask: url("../images/icon/icon-speaker.svg");
    mask: url("../images/icon/icon-speaker.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: var(--white);
}

.about--content h1,
.about--content h2,
.about--content h3 {
    margin-bottom: 24px;
}

@media screen and (min-width: 1024px) {

    .about--content h1,
    .about--content h2,
    .about--content h3 {
        margin-bottom: 48px;
    }
}

.about--content p strong {
    font-weight: 700;
}


.about--content-btn {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

@media screen and (min-width: 1024px) {
    .about--content-btn {
        margin-top: 48px;
    }
}