@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');

    :root {
        /*========== Colors ==========*/
    --close-color: hsl(0, 83%, 23%);
    --text-color: #2B2B2B;
    --white-color: hsl(232, 100%, 99%);
    --button-color: #00ff9d;;
    --segundario-color: #4625c2;
    --title-color:#171E33;
    
  /*========== Font and typography ==========*/
  --fontfamili-font: 'Open Sans', sans-serif;
  --text-font-size: 1.3rem;
  --h1-font-size: 2.5rem;

  --h3-font-size: 1rem;
  --h4-font-size: .8rem;
  --boton-font-size: .938rem;

  /*========== font weight ==========*/
  
  --font-bold:700;
  --font-regular:400;
  --font-extra-light:300;


}

@media screen and (min-width: 968px) {
  :root {
  --text-font-size: 1rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1rem;
  --h3-font-size: .5rem;
  --h4-font-size: .4rem;
  --boton-font-size: .7rem;
  }
 
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  height: auto;

  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  margin: 0;
  height: auto; 
  place-items:center;
}

label{
  font-family: var(--fontfamili-font);
  color:#047596;
}

h1, h2, h3,h4 {
  color: var(--title-color);
  text-align: center;
  font-family: var(--fontfamili-font);
  font-weight: var(--font-regular);
  
}

p{
  font-family: var(--fontfamili-font);
  font-weight: var(--font-regular);
  color:white;
  
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
  font-family: var(--fontfamili-font);
  font-weight: var(--font-regular);
  color: white;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--fontfamili-font);
  font-size: var(--font-regular);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}
.nav__link{
  font-family: var(--fontfamili-font);
  font-weight: var(--font-regular);

}
.main {
  overflow-x: hidden;
}

.activo{
  color: white;
}
.active__cubo{
  background: var(--button-color);
}

  /*=============== FOTTER ===============*/
  fotter{
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--title-color);
    padding: 20px 0px;
    color: white;
    align-items: center;
    
  }
fotter h1{
  font-size: 1.5rem;
  color: white;
}
  .location{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .iconos{
    text-align: center;
  }
  
  .icon__red{
    font-size: var(--h2-font-size);
  }
  @media screen and (min-width: 767px) {
    fotter{
      flex-direction: row;
      align-items: center;
      justify-content: space-around;
      padding: 10vh;
    }

  }

  /*=============== FOTTER ===============*/
