  .banner-module {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.banner-module .title h1 {
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
}

.banner-module .overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    height: 100%;
    width: 100%;
}

.banner-module .banner-module__content .content {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}
.banner-module .banner-module__content .content + .c-btn {
    margin-bottom: 50px;
    display: block;
}
.banner-module .banner-module__content .c-btn span svg path {
    stroke: #2c3d4f;
}
.banner-module .banner-module__content .c-btn:hover span svg path {
    stroke: #fff;
}

@media screen and (max-width: 1024px) {
    .banner-module .title h1 {
        font-weight: 700;
        font-size: 40px;
        line-height: 48px;
    }
    .banner-module .banner-module__content .content {
        font-size: 18px;
        line-height: 28px;
    }
}

