:root{
  --primary: #1FF19F;
  --primary-light: #C7F9E4;
  --secondary: #031544;
  --secondary-light: #3D63B7;

  --white: #FFFFFF;
  --black: #282828;
  --gray: #DBDBDB;
}

body{
  background: var(--secondary);
  color: var(--white);
  font-family: 'Encode Sans', sans-serif;
}

section#unete{
  background: var(--secondary-light);
  color: var(--white);
}

footer{
  background-color: var(--gray);
}

img {
  width: 100%;
}

.wrapper {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  flex-flow: row wrap;
  margin: auto;
}

header .wrapper{
  justify-content: space-between;
  padding-top: 2rem;
}

.header-logo {
  width: 75%;
}

.btn-menu{
  width: 44px;
  height: 44px;
}

.header-nav {
  display: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-bottom: 180px;
  text-align: center;
}

.active {
  display: flex;
}

.header-nav a {
  padding: 2rem 1rem;
  font-size: 2rem;
  text-decoration: none;
  color: var(--white);
}

#hero .wrapper {
  height: auto;
}

.hero-img, .hero-title, .hero-desc, .hero-container  {
  flex-basis: 100%;
}

.hero-title {
  margin-top: 1rem;
}

.hero-title h2{
  font-size: 2.2rem;
  font-weight: 100;
}

.hero-title h2 b {
  font-weight: 500;
  color: var(--primary);
}

.hero-desc {
  font-weight: 400;
  padding-top: 1rem;
  margin-bottom: 4rem;
  font-size: 1.2rem;
  padding-right: 2rem;
}

.hero-img{
  margin: 2rem auto;
}

/* end hero */

/* unete */

#unete {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

#unete .wrapper {
  gap: 2rem;
  padding-bottom: 6rem;
}

.unete-h4{
  font-weight: 400;
  font-size: 1.2rem;
}

.unete-h6{
  font-weight: 100;
  font-size: 1rem;
}

.unete-h3 {
  font-size: 1.75rem;
  font-weight: 500;
}

.unete-img{
  width: 280px;
  position: absolute;
  bottom: -50px;
  right: -50px;
  z-index: 0;
}

/* end unete */

/* footer */

footer { 
  position: relative;
  color: var(--black);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

footer .links, footer .header-logo { 
  flex-basis: 100%;
}



.links ul {
  margin: 1.5rem 0;
  font-size: 1.1rem;
}

.links li { 
  padding: 0.5rem 0;
}

.head {
  font-weight: 500;
}

li.line  {
  padding-top: 0.2rem; 
  margin-bottom: 0.5rem;
  border-bottom: solid 1px var(--black);
}

.whatsapp {
  width: 66px;
  height: 66px;
  background-color: var(--black);
  padding: 1rem;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: 50%;
}

/* end footer */

#subheader .hero-title {
  padding: 32px 0;
  text-align: center;
}

#experiencias, #nosotros {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--white);
}

#experiencias .exp-desc {
  padding-bottom: 4rem;
  font-size: 1.5rem;
  color: var(--secondary);
  text-align: center;
}

#experiencias .exp-card,
#nosotros .nos-card {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 32px;
}

#experiencias .exp-card.card-inverted,
#nosotros .nos-card.card-inverted {
  flex-direction: column-reverse;
}

#experiencias .exp-card-header,
#nosotros .nos-card-header {
  padding: 2rem;
}

#experiencias .exp-card-header h3,
#nosotros .nos-card-header h3 {
  margin-bottom: 1rem;
}

#experiencias .exp-card-picture {
  padding: 2rem;
}
#experiencias .exp-card.card-normal .exp-card-header {
  background-color: var(--primary-light);
  color: var(--secondary);
}

#experiencias .exp-card.card-inverted .exp-card-header {
  background-color: var(--secondary);
  color: var(--primary-light);
}



#experiencias .exp-card.card-inverted .exp-card-picture {
  background-color: var(--primary-light);
}

#experiencias .exp-card.card-normal .exp-card-picture {
  background-color: var(--secondary);
}

#nosotros .nos-card.card-normal { 
  flex-direction: column-reverse;
}

#nosotros .nos-card .nos-card-header {
  background-color: var(--secondary);
  color: var(--white);
}



@media screen and (min-width: 768px) {
  .btn-menu{
    display: none;
  }
  .header-logo {
    width: 300px;
  }

  header .wrapper{
    flex-flow: row wrap;
    padding-bottom: 2rem;
  }
  .header-nav {
    display: flex;
    flex-direction: row;
    height: auto;
    width: auto;
    padding-bottom: 0;
  }
  .header-nav a {
    padding: 0rem 1rem;
    font-size: 1rem;
  }
  #hero .wrapper {
    min-height: 70vh;
    align-items: center;
  }
  .hero-img, .hero-title, .hero-desc, .hero-container {
    flex-basis: 50%;
  }
  .hero-img {
    order: 2;
    margin: 0;
    margin-bottom: 2rem;
  }
  .hero-desc{
    margin: 0;
  }

  #experiencias .exp-desc {
    max-width: 768px;
    margin: auto;
    font-size: 1.7rem;
  }
  #experiencias .exp-card{
    flex-flow: row nowrap;
    margin-bottom: 3rem;
  }
  
  #experiencias .exp-card.card-inverted {
    flex-direction: row-reverse;
  }
  #experiencias .exp-card .exp-card-header {
    flex-basis: 50%;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #experiencias .exp-card .exp-card-picture {
    flex-basis: 50%;
    padding: 3rem;
  }
  #experiencias .exp-card .exp-card-picture img{
    width: 70%;
    margin: auto;
  }

  #experiencias .exp-card-header h3,
  #nosotros .nos-card-header h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  #experiencias .exp-card-header p,
  #nosotros .nos-card-header p {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 1200px) {
  .wrapper { 
    max-width: 1300px;
  }
  .hero-title h2{
    font-size: 3rem;
  }
  .unete-img{
    width: 677px;
    position: absolute;
    bottom: -50px;
    right: -50px;
    z-index: 0;
  }
  #unete .wrapper{
    flex-direction: column;
  }
  .unete-h3, .unete-h4, .unete-h6{
    width: 600px;
  }
  footer .header-logo {
    flex-basis: auto;
    width: 300px;
    margin-bottom: 1rem;
  }
  .links {
    display: flex;
    justify-content: space-between;
  }
  .links ul {
    flex-basis: 18%;
  }

  #nosotros .nos-card{
    flex-flow: row nowrap;
    margin-bottom: 3rem;
  }
  
  #nosotros .nos-card.card-inverted {
    flex-direction: row-reverse;
  }
  #nosotros .nos-card .nos-card-header {
    flex-basis: 50%;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #nosotros .nos-card .nos-card-picture {
    flex-basis: 50%;
    overflow: hidden;
  }

  #nosotros .nos-card .nos-card-picture img {
    width: 130%;
    max-width: 130%;
    height: 100%;
    margin: auto;
  }
  #nosotros .nos-card.card-normal { 
    flex-direction: row;
  }
}