@font-face {
    font-family: 'Anonymous Pro';
    src: url('fonts/AnonymousPro-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('fonts/RobotoCondensed-Bold.ttf') format('truetype');
}

/*RED BORDERS*/
.ddiv {
    border: 3px solid red;
}

iimg {
    border: 3px solid red;
}

/*RED BORDERS END*/

img {
    display: block;
}

/*Organizacao linda... yummy*/

/*HOME PAGE*/

.sos {
    width: 100%;
    height: auto;
}

#tiny_line {
    background-color: #D5D89C;
    padding-top: 20px;
}

/*ENTRADA*/
#Heimh {
    width: 100%;
}

/*SOBRE NOS*/
#H_sobrenos {
    background-color: #A8B32F;
    padding-bottom: 50px;
    padding-top: 50px;
}

#Hs {
    grid-column-start: 1;
    grid-column-end: 7;
    text-align: center;
    margin-bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
}

#Himg {
    grid-column-start: 8;
    grid-column-end: 13;
}


/*INSTALAÇÕES*/
#H_instalacoes {
    background-color: #C8CF6F;
    padding-bottom: 115px;
    padding-top: 30px;
}

.b {
    grid-column: span 3;
}

h4 {
    text-align: center;
    font-weight: lighter;
    font-size: 37px;
}

/*ESCOLA*/
#H_escola {
    padding-top: 20px;
    background-color: #788635;
    padding-bottom: 75px;
}

.Hd {
    grid-column: span 4;
    padding-top: 250px;
}

#HTd {
    width: 100%;
    height: auto;
}

/*HOME PAGE END*/



/*LANDING PAGE*/

/*ENTRADA*/
#entrada {
    background-image: url(imagens/isntalcoes.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    padding-block: 19%;
    margin-bottom: 0px;
}

/*ETAPAS*/
#etapas {
    background-color: #D5D89C;
    padding-top: 165px;
    padding-bottom: 165px;
}

#Esla {
    grid-column-start: 2;
    grid-column-end: 9;
}

#Esl {
    margin-bottom: 2px;
    margin-top: 10px;
}

.Es {
    grid-column-start: 9;
    grid-column-end: 13;
    margin-bottom: 15px;
    width: 100%;
}

/*TIPOS DE AULAS*/
#tipos_aulas {
    background-color: #788635;
    padding-bottom: 400px;
}

.d {
    grid-column: span 4;
}

#Td {
    width: 100%;
    height: auto;
}


/*AULA EXPERIMENTAL*/
#aula_experimental {
    background-image: url(imagens/isntalcoes.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    padding-block: 20%;
}

#ae_white {
    grid-column-start: 1;
    grid-column-end: 9;
    background-color: white;
}

#hmm {
    grid-column-start: 1;
    grid-column-end: 8;
    text-align: center;
}

#hmmm {
    padding-right: 370px;
}

.L {
    font-size: 35px;
    text-align: right;
}

/*LANDING PAGE END*/


/*Grelha*/
.grelha {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/*Tipografia*/

#desktop {
    font-size: 25px;
    font-family: 'Roboto Condensed';
}

body {
    font-family: 'Anonymous Pro', monospace;
    margin: 0px;
}

.SUBsubtitles {
    color: rgb(0, 0, 0);
    font-size: 40px;
    font-weight: bolder;
}

.text {
    /*TEXT*/
    font-size: 30px;
}

.texto {
    /*texto*/
    font-size: 30px;
}

h1 {
    /*Subtitulos*/
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 60px;
    font-weight: bolder;
}

h6 {
    font-size: 150px;
    font-weight: bold;
    margin-top: 1px;
    margin-bottom: 1px;
}


/*HEADER*/

header {
    background-color: #677037;
}

#menu_nav {
    width: 80%;
    max-width: 1000px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ### MENU  ### */
nav#desktop ul {
    margin: 0;
    padding: 0;
    list-style-type: none;

    display: flex;
    justify-content: space-between;
}

nav#desktop ul li {
    margin: 0 10px;
}

nav a {
    color: #A8B32F;
    text-decoration: none;
}

nav a:visited {
    color: #A8B32F;
}

nav a:hover {
    text-decoration: underline;
    color: #D7DA93;
}



#bigmac {
    display: none;

    width: 40px;
    height: 28px;

    position: relative;

    z-index: 30;

    cursor: pointer;
}

#bigmac .linha {
    position: absolute;
    height: 4px;
    width: 100%;


    background-color: white;
    border-radius: 9px;

    opacity: 1;
    left: 0;

    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
}


#bigmac .linha:nth-child(1) {
    top: 0px;
}

#bigmac .linha:nth-child(2) {
    top: 12px;
}

#bigmac .linha:nth-child(3) {
    top: 12px;
}

#bigmac .linha:nth-child(4) {
    top: 24px;
}

#bigmac.open .linha:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#bigmac.open .linha:nth-child(2) {
    transform: rotate(45deg);
}

#bigmac.open .linha:nth-child(3) {
    transform: rotate(-45deg);
}

#bigmac.open .linha:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}


nav#mobile {
    display: none;

}

/*FIM HEADER*/








/* RESPONSIVE */

@media screen and (max-width: 500px) {

    .grelha {
        display: block;
        width: 95%;
    }
}