.cta-section {
    padding: 64px 0;
    background-color: var(--main-color);
}

.cta-section-content{
    display: flex;
    flex-direction: initial;
    justify-items: center;
    justify-content: space-between;
}

.cta-title{
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 16px;
}

.cta-paragraph{
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.cta__button{
    background: var(--yellow-color);
    min-width: 200px;
    margin: auto 0;
    display: flex;
    justify-content: space-between;
    color: #194846;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    transition: .3s ease-in-out;
}

.cta__button:hover{
    background-color: var(--yellow-hover-color);
    transition: .3s ease-in-out;
}
 
@media only screen and (max-width: 1000px) {
    .cta-section-content{
        flex-direction: column;
        justify-content: space-between;
    }

    .cta-section-content div{
        margin-bottom:16px;
    }

    .cta__button{
        margin-right: auto;
        padding: 16px 24px;
    }
}

@media only screen and (max-width: 768px) {
    .cta-title{
        font-size: 32px;
    }
}