.home-cover {
    min-height: 450px;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    background-color: rgb(240, 240, 240);
}

.home-cover .cover {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 250px;
}

.home-cover .item p {
    margin-top: 5px;
}

.home-cover .item h1 {
    margin: 0px;
    padding: 0px;
    font-weight: 500;
}

.home-cover .item {
    padding: 50px;
}

.home-cover .item .button-link {
    width: 200px;
    color: white;
    background-color: var(--primary-color, #1967D2);
    min-height: 55px;
}

@media screen and (max-width: 900px) {
    .home-cover {
        grid-template-columns: 1fr;
    }

    .home-cover .item h1 {
        font-size: 25px;
    }

    .home-cover .item p {
        font-size: 15px;
    }

    .home-cover .item {
        padding: 40px;
    }

    .home-cover .item .button-link {
        min-height: 45px;
    }
}
