body{
    font-family: metropolis;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

*{
    box-sizing: border-box;
}

h1, h2, h3{
    color: #42934b;
    font-weight: bold;
    text-align: left;
}

h1{
    font-size: 2em;
}

h2{
    font-size: 1.5em;
    margin-bottom: 20px;
}

h3{
    font-size: 1.2em;
    padding-top: 10px;
}

p{
    font-size: 1em;
    text-align: left;
    line-height: 1.4em;
}

input[type=text]{
    width: 100%;
    padding: 15px 5px;
    margin: 8px 0px;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #727176;
    font-size: 0.9em;
    text-align: left;
    color: #727176;
    background-color: #fff;
}

input[type=email]{
    width: 100%;
    padding: 15px 5px;
    margin: 8px 0px;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #727176;
    font-size: 0.9em;
    text-align: left;
    color: #727176;
    background-color: #fff;
}

input[type=password]{
    width: 100%;
    padding: 15px 5px;
    margin: 8px 0px;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #727176;
    font-size: 0.9em;
    text-align: left;
    color: #727176;
    background-color: #fff;
}

textarea{
    width: 100%;
    padding: 15px 5px;
    margin: 8px 0px;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #727176;
    font-size: 0.9em;
    text-align: left;
    color: #727176;
    background-color: #fff;
}

.input-text {
    display: block;
    font-weight: bold;
    text-align: left;
    font-size: 1.2em;
    padding-top: 10px;
}

input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.check-text {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-top: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.9em;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.check {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #727176;
}

.check:after {
    content: "";
    position: absolute;
    display: none;
}

.check-text input[type="checkbox"]:checked ~ .check:after {
    display: block;
}

.check-text .check:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #727176;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-text {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-top: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.9em;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-box {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #727176;
    border-radius: 50%;
}

.radio-box:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-text input[type="radio"]:checked ~ .radio-box:after {
    display: block;
}

.radio-text .radio-box:after {
    left: 5px;
    top: 5px;
    width: 5px;
    height: 5px;
    border: solid #727176;
    background-color: #727176;
    border-width: 0 3px 3px 0;
    border-radius: 50%;
}

input[type=submit]{
    padding: 10px 20px;
    margin: 8px 0px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid #727176;
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
    color: #f2f2f2;
    background-color: #acacaa;
    cursor: pointer;
    transition: ease-out 0.4s;
}

input[type=submit]:hover{
    box-shadow: inset 0 100px 0 0 #5b9462;
}

input[type=button]{
    padding: 10px 20px;
    margin: 8px 0px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid #727176;
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
    color: #f2f2f2;
    background-color: #acacaa;
    cursor: pointer;
    transition: ease-out 0.4s;
}

input[type=button]:hover{
    box-shadow: inset 0 100px 0 0 #5b9462;
}

#grid-layout-principal{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 120px 85vh;
    grid-auto-rows: auto;
    min-height: 100vh;
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    background-color: #ffffff;
}

#grid-layout-paginas{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 120px 150px;
    grid-auto-rows: auto;
    min-height: 100vh;
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    background-color: #ffffff;
}

#nav-principal {
    grid-column: 1/2;
    grid-row: 1/2;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    grid-template-rows: auto;
    background-color: transparent;
    z-index: 20;
}

#nav-paginas {
    grid-column: 1/2;
    grid-row: 1/2;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    grid-template-rows: auto;
    z-index: 20;
}

#header-slide{
    grid-column: 1/2;
    grid-row: 1/3;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 10;
}

#header-paginas{
    grid-column: 1/2;
    grid-row: 2/3;
    width: 100%;
    height: 100%;
    position: relative;
    margin: auto;
    overflow: hidden;
    background-image: linear-gradient(to right, #9fbd43,#4c974a);
    z-index: 10;
}

#main-principal{
    grid-column: 1/2;
    grid-row: 3/4;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    grid-template-rows: auto;
    background-color: #ffffff;
    z-index: 10;
}

#main-paginas{
    grid-column: 1/2;
    grid-row: 3/4;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    grid-template-rows: auto auto;
    background-color: #ffffff;
    z-index: 10;
}

#footer-principal{
    grid-column: 1/2;
    grid-row: 4/5;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    grid-template-rows: auto;
    background-color: #e8e8e7;
    z-index: 10;
}

#footer-paginas{
    grid-column: 1/2;
    grid-row: 4/5;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    grid-template-rows: auto;
    background-color: #e8e8e7;
    z-index: 10;
}

#navegacao{
    grid-column: 3/4;
    grid-row: 1/2;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    z-index: 30;
}

#navegacao-mobile{
    grid-column: 3/4;
    grid-row: 1/2;
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: flex-start;
    background-color: transparent;
    z-index: 30;
}

.logo{
    display: block;
    height: 90px;
    padding-top: 20px;
    padding-left:0px;
    order: 0;
}

.logo img{
    position: relative;
    height: 100%;
}

.menu{
    display: block;
    height:90px;
    flex-grow: 1;
    order: 1;
}

.menu ul{
    float: right;
    width: 80%;
    height: 100%;
    padding: 0px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
}

.menu ul li{
    position: relative;
    text-align: right;
    display: block;
    padding: 10px;
    list-style-type: none;
    flex-grow: 1;
    flex-basis: 20%;
}

.menu-items-inicial{
    color: #fff1f2;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
}

.menu-items-inicial::after{
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    background-color: #fff1f2;
    transition: width .3s;
}

.menu-items-inicial:hover::after {
    width: 100%;
}

.menu-items-paginas{
    color: #0e0e0e;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.menu-items-paginas::after{
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    background-color: #9fbe43;
    transition: width .3s;
}

.menu-items-paginas:hover::after {
    width: 100%;
}

.menu-dropdown{
    position: absolute;
    display: none;
    right: 0;
    margin-top: 10px;
    width: 15em;
    z-index: 40;
    border-radius: 10px;
    padding: 10px 0px 10px 0px;
    background-color: #e8e8e7;

    -webkit-animation-name: fade-menu;
    -webkit-animation-duration:5s;
    animation-name: fade-menu;
    animation-duration: 5s;
    animation-timing-function: ease-in;
}

@-webkit-keyframes fade-menu {
    0%, 8.3% {opacity: 0.2;}
    8.3%, 25% {opacity: 1;}
}

@keyframes fade-menu {
    0%, 8.3% {opacity: 0.2;}
    8.3%, 25% {opacity: 1;}
}

.menu-dropdown a{
    background-image: url('../img/folha2.png');
    background-size: 3em;
    background-position: center right 5px;
    background-repeat: no-repeat;
    background-color: #e8e8e7;
    color: #0e0e0e;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-align: right;
    display: block;
    padding: 20px 55px 20px 5px;
    transition: background-color 1s;
}

.menu-dropdown a:hover{
    background-image: url('../img/folha1.png');
    background-color: #42934b;
    color: #e8e8e7;
}

.menu-dropdown hr{
    border: 1px solid #fff;
    margin: 0;
}

.drop:hover .menu-dropdown {
    display: block;
}

.menu-login{
    position: absolute;
    padding: 10px 15px;
    color: #fff1f2;
    background-color: #727176;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    right: 0;
}

.menu-login a{
    display: inline-block;
    color: #fff1f2;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
}

.menu-login a:hover {
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    color: #9fbe43;
}

.menu-mobile{
    display: inline-block;
    cursor: pointer;
    float: right;
    height: 100%;
    padding-top: 20px;
}

.bar1, .bar2, .bar3{
    width: 50px;
    height: 7px;
    background-color: #0e0e0e;
    margin: 9px 0;
    border-radius: 4px;
    transition: 0.4s;
}

