/* light grey: #b2b2b2 */

.wrapper {
    background-color: #c0c0c0;
    padding: 70px 0;
}

.showcase {
    /* background-image: url('../img/bg/cosmerre-showcase-bg-dark.jpg'); */
    /* background-image: url('../img/bg/online-ba-bg-2.jpg'); */
    background: transparent;
    min-height: 100vh;
    display: grid;
    justify-items: center;
    align-content: center;
    /* border: solid #fff 15px; */
}

.showcase img {
    height: 220px;
    width: auto;
}

.outro {
    /* min-height: 40vh; */
    display: grid;
    align-items: center;
    padding: 0 25%;
    margin-bottom: 70px;
}

.outro p {
    color: black;
    text-align: center;
}

.online-ba-usp {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 0 25% 0;
    margin-bottom: 50px;
}

.online-ba-usp img {
    height: 50px;
    width: 50px;
}

.online-ba-usp svg {
    height: 50px;
    width: 50px;
    fill: #111;
}

.online-ba-usp p {
    color: #353535;
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 16px;
}

.online-ba-usp .usp-box {
    display: grid;
    justify-items: center;
    text-align: center;
    align-content: flex-start;
    padding: 50px 10px;
}

.online-ba-usp .jcard {
    background-color: #b2b2b2;
    /* border: 2px solid #b2b2b2; */
}

.online-ba-usp .jcard:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    scale: 1.1;
}

footer {
    display: grid;
    align-items: center;
    background-color: #353535;
    text-align: center;
    padding: 20px 0;
    color: #c0c0c0;
}

footer h5 {
    margin-bottom: 0;
}

.jbtn:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.jbtn-dark {
    color: white;
    background-color: #353535;
    font-size: 1em;
    margin-top: 0;
}

/* FORM */

.modal {
    color: #111;
    text-transform: uppercase;
    font-family: Candara;
}

.modal input {
    font-family: Candara;
}

.modal-jheader {
    text-align: center;
}

.modal-body {
    padding-left: 15%;
    padding-right: 15%;
    /* padding-top: 0; */
}

.modal-jfooter {
    display: flex;
    justify-content: center;
}

.modal-jheader-close {
    padding: 1rem 1rem 0 1rem;
}

.modal a {
    color: #353535;
}

.modal .jbtn {
    color: white;
    background-color: #353535;
    font-size: 1em;
    margin-top: 0;
}

.down {
    -moz-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* TABLET */

@media (max-width: 992px) {
    .online-ba-usp {
        grid-template-columns: 1fr 1fr;
    }
}

/* PHONE*/

@media (max-width: 768px) {
    .outro {
        padding: 70px 15%;
    }
    .online-ba-usp {
        padding: 30px 15% 100px;
    }
}

@media (max-width: 576px) {
    .online-ba-usp {
        grid-template-columns: 1fr;
    }
    .showcase img {
        height: 180px;
        width: auto;
    }
}

@media (max-width: 440px) {
    .outro {
        padding: 70px 30px;
    }
    .online-ba-usp {
        padding: 30px 30px 100px;
    }
    .showcase img {
        height: 150px;
        width: auto;
    }
}