.grs-wrap-home-container {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.grs-wrap-home-container .content-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Logo */
.grs-wrap-home-container .content-home .content-logo {
    display: block;
}

.grs-wrap-home-container .content-home .content-logo img {
    margin: auto;
    width: 180px;
    max-width: 100%;
}

/* Text */
.grs-wrap-home-container .content-home h1,
.grs-wrap-home-container .content-home h2 {
    font-size: 3rem;
    color: white;
    line-height: 1.2;
    text-align: center;
}

.grs-wrap-home-container .content-home h1 {
    font-weight: 600;
}

.grs-wrap-home-container .content-home h2 {
    font-weight: 400;
}

/* Buttons */

.grs-wrap-home-container .content-home .content-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18rem;
}

.grs-wrap-home-container .content-home .content-actions .btn-login {
    border: none;
    border-radius: 20px;
    padding: 0.7rem;
    width: 100%;
    font-size: 1rem;
    background-color: var(--o-cc1-btn-primary);
    width: 100%;
    margin-top: 1rem;
    color: white;
    margin-top: 1.4rem;
    transition: all 0.2s;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
}

.grs-wrap-home-container .content-home .content-actions .btn-login:hover {
    background-color: var(--o-cc1-link);
}

.grs-wrap-home-container .content-home .content-actions .btn-login:active {
    background-color: var(--o-cc2-link);
}

/* Call */
.grs-wrap-home-container .content-home .content-call {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 2.2rem;
}

.grs-wrap-home-container .content-home .content-call a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 1.2rem;
}

.grs-wrap-home-container .content-home .content-call a:hover {
    color: var(--o-cc2-link);
    filter: saturate(80%);
}

.grs-wrap-home-container .content-home .content-call i {
    vertical-align: middle;
    margin-right: 0.5rem;
    font-size: 1.3rem;
    /* align-items: center; */
}

.grs-wrap-home-container .content-home .content-call a:first-child {
    padding-right: 2rem;
}

.grs-wrap-home-container .content-home .content-call a:first-child::after {
    content: "|";
    margin-left: 2rem;
    font-size: 2rem;
    vertical-align: middle;
    font-weight: lighter;
}

/* Footeer */
.grs-wrap-home-container .footer-wrap {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.grs-wrap-home-container .footer-wrap a {
    color: white;
}

.grs-wrap-home-container .footer-wrap > span {
    margin: 0 1rem;
    color: white;
}

.grs-wrap-home-container .footer-wrap div:first-child a {
    text-decoration: none;
}

.grs-wrap-home-container .footer-wrap div:first-child {
    padding-right: 0.7rem;
}

.grs-wrap-home-container .footer-wrap div:first-child::after {
    content: "|";
    margin-left: 0.7rem;
    font-size: 1.5rem;
    vertical-align: middle;
    font-weight: lighter;
}

@media only screen and (max-width: 768px) {
    .grs-wrap-home-container {
        padding: 0 1rem;
    }

    .grs-wrap-home-container .content-home .content-logo img {
        width: 140px;
    }

    .grs-wrap-home-container .footer-wrap {
        flex-direction: column;
        text-align: center;
        font-size: 0.9rem;
    }

    .grs-wrap-home-container .footer-wrap div:first-child {
        padding-right: 0;
    }

    .grs-wrap-home-container .footer-wrap div:first-child::after {
        content: "";
        margin-left: 0;
        font-size: 1.5rem;
    }

    .grs-wrap-home-container .content-home h1,
    .grs-wrap-home-container .content-home h2 {
        font-size: 6vw;
    }
}

@media only screen and (max-width: 576px) {
    .grs-wrap-home-container .content-home .content-call a {
        font-size: 0.9rem;
    }

    .grs-wrap-home-container .content-home h1,
    .grs-wrap-home-container .content-home h2 {
        font-size: 7vw;
    }
}

@media only screen and (max-width: 420px) {
    .grs-wrap-home-container {
        padding: 0 1rem;
    }

    .grs-wrap-home-container .footer-wrap {
        font-size: 0.7rem;
    }

    .grs-wrap-home-container .content-home .content-call a:first-child {
        padding-right: 0.5rem;
    }

    .grs-wrap-home-container .content-home .content-call a:first-child::after {
        margin-left: 0.5rem;
    }
}

@media only screen and (max-width: 375px) {
    .grs-wrap-home-container .content-home .content-call {
        flex-direction: column;
    }

    .grs-wrap-home-container .content-home .content-call a:first-child {
        padding-right: 0;
    }

    .grs-wrap-home-container .content-home .content-call a:first-child::after {
        content: "";
        margin-left: 0;
    }
}
