*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:sans-serif;
}
body{
    background-color: white;
    scroll-behavior: smooth;
}
header{
    height: 100px;
}
.container_header{
    max-width: 1200px;
    height: 100%;
    margin: auto;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    width: 1px;
}
#logo-principal{
   width : 120px;

}
#logo-principal:hover{
    cursor: pointer;
}
.menu nav ul{
    display: flex;
}
.menu nav ul li{
    list-style: none;
    padding:0 20px;
}
.menu nav ul li a{
    text-decoration: none;
    color:black;
    transition: opacity 300ms;
}   
.menu nav ul li a:hover{
    opacity: 0.5;
    
}
.btn_header_register, .btn_register_cover{
    padding: 15px 50px;
    border:none;
    background-color: #d19d0c;
    color: aliceblue;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}
.btn_header_register:hover{
    background-color: rgba(7, 110, 38, 0.5);
    transition: 600ms;
    
}

/*COVER*/
main{
    max-width: 1200px;
    margin: auto;
}
.cover{
    display: flex;
    justify-content: center;
}
.text_information_cover{
    width: 50%;
    
}
.text_information_cover h2{
    font-size: 50px;
    color:black
}
.text_information_cover p{
    font-size: 18px;
    margin-top: 40px;
    color:black;
}

.text_information_below{
    margin-top:10%;
    margin-bottom: 10%;
    width: 100%;
    /*justify-content: center;
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "infos infos infos"
                        "column1 column2 column3";*/
}

.text_information_below .text_information_below_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.text_information_below h2{
    align-self: flex-start;
    font-size: 50px;
    margin-bottom: 20px;
    color: #d19d0c;
}
.text_information_below h3{
    width: 60%;
    margin: 5%;
}
.text_information_below i{
    font-size: 18px;
    color:#00a88b;
}
/*.text_information_below .infos{
    grid-area: infos;
}*/

#Politica {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto auto;
}

.mision, .vision, .valores div {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: justify;
    color: white;
    background: #00a88b;
}

.title{
    grid-column: 1 / span 2;
    text-align: center;
    color: #d19d0c;
}

.valores{
    grid-column: 1 / span 2;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: auto auto auto;
}

.valores div:nth-last-child(1) {
    grid-column-end: span 2;
}

.valores div{
border-radius: 3%;
}

.contacto{
     margin-top:5% ;
    width: 100%;
    height: 20rem;
    justify-content: center;
    display: grid;
    grid-gap:50px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "columnuno columndos";
    margin-bottom: 2.5%;
}
.contacto .columnuno{
    display: flex;
	align-items: center;
	justify-content: center;
}
.contacto .columnuno img{
    height: 20rem;
}
.contacto .columndos{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
	align-items: center;
}
.contacto .columndos a{
    color:#00a88b;
}
.contacto .columndos h1, .contacto .columndos h3{
    color: #d19d0c;
}



.media_cover{
    width: 50%;
}
.media_cover img{
    width: 100%;
    margin-top: -40px;
}
.btns_cover{
    display:flex;
    margin-top: 40px;
}
.btn_readmore_cover{
    
    padding: 14px 40px;
    margin-left: 15px;
    background-color: white;
    color: black;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}
.btn_readmore_cover:hover{
    background-color: #00a88b;
    color:white;
    transition: 600ms;
}
.btn_register_cover:hover{
    background-color: rgba(7, 110, 38, 0.5);
    transition: 600ms;
}

.container_banner{
    margin-top: 80px;
}
.container_banner1{
    margin-top: 20%;
}
.banner{
    width: 100%;
    height: 250px;
    display:flex;
    align-items: center;
    background-color: #00a88b;
    position: relative;
}
.banner_icon1{
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#icon1, #icon2{
    width: 15rem;
}
#icon1{
    margin-top: 30%;
    margin-left: 5%;
    align-self: flex-start;
}
#icon2{
    margin-bottom: 30%;
    margin-right: 5%;
    align-self: flex-end;
}
.banner_text{
    width: 70%;
    position: relative;
    padding: 40px;
}
.banner_text h2{
    color: white;
}
.banner_text h2 i{
    color: #d19d0c
}
.banner_text a{
    text-decoration: none;
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color:white;
    font-weight: bold;
}
.banner_icon2{
    height: 100%; 
    position: absolute;
    right: 10px;
    overflow: hidden;
}


#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #d19d0c;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
}

#myBtn:hover {
  background-color: #555;
}


