body {
  font-family: 'Open Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
  padding: 0 0.5rem;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  margin-bottom: 4rem;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.img {
  width: 5rem;
  max-width: 100%;
  @media screen and (min-width: 768px) {
    width: 8rem;
  }
}
.title {
  font-size: 1.75rem;
  @media screen and (min-width: 768px) {
    font-size: 2.5rem;
  }
}
.social-links {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  flex-wrap: nowrap;
  @media screen and (min-width: 768px) {
    gap: 1rem;
    flex-direction: row;
  }
}
.social-link {
  width: 1.75rem;
  display: flex;
  align-content: center;
  @media screen and (min-width: 768px) {
    width: 2.25rem;
  }
}
.social-link.fb:hover {
  fill: #4267b2;
}
.social-link.in:hover {
  fill: #e1306c;
}
.section {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  margin-bottom: 5rem;
  gap: 1.5rem;
  flex-direction: column;
  @media screen and (min-width: 768px) {
    gap: 3rem;
    flex-direction: row;
  }
  @media screen and (min-width: 1024px) {
    align-items: center;
  }
}
.section-2 {
  flex-direction: column;
  @media screen and (min-width: 768px) {
    flex-direction: row-reverse;
  }
}
.section-image {
  flex: 1;
  display: flex;
}
.section-content {
  flex: 1;
}
.section-title {
  margin: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  font-style: normal;
  font-size: 1.75rem;
  line-height: 1.25;
  @media screen and (min-width: 768px) {
    font-size: 2.5rem;
  }
}
.section-text {
  margin: 0;
  font-size: 1.25rem;
}
.photo {
  max-width: 100%;
  aspect-ratio: auto 608 / 405;
  border-radius: 1rem;
  box-shadow: 0 18px 50px -10px #0003;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.font {
  font-family: "Mansalva", sans-serif;
}
.icon {
  transition: all 0.2s;
  width: 2.5rem;
}
.text-link {
  font-weight: 700;
  color: #000;
  transition: all 0.2s;
}
.text-link:hover {
  color: #1c8dd8;
}
.action {
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: -2rem;
  @media screen and (min-width: 426px) {
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 0rem;
  }
}
.arrow img {
  max-width: 4rem;
  transform: rotate(90deg);
  @media screen and (min-width: 426px) {
    transform: rotate(0deg);
  }
}
.link-wrapper {
  max-width: 312px;
  @media screen and (min-width: 840px) {
    max-width: none;
  }
}
.link {
  display: block;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: all 0.2s;
  @media screen and (min-width: 768px) {
    font-size: 2.5rem;
  }
}
.link:hover {
  color: #1c8dd8;
}
