@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@600&family=Fraunces:opsz,wght@9..144,700;9..144,900&display=swap");
body {
  font-family: "Barlow", sans-serif;
  font-family: "Fraunces", serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 18px;
}

.cabecera {
  background-image: url(./images/desktop/image-header.jpg);
  background-size: cover;
  height: 47rem;
  width: 100%;
}
.cabecera .barra {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}
.cabecera .barra .logo img {
  width: 10rem;
}
.cabecera .barra .navegation a {
  margin: 1rem;
  color: #fff;
  text-decoration: none;
  font-family: "barlow";
}
.cabecera .barra .navegation .tok {
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  border: none;
  padding: 1rem 2rem;
  font-family: "fraunces";
  transition: background 0.5s linear;
}
.cabecera .barra .navegation .tok:hover {
  background: #7dd4ff;
  color: #fff;
}
.cabecera .barra .toggle-btn {
  display: none;
}
.cabecera .mega-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cabecera .mega-title .title {
  font-family: "fraunces";
  font-weight: 900;
  color: #fff;
  margin: 6rem;
  font-size: 3rem;
  letter-spacing: 0.5rem;
}
.cabecera .mega-title .arrow {
  display: inline-block;
  animation: jump-down 3s infinite;
}
@keyframes jump-down {
  0%, 50%, 100% {
    transform: translateY(0);
  }
  12%, 37% {
    transform: translateY(20px);
  }
  25% {
    transform: translateY(10px);
  }
}

.first-articule {
  display: flex;
}
.first-articule .text {
  padding: 8rem;
}
.first-articule .text .subtitle {
  font-family: "fraunces";
  font-size: 3rem;
}
.first-articule .text .paragraph {
  font-family: "barlow";
  color: hsl(232, 10%, 55%);
  font-size: 1rem;
  line-height: 1.5rem;
}
.first-articule .text .btn-more {
  background-color: #fff;
  border: none;
  color: #000;
  text-transform: uppercase;
  font-family: "fraunces";
  position: relative;
  z-index: 1;
}
.first-articule .text .btn-more::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  background-color: yellow;
  width: calc(100% + 20px);
  height: 10px;
  border-radius: 10px;
  opacity: 0.3;
  z-index: -1;
  transition: 2s ease;
}
.first-articule .text .btn-more:hover::after {
  cursor: pointer;
  opacity: 1;
}
.first-articule .text .pink::after {
  background-color: #EB4E43;
}
.first-articule img {
  width: 50%;
}
.first-articule .img-info {
  background-image: url(./images/desktop/image-graphic-design.jpg);
  background-size: cover;
  background-position: center;
  height: 37rem;
  width: 80%;
}
.first-articule .img-info .text-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 22rem;
  padding: 0 9rem;
  color: hsl(167, 40%, 24%);
}
.first-articule .img-info .text-img .title-light {
  font-family: "fraunces";
  font-weight: 800;
  font-size: 1.8rem;
}
.first-articule .img-info .text-img .description {
  margin-top: 2px;
  text-align: center;
  font-family: "barlow";
  line-height: 1.8rem;
}
.first-articule .img-info2 {
  background-image: url(./images/desktop/image-photography.jpg);
  background-size: cover;
  background-position: center;
  height: 37rem;
  width: 80%;
}
.first-articule .img-info2 .text-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 22rem;
  padding: 0 9rem;
  color: hsl(198, 62%, 26%);
}
.first-articule .img-info2 .text-img .title-light {
  font-family: "fraunces";
  font-weight: 800;
  font-size: 1.8rem;
}
.first-articule .img-info2 .text-img .description {
  margin-top: 2px;
  text-align: center;
  font-family: "barlow";
  line-height: 1.8rem;
}

.testimonials {
  margin: 8rem;
}
.testimonials .title-test {
  text-align: center;
  font-family: "fraunces";
  text-transform: uppercase;
  color: hsl(210, 4%, 67%);
  margin-bottom: 80px;
  letter-spacing: 0.3rem;
}
.testimonials .testimony {
  display: flex;
}
.testimonials .testimony .person {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonials .testimony .person img {
  border-radius: 50%;
  width: 5rem;
  padding: 0.5rem;
}
.testimonials .testimony .person .text-testimony {
  text-align: center;
  width: 93%;
  font-size: 18px;
  padding-top: 2rem;
  line-height: 1.8rem;
  font-family: "barlow";
  color: hsl(213, 9%, 39%);
}
.testimonials .testimony .person .name {
  margin-bottom: 0;
}
.testimonials .testimony .person .oficio {
  margin-top: 10px;
  font-family: "barlow";
  color: hsl(210, 4%, 67%);
}

.img {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.img img {
  width: 100%;
  display: block;
}

.final {
  background-color: hsl(168, 45%, 57%);
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  justify-content: center;
  align-items: center;
}
.final img {
  width: 15rem;
  padding-bottom: 3rem;
}
.final .contact a {
  margin: 0 2rem;
  text-decoration: none;
  color: hsl(167, 40%, 24%);
  font-family: "barlow";
}
.final .contact a:hover {
  color: #fff;
}
.final .socialmedia {
  display: inline-flex;
}
.final .socialmedia img {
  width: 1.5rem;
  padding-top: 3rem;
  margin: 1rem;
}

@media (max-width: 700px) {
  .cabecera {
    background-image: url(./images/mobile/image-header.jpg);
    background-size: cover;
    background-position: center;
    height: 40rem;
    width: 90%;
  }
  .cabecera .barra {
    position: relative;
    display: Flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 25px;
  }
  .cabecera .barra .navegation {
    background: white;
    position: absolute;
    top: calc(100% + 25px);
    left: 35px;
    right: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    box-shadow: 0 10px 40px hsla(0, 0%, 0%, 0.1);
    transform: scale(0.9);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: 2s ease;
  }
  .cabecera .barra .navegation.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
  }
  .cabecera .barra .navegation::before {
    content: "";
    position: absolute;
    top: -19px;
    right: -20px;
    border: 20px solid transparent;
    border-left-color: white;
    transform: rotate(45deg);
  }
  .cabecera .barra .navegation a {
    color: hsl(213, 9%, 39%);
  }
  .cabecera .barra .navegation .tok {
    background-color: yellow;
  }
  .cabecera .barra .navegation .tok:hover {
    background-color: yellow;
    color: #000;
    box-shadow: 0 0 10px rgb(156, 156, 59);
  }
  .cabecera .barra .toggle-btn {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 25rem;
    width: 100%;
    height: 90px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 23px;
  }
  .cabecera .barra .toggle-btn::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    transform: translateY(-8px);
    transition: 0.5s;
  }
  .cabecera .barra .toggle-btn::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    transform: translateY(8px);
    transition: 0.5s;
    box-shadow: 0 -8px 0 #fff;
  }
  .cabecera .barra .toggle-btn.active::before {
    transform: translateY(0px) rotate(45deg);
  }
  .cabecera .barra .toggle-btn.active {
    width: 250px;
  }
  .cabecera .barra .toggle-btn.active::after {
    transform: translateY(0px) rotate(-45deg);
    box-shadow: 0 0 0 #fff;
  }
  .cabecera .mega-title .title {
    font-size: 2rem;
    text-align: center;
  }
  .first-articule {
    flex-direction: column-reverse;
  }
  .first-articule .text {
    padding: 2rem;
    width: 75%;
  }
  .first-articule .text .subtitle {
    font-size: 2.5rem;
    text-align: center;
  }
  .first-articule .text .paragraph {
    text-align: center;
    font-size: 1.4rem;
    padding: 0.5rem;
    line-height: 30px;
  }
  .first-articule .text .btn-more {
    margin-left: 9rem;
    font-size: 1rem;
  }
  .first-articule img {
    width: 90%;
  }
  .first-articule .img-info {
    width: 90%;
  }
  .first-articule .img-info .text-img {
    width: 80%;
    padding: 0 2.3rem;
  }
  .first-articule .img-info .text-img .description {
    font-size: 18px;
  }
  .first-articule .img-info2 {
    width: 90%;
  }
  .first-articule .img-info2 .text-img {
    width: 80%;
    padding: 0 2.3rem;
  }
  .first-articule .img-info2 .text-img .description {
    font-size: 18px;
  }
  .two {
    flex-direction: column;
  }
  .testimonials {
    margin: 4rem 2rem;
  }
  .testimonials .title-test {
    width: 90%;
  }
  .testimonials .testimony {
    flex-direction: column;
    width: 90%;
  }
  .testimonials .oficio {
    margin-bottom: 4rem;
  }
  .img {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }
  .img img {
    width: 100%;
    height: 100%;
  }
  .final {
    width: 90%;
  }
}/*# sourceMappingURL=styles.css.map */