.exposition-blocks {
    margin-top: 60px;
}

.exposition-text-title {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 30px;
    color: #2E4A97;
    margin: 20px 0 12px;
}

.exposition-blocks-column:first-child {
    width: 440px;
}

.exposition-blocks-column:last-child {
    width: calc(100% - 482px);
}

.exposition-block-video {
    margin-top: -14px;
}

.exposition-video-pic-wrap {
    position: relative;
}

.exposition-blocks-column:first-child {
    margin-right: 42px;
}

.exposition-blocks-column:last-child .exposition-block:first-child .exposition-text-group {
    width: calc(100% - 458px);
}

.exposition-blocks-column:last-child .exposition-block:last-child .exposition-text-group {
    width: calc(100% - 363px);
}

.exposition-blocks-column:last-child .exposition-text-title {
    margin: 0 0 12px;
}

.exposition-blocks-column:last-child .exposition-block:first-child {
    align-items: center;
}

.exposition-text-group {
    margin-left: 20px;
}

.exposition-block {
    margin-bottom: 41px;
}

.exposition-blocks-column:last-child .exposition-block:first-child .exposition-pic-wrap {
    width: 438px;
}

.exposition-blocks-column:last-child .exposition-block:last-child .exposition-pic-wrap {
    width: 343px;
}

.exposition-pic-wrap {
    border-radius: 4px;
    overflow: hidden;
}

.animated {
    width: 48px;
    height: 48px;
}

.animated::after,
.animated::before {
    content: '';
    position: absolute;
    border: 1px solid #FFFFFF;
    left: -20px;
    opacity: 0;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%; 
    animation: animated 2.5s linear infinite;
}

.animated::after {
    animation-delay: 1.25s;
}

@keyframes animated {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}