/* Google Fonts - start */
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Asap&display=swap');
/* Google Fonts - end */

:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --blue-color: #00283F;
  --cyan-color: #6DCBFF;

}

/*******************************/
/********* General CSS *********/
/*******************************/
body {
  color: var(--black-color);
  background: var(--white-color);
  /* font-family: 'open sans', sans-serif; */
  font-family: 'Asap', sans-serif;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--black-color);
  font-family: 'Satisfy', cursive;
}


h1{
  font-size: 24px; /* titulos */
  text-align: center;
}

h2{
  font-size: 18px; /* header */
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
  color: white;
}

h3{
  font-size: 24px; /* menu */
}

h4{
  font-size: 12px; /* footer */
}

p{
  font-size: 14px;
  line-height: 30px;
}

@media (min-width: 992px){ /* Para anchos desde 992px a mas */
  h1{
    font-size: 64px;
  }
  
  h2{
    font-size: 30px;
  }
  
  h3{
    font-size: 24px;
    line-height: 35px;
  }
  
  h4{
    font-size: 24px;
    line-height: 35px;
  }
  
  p{
    font-size: 24px;
    line-height: 40px;
  }
}

@media (max-width: 991.98px){ /* Para anchos desde 0 hasta 991.98px */
  
}


.fondo-azul{
  background-color: var(--blue-color);
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/

.navbar-header{ /* Header con fondo azul */
  display: flex;
  justify-content: center;
  
  background-color: var(--blue-color);
  text-decoration: none;
  color: var(--white-color);
}

.navbar-icono{ /* iconos de facebook e instagram */
  font-size: 1.5rem;
  margin-top: 10px;
  color: var(--white-color);
}

.navbar-margin{
  margin-top: 8px;
}

@media (min-width: 992px){ /* Para anchos desde 992px a mas */
  .navbar-icono{
    font-size: 2rem;
    margin-top: 20px;
  }
  
  .navbar-icono:hover{
    color: var(--cyan-color);
  }
  
  .navbar-margin{
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991.98px){ /* Para anchos desde 0 hasta 991.98px */
  
}


/**********************************/
/*********** First Block **********/
/**********************************/

.firstblock-fondo{
  background-image: url(../img/top_half_right.png);
  background-repeat: no-repeat;
  background-position: center;
  height: auto;
}

.firstblock-h1{
  padding-top: 210px;
  margin-top: 0;
}

.firstblock-p{
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
}

@media (min-width: 992px){ /* Para anchos desde 992px a mas */
  .firstblock-fondo{
    background-size: 40% auto;
    background-position: right;
  }
  
  .firstblock-h1{
    padding-top: 100px;
  }

  .firstblock-p{
    text-align: center;
    padding-top: 50px;
    padding-left: 20%;
    padding-right: 20%;
  }
  
  .end-p{
    padding-bottom: 66px;
  }
  
  .margin-cero{
    margin: 0;
  }
}

@media (max-width: 991.98px){ /* Para anchos desde 0 hasta 991.98px */
  
}


/**********************************/
/*********** Second Block *********/
/**********************************/

.secondblock-img{
  height: 100%;
  width: 100%;
  padding-top: 66px;
}


@media (min-width: 992px){ /* Para anchos desde 992px a mas */
  .secondblock-img{
    padding-top: 0;
  }
}

/**********************************/
/*********** Third Block **********/
/**********************************/

.thirdblock-fondo{
  background-image: url(../img/fish_left.png);
  background-repeat: no-repeat;
  background-position: left;
  height: auto;
}

.thirdblock-h1{
  text-align: center;
  margin-top: 0;
  padding-top: 123px;
  padding-bottom: 34px;
}

.thirdblock-div{
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  /* margin-left: auto;
  margin-right: auto; */
  margin-left: 3%;
  margin-right: 3%;
  padding-bottom: 40px;
}

.thirdblock-h3{
  margin-left: 0px;
  margin-top: 0;
  text-align: center;
}

.thirdblock-alldiv{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.thirdblock-img{
  width: 100%;
  height: auto;
}

@media (min-width: 576px){ /* Para anchos desde 992px a mas */
  .thirdblock-alldiv{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .thirdblock-div{
    margin-left: 3%;
    margin-right: 3%;
    /* margin-left: auto;
    margin-right: auto; */
  }
}

@media (max-width: 991.98px){ /* Para anchos desde 0 hasta 991.98px */
}


/**********************************/
/*********** Fourth Block *********/
/**********************************/

.fourthblock-fondo{
  background-image: url(../img/footer_bottom_img_2.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
  color: white;
}

.fourthblock-white{
  text-align: center;
  color: white;
}

.end{
  margin-bottom: 0;
  padding-bottom: 16px;
}

.fourthblock-cyan{
  color: #6DCBFF;
}

.fourthblock-icono{ /* iconos de facebook e instagram */
  font-size: 1.5rem;
  margin-top: 10px;
  color: var(--white-color);
}

.fourthblock-margin{
  margin-top: 8px;
}

.fourthblock-header{
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: var(--white-color);
  padding-bottom: 20px;
  padding-top: 20px;
}

.fourthblock-flex{
  padding-bottom: 20px;
}

@media (min-width: 992px){ /* Para anchos desde 992px a mas */
  .fourthblock-flex{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  
  .h4-flex{
    margin-left: 5%;
    margin-right: 5%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .desk-hide{
    display: none;
  }
  
  .fourthblock-icono{
    font-size: 2rem;
    margin-top: 20px;
  }
  
  .fourthblock-icono:hover{
    color: var(--cyan-color);
  }
}

@media (max-width: 991.98px){ /* Para anchos desde 0 hasta 991.98px */
}