body {
    margin: 0;
    font-family: qualion, Sans-serif;
    font-size: 17px;
    font-weight: 400;
    height: 100vh;
    background-color: #040904;
}

section {
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    position: relative;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
}

.col-55 {
    width: 55%;
}

@media screen and (max-width: 480px) {
    .col-55 {
        width: 100%;
    }
}

.title {
    font-size: 3em;
    font-weight: 500;
    line-height: 1.2em;
    /* padding-bottom: 1.2em; */
}

.text {
    font-size: 18px;
    font-weight: 100;
    letter-spacing: .5px;
    padding-bottom: 1.1em;
}

.subtitle {
    font-size: 1.9em;
    font-weight: 300;
    line-height: 1.1em;
    padding-bottom: 1.1em;
}

.background-overlay {
    background-image: radial-gradient(at center center, #000000 40%, rgba(242, 41, 91, 0) 100%);
    opacity: .3;
    transition: background .3s, border-radius .3s, opacity .3s;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.cta {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #a64053;
    background-color: #fff;
    border-style: solid;
    border-width: 1px;
    border-radius: 15px;
    padding: 15px 22px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.container {
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    flex-direction: column;
    max-width: 1140px;
    width: 100%;
    padding: 0 25px;
}

.cta:active,
.cta:hover,
.cta:focus {
    transition-duration: .3s;
    transition-property: transform;
    transform: scale(1.1);
}

.u-flex-center {
    width: 100%;
    display: flex;
    justify-content: center;
}