/* GENERAL PROPERTIES */
/*
azul claro: #5c8cb4
azul oscuro: #45637c
naranja: #dc8c4e
naranja oscuro:
gris: #dfeae0
gris oscuro: #87968f
*/
:root{
  --primarycolor: #ff8000;
  --primarycolorD: #CE6700;
  --secondarycolor: #5c8cb4;
  --secondarycolorD: #45637c;
  --mycolorgrey: #dfeae0;
  --mycolorgreyD: #87968f;
  --fontOpenSans: 'Open Sans', sans-serif;
  --fontPTSans: 'PT Sans', sans-serif;
  --fontStaatliches: 'Staatliches', cursive;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;

}

*, *:before, *:after {
  box-sizing: inherit;
}

body{
  background-color: #f2f2f2;
  font-family: var(--fontOpenSans);
}

img{
  max-width:100%;
}

h1, h2{
  text-transform: uppercase;
  text-align: center;
}
h1{
  font-family: var(--fontStaatliches);
  font-size: 8rem;
}
@media (min-width:768px) {
    h1{
      font-size: 10rem;
    }
}

h2{
  font-family: var(--fontStaatliches);
  font-size: 5rem;
  text-shadow: 2px 2px black;
  color: var(--primarycolor)
}

h2::after{
  content: '';
  background-image: url(../img/separador.png);
  display: block;
  height: 30px;
  width: 100px;
  margin: 0 auto;
}

.bbg{
  color: white;
  text-shadow: 2px 2px var(--primarycolorD);
}

.bbg::after{
  background-image: url(../img/separador_white.png);
}

h3{
  font-family: var(--fontPTSans);
  font-size: 3rem;
  color: var(--primarycolor);
  text-align: center;
}

.container{
  width: 98%;
  margin: 0 auto;
  max-width: 140rem;
}

@media (min-width:768px) {
  .container{
    width: 90%;
  }
}

.new-section{
  padding: 3rem 0;
}

.new-section p{
  font-size: 2rem;
  text-align: justify;
}

/* añadido 
.new-section ul{
  font-size: 1.8rem;
  text-align: left;
}

.new-section ul:before{
  font-family: 'FontAwesome';
  color: var(--primarycolor);
  margin-right: 1rem;
  content: '\f00c';
}

.new-section ul .red{
  color: red;
}
*/


/* añadido */
.new-section ul{
  font-size: 1.8rem;
  text-align: left;
}

.new-section li{
  padding-left: 2rem;
  text-align: justify;
}

.new-section li:before{
  font-family: 'FontAwesome';
  color: var(--primarycolor);
  margin-right: 1rem;
  content: '\f00c';
}
/* añadido */

.new-section a{
  color: black;
  font-weight: bold;
  font-size: 2.2rem;
}
.new-section span{
  font-weight: bold;
}

a{
  text-decoration: none;
  /*font-size: 100px;*/
  /*font-size: 0.1rem;*/
  /*word-wrap: break-word;*/
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Utilities */
.current-page{
  border-bottom: 2px solid var(--primarycolor);
}

.round-icon{
  background-color: var(--primarycolor);
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 2rem;
}

.button{
  padding: 1rem 4rem;
  color: white!important;
  background-color: var(--primarycolor);
  font-family: var(--fontStaatliches);
  font-size: 2rem;
  display: inline-block;
  transition: all .3s ease;
}

.button:hover{
  background-color: var(--primarycolorD);
  color: white;
  cursor: pointer;
}
/* HEADER */
.site-header{
  /* background-image: linear-gradient(to right,rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../img/background.png); */
  background-image: url(../img/background.png);
  background-position: center center;
  background-size: cover;
  height: auto;
}

.header-content{
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
}

@media (min-width:768px) {
    .header-content{
      flex-direction: column;
    }
}

.main-menu{
  flex: 0 0 100%;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width:768px) {
    .main-menu{
      display:flex;
    }
}

.main-menu a{
  font-family: var(--fontOpenSans);
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  font-size: 2.5rem;
  padding: 1rem 4rem;
  transition: all .3s ease;
  text-align: center;
  flex: 0 0 100%;
}

@media (min-width:768px) {
    .main-menu a{
      margin-right: 2rem;
      flex: 0 0 auto;
    }
    .main-menu a:last-of-type{
      margin-right: 0;
    }
}

.main-menu a:hover{
  background-color: var(--primarycolor);
  color: white;
}

.header-content .information{
  color: white;
  margin: 0rem auto 6rem auto;
}

@media (min-width:768px) {
  .header-content .information{
    margin: 12rem auto;
  }
}

.information .title{
  text-shadow: 0px 0px 1px var(--primarycolor);
}
.information .title span{
  color: var(--primarycolor);
}

.hid-m{
  display: none;
}

@media (min-width:768px) {
  .hid-m{
    display: inline;
  }
  .hid-c{
    display: none;
  }
}
.information .slogan{
  color: white;/*var(--primarycolor);*/
  text-shadow: 0px 0px 1px var(--primarycolor);
  font-size: 3rem;
  text-align: center;
  margin-top: 8rem;
  font-weight: bold;
}

@media (min-width:768px) {
  .information .slogan{
    margin-top: 14rem;
  }
}

.burguer{
  margin: 10rem auto 0 auto;
  font-size: 4rem;
  color: var(--primarycolor);
  text-align: center;
}

.burguer:hover{
  cursor: pointer;
}

@media (min-width:768px) {
    .burguer{
      display: none;
    }
}

/* FOOTER */
.site-footer{
  background-color: var(--secondarycolor);
  text-align: center;
  font-size: 2rem;
  overflow: hidden;
  padding: 1rem;
  color: white;
}

.site-footer span{
  color: var(--primarycolor);
  font-weight: bold;
  text-shadow: 0.5px 0.5px black;
}

/* PRESENTATION */

/* OBJECTIVES */
.objectives{
  /* background-image: linear-gradient(to right,rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../img/equipo_multi.png); */
  background-image: url(../img/equipo_multi.png);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.objectives-content{
  color: white;
}

/* PROJECTS */
.projects-content{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  justify-content: center;
}

.projects-content .div-button p{
  margin: 0;
  color: var(--primarycolor)!important;
  background-color: var(--f2f2f2);
  border: 1px solid var(--primarycolor);
}

.projects-content .button{
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
}

.projects-content .div-button .button-selected{
  background-color: var(--primarycolor);
  color: white!important;
  cursor: pointer;
}

.project{
  grid-column: 1 / 3;
  padding: 1rem;
  border-left: 1px solid var(--primarycolorD);
  border-right: 1px solid var(--primarycolorD);
  border-bottom: 1px solid var(--primarycolorD);
  background-color: var(--primarycolor);
}

.project h3{
  color: white;
}

.project .button{
  margin-top: 2rem;
  font-size: 2rem;
  background-color: white;
  color: var(--primarycolor)!important;
}

.project .button:hover{
  background-color: var(--mycolorgrey);
  color: black!important;
}

.project .round-icon{
  background-color: white;
}

@media (min-width:768px) {
  .project .div-button{
    display: flex;
    justify-content: center;
  }
}

#pro-face2face{
  display: none;
}

/* VISIT GALLERY */
.visit{
  /* background-image: linear-gradient(to right,rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../img/coordinadores.png); */
  background-image: url(../img/coordinadores.png);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  height: 40rem;
}

.visit-content{
  margin-top: 10rem;
  display: flex;
  justify-content: center;
}

/* COLLABORATORS */
.collaborators-content{
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: center;
  grid-gap: 2rem;
  text-align: center;
  border: 1px solid var(--primarycolorD);
  background-color: white;
}

/* FOR HIGH RESOLUTIONS  */
@media (min-width:768px) {
    .collaborators-content{
      grid-template-columns: repeat(6,1fr);
    }
}

/* FOR LOW RESOLUTIONS - E.G. mobiles */
.logo-todos{
  grid-column: 1 / 5;
}

.logo-coordinadores{
  grid-column: 1 / 5;
}

.logo-autismo{
  grid-column: 1 / 5;
  /*grid-row: 3 / 4;*/
}

.logo-colegio{
  grid-column: 1 / 5;
  /*grid-row: 4 / 6;*/
}


.logo-galileov{
  grid-column: 1 / 2;
  grid-row: 5 / 6;
  /*grid-row: 6 / 7;*/
}

.logo-caixa{
  grid-column: 2 / 4;
  grid-row: 5 / 6;
  /*grid-row: 6 / 7;*/
}

.logo-galileovi{
  grid-column: 4 / 5;
  grid-row: 5 / 6;
  /*grid-row: 6 / 7;*/
}

.logo-ayrna{
  grid-column: 2 / 4;
  grid-row: 6 / 7;
}




/* FOR HIGH RESOLUTIONS  */
@media (min-width:768px) {
  .logo-todos{
    grid-column: 1 / 4;
  }

  .logo-coordinadores{
    grid-column: 4 / 7;
  }

  .logo-autismo{
    grid-column: 1 / 4;
    grid-row: 2 / 3;
  }

  .logo-colegio{
    grid-column: 4 / 7;
    grid-row: 2 / 3;
  }
 
  .logo-galileov{
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  
  .logo-caixa{
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .logo-galileovi{
    grid-column: 3 / 4;
    grid-row: 3 / 4;
  }

  .logo-ayrna{
    grid-column: 5 / 6;
    grid-row: 3 / 4;
  }
}

/*MAIN PAGES FOR THE PROJECTS*/
/* .main-project */
.main-project .title span{
  color: var(--secondarycolor);
  text-shadow: 2px 2px black;
}

.main-project .description p{
  text-align: justify;
}

.main-project .description ul{
  font-size: 1.8rem;
  text-align: left;
}

.main-project .description li{
  padding-left: 2rem;
  text-align: justify;
}

.main-project .description li:before{
  font-family: 'FontAwesome';
  color: var(--primarycolor);
  margin-right: 1rem;
  content: '\f00c';
}

.main-project .description li .red{
  color: red;
}

/* .download */
.download{
  background-image: url(../img/google_play.png);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  height: 50rem;
}

@media (min-width:768px) {
    .download{
      height: 45rem;
    }
}

.download .download-content{
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-content .google-icon a{
  font-size: 10rem;
  color: white;
  margin-right: 3rem;
}

.download-content .google-qr{
  width: 10rem;
}

.download .div-button{
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

/* .team */
/* cards */
.cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.leader .cards{
  justify-content: center;
}

.card{
  flex: 0 0 100%;
  position: relative;
  margin-bottom: 2rem;
}

@media (min-width:768px) {
    .card{
      flex: 0 0 calc(50% - 1rem);
    }
}

.card img{
  border-radius: 0.5rem;
}

.card .content{
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: rgba(92,140,180,0.9);
  width: 100%;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width:768px) {
    .card .content{
      padding-top: 0rem;
      padding-bottom: 0rem;
    }
}
.card .content p,
.card .content a{
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width:768px) {
  .card .content p,
  .card .content a{
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
  }
}

.card .content i{
  margin-right: 1rem;
  color: var(--primarycolor);
}

/* GALLERY */
.images-gallery{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 2rem;
  align-items: center;
}

@media (min-width:768px) {
  .images-gallery{
    grid-template-columns: repeat(3, 1fr);
  }
}

/*NEWS*/
.news-links li{
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  border-bottom: 1px solid var(--primarycolor);
}

.news-links li:last-of-type{
  border-bottom: none;
  margin-bottom: 0;
}

.news-links li:before{
  font-family: 'FontAwesome';
  color: var(--primarycolor);
  margin-right: 1rem;
  content: '\f1ea';
  font-size: 2.2rem;
}

.news-links li:first-of-type:before{
  font-family: 'FontAwesome';
  color: red;
  margin-right: 1rem;
  content: '\f167';
  font-size: 2.2rem;
}

.news-links .link-name{
  font-family: var(--fontStaatliches);
}

.news-links .link-name:after{
  font-family: 'FontAwesome';
  background-color: var(--primarycolor);
  margin-left: 1rem;
  content: '\f0c1';
  font-size: 2rem;
  border-radius: 50%;
  font-weight: normal;
  padding: 0.5rem;
}

.news-links .hid-m{
  display:none;
}
/* @media (min-width:768px) {
  .news-links .link-name:after{
    display:none;
  }
} */

.video{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/*DOWNLOADS*/
.download-no-background{
  background:none;
  height: 45rem;
}

.download-no-background .download-content .google-icon a{
  color: var(--primarycolor);
}

/*PRIVACY*/
.privacy-header .information{
  margin-top: 0;
  margin-bottom: 5rem;
}

.privacy-header .slogan{
  margin-top: 2rem;
}


.privacy-header .div-button{
  text-align: center;
}


.privacy-header .div-button a{
  margin-top: 2rem;
}

@media (min-width:768px) {
  .privacy-header .div-button a:first-of-type{
    margin-right: 2rem;
  }
}

.privacy-section .title span{
  color: var(--secondarycolor);
  text-shadow: 2px 2px black;
}

.privacy-section .description p{
  text-align: justify;
}

.privacy-section .description ul{
  font-size: 1.8rem;
  text-align: left;
}

.privacy-section .description li{
  padding-left: 2rem;
}

.privacy-section .description li:before{
  font-family: 'FontAwesome';
  color: var(--primarycolor);
  margin-right: 1rem;
  content: '\f0a4';
}
