body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body#bancobr{
    background:
        url(../img/background2.png),
        rgb(200, 200, 255);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

#page-title {
    height: 40%;
    position: relative;
}

.page-title-content {
    position: absolute;
    top: 50%;
}

#page-title h1 {
    color: rgb(68, 68, 78);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -0.07rem;
}

@media (min-width: 768px) {
    #page-title h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    #page-title h1 {
        font-size: 2.7rem;
    }
}

#footer {
    box-shadow: 0 0 5px #ccc;
}

#cource-details-tabs {
    background-color: rgba(255, 255, 255, 0.9);
    padding-top: 3rem;
}

.cource-details-tabs .nav-link {
    padding: 15px;
}

.cource-details-tabs .nav-link.active {
    background-color: transparent;
}

@media (max-width: 992px) {
    .cource-details-tabs .nav-link.active {
        background-color: #4680e6;
    }
}

.etapas {
    border: 1px solid #e6ecf5;
    border-radius: 11px;
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
}

.etapas-text-normal, .etapas-text-inverso {
    flex-grow: 1;
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
    background-color: #e6ecf5;
    border-radius: 10px 10px 0 0;
    padding: 20px;
    order: 1;
}

.etapas-img-normal, .etapas-img-inverso {
    flex-grow: 1;
    flex-basis: 100%;
    max-width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 20px;
    order: 2;
}


@media (min-width: 992px) {
    .etapas-text-normal {
        flex-basis: 40%;
        max-width: 40%;
        border-radius: 10px 0 0 10px;
        order: 1;
    }

    .etapas-img-normal {
        flex-basis: 60%;
        max-width: 60%;
        border-radius: 0 10px 10px 0;
        order: 2;
    }

    .etapas-text-inverso {
        flex-basis: 40%;
        max-width: 40%;
        border-radius: 0 10px 10px 0;
        order: 2;
        border-right: px solid #ebebe0;
    }

    .etapas-img-inverso{
        flex-basis: 60%;
        max-width: 60%;
        border-radius: 10px 0 0 10px;
        order: 1;
    }
}

.btn-test {
    position: sticky;
    top: 70px;
}

.members-content {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    box-shadow: 0 0 18px #ccc;
    margin: 2em 4em;
    border-radius: 10px;
    padding: 0;
    padding-bottom: 1rem;
}

.members-image {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    order: 1;
    flex-grow: 1;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.members-info{
    order: 2;
    flex-grow: 1;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    padding: 0 0.4em;
    padding-top: 2em;
    text-align: center;
}

.members-info h4 {
    font-size: 1.2em;
    margin-bottom: 0.7em;
}

.members-image img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
    border-radius: 10px 10px 0 0;
    margin: -1em;
}

.members-icon {
    color: #969696;
    height: 20px;
    margin-left: 0.5em;
    width: auto;
}

.video-publicacao {
    width: 100%;
    height: 230px;
}

@media (min-width: 576px) {
    .members-content {
        margin: 2em 1em;;
    }
}

@media (min-width: 768px) {
    .video-publicacao {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .members-content {
        margin: 2em 1em;;
    }
    .video-publicacao {
        height: 400px;
    }
}

