.info-box-container {
    position: relative;

    &::before {
        content: "";
        width: 703px;
        height: 703px;
        position: absolute;
        right: -445px;
        bottom: -30px;
        border-radius: 50%;
        background: radial-gradient(ellipse at center, rgba(236, 38, 99, 1) 0%, rgba(120, 27, 59, 0) 50%, rgba(3, 15, 19, 0) 100%);

        @media (max-width: 1200px) {
            width: 1068px;
            height: 1278px;
            right: -705px;
            bottom: -280px;
        }
    }

    &::after {
        top: -400px;
        left: -617px;
        width: 999px;
        height: 999px;
        background: radial-gradient(ellipse at center, rgba(40, 170, 220, 1) 0%, rgba(35, 146, 187, 1) 10%, rgba(31, 122, 155, 1) 25%, rgba(28, 99, 124, 1) 30%, rgba(22, 82, 102, 0) 60%, rgba(8, 38, 48, 0) 100%);
        opacity: .5;
        content: "";
        position: absolute;
    }
}

.info-box-container .container {
    max-width: 840px;
}

.info-box-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 30px auto 0;
    gap: 20px;
    
    @media (max-width: 1200px) {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

}

.info-box-content__img {
    max-width: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(40,170,220,0.69);

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
