.banner {
    margin-top: var(--header-height);
    text-align: center;
}

.container.content {
    display: flex;
    flex-wrap: wrap;
    padding-top: 70px;
    padding-bottom: 90px;
}

.text-content {
    width: 50%;
    padding-right: 15px;
}

.img-content {
    width: 50%;
    padding-left: 15px;
}

.text-content h1 {
    font-size: 34px;
    line-height: 51px;
    padding: 50px 0 0;
    margin: 0 0 20px;
    font-weight: 600;
}

.text-content p {
    margin: 0 0 25.5px;
    line-height: 28.05px;
}

.img-container {
    padding: 50px 0;
}

@media only screen and (min-width: 1900px) {
    .banner {
        margin-top: var(--header-height-large);
    }
}

@media only screen and (max-width: 979px) {
    .container.content {
        padding-top: 0px;
    }

    .text-content h1 {
        font-size: 24px;
        line-height: 32px;
        margin: 0 0 35px;

    }


    .text-content,
    .img-content {
        width: 100%;
        padding: 0px;
    }

    .img-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .img-container {
        padding: 0;
    }

}
@media only screen and (max-width: 768px) {
    
    .text-content p {
        font-size: 15px;
        margin-bottom: 22.5px;
        
    }
}