.content-about {
    background-color: #f9f9f9;
    padding: 40px 0 0;
}

.content-about hr {
    width: 218px;
    background: #1BBADE;
    margin: 50px 0;
    border: 0;
    height: 1px;
}

.content-about .btn-wrapper {
    margin-top: 50px;
}

.content-about .btn {
    padding: 0;
    font-weight: 600;
}

.content-about .content-about-wrapper {
    display: flex;
    align-items: center;
    gap: 40px 128px;
}

.content-about .content-about-wrapper .text-wrapper {
    width: 45%;
}

.content-about .content-about-wrapper .image-wrapper {
    width: 55%;
}

.content-about .image-top {
    line-height: 0.8;
    margin-bottom: 2px;
}

.content-about .image-top img {
    margin-left: auto;
    display: flex;
}

.content-about .images-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    align-items: stretch;
    margin-bottom: -30px;
}

.content-about .images-wrapper img:nth-child(1) {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-about .images-wrapper img:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-bottom: 40px;
    aspect-ratio: 338 / 254;
}

.content-about .images-wrapper img:nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: -40px;
    padding-bottom: 70px;
    aspect-ratio: 338 / 254;
}

@media (max-width:991px) {
    .content-about .content-about-wrapper {
        flex-direction: column-reverse;
    }

    .content-about .content-about-wrapper .text-wrapper,
    .content-about .content-about-wrapper .image-wrapper {
        width: 100%;
    }

    .content-dark {
        padding-bottom: 220px;
    }

    .content-dark+.content-about {
        padding-top: 0;
        margin-top: -184px;
        padding-bottom: 60px;
        position: relative;
        background-color: transparent;
    }

    .content-about .image-top img {
        max-height: 184px;
        width: auto;
    }

    .content-about .images-wrapper img:nth-child(2) {
        padding-bottom: 20px;
    }

    .content-about .images-wrapper img:nth-child(3) {
        padding-bottom: 30px;
        margin-top: -20px;
    }

    .content-about hr {
        margin: 40px 0;
    }

    .content-about .btn-wrapper {
        margin-top: 40px;
    }

    .content-about .text-wrapper {
        padding-top: 30px;
    }
}