/* TEXT AND MEDIA */
.text-and-media-element {
    background: #e6f2ff;
}
.text-and-media-element__container {
    display: flex;
    align-items: center;
    gap: 84px;
    padding: 0 50px;
}
@media (max-width: 1380px) {
    .text-and-media-element__container {
        gap: 64px;
    }
}
@media (max-width: 992px) {
    .text-and-media-element__container {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .text-and-media-element__container {
        gap: 36px;
    }
}

@media (max-width: 992px) {
    .text-and-media-element__container {
        flex-direction: column;
        padding: 64px 15px;
    }
}

.text-and-media-element__column:first-child {
    max-width: 830px;
    width: 100%;
    padding: 64px 0;
}
@media (max-width: 992px) {
    .text-and-media-element__column:first-child {
        padding: 0;
        max-width: 100%;
    }
}

.text-and-media-element__column:last-child {
    margin-top: -64px;
    max-width: 334px;
    width: 100%;
}
@media (max-width: 992px) {
    .text-and-media-element__column:last-child {
        margin-top: 0;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}
.text-and-media-element__logo {
    max-width: 112px;
    width: 100%;
}
.text-and-media-element__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-and-media-element__title {
    margin-top: 16px;
    font-size: 24px;
    line-height: 32px;
    color: #202939;
}
.text-and-media-element__description {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #364152;
}
