  .cta-banner {
    padding: 100px 0;
    background-color: white;
}

.cta-banner.grey {
    background-color: #f2f2f2;
}

.cta-banner__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-banner__content {
}

.cta-banner__content h2 {
    font-weight: 700;
    font-size: 40px;
}

.cta-banner__content span.line {
    width: 110px;
    height: 2px;
    margin-bottom: 30px;
    display: block;
    background-color: #2c3d4f;
}

.cta-banner__content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.cta-banner__ctas {
    text-align: center;
    width: 50%;
}

.cta-banner__ctas a {
    border-radius: 4px;
    background-color: #2c3d4f;
    color: white;
    font-weight: 700;
    font-size: 24px;
    padding: 16px 48px;
    position: relative;
    text-decoration: none;
}
.cta-banner__ctas a::after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffcd05;
    content: "";
    position: absolute;
    z-index: 2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 3px;
}

.cta-banner__ctas a:hover::after {
    width: 100%;
}

.cta-banner__ctas a span {
    position: relative;
    z-index: 3;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

@media screen and (max-width: 1024px) {
    .cta-banner__content h2 {
        font-size: 36px;
    }
    .cta-banner__wrapper {
        display: block;
    }
    .cta-banner__content {
        max-width: 100%;
        width: 100%;
        margin-bottom: 45px;
    }
    .cta-banner__ctas {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .cta-banner__content h2 {
        font-size: 26px;
        line-height: initial;
    }
    .cta-banner__content p {
        font-size: 16px;
    }
    .cta-banner__ctas a {
        padding: 12px 28px;
        width: 100%;
        display: block;
        font-size: 18px;
        max-width: 360px;
    }
}