.menu-mobile-click .bar1{
    -webkit-transform:rotate(-45deg) translate(-12px,10px);
    transform:rotate(-45deg) translate(-12px,10px);
}

.menu-mobile-click .bar2{
    opacity: 0;
}

.menu-mobile-click .bar3{
    -webkit-transform:rotate(45deg) translate(-12px,-10px);
    transform:rotate(45deg) translate(-12px,-10px);
}

.modal-menu{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #00000066;
    padding-top: 85px;
    z-index: 15;
}

.modal-menu-content{
    float: right;
    background-color: #fefefe;
    padding-top: 10px;
    height: 100%;
    right: 0;
    overflow: auto;

    -webkit-animation-name: slide-modal;
    -webkit-animation-duration:20s;
    animation-name: slide-modal;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
}

.menu-items-mobile{
    color: #42934b;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.modal-menu-content hr{
    border: 1px solid #9fbe43;
    margin: 0;
}

.modal-menu-content ul{
    float: right;
    height: 100%;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.modal-menu-content > ul > li{
    margin-top: 10px;
}

.modal-menu-content ul li{
    position: relative;
    text-align: left;
    display: block;
    padding: 10px;
    list-style-type: none;
    flex-grow: 1;
}

.modal-menu-content ul li ul{
    position: relative;
    width: 100%;
    display: block;
    padding: 0px;
}

.modal-menu-content ul li ul a{
    color: #727176;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
}

@-webkit-keyframes slide-modal {
    0%, 8.3% {right: -100%; opacity: 0;}
    8.3%, 100% {right: 50%; opacity: 1;}
}

#slideshow{
    max-width: 100%;
    height: 100%;
    position: relative;
    margin: auto;
    overflow: hidden;
}

.mySlides{
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    display: none;
    width: 100%;
    height: 100%;
}

.anterior, .seguinte{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #fff1f2;
    font-weight: bold;
    font-size: 18px;
    transition: .6s ease;
    border-right: 0px 3px 3px 0px;
    user-select: none;
}

.anterior img, .seguinte img{
    height: 5em;
}

.seguinte{
    right: 0;
    border-radius: 3px 0px 0px 3px;
}

.anterior:hover, .seguinte:hover{
    opacity: 0.7;
}

.textSlide{
    position: absolute;
    background-color: #148f4fb2;
    bottom: 20%;
    right: 0;
    width: 50%;
    padding: 20px;
}

.textSlide h1{
    color: #f2f2f2;
    padding-right: 20%;
}

.textSlide p{
    color: #f2f2f2;
    padding-top: 10px;
    padding-right: 20%;
}

.fade{
    -webkit-animation-name: fade;
    -webkit-animation-duration: 20s;
    animation-name: fade;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
}

.slide{
    -webkit-animation-name: slide;
    -webkit-animation-duration:20s;
    animation-name: slide;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes fade {
    0%, 8.3% {opacity: 0.2;}
    8.3%, 25% {opacity: 1;}
    33.33%, 100% {opacity: 0;}
}

@-webkit-keyframes slide {
    0%, 8.3% {right: -100%; opacity: 0;}
    8.3%, 25% {right: 0%; opacity: 1;}
    33.33%, 100% {right: -50%; opacity: 0;}
}

@keyframes fade {
    0%, 8.3% {opacity: 0.2;}
    8.3%, 25% {opacity: 1;}
    33.33%, 100% {opacity: 0;}
}

@keyframes slide {
    0%, 8.3% {right: -100%; opacity: 0;}
    8.3%, 25% {right: 0%; opacity: 1;}
    33.33%, 100% {right: -50%; opacity: 0;}
}

.titulo_paginas{
    background-image: url('../img/folha3.png');
    background-size: 3em;
    background-position: top 25px center;
    background-repeat: no-repeat;
    width: 30em;
    height: 100%;
    position: absolute;
    left: 50%;
    margin-left: -15em;
}

.titulo_paginas h1{
    color: #f2f2f2;
    text-align: center;
    padding-top: 75px;
}

#corpo{
    grid-column: 3/4;
    grid-row: 1/2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0px 40px 0px;
    z-index: 30;
}

.corpo-row{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.corpo-col{
    position: relative;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 30%;
    display: block;
}

.logo-corpo-principal{
    width: 100%;
    text-align: center;
}

.logo-corpo-principal img{
    height: 150px;
}

.text-corpo-principal{
    padding: 60px 10% 0 10%;
}

.text-corpo-principal p{
    padding-top: 10px;
    text-align: center;
}

.projetos-title-main{
    padding-top: 80px;
    padding-bottom: 30px;
    color: #9fbe43;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
    font-size: 2.5em;
}

.container-main{
    position: relative;
    width: 100%;
}

.text-projetos-main{
    position: absolute;
    bottom: 0;
    background-color: #000000A5;
    color: #f2f2f2;
    padding: 0px 20px;
    margin: 10px 10px 0 10px;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 0;
    transition: .5s ease;
}

.container-main:hover .text-projetos-main{
    height: 80%;
}

.text-projetos-main a{
    color: #42934b;
    text-decoration: none;
}
.text-projetos-main a:hover{
    text-decoration-line: underline;
    text-decoration-color: #42934b;
}

.text-projetos-main h3{
    margin-bottom: 20px;
}

.image-projetos-main{
    position: relative;
    margin: 0px;
    text-align: center;
    margin: 10px;
}

.image-projetos-main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eventos{
    margin-top: 30px;
}

.text-eventos{
    position: relative;
    padding: 20px 40px;
}

.text-eventos h3{
    margin-bottom: 20px;
}

.text-eventos a{
    color: #42934b;
    text-decoration: none;
}
.text-eventos a:hover{
    text-decoration-line: underline;
    text-decoration-color: #42934b;
}

.text-socios{
    padding-right: 40px;
}

.image-eventos{
    position: relative;
    margin: 10px;
}

.image-eventos img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-projetos{
    position: relative;
    padding: 20px 40px;
}

.text-projetos a{
    color: #42934b;
    text-decoration: none;
}
.text-projetos a:hover{
    text-decoration-line: underline;
    text-decoration-color: #42934b;
}

.text-projetos h3{
    margin-bottom: 20px;
}

.image-projetos{
    position: relative;
    margin: 10px;
    text-align: center;
}

.image-projetos img{
    width: 50%;
    height: 50%;
    object-fit: cover;
}

.video-projetos{
    width: 100%;
    height: 375px;
    padding: 10px;
    object-fit: cover;
}

.image-pequena{
    position: relative;
    margin: 10px;
    text-align: center;
}

.image-pequena img{
    width: 50%;
    height: 50%;
    object-fit: cover;
}

.image-muito-pequena{
    position: relative;
    margin: 10px;
    text-align: center;
}

.image-muito-pequena img{
    width: 20%;
    height: 20%;
    object-fit: cover;
}
.corpo-col h1{
    margin-bottom: 20px;
}

#mapa{
    grid-column: 1/6;
    grid-row: 2/3;
    position: relative;
    height: 60vh;
    overflow: hidden;
}

#mapa iframe{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

#rodape{
    grid-column: 3/4;
    grid-row: 1/2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0px 0px 0px;
    z-index: 30;
}

.rodape-top{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.rodape-bottom{
    width: 100%;
    font-size: 0.9em;
    text-align: left;
    margin: auto;
    position: relative;
    padding: 5px 0px 10px 0px;
    color: #727176;
}

.rodape-col-space{
    flex-basis: 10%;
    display: block;
}

.rodape-col{
    position: relative;
    flex-grow: 1;
    flex-basis: 20%;
    display: block;
}

.rodape-col img{
    height: 50px;
}

.rodape-col p{
    font-size: 0.9em;
    line-height: 1.2em;
}

.rodape-col input[type=text]{
    border: none;
    padding: 15px 20px;
    border-radius: 30px;
}

.rodape-col input[type=email]{
    border: none;
    padding: 15px 20px;
    border-radius: 30px;
}

.rodape-col input[type=submit]{
    border: none;
}

.rodape-col .check {
    border: none;
}

.rodape-col .check-text .check:after {
    left: 6px;
}

.news {
    padding-top: 10px;
}

.noticias{
    font-size: 0.9em;
    text-align: left;
    line-height: 1.2em;
    overflow: auto;
}

.noticias img{
    padding-right: 10px;
    float: left;
}

.noticias a{
    color: #42934b;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.noticias a:hover{
    color: #5b9462;
}

.icons {
    position: absolute;
    bottom: 10px;
    right: 0;
    color: #148f4f;
    text-align: right;
    font-size: 3em;
    list-style-type: none;
}

.icons a{
    color: #acacaa;
    text-decoration: none;
}

.icons a:hover{
    color: #5b9462;
}

.modal{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #00000066;
    padding-top: 60px;
    z-index: 100;
}

.modal-content{
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    border: 1px solid #5b9462;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
}

.image-container{
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

.image-container img{
    width: 40%;
    border-radius: 50%;
}

.modal-close{
    position: absolute;
    right: 5px;
    top: -40px;
    color: #000;
    font-size: 3em;
    font-weight: bold;
}

.modal-close:hover, .modal-close:focus{
    color: #ee1e2d;
    cursor: pointer;
}

.animate{
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0);}
    to {-webkit-transform: scale(1);}
}

@keyframes animatezoom {
    from {transform: scale(0);}
    to {transform: scale(1);}
}

.modal-content input[type=text]{
    padding: 10px 20px;
    border-radius: 15px;
}

.modal-content input[type=password]{
    padding: 10px 20px;
    border-radius: 15px;
}

.modal-content input[type=button]{
    margin-top: 30px;
    padding: 15px 20px;
    width: 100%;
}

/*-- CSS Media Queries --*/

@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2){
    #grid-layout-principal{
        grid-template-rows: 90px 85vh;
    }

    #grid-layout-paginas{
        grid-template-rows: 90px 150px;
    }

    #nav-principal {
        grid-template-columns: repeat(2, 1fr) 600px repeat(2, 1fr);
        background-color: #ffffff;
        position: sticky;
        top: 0;
    }

    #nav-paginas {
        grid-template-columns: repeat(2, 1fr) 600px repeat(2, 1fr);
        background-color: #ffffff;
        position: sticky;
        top: 0;
    }

    #header-slide{
        grid-row: 2/3;
    }

    #main-principal{
        grid-template-columns: repeat(2, 1fr) 600px repeat(2, 1fr);
    }

    #main-paginas{
        grid-template-columns: repeat(2, 1fr) 600px repeat(2, 1fr);
    }

    #footer-principal{
        grid-template-columns: repeat(2, 1fr) 600px repeat(2, 1fr);
    }

    #footer-paginas{
        grid-template-columns: repeat(2, 1fr) 600px repeat(2, 1fr);
    }

    #navegacao{
        display: none;
    }

    #navegacao-mobile{
        display: flex;
    }

    .modal-menu-content{
        width: 50%;
    }

    .menu ul{
        display: none;
    }

    .logo{
        height: 70px;
    }

    .menu{
        height:70px;
    }

    .corpo-col{
        flex-basis: 50%;
    }

    .video-projetos{
        width: 100%;
        height: 200px;
        padding: 10px;
        object-fit: cover;
    }

    .rodape-col-space{
        flex-basis: 100%;
        height: 50px;
    }

    .rodape-col{
        flex-basis: 100%;
    }

    .menu-login{
        display: none;
    }

    .textSlide{
        background-color: transparent;
        bottom: 20%;
        width: 100%;
        margin: auto;
        padding: 20px;
    }

    .textSlide h1{
        font-size: 1.5em;
        text-align: center;
        padding: 0;
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
        margin-right: 50px;
        margin-left: 50px;
    }

    .textSlide p{
        font-size: 0.8em;
        text-align: center;
        padding: 0;
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
        margin-right: 50px;
        margin-left: 50px;
    }

    @-webkit-keyframes slide {
        0%, 8.3% {bottom: -100%; opacity: 0;}
        8.3%, 25% {bottom: 50%; opacity: 1;}
        33.33%, 80% {bottom: 150%; opacity: 0;}
    }

    @keyframes slide {
        0%, 8.3% {bottom: -100%; opacity: 0;}
        8.3%, 25% {bottom: 50%; opacity: 1;}
        33.33%, 80% {bottom: 150%; opacity: 0;}
    }

    .anterior, .seguinte{
        margin-top: -100px;
    }

    .anterior img, .seguinte img{
        height: 3.5em;
    }

    .icons {
        display: flex;
        flex-direction: column;
    }

    .rodape-col p{
        font-size: 0.6em;
        line-height: 1.2em;
    }

    .noticias{
        font-size: 0.6em;
        line-height: 1.2em;
    }
}

@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2){
    #grid-layout-principal{
        grid-template-rows: 90px 85vh;
    }

    #grid-layout-paginas{
        grid-template-rows: 90px 150px;
    }

    #nav-principal {
        grid-template-columns: repeat(2, 1fr) 350px repeat(2, 1fr);
        background-color: #ffffff;
        position: sticky;
        top: 0;
    }

    #nav-paginas {
        grid-template-columns: repeat(2, 1fr) 350px repeat(2, 1fr);
        background-color: #ffffff;
        position: sticky;
        top: 0;
    }

    #header-slide{
        grid-row: 2/3;
    }

    #main-principal{
        grid-template-columns: repeat(2, 1fr) 350px repeat(2, 1fr);
    }

    #main-paginas{
        grid-template-columns: repeat(2, 1fr) 350px repeat(2, 1fr);
    }

    #footer-principal{
        grid-template-columns: repeat(2, 1fr) 350px repeat(2, 1fr);
    }

    #footer-paginas{
        grid-template-columns: repeat(2, 1fr) 350px repeat(2, 1fr);
    }

    #navegacao{
        display: none;
    }

    #navegacao-mobile{
        display: flex;
    }

    .modal-menu-content{
        width: 80%;
    }

    .menu ul{
        display: none;
    }

    .logo{
        height: 70px;
    }

    .menu{
        height:70px;
    }

    .corpo-col{
        flex-basis: 100%;
    }

    .video-projetos{
        width: 100%;
        height: 200px;
        padding: 10px;
        object-fit: cover;
    }

    .rodape-col-space{
        flex-basis: 100%;
        height: 50px;
    }

    .rodape-col{
        flex-basis: 100%;
    }

    .menu-login{
        display: none;
    }

    .textSlide{
        background-color: transparent;
        bottom: 20%;
        width: 100%;
        margin: auto;
        padding: 20px;
    }

    .textSlide h1{
        font-size: 1.5em;
        text-align: center;
        padding: 0;
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
        margin-right: 50px;
        margin-left: 50px;
    }

    .textSlide p{
        font-size: 0.8em;
        text-align: center;
        padding: 0;
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
        margin-right: 50px;
        margin-left: 50px;
    }

    @-webkit-keyframes slide {
        0%, 8.3% {bottom: -100%; opacity: 0;}
        8.3%, 25% {bottom: 50%; opacity: 1;}
        33.33%, 80% {bottom: 150%; opacity: 0;}
    }

    @keyframes slide {
        0%, 8.3% {bottom: -100%; opacity: 0;}
        8.3%, 25% {bottom: 50%; opacity: 1;}
        33.33%, 80% {bottom: 150%; opacity: 0;}
    }

    .anterior, .seguinte{
        margin-top: -100px;
    }

    .anterior img, .seguinte img{
        height: 3.5em;
    }

    .icons {
        display: flex;
        flex-direction: column;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    #nav-principal {
        grid-template-columns: repeat(2, 1fr) 1000px repeat(2, 1fr);
    }

    #nav-paginas {
        grid-template-columns: repeat(2, 1fr) 1000px repeat(2, 1fr);
    }

    #main-principal{
        grid-template-columns: repeat(2, 1fr) 1000px repeat(2, 1fr);
    }

    #main-paginas{
        grid-template-columns: repeat(2, 1fr) 1000px repeat(2, 1fr);
    }

    #footer-principal{
        grid-template-columns: repeat(2, 1fr) 1000px repeat(2, 1fr);
    }

    #footer-paginas{
        grid-template-columns: repeat(2, 1fr) 1000px repeat(2, 1fr);
    }

    .corpo-col{
        flex-basis: 50%;
    }

    .anterior, .seguinte{
        margin-top: -100px;
    }

    .textSlide{
        width: 70%;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    #nav-principal {
        grid-template-columns: repeat(2, 1fr) 750px repeat(2, 1fr);
        background-color: #ffffff;
        position: sticky;
        top: 0;
    }

    #nav-paginas {
        grid-template-columns: repeat(2, 1fr) 750px repeat(2, 1fr);
        background-color: #ffffff;
        position: sticky;
        top: 0;
    }

    #header-slide{
        grid-row: 2/3;
    }

    #main-principal{
        grid-template-columns: repeat(2, 1fr) 750px repeat(2, 1fr);
    }

    #main-paginas{
        grid-template-columns: repeat(2, 1fr) 750px repeat(2, 1fr);
    }

    #footer-principal{
        grid-template-columns: repeat(2, 1fr) 750px repeat(2, 1fr);
    }

    #footer-paginas{
        grid-template-columns: repeat(2, 1fr) 750px repeat(2, 1fr);
    }

    #navegacao{
        display: none;
    }

    #navegacao-mobile{
        display: flex;
    }

    .modal-menu{
        padding-top: 120px;
    }

    .modal-menu-content{
        width: 40%;
    }

    .menu ul{
        display: none;
    }

    .logo{
        height: 90px;
    }

    .menu{
        height:90px;
    }

    .corpo-col{
        flex-basis: 50%;
    }

    .rodape-col-space{
        flex-basis: 100%;
        height: 50px;
    }

    .rodape-col{
        flex-basis: 100%;
    }

    .menu-login{
        display: none;
    }

    .anterior, .seguinte{
        margin-top: -100px;
    }

    .textSlide{
        width: 70%;
    }
}

@media only screen  and (min-width : 1224px) {
    #nav-principal {
        grid-template-columns: repeat(2, 1fr) 1200px repeat(2, 1fr);
    }

    #nav-paginas {
        grid-template-columns: repeat(2, 1fr) 1200px repeat(2, 1fr);
    }

    #main-principal{
        grid-template-columns: repeat(2, 1fr) 1200px repeat(2, 1fr);
    }

    #main-paginas{
        grid-template-columns: repeat(2, 1fr) 1200px repeat(2, 1fr);
    }

    #footer-principal{
        grid-template-columns: repeat(2, 1fr) 1200px repeat(2, 1fr);
    }

    #footer-paginas{
        grid-template-columns: repeat(2, 1fr) 1200px repeat(2, 1fr);
    }

    .text-projetos-main h3{
        font-size: 1em;
    }

    .text-projetos-main p{
        font-size: 0.8em;
    }
}

@media only screen  and (min-width : 1824px) {
    #nav-principal {
        grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    }

    #nav-paginas {
        grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    }

    #main-principal{
        grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    }

    #main-paginas{
        grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    }

    #footer-principal{
        grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    }

    #footer-paginas{
        grid-template-columns: repeat(2, 1fr) 1400px repeat(2, 1fr);
    }
}






