.main-container {
    padding: 30px 0;
}

.context-header {
    color: var(--white);
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.context-header.home{
    height: 500px;
}

.context-header .slide-mask {
    position: absolute;
    z-index: 100;
    height: 100%;
    width: 100%;
    background-color: var(--splash);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    p {
        font-size: 40px;
        font-weight: 700;
        color: var(--white);
        text-align: center;
    }

    em{
        width: 70%;
        text-align: center;
        color: var(--white);
        font-size: 15px;
        padding-top: 5px;
    }

    button{
        width: 120px;
        height: 45px;
        background-color: var(--main);
        color: var(--white);
        font-size: 15px;
        margin: 10px 0 0 0;
        cursor: pointer;
    }
    button:hover{
        background-color: transparent;
        border: solid 1px var(--white);
        transform: scale(1.02);
    }
}

@media(max-width: 500px){
    .context-header .slide-mask{
        em{
            display: none;
        }
    }
}

.context-header .slide {
    width: 100%;
    height: 400px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.context-header.home .slide{
    height: 500px;
}

.context-header .slide.active {
    display: flex;
}

.context-header .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*FILTER*/
.filter-container {
    width: 90%;
    padding: 10px 5%;
    height: auto;
    margin-top: -3%;
    position: relative;
    z-index: 200;
}

.filter-container .components {
    background-color: var(--white);
    width: 100%;
    height: 100%;
    padding: 5px 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.components .top-itens {
    width: 50%;
    height: 40px;
    display: flex;
    flex-direction: row;
    gap: 5%;
}

.top-itens .item {
    width: 45%;
    padding: 0 2.5%;
    height: 100%;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2%;
    cursor: pointer;
}

.top-itens .item.active {
    background-color: var(--main);
    color: var(--white);
}

.components .form-filter {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.form-filter .inputs-filters {
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 1%;
    padding: 20px 2.5%;
}

.inputs-filters .input {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.inputs-filters .input>:first-child {
    font-weight: 700;
    font-size: 15px;
    padding: 0 0 5px 0;
}

.inputs-filters .input select {
    width: 95%;
    height: 40px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 0 2.5%;
}

.inputs-filters .buttons-set-filter {
    width: 150px;
    height: 40px;
    background-color: var(--main);
    color: var(--white);
    cursor: pointer;
}

@media(max-width: 850px) {
    .components .top-itens {
        width: 70%;
    }

    .form-filter .inputs-filters {
        flex-direction: column;
    }

    .inputs-filters .input {
        margin: 1% 0;
    }

    .inputs-filters .input select {
        height: 50px;
        width: 100%;
    }
}

@media(max-width: 500px) {
    .components .top-itens {
        width: 100%;
    }
}

.count {
    width: 90%;
    padding: 80px 5%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.count div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--main);
    width: 100%;
    height: 100px;
}

.count>:nth-child(2) {
    border-left: solid 1px silver;
    border-right: solid 1px silver;
}

.count div span {
    font-size: 30px;
    text-align: center;
    font-weight: 700;
}

.count div p {
    font-size: 20px;
}

@media(max-width: 500px) {
    .count {
        flex-direction: column;
    }

    .count>:nth-child(2) {
        border-left: none;
        border-right: none;

        border-top: solid 1px silver;
        border-bottom: solid 1px silver;
    }
}

/*SELECT FACULDADE*/
.select-faculdade-bolsa {
    position: relative;
    width: 90%;
    height: auto;
    padding: 50px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.select-faculdade-bolsa h1 {
    font-size: 30px;
    text-align: start;
    width: 100%;
    i {
        font-size: 30px;
        color: var(--main);
        text-decoration: underline;
    }
}

.select-faculdade-bolsa .carossel-card {
    width: 100%;
    padding: 20px 0;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.select-faculdade-bolsa .carossel-card:hover aside {
    display: flex;
}

.carossel-card aside {
    width: 40px;
    height: 40px;
    background-color: rgba(71, 122, 233, 0.61);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1000;
    cursor: pointer;
}

.carossel-card>:first-child {
    left: 1%;
}

.carossel-card>:last-child {
    right: 2%;
    opacity: .2;
}

.carossel-card .select-card {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2%;
}

.select-card.active {
    transform: translateX(0%);
    display: flex;
}

.select-card.arrow-right {
    transform: translateX(-300%);
    display: none;
}

.select-card.arrow-left {
    transform: translateX(300%);
    display: none;
}


.select-card .card {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.card .img {
    width: 100%;
    height: 50%;
    overflow: hidden;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.card h1 {
    font-size: 20px;
    width: 90%;
    padding: 20px 5%;
}

.card .p {
    width: 90%;
    padding: 0 5%;

    li {
        padding: 0 5%;
        margin: 1% 0;
        list-style: circle;

    }
}

.select-card div {
    height: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    position: relative;
    font-weight: 700;
}

.select-card div img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.select-card div img.company-img {
    object-fit: contain;
    height: auto;
}

.select-card div h2 {
    font-size: 30px;
    color: var(--media);
}

.select-card div p {
    font-size: 20px;
    padding: 0px 0;
    color: var(--media);
}

.select-card div em {
    color: green;
    font-size: 20px;
}

.select-faculdade-bolsa .progress {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: .5%;
    align-items: center;
    justify-content: center;
}

.progress .circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: silver;
}

.circle.active {
    width: 30px;
    background-color: var(--main);
    border-radius: 5px;
}
@media(max-width: 1000px) {
    .select-card.arrow-righ {
        transform: translate(0%);
    }
    
    .select-card.arrow-left {
        transform: translate(0%);
    } 
}

@media(max-width: 850px) {
    .select-faculdade-bolsa {
        width: 90%;
        padding: 50px 5%;
        flex-direction: column;
        min-height: 180vh;
        margin: 3%;
    }

    .select-faculdade-bolsa .progress {
        display: none;
    }

    .select-faculdade-bolsa h1 {
        text-align: center;
        margin-bottom: 5%;
    }

    .carossel-card .select-card {
        grid-template-columns: repeat(1, 1fr);
        height: auto;
        gap: 5%;
        flex-direction: column;
    }

    .select-faculdade-bolsa .carossel-card {
        flex-direction: column;
    }

    .select-card.arrow-righ {
        transform: translate(0%);
    }

    .select-card.arrow-left {
        transform: translate(0%);
    }
}
/*ABOUT*/
.main-container .cart-service {
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
    height: auto;
    margin: 2% 0;
}

.cart-service .data-cart {
    width: 400px;
    height: auto;
    background-color: var(--white);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--main);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.data-cart i {
    font-size: 40px;
}

.data-cart h3 {
    font-size: 25px;
    padding: 10px 0;
    text-align: center;
}

.data-cart p {
    padding: 0;
    text-align: center;
    font-size: 18px;
}

.main-container .info {
    width: 90%;
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
}

.info h1 {
    font-size: 30px;

    i {
        font-size: 30px;
        color: var(--main);
        text-decoration: underline;
    }
}

.info p {
    padding: 10px 0;
    font-size: 15px;
}

.company-img {
    object-fit: contain;
}

.data-course {
    width: 90%;
    height: auto;
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.data-course span {
    border-bottom: dotted 1px silver;
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.data-course span>:first-child {
    gap: 5%;
}

.data-course span>:first-child i {
    color: var(--media);
}

@media(max-width: 900px){
    .main-container .cart-service{
        flex-direction: column;
    }
    .cart-service .data-cart{
        width: 70%;
        margin: 1% 0;
    }
}
@media(max-width: 500px){
    .cart-service .data-cart{
        width: 90%;
        margin: 1% 0;
    }
}

.fije-course {
    width: 90%;
    height: auto;
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
}

.fije-course .card {
    width: 100%;
    height: auto;
    display: flex;
    padding: 0 0 10px 0;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.fije-course .card.new {
    height: auto;
}

.fije-course .card.new .img {
    height: 40%;
}

.fije-course .card button {
    width: 50%;
    height: 40px;
    font-size: 15px;
    font-weight: 700;
    background-color: var(--main);
    color: var(--white);
    margin-top: 2%;
    cursor: pointer;
}

.fije-course .card button:hover {
    background-color: transparent;
    color: var(--main);
    border: solid 1px var(--main);
}

.fije-course .h1 {
    font-size: 30px;
    padding: 20px 0 10px 0;
}

.fije-course .select-fije {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
    align-items: center;
    justify-content: center;
    place-items: center;
}
@media(max-width: 900px){
    .fije-course{
        height: auto;
    }
    .fije-course .select-fije{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 600px){
    .fije-course .select-fije{
        grid-template-columns: repeat(1, 1fr);
        gap: 1%;
    }
}

.program {
    width: 90%;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
}

.program h1 {
    font-size: 30px;
}

.program .zone {
    width: 80%;
    padding: 0 10%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 50px 10%;
}

.zone h2 {
    font-size: 25px;
    padding: 20px 0;
    color: var(--media);
}

.zone>:nth-child(2) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.zone>:nth-child(2) .context {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.zone>:nth-child(2) .context h3 {
    font-size: 35px;
    padding: 30px 0;
}

.zone>:nth-child(2) .context li {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10%;
    font-size: 15px;

    i {
        font-size: 15px;
        color: var(--media);
    }
}

@media(max-width: 900px){
    .program .zone{
        width: 90%;
        padding: 20px 5%;
    }
    .zone>:nth-child(2){
        flex-direction: column;
    }
    .zone>:nth-child(2) img{
        width: 100%;
        height: auto;
    }
    .program .zone{
        margin: 3% 0;
    }
}

.form-contact-elem {
    width: 90%;
    height: 600px;
    padding: 30px 5%;
    display: flex;
    gap: 1%;
    flex-direction: row;
    align-items: center;
}

.form-contact-elem form {
    width: 40%;
    height: 93%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.form-contact-elem form h1 {
    font-size: 20px;
    position: relative;
}

.form-contact-elem form h1::after {
    content: '';
    position: absolute;
    top: 110%;
    left: 0%;
    width: 10%;
    height: 3px;
    background-color: var(--main);
    border-radius: 5px;
}


.inputs {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.inputs .input {
    width: 99%;
    height: 50px;
    border-radius: 5px;
    margin: 2% 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 1%;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.inputs .input input {
    width: 95%;
    padding: 0 2.5%;
    height: 100%;
}

textarea {
    width: 95%;
    height: 200px;
    padding: 20px 2.5%;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

form .button-contact {
    width: 90%;
    height: 50px;
    background-color: var(--main);
    color: var(--white);
    margin-top: 2%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

@media(max-width: 1180px) {
    .form-contact-elem {
        width: 90%;
        padding: 30px 5%;
    }
}

@media(max-width: 900px) {
    .form-contact-elem {
        width: 90%;
        padding: 30px 5%;
        flex-direction: column;
        height: auto;
    }

    .form-contact-elem form {
        width: 90%;
    }

    iframe {
        width: 100%;
        margin-top: 3%;
    }
}

@media(max-width: 800px) {
    .main-container .cart-contact {
        flex-direction: column;
    }

    .cart-contact .data-cart {
        width: 70%;
        margin: 1% 0;
    }

}

@media(max-width: 500px) {
    .cart-contact .data-cart {
        width: 90%;
        margin: 1% 0;
    }
}