@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fdfbf5;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: "Syne", sans-serif;
}

body {
  padding: 1rem;
}

main {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid black;
  padding-top: 3rem;
}

.about {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about p {
  font-weight: 200;
  opacity: 0.8;
}
.about h1 {
  font-weight: 300;
  font-size: 3.8rem;
  width: 80%;
}
.about .image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

.our-values {
  width: 100%;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.our-values .left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.our-values .left h1 {
  font-weight: 400;
  font-size: 3.5rem;
  width: 90%;
}
.our-values .left p {
  font-weight: 200;
  opacity: 0.8;
}
.our-values .left button {
  cursor: pointer;
  padding: 1rem;
  border: 0.7em;
  border-radius: 0.7em;
  background-color: black;
  -webkit-border-radius: 0.7em;
  -moz-border-radius: 0.7em;
  -ms-border-radius: 0.7em;
  -o-border-radius: 0.7em;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
}
.our-values .right {
  width: 100%;
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.our-values .right .right-container {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.our-values .right .right-container svg {
  width: 4rem;
  aspect-ratio: 1/1;
}
.our-values .right .right-container h1 {
  font-weight: 400;
  font-size: 2.5rem;
}
.our-values .right .right-container p {
  font-weight: 200;
  opacity: 0.8;
}
.our-values .line {
  background-color: black;
  height: 1px;
}

@media (min-width: 1020px) {
  main {
    padding: 3rem;
  }
  .about h1 {
    font-size: 7rem;
    width: 100%;
  }
  .our-values {
    flex-direction: row;
  }
  .our-values .left {
    width: 60%;
    justify-content: space-between;
  }
  .our-values .left h1 {
    font-size: 5rem;
    width: 100%;
  }
  .our-values .line {
    height: initial;
    width: 1px;
  }
  .our-values .right {
    width: 40%;
  }
  .our-values .right .line {
    height: 1px;
    width: initial;
  }
}/*# sourceMappingURL=style.css.map */