* {
  margin: 0;
  padding: 0;
}

:root {
  --body-margin: 60px;
  --background-color: #f5f5f5;
  --text-color: #272726;
  --button-bg: #c2d9b9;
  --button-color: #010101;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-weight: 400;
  line-height: 24px;
  overflow-x: hidden;
  color: var(--text-color);
  font-optical-sizing: auto;
  font-family: "Inter", sans-serif;
  background-color: var(--background-color);
  transition: all 0.5s;
}

section h2 {
  font-weight: 300;
  font-size: 72px;
  line-height: 80px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

section h3 {
  font-weight: 300;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.tell-me-more {
  font-size: 16px;
  letter-spacing: 1px;
  width: 240px;
  height: 50px;
  background: var(--button-bg);
  border: none;
  box-shadow: none;
  text-transform: uppercase;
  color: var(--button-color);
}

.header {
  height: 100vh;
  width: 100%;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--body-margin);
  padding-top: 24px;
  z-index: 9;
  position: relative;
}

.header__nav__logo {
  font-size: 1.5rem;
  font-weight: 700;
  height: 70px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.header__nav__logo .logo-small {
  display: none;
}

.header__nav__nav-links__mobile {
  display: none;
}

.header__nav__nav-links {
  width: 45%;
  padding: 8px 12px;
  list-style: none;
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  justify-content: flex-end;
  border-bottom: 1px solid var(--text-color);
}

.header__nav__nav-links li a {
  text-decoration: none;
  text-align: center;
  line-height: 16.94px;
  letter-spacing: 3px;
  color: var(--text-color);
}

.header__hero {
  height: 100dvh;
  display: flex;
  background-color: var(--text-color);
  margin-top: -94px;
  z-index: 1;
}

.header__hero__content {
  color: #ffffff;
  width: 50%;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  height: calc(100dvh - 188px);
  padding: 94px var(--body-margin);
}

.header__hero__content .tell-me-more {
  margin-top: 24px;
}

.header_hero_title {
  display: flex;
  max-width: 500px;
  flex-direction: column;
}

.header_hero_title h1 {
  font-weight: 300;
  font-size: 80px;
  line-height: 92px;
}

.header_hero_title h1:nth-child(2) {
  text-align: right;
}

.header__hero__image {
  width: 50%;
  height: 100%;
  /* padding: 94px var(--body-margin); */
  background-image: url("../images/hero-image.jpg");
  background-size: cover;
  background-position: center;
  align-items: flex-start;
}

.header_hero_text {
  padding-left: 92px;
  max-width: 500px;
}

.approach-section {
  display: flex;
  background-color: var(--text-color);
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  position: relative;
}

.approach-section__circle {
  content: "";
  position: absolute;
  top: 0;
  width: 108vw;
  height: 50vw;
  background-color: var(--background-color);
  clip-path: ellipse(50% 100% at 50% 100%);
  z-index: 0;
}

.approach-section__content {
  z-index: 1;
  max-width: 820px;
  margin: auto;
  padding: 0 var(--body-margin);
  background: var(--background-color);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  padding-bottom: 140px;
}

.approach-section__content h2 {
  margin-bottom: 28px;
}

.approach-section__content p {
  /* font-size: 22px;
  line-height: 26px; */
}

.approach-section__content .tell-me-more {
  margin-top: 32px;
}

.offerings-section {
  padding-bottom: 100px;
}

.offerings-content {
  display: flex;
  justify-content: center;
  padding: 0 var(--body-margin);
  margin-left: 20px;
}

.offerings-content__item {
  width: 33.33%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  text-align: center;
  margin-left: -40px;
}

.offerings-content__item__text {
  padding: 20px 80px;
}

.offerings-content__item h3 {
  font-weight: 300;
  font-size: 32px;
  line-height: 38.4px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.mission-section {
  display: flex;
}

.mission-section__image {
  width: 50%;
  background-image: url("../images/mission-image.jpeg");
  background-size: cover;
  background-position: center;
  height: 700px;
}

.mission-section__content {
  flex: 1;
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 var(--body-margin);
}

.mission-section__title {
  display: flex;
  flex-direction: column;
}

.mission-section__content h2 {
  text-align: left;
  margin: 0;
}

.mission-section__content h2:nth-child(2) {
  padding-left: 60px;
}

.mission-section__text {
  padding-left: 120px;
  margin-top: 28px;
}

.mission-section__text .tell-me-more {
  margin-top: 28px;
}

.testimonials-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 140px var(--body-margin);
  background-color: var(--text-color);
}

.testimonials-section__content {
  font-size: 22px;
  line-height: 26px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 8px 16px;
  margin-top: 16px;
}

.testimonials-section__content .quote-left {
  position: absolute;
  top: -28px;
  left: -16px;
  font-size: 32px;
}

.testimonials-section__content .quote-right {
  position: absolute;
  bottom: -28px;
  right: -16px;
  font-size: 32px;
}

.testimonials-section .rating {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  color: #c2d9b9;
}

.team-section {
  position: relative;
  display: flex;
}

.team-section::after {
  content: "";
  position: absolute;
  right: 0;
  width: 25%;
  height: 100%;
  background-color: var(--text-color);
  z-index: 0;
}

.team-section__title {
  display: flex;
  flex-direction: column;
}

.team-section__content {
  padding: 0 var(--body-margin);
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-section__content h2 {
  text-align: left;
  margin: 0;
}

.team-section__content h2:nth-child(2) {
  padding-left: 60px;
}

.team-section__text {
  padding-left: 120px;
  margin-top: 28px;
}

.team-section .tell-me-more {
  margin-top: 32px;
}

.team-section__image {
  width: 50%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-image: url("../images/team-image.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.contact-section {
  display: flex;
}

.contact-section__image {
  width: 50%;
  background-image: url("../images/contact-image.jpeg");
  background-size: cover;
  background-position: center;
  height: 700px;
}

.contact-section__content {
  flex: 1;
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 var(--body-margin);
  color: var(--background-color);
  background-color: var(--text-color);
}

.contact-section__title {
  display: flex;
  flex-direction: column;
}

.contact-section__content h2 {
  text-align: left;
  margin: 0;
}

.contact-section__content h2:nth-child(2) {
  padding-left: 60px;
}

.contact-section__content form {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.contact-section__content input,
.contact-section__content textarea {
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 8px;
}

.contact-section__content textarea {
  height: 100px;
}

.contact-section__content button {
  height: 40px;
  text-transform: uppercase;
  outline: none;
  border: none;
  border-radius: 5px;
}

.contact-section__content button:hover {
  background-color: #ddd;
}

footer {
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
  background-color: #f7f6fb;
  justify-content: space-between;
  padding: 20px var(--body-margin);
}

.footer-links {
  gap: 20px;
  display: flex;
  justify-content: center;
}

.footer-right a,
.footer-links a {
  text-decoration: none;
  color: var(--text-color);
}

.footer-right {
  display: flex;
  gap: 30px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: self-end;
}

.footer-right a {
  margin-bottom: 10px;
}

/* Extra large: xl	 */
@media (max-width: 1399px) {
  :root {
    --body-margin: 60px;
  }

  section h2 {
    font-size: 66px;
    line-height: 74px;
  }

  section h3 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  .mission-section__content h2:nth-child(2),
  .contact-section__content h2:nth-child(2),
  .team-section__content h2:nth-child(2),
  .mission-section__content h2:nth-child(2) {
    padding-left: 50px;
  }

  .mission-section__text,
  .team-section__text,
  .mission-section__text {
    padding-left: 100px;
  }
}

/* Extra Large: lg	 */
@media (max-width: 1199px) {
  :root {
    --body-margin: 50px;
  }

  section h2 {
    font-size: 62px;
    line-height: 70px;
    margin-bottom: 20px;
  }

  section h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .header__nav__nav-links {
    display: none;
  }

  .header__nav__nav-links__mobile {
    display: flex;
    font-size: 24px;
    color: var(--text-color);
    gap: 20px;
  }

  .header__nav__nav-links__mobile a {
    color: var(--text-color);
  }

  .header_hero_title h1 {
    font-weight: 300;
    font-size: 72px;
    line-height: 84px;
  }

  .header_hero_title h1:nth-child(2) {
    text-align: center;
  }

  .header_hero_text {
    padding-left: 0;
    max-width: 100%;
  }

  .mission-section__content h2:nth-child(2),
  .contact-section__content h2:nth-child(2),
  .team-section__content h2:nth-child(2),
  .mission-section__content h2:nth-child(2) {
    padding-left: 40px;
  }

  .mission-section__text,
  .team-section__text,
  .mission-section__text {
    padding-left: 80px;
  }

  .approach-section:after {
    position: absolute;
    content: "";
    background: var(--background-color);
    height: 100px;
    left: 0;
    right: 0;
    top: calc(100% - 100px);
  }
}

/* Extra Medium: md	 */
@media (max-width: 991px) {
  :root {
    --body-margin: 40px;
  }

  section h2 {
    font-size: 58px;
    line-height: 66px;
  }

  section h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .header_hero_title h1 {
    font-weight: 300;
    font-size: 55px;
    line-height: 68px;
  }

  .approach-section__content {
    padding-bottom: 80px;
  }

  .mission-section__image,
  .contact-section__image {
    width: 45%;
  }

  .mission-section__content h2:nth-child(2) {
    padding-left: 32px;
  }

  .mission-section__text {
    padding-left: 64px;
  }

  .contact-section__content h2:nth-child(2) {
    padding-left: 32px;
  }

  .mission-section__content h2:nth-child(2),
  .contact-section__content h2:nth-child(2),
  .team-section__content h2:nth-child(2),
  .mission-section__content h2:nth-child(2) {
    padding-left: 30px;
  }

  .mission-section__text,
  .team-section__text,
  .mission-section__text {
    padding-left: 60px;
  }
}

/* Extra Small: sm	 */
@media (max-width: 767px) {
  :root {
    --body-margin: 28px;
  }

  section h2 {
    font-weight: 300;
    font-size: 54px;
    line-height: 64px;
  }

  section h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .header {
    height: auto;
    margin-bottom: -1px;
  }

  .header__nav {
    padding-top: 16px;
  }

  .header__nav__logo {
    height: 66px;
  }

  .header__nav__logo .logo-big {
    display: none;
  }

  .header__nav__logo .logo-small {
    display: block;
  }

  .header__hero {
    flex-direction: column-reverse;
    margin-top: -84px;
    height: auto;
  }

  .header__hero__content {
    height: auto;
    width: calc(100% - 40px);
    padding: 44px var(--body-margin);
    padding-bottom: 48px;
  }

  .header_hero_title h1 {
    font-size: 55px;
    line-height: 64px;
  }

  .header_hero_title h1:nth-child(2) {
    text-align: left;
    padding-left: 40px;
  }

  .header__hero__image {
    width: 100%;
    height: 300px;
  }

  .approach-section {
    padding-top: 124px;
  }

  .approach-section__content {
    padding-bottom: 80px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-right .logo {
    height: 48px;
  }

  .mission-section__content h2:nth-child(2),
  .contact-section__content h2:nth-child(2),
  .team-section__content h2:nth-child(2),
  .mission-section__content h2:nth-child(2) {
    padding-left: 20px;
  }

  .mission-section__text,
  .team-section__text,
  .mission-section__text {
    padding-left: 40px;
  }
}

/* Extra small */
@media (max-width: 576px) {
  :root {
    --body-margin: 20px;
  }

  section h2 {
    font-size: 40px;
    line-height: 48px;
  }

  section h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .header {
    height: auto;
  }

  .header__nav {
    padding-top: 16px;
  }

  .header__nav__logo {
    height: 60px;
  }

  .header__hero {
    flex-direction: column-reverse;
    margin-top: -76px;
  }

  .header__hero__content {
    width: calc(100% - 40px);
    padding: 44px var(--body-margin);
    padding-bottom: 48px;
  }

  .header_hero_title h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .header_hero_title h1:nth-child(2) {
    text-align: left;
    padding-left: 0;
  }

  .header__hero__image {
    width: 100%;
    height: 320px;
  }

  .approach-section {
    padding-top: 80px;
  }

  .approach-section__content {
    /* border-top-left-radius: 20%;
    border-top-right-radius: 20%; */
    padding-bottom: 68px;
  }

  .offerings-section {
    padding-bottom: 0;
  }

  .offerings-content {
    margin-left: 0;
  }

  .offerings-content__item {
    display: none;
    width: 100%;
    margin-left: 0;
  }

  .offerings-content__item__text {
    padding: 20px 40px;
  }

  .offerings-content__item:nth-child(1) {
    display: flex;
  }

  .mission-section {
    padding-bottom: 80px;
    flex-direction: column;
    overflow: hidden;
  }

  .mission-section__image {
    width: 75vw;
    height: 75vw;
    margin-left: 65vw;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
  }

  .mission-section__content {
    margin-top: -90px;
    width: 90%;
  }

  .testimonials-section {
    padding: 80px var(--body-margin);
  }

  .testimonials-section__content .quote-left {
    left: -4px;
  }

  .testimonials-section__content .quote-right {
    right: -4px;
  }

  .team-section {
    flex-direction: column-reverse;
  }

  .team-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 50vw;
    background-color: var(--text-color);
    z-index: 0;
  }

  .team-section__image {
    width: 100vw;
  }

  .team-section__content {
    width: calc(100% - 40px);
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .team-section__content h2:nth-child(2) {
    padding-left: 36px;
  }

  .team-section__text {
    padding-left: 72px;
  }

  .contact-section {
    flex-direction: column;
  }

  .contact-section__image {
    width: 100vw;
    height: 90vw;
  }

  .contact-section__content {
    width: calc(100% - 40px);
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-section__content h2:nth-child(2) {
    padding-left: 36px;
  }

  form {
    margin-top: 20px;
  }

  footer {
    gap: 12px;
    flex-direction: column;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-right {
    gap: 24px;
  }

  .mission-section__content h2:nth-child(2),
  .contact-section__content h2:nth-child(2),
  .team-section__content h2:nth-child(2),
  .mission-section__content h2:nth-child(2) {
    padding-left: 0;
  }

  .mission-section__text,
  .team-section__text,
  .mission-section__text {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .approach-section__content {
    border-top-left-radius: 25%;
    border-top-right-radius: 25%;
  }
}
