* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  font-family: Helvetica;
  font-size: 16px;
  line-height: 24px;
  color: rgb(96, 99, 101);
  text-transform: none;
}
:root {
  --crema: #f2cf8d;
  --azul_flechas: #211e3f;
}
.ancho {
  max-width: 1200px;
  margin: auto;
}

.flecha_img img {
  border-radius: 50px;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-left: 60px;
  color: #201f40;
}
header {
  color: #000;
  transition: 0.7s;
  padding: 10px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 90;
}
/*MENU*/
#iconomenu {
  display: none;
}
.contenedorarriba {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.btn_menu {
  font-size: 25px;
  display: none !important;
}
#contenedormenu {
  margin-bottom: 15px;
}

nav ul {
  background-color: #fff;
  color: #000;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  font-family: "Nunito Sans", sans-serif;
  color: var(--crema);
  position: relative;
  padding: 10px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.5s;
  font-weight: bold;
  font-size: 20px;
}
/*TITULO PRINCIPAL*/
.portafolio_container{
  text-align: center;
  color: var(--azul_flechas);
  font-family:"Nunito Sans", sans-serif;
}
.portafolio_container h2{
    font-size: 50px;
    padding-bottom: 20px;
}
.portafolio_container h3{
  font-size: 30px;
  padding-bottom: 20px;
}
.portafolio_container hr{
  border-radius: 10px;
  height: 10px;
  color: var(--crema);
  background-color: var(--crema) ;
}
/*FORMULARIO*/
.form {
  margin: auto;
  background-color: none;
}
.boxes {
  border-radius: 50px;
  margin-top: 30px;
  text-align: center;
}
.squares {
  width: 400px;
  height: 80px;
  text-align: left;
  font-size: 20px;
  color: var(--azul_flechas) !important;
  background-color: var(--crema);
  padding: 10px 10px;
  margin: 20px;
  border: none;
  border-radius: 50px;
}
.E-mail{
  margin-right: 15px;
  width: 850px;
}
.amplitud {
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  width: 850px;
  height: 150px;
  margin: 20px;
  border: 2px #cccccc solid;
  color: #b6b6b6;
  padding-left: 10px;
  padding-top: 10px;
  font-size: 20px;
}
.amplitud{
  border-radius: 50px;
  background-color: var(--crema);
}
input::placeholder{
  color: var(--azul_flechas);
  font-family: "Nunito Sans";
  font-size: 20px;
  padding-left: 30px;
}
textarea::placeholder{
  color: var(--azul_flechas);
  font-family: "Nunito Sans";
  font-size: 20px;
  padding-left: 30px;
  border: none;
  padding-top: 10px;
}
#btn_hire{
  background-color: var(--crema);
  font-size: 20px;
  font-family: "Nunito Sans";
  border-radius: 50px;
  width: 200px;
  height: 50px;
  border: none;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 500px;
  text-align: center;
}
/*FOOTER*/
.fondo_azul {
  display: flex;
  background-color: var(--azul_flechas);
}

.flecha_crema_big {
  margin-right: 20%;
  width: 600px;
  height: 600px;
}
.flecha_crema_big img {
  width: 600px;
  height: 600px;
}
.redes_sociales {
  margin-left: 80%;
  display: flex;
  flex-direction: column;
  color: var(--crema);
  align-items: center;
  justify-content: center;
}
/*CONTEDOR NOMBRES Y REDES SOCIALES*/
.contenedor_iconos{
  text-align: left;
  margin-right: 80%;
  display: flex;
}
.redes_sociales a {
  justify-content: left;
  align-items: left;
  width:290px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 10px;
  font-size: 20px;
  margin-right: 100%;
  text-decoration: none;
  color: var(--crema);
}
.redes_sociales a i{
  margin-bottom: 6px;
  font-size: 40px;
font-weight: bold;
}
.distintivo_l{
  padding-left: 20px;
}
.fa-facebook{
  padding-left: 47px;
}
.fa-youtube{
  padding-left: 30px;
}
.fa-instagram{
  padding-left: 20px;
  padding-right: 14px;
}
.fa-behance{
  padding-left: 23px;
}
.fa-whatsapp{
  padding-left: 32px;
}
@media screen and (max-width: 820px) {
  /*MENU SANDWITCH*/
  .flecha_img img {
    border-radius: 50px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-left: 0px;
    color: #201f40;
  }
  header {
    padding: 10px;
    width: 85%;
  }
  #iconomenu{
    display: block;
    height: 40px;
    width: 40px;
    font-size: 40px;
    border-radius: 3px;
    margin-right: -5%;
  }
  .contenedorarriba {
    padding-top: 20px;
    margin-left: 0px;
    position: relative;
    max-width: 820px;
  }
  .abrirmenu {
    left: 0;
  }
  nav {
    color: #000;
    position: absolute;
    top: 120%;
    left: -150%;
    width: 100%;
    background:  rgba(255, 250, 250, 0.9);
    backdrop-filter: blur (50px);
    transition: all 0.5s;
  }
  nav ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
  nav ul li {
    border-bottom: 1px black double;
    width: 100%;
    padding-left: 20px;
  }
  
  nav ul li a {
    color: #000;
    display: block;
  }
  /*FOOTER*/
  .flecha_crema_big {
    margin-right: 0%;
    width: 600px;
    height: 600px;
  }
  .flecha_crema_big img {
    width: 600px;
    height: 600px;
  }
  .redes_sociales {
    margin-left: 0%;
    display: flex;
    flex-direction: column;
    color: var(--crema);
    align-items: center;
    justify-content: center;
  }
  .contenedor_iconos{
    margin-top: 0px;
    text-align: left;
    margin-right: -10%;
    display: flex;
  }
  .fondo_azul {
    max-width: 900px;
    height: 600px;
    display: flex;
    background-color: var(--azul_flechas);
  }
  .redes_sociales a {
    justify-content: left;
    align-items: left;
    width:290px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 10px;
    font-size: 20px;
    margin-right: 100%;
    text-decoration: none;
    color: var(--crema);
  }
  .ful_img img{
    width: 70%;
    max-width: 1000px;
  }
  .ful_img{
    width:100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contenedor_iconos{
    text-align: left;
    margin-left: -10%;
    display: flex;
  }
    .E-mail{
      width: 500px;
    }
    .amplitud {
      font-family: Arial, Helvetica, sans-serif;
      text-align: left;
      width: 500px;
      height: 150px;
      margin: 0px;
      border: 2px #cccccc solid;
      color: #b6b6b6;
      padding-left: 10px;
      padding-top: 10px;
      font-size: 20px;
    }
    .amplitud{
      border-radius: 50px;
      background-color: var(--crema);
    }
    #btn_hire{
      background-color: var(--crema);
      font-size: 20px;
      font-family: "Nunito Sans";
      border-radius: 50px;
      width: 200px;
      height: 50px;
      border: none;
      margin-top: 20px;
      margin-bottom: 20px;
      margin-left: 40%;
      text-align: center;
    }
 }
 @media screen and (max-width: 790px) {
  .clientes_fondo {
    max-width: 768px;
  }
 }
 @media  screen and (max-width: 414px) {
  nav {
    color: #000;
    position: absolute;
    top: 120%;
    left: -900%;
    width: 150%;
    background:  rgba(255, 250, 250, 1);
    backdrop-filter: blur (50px);
    transition: all 0.5s;
  }
  nav ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
  nav ul li {
    border-bottom: 1px black double;
    width: 300%;
    padding-left: 0%;
  }
  
  nav ul li a {
    color: #000;
    display: block;
  }
  .portafolio_container{
    line-height: 45px;
  }
  .form {
    margin: auto;
    background-color: none;
  }
  .boxes {
    border-radius: 50px;
    margin-top: 30px;
    text-align: center;
  }
  .squares {
    width: 300px;
    height: 80px;
    text-align: left;
    font-size: 20px;
    color: var(--azul_flechas) !important;
    background-color: var(--crema);
    padding: 10px 10px;
    margin: 20px;
    border: none;
    border-radius: 50px;
  }
  .E-mail{
    margin-right: 15px;
    width: 300px;
  }
  .amplitud {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    max-width: 400px;
    height: 150px;
    margin: 0px;
    border: 2px #cccccc solid;
    color: #b6b6b6;
    padding-left: 10px;
    padding-top: 10px;
    font-size: 20px;
  }
  .amplitud{
    border-radius: 50px;
    background-color: var(--crema);
  }
  #btn_hire{
    background-color: var(--crema);
    font-size: 20px;
    font-family: "Nunito Sans";
    border-radius: 50px;
    width: 200px;
    height: 50px;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 25%;
    text-align: center;
  }
  .flecha_crema_big {
    margin-right: 0%;
    width: 393px;
    height: 393px;
  }
  .flecha_crema_big img {
    width: 393px;
    height: 393px;
  }
  .redes_sociales {
    margin-left: 0%;
    display: flex;
    flex-direction: column;
    color: var(--crema);
    align-items: center;
    justify-content: center;
  }
  .contenedor_iconos{
    margin-top: 0px;
    text-align: left;
    margin-left:-2%;
    display: inline-block;
  }
  .fondo_azul {
    max-width: 414px;
    height: 800px;
    display: flex;
    background-color: var(--azul_flechas);
  }
  .redes_sociales a {
    justify-content: left;
    align-items: left;
    width:290px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 10px;
    font-size: 20px;
    margin-right: 0%;
    text-decoration: none;
    color: var(--crema);
  }

 }