@media screen and (min-width: 64rem) {
    .textmedia.small-margin {
        margin-top: 4rem;
    }
}

.textmedia.yellow {
    background-color: var(--color-secondary-5);
    overflow: hidden;
    position: relative;
}

@media screen and (min-width: 40rem) {
    .textmedia.yellow::after {
        background-image: url(../../img/circle-yellow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        content: "";
        display: block;
        height: 250px;
        pointer-events: none;
        position: absolute;
        right: -60px;
        top: -60px;
        width: 250px;
    }
}

@media screen and (min-width: 64rem) {
    .textmedia.yellow::after {
        height: 550px;
        right: -80px;
        top: -140px;
        width: 550px;
    }
}

.textmedia+.no-margin-top {
    margin-top: 0;
}

.textmedia-section {
    min-height: 400px;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 64rem) {
    .textmedia-section {
        padding: 0 15px;
    }
}

.textmedia-section .content-wrapper {
    display: flex;
}

.textmedia-section .content-wrapper>.row {
    align-items: center;
}

.textmedia-section .text-column {
    display: block;
    height: 100%;
    max-width: 600px;
    padding: 2rem 0 0;
}

.textmedia-section .text-column.imagefirst {
    margin-right: auto;
}

.textmedia-section .text-column:not(.imagefirst) {
    margin-left: auto;
}

@media screen and (min-width: 40rem) {
    .textmedia-section .text-column {
        padding: 2rem 0;
    }
}

@media screen and (min-width: 64rem) {
    .textmedia-section .text-column {
        padding: 4rem 0;
    }
}

.textmedia-section .text-column p>.btn-primary,
.textmedia-section .text-column p>.btn-secondary {
    margin-bottom: -1rem;
}

.textmedia-section .text-column p {
    font-weight: 400;
}

.textmedia-section .text-column p .pretitle {
    display: block;
    margin: 0 0 -1rem;
}

.textmedia-section .text-column .sociallinks {
    margin: -1rem 0 0;
}

.textmedia-section .media-wrapper {
    padding: 0;
}

.textmedia-section .media-column {
    margin: 0 10px;
    padding: 0;
    position: relative;
    width: calc(100% - 20px);
}

@media screen and (min-width: 40rem) {
    .textmedia-section .media-column {
        height: 100%;
        margin: 0;
        width: 100%;
    }
}

.textmedia-section .media-column .image {
    border-radius: 10px;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.textmedia-section .media-column .image::after {
    padding-bottom: 56%;
}

.textmedia-section .media-column .video {
    height: 100%;
    padding: 0;
}

.textmedia-section .media-column .responsive-iframe {
    border-radius: 10px;
    height: 100%;
    min-height: 180px;
    overflow: hidden;
    position: relative;
}

.textmedia-section .media-column .responsive-iframe a {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.textmedia-section .media-column .responsive-iframe a:hover i {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.textmedia-section .media-column .responsive-iframe a i {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-radius: 4px;
    color: var(--color-primary);
    font-size: 1rem;
    height: 50px;
    left: 50%;
    padding: 1.0625rem 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    width: 50px;
}