.banner-wrapper {
    background: linear-gradient(0deg,rgba(168, 214, 237, 1) 0%, rgba(116, 196, 233, 1) 20%, rgba(255, 255, 255, 1) 100%);
}

.banner-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.row-images {
    display: flex;
    justify-content: space-around;
}

.row-images:first-child .image-wrapper:first-child,
.row-images:first-child .image-wrapper:last-child {
    transform: translateY(50px);
}

.row-images:last-child .image-wrapper:first-child,
.row-images:last-child .image-wrapper:last-child {
    transform: translateY(-50px);
}

.image-wrapper {
    width: 200px;
    height: 200px;
    border: 4px solid var(--blue);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.image-wrapper img {
    max-width: 100%;
    height: 200px;
    position: absolute;
    top: -4px;
}

.row-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.title-wrapper h2,
.title-wrapper h3 {
    margin: 20px 0;
}

.title-image-wrapper {
    width: 100px;
    font-size: 0;
}

.title-image-wrapper img {
    max-width: 100%;
}

@media (max-width: 951px) {
    .row-title {
        justify-content: center;
    }

    .row-title .image-wrapper {
        display: none;
    }

    .row-images .image-wrapper:nth-child(2) {
        display: none;
    }
}

@media(max-width: 570px) {
    .image-wrapper {
        width: 130px;
        height: 130px;
    }

    .image-wrapper img {
        height: 130px;
    }
}
