﻿.vis {
    visibility: hidden;
}

#m_nome_escola {
    margin: 20px 0px 5px 0px;
}

.map {
    width: 100%;
    height: 100%;
}

.div-esq {
    padding-left: 250px;
    position: relative;
    left: -250px;
    background: var(--sub-white);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    row-gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1000px) {
    .div-esq {
        width: 100%;
        /*left: -150px;
        padding-left: 150px;
        padding-right: 150px;*/
    }
}

.e-wrapper {
    display:flex;
    gap: 30px;
    flex-direction: column;
}

.e-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.e-info-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.e-info-div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: var(--medium-text-size);
    align-items: flex-start;
}

.e-info-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.e-financiamento-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.e-financiamento-img-div {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
    .e-financiamento-img-div img {
        width: 100px;
        height: 100px;
        border-radius: 100%;
    }

.e-body {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 60px;
}

.e-body-img-div {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 30px;
}
    .e-body-img-div img {
        height: 300px;
    }

.e-body-text {
    font-size: var(--big-medium-text-size);
    width: 100%;
    text-align: justify;
}

.left-arrow, .right-arrow {
    stroke: var(--background);
    min-width: 15px;
    transition: .2s ease;
}

.arrow-container-left {
    position: absolute;
    height: 100%;
    left: 35px;
    z-index: 9;
    display: flex;
    width: fit-content;
    align-items: center;
}

.arrow-container-right {
    position: absolute;
    height: 100%;
    right: 35px;
    z-index: 9;
    display: flex;
    width: fit-content;
    align-items: center;
}

.arrow-div:hover .left-arrow, .arrow-div:hover .right-arrow {
    stroke: var(--white);
}

.arrow-div {
    background-color: var(--hover);
    border-radius: 20px;
    width: 50px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
    cursor: pointer;
    box-shadow: unset;
}

    .arrow-div:hover {
        background-color: var(--bg);
        box-shadow: var(--box-shadow);
        transform: scale(1.05);
    }

.fotos-container {
    position: relative;
    display: flex;
    gap: 20px;
    width: calc(100% + 280px);
    justify-content: space-between;
    align-items: center;
    left: -150px;
    padding: 0px 10px;
}



.video-img {
    filter: brightness(0.75);
    cursor: pointer;
    transition: .2s ease-in;
    box-shadow: unset !important;
    padding: unset !important;
    height: 300px;
}

    .video-img:hover {
        filter: brightness(0.9);
    }

.body-escola {
    display: flex;
    gap: 80px;
    width: calc(100% + 80px);
}

.body-escola-single {
    width: 100%;
}

.detalhes-escola-div {
    background-color: var(--red);
    width: 400px;
    min-height: 300px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
}

.detalhe-div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--white);
    align-items: center;
}

.detalhe-div-main {
    font-weight: bold;
    font-size: var(--h1-text-size);
    line-height: var(--h1-text-size);
}

.detalhe-div-sec {
    font-size: var(--medium-text-size);
    text-align: center;
}

.financiamento-div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.separadores {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.selected {
    box-shadow: inset 0 -45px 0 -1px var(--red) !important;
    color: var(--white) !important;
}

.gps-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}


@media only screen and (max-width: 600px) {
    .fotos-container {
        left: -40px;
        width: calc(100% + 60px);
    }

    .body-escola {
        width: 100%;
        flex-wrap: wrap;
    }
}