.banner-container > .banner-content {
    align-items: flex-start;
    padding-left: 60px;
}

.banner-container > .banner-image > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 40px;
}

.info > .info-form {
    width: 700px;
}

.info > .info-text {
    width: calc(100% - 700px);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.info > .info-text h2 {
    color: var(--color-green-dark);
}

.info > .info-text a {
    color: var(--color-green-dark);
    margin-top: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    max-width: 250px;
    font-size: 16px;
    --webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

.info > .info-text a font {
    margin-left: 10px;
    cursor: pointer;
}

.info > .info-text a i {
    cursor: pointer;
}

@media screen and (min-width: 1000px) {
    .info > .info-text a:hover {
        text-decoration: underline;
        color: var(--color-green-dark-2);
    }
}

@media screen and (max-width: 1500px) {
    .info > .info-form {
        width: 600px;
    }

    .info > .info-text {
        width: calc(100% - 600px);
    }
}

@media screen and (max-width: 800px) {
    .info {
        display: grid;
        grid-template-areas:
        "text"
        "form";
    }

    .info > .info-form {
        width: 100%;
        grid-area: form;
    }

    .info > .info-text {
        width: 100%;
        grid-area: text;
        margin-bottom: 40px;
    }

    .info > .info-text h2 {
        text-align: center;
    }

    .banner-content h1 {
        text-align: center;
        width: 100%;
    }
}