* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #000000;
  line-height: 1.2;
}


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  font-family: "Manrope", serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1240px;
}

main {
  padding: 0.5rem 0;
}

section {
  margin: 5rem 0;
}

section.intro_section {
  margin-top: 0;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: unset;
  gap: 0.2rem;
}

.breadcrumb li {
  font-size: 12px;
  color: #828282;
  font-weight: 600;
  list-style-type: none;
}

.intro_section__content {
  display: flex;
  align-items: flex-start;
  justify-content: unset;
  gap: 1.5rem;
}

.intro_section__content>* {
  flex: 1 1 calc(50% - 1.5rem);
}

.intro_section__content h2 {
  max-width: 95%;
}

.intro_section__content p {
  max-width: 95%;
}

.intro_section__content.reverse {
  flex-direction: row-reverse;
}

h1 {
  color: #0f6464;
  font-size: 40px;
  margin: 0.5rem 0 1rem;
}

h2 {
  color: #0f6464;
  font-size: 28px;
}

p {
  margin: 0.6rem 0 1rem;
  color: #000000;
}

.overview_items_container {
  display: flex;
  align-items: flex-start;
  justify-content: unset;
  gap: 1rem;
  margin-top: 1rem;
}

.overview_items_container>* {
  flex: 1 1 calc(33.333% - 1rem);
}

.overview_items_container p {
  margin: 0 0 1rem;
  line-height: 1.2;
}

.overview_item h3 {
  font-size: 20px;
}

.offices_wrapper {
  margin-top: 1rem;
  display: flex;
  align-items: stretch;
  justify-content: unset;
  gap: 1rem;
}

.offices_wrapper>* {
  flex: 1;
}

.main_columns {
  display: flex;
  align-items: stretch;
  justify-content: unset;
  gap: 1rem;
}

.office_item {
  border-radius: 6px;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  align-items: unset;
  justify-content: unset;
  flex-direction: column;
}

.oi_content {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: unset;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.oi_content>* {
  flex: 1;
}

.oi_content.column {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex: auto;
}

.oi_content.column .oi_detail_box {
  align-items: flex-start;
}

.oi_content.column .oi_detail_box img {
  margin-top: 0.1rem;
}

.oi_content.column .oi_detail_box span {
  display: flex;
  align-items: center;
  justify-content: unset;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.oi_detail_box {
  display: flex;
  align-items: center;
  justify-content: unset;
  gap: 0.5rem;
}

.oi_detail_box span {
  font-size: 14px;
  display: block;
}

.oi_detail_box span a {
  display: block;
}

.oi_detail_box span a:first-child {
  margin-bottom: 0.1rem;
}

.oi_detail_box span a:hover {
  color: #0b57d0;
}

.services_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: unset;
  margin-top: 1.5rem;
}

.services {
  flex: 6;
  display: flex;
  align-items: unset;
  justify-content: unset;
  flex-wrap: wrap;
  gap: 1rem;
}

.services>* {
  flex: 1 1 calc(25% - 1rem);
  text-align: center;
}

.services>* img {
  display: block;
  margin: auto;
  margin-bottom: 0.5rem;
}

.services>* h3 {
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.services_img {
  flex: 4;
}

.banner {
  margin-top: 3rem;
  position: relative;
  border-radius: 6px;
}

.banner_content {
  position: absolute;
  left: 3rem;
  top: 2rem;
  top: 50%;
  left: 15%;
  translate: 0 -50%;
}

.banner_title {
  font-size: 48px;
  font-weight: 800;
  color: #0f6464;
}

.banner_title.yellow {
  color: #fff273;
  font-size: 34px;
  font-weight: bold;
}

.section_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.section_top h2 {
  flex: 3;
}

.section_top p {
  flex: 7;
  margin-top: 0;
}

.values_wrapper {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: unset;
  gap: 1rem;
}

.values_images {
  display: flex;
  align-items: unset;
  justify-content: unset;
  flex-direction: column;
  row-gap: 1rem;
  flex: 3;
}

.values_images img {
  display: block;
}

.values {
  display: flex;
  align-items: flex-start;
  justify-content: unset;
  column-gap: 3rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  flex: 7;
}

.values>* {
  flex: 1 1 calc(33.33% - 3rem);
}

.value_item h3 {
  font-size: 18px;
  margin-bottom: 0.2rem;
  max-width: 180px;
}

.value_item p {
  margin: 0;
  line-height: 120%;
}

.value_item img {
  margin-bottom: 0.2rem;
}

.story_section {
  display: flex;
  align-items: flex-start;
  justify-content: unset;
  gap: 1rem;
}

.story_section .header_wrapper {
  flex: 3;
  flex-shrink: 0;
}

.story_section .header_wrapper h2 {
  margin-bottom: 1rem;
}

.story_content {
  flex: 7;
}

.story_content p {
  margin-bottom: 0.5rem;
}

.story_content p:last-child {
  margin-bottom: 0;
}

.driven_section .section_top p {
  font-size: 20px;
  line-height: 120%;
  font-weight: bold;
  color: #0f6464;
}

.driven_wrapper {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: unset;
  gap: 1rem;
}

.driven_img {
  flex: 3;
}

.driven_details {
  flex: 7;
  display: flex;
  align-items: flex-start;
  justify-content: unset;
  gap: 3rem;
}

.driven_details>* {
  flex: 1 1 calc(33.33% - 3rem);
}

.driven_details>* hr {
  border: none;
  height: 1px;
  background-color: #27bdbe;
  margin: 0 0 1rem;
}

.driven_details>* h3 {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.driven_details>* p {
  margin: 0;
  line-height: 120%;
}

@media screen and (max-width: 992px) {
  .banner picture img {
    width: 100%;
  }

  .banner_content {
    left: 1.5rem;
    top: 1rem;
    right: 4rem;
    bottom: 2rem;
    display: flex;
    align-items: unset;
    justify-content: space-between;
    flex-direction: column;
    translate: unset;
  }

  .banner_title {
    font-size: 34px;
  }

  .banner_title br {
    display: none;
  }

  .intro_section__content.reverse,
  .intro_section__content {
    flex-direction: column;
  }

  .intro_section__content h2 {
    font-size: 22px;
  }

  section {
    margin: 3rem 0;
  }

  h3 {
    font-size: 18px;
  }

  .overview_items_container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .overview_items_container .overview_item p {
    font-size: 14px;
  }

  .offices_wrapper {
    flex-direction: column;
  }

  .oi_content {
    flex-wrap: wrap;
    row-gap: 1rem;
  }

  .oi_content>* {
    flex-basis: calc(50% - 1rem);
  }

  .sub_offices .office_item {
    flex: 1 1 calc(50% - 1rem);
  }

  .sub_offices .oi_content {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .sub_offices .oi_content>* {
    flex-basis: 100%;
  }

  .services_wrapper {
    flex-direction: column-reverse;
    row-gap: 1rem;
  }

  .services>* {
    flex-basis: calc(50% - 1rem);
  }

  .section_top {
    flex-direction: column;
    row-gap: 0.5rem;
  }

  .values_wrapper,
  .story_section,
  .driven_wrapper {
    flex-direction: column;
  }

  .values {
    gap: 1rem;
  }

  .values>* {
    flex: 1 1 calc(50% - 1rem);
  }

  .header_wrapper {
    display: flex;
    align-items: center;
    justify-content: unset;
    gap: 1rem;
  }

  .driven_details {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .driven_details>* {
    flex: 1 1 calc(50% - 1rem);
  }
}

/*# sourceMappingURL=style.css.map */