* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  background-color: white;
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  max-width: 1440px;
  margin: 0 auto;
}

.content {
  position: absolute;
  max-width: 1440px;
  width: 100vw;
  max-height: 120rem;
}

#highlight {
  color: #ffb800;
}

button,
.button {
  appearance: none;
  border: none;
  background-color: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  margin: 5rem 8rem 5rem 8rem;
}

.display-none {
  display: none;
}

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

.underline {
  text-decoration: underline;
  text-decoration-color: #ffb800;
  width: fit-content;
  white-space: nowrap;
}

.wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.background_container {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

.background_hexagon_img {
  position: absolute;
  bottom: 0;
  height: 250rem;
  z-index: -1;
  object-fit: cover;
  object-position: -30rem 168rem;
}

@media only screen and (max-width: 1100px) {
  section {
    margin: 5rem 4rem;
  }
}
@media only screen and (max-width: 1000px) {
  .background_hexagon_img {
    object-position: -55rem 175rem;
  }
}
@media only screen and (max-width: 900px) {
  .background_hexagon_img {
    object-position: -55rem 170rem;
  }
}
@media only screen and (max-width: 750px) {
  section {
    padding: 1rem;
    margin: 1rem;
  }
  .background_hexagon_img {
    object-position: -72rem 165rem;
  }
}
@media only screen and (max-width: 670px) {
  section {
    padding: 1rem;
    margin: 0.5rem;
  }
  h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .background_hexagon_img {
    object-position: -72rem 166rem;
  }
}
@media only screen and (max-width: 420px) {
  .background_hexagon_img {
    object-position: -72rem 161rem;
  }
}
@media only screen and (max-width: 375px) {
  h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
body:has(.header.open) {
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  height: 100px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #1a2257;
  z-index: 999;
  max-width: 1440px;
  background-color: white;
  transition: background-color 500ms;
  top: 0;
}
.header.scrolled {
  background-color: #2f6c1c;
  color: white;
}
.header__mobile-menu {
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  background-color: none;
}
.header__logo {
  display: flex;
  cursor: pointer;
}
.header__logo > img {
  height: 45px;
}
.header__wrapper {
  display: flex;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__menu__close {
  display: none;
  cursor: pointer;
  width: 24px;
  justify-content: center;
  align-items: center;
}
.header__menu__item {
  cursor: pointer;
  font-weight: 400;
  position: relative;
}
.header__menu__item::after {
  position: absolute;
  content: "";
  background-color: #1a2257;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  transition: width 0.2s ease-in-out;
}
.header__menu__item:hover::after {
  width: 100%;
}
.header__button {
  font-weight: 700;
  padding: 0 50px;
  height: 48px;
  color: #2f6c1c;
  border: 1px solid rgba(47, 108, 28, 0.3);
  transition: color 500ms;
}
.header__button.scrolled {
  color: white;
  border: 1px solid white;
}
.header__button:hover {
  background-color: #2f6c1c;
  color: white;
}

@media only screen and (max-width: 900px) {
  .header {
    height: 80px;
    width: 100vw;
    padding: 10px 30px;
    max-width: 900px;
  }
  .header__button {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 670px) {
  .background_hexagon:has(.header.open) {
    background-image: none;
  }
  .header {
    column-gap: 20px;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    grid-template-rows: auto;
  }
  .header__logo {
    order: 2;
    margin-right: auto;
  }
  .header__mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header__mobile-menu__bar {
    width: 24px;
    height: 3px;
    background-color: #2f6c1c;
    transition: background-color 500ms;
    margin-top: 5px;
  }
  .header__mobile-menu__bar.scrolled {
    background-color: white;
  }
  .header__menu {
    order: 1;
    display: none;
  }
  .header__wrapper {
    display: none;
  }
  .header.open {
    overflow: hidden;
    grid-template-rows: 60px 1fr;
    height: 100%;
  }
  .header.open .header__wrapper {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    justify-content: flex-start;
    background-color: rgb(242, 248, 240);
    align-items: center;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 100px;
    width: 100%;
    height: 100%;
    z-index: 9;
  }
  .header.open .header__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .header.open .header__menu__item {
    font-size: 32px;
    height: 50px;
    line-height: 35px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2f6c1c;
  }
  .header.open .header__mobile-menu__bar {
    display: none;
  }
  .header.open .header__menu__close {
    display: flex;
  }
  .header__button {
    order: 3;
  }
}
@media only screen and (max-width: 375px) {
  .header {
    gap: 0.5rem;
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 330px) {
  .header {
    padding-left: 0px;
  }
}
.background_hexagon_double {
  background-image: url("/assets/images/backgrounds/double_hexagon.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 3000px;
  background-position-x: -1150px;
  position: absolute;
  width: 100vw;
  max-width: 1440px;
  height: 800px;
  z-index: -1;
}

.call-to-action {
  display: grid;
  grid-template-columns: 40% 1fr;
  color: white;
  padding-top: 5vh;
  max-width: 1440px;
  margin-bottom: 10rem;
  margin-right: 0rem;
  overflow: hidden;
}
.call-to-action__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  grid-column: 1;
  grid-row: 1;
}
.call-to-action__content__title {
  font-weight: 600;
  font-size: 48px;
  line-height: 53px;
}
.call-to-action__content__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  max-width: 400px;
}
.call-to-action__button {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  background-image: url("/assets/images/buttons/hexagon_yellow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 4.5rem;
  width: 23.5rem;
  margin-top: 20px;
}
.call-to-action__button__button {
  margin: auto 0;
  font-size: 20px;
  width: 100%;
  height: fit-content;
  font-weight: 600;
  background-color: transparent;
  color: #1a2257;
}
.call-to-action__button__button:hover {
  color: white;
}
.call-to-action__image {
  width: 110%;
  margin-top: auto;
  grid-row: 1/3;
}
.call-to-action__image > img {
  width: 100%;
}

@media only screen and (max-width: 1150px) {
  .background_hexagon_double {
    background-size: 3000px;
    height: 750px;
  }
  .call-to-action {
    grid-template-columns: 50% 50%;
  }
}
@media only screen and (max-width: 1050px) {
  .call-to-action {
    gap: 1rem;
    display: grid;
    grid-template-columns: 35% 65%;
    margin-bottom: 0rem;
    padding-bottom: 0;
    padding-top: 12vh;
  }
  .call-to-action__content {
    width: 60%;
    grid-column: 1/3;
  }
  .call-to-action__content__title {
    font-size: 40px;
    line-height: 44px;
  }
  .call-to-action__content__description {
    font-size: 14px;
    line-height: 22px;
  }
  .call-to-action__image {
    margin-left: auto;
    width: 130%;
    margin-top: -5%;
    margin-right: -10%;
    grid-column: 2;
    grid-row: 2;
  }
  .call-to-action__image > img {
    height: 91%;
  }
  .call-to-action__button {
    grid-column: 1;
    grid-row: 2;
    width: 19.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .call-to-action__content__title {
    font-size: 32px;
    line-height: 35px;
  }
  .call-to-action__image {
    margin-top: -10%;
  }
  .call-to-action__button {
    width: 18.5rem;
  }
}
@media only screen and (max-width: 700px) {
  .background_hexagon_double {
    height: 741px;
    background-position-x: center;
  }
  .call-to-action {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 6rem;
  }
  .call-to-action__content {
    margin-right: 1rem;
    width: 100%;
  }
  .call-to-action__image {
    width: 130%;
    margin-top: 5%;
    margin-right: 0%;
    grid-row: 3;
    grid-column: 1;
  }
  .call-to-action__image > img {
    height: 330px;
    object-fit: contain;
  }
  .call-to-action__button {
    align-self: start;
    width: 100%;
    max-width: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .call-to-action {
    gap: 0;
  }
  .call-to-action__content__title {
    font-size: 32px;
    line-height: 35px;
  }
}
@media only screen and (max-width: 375px) {
  .call-to-action {
    gap: 0;
  }
  .call-to-action__content__title {
    font-size: 26px;
  }
  .call-to-action__content__description {
    max-width: 300px;
  }
  .call-to-action__content__button {
    width: 50%;
  }
}
.quote {
  display: grid;
  grid-template-columns: 10% 90%;
  gap: 10px;
  padding: 2rem 5%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid #e4e6f3;
  border-bottom: 1px solid #e4e6f3;
}

.about_us_wrapper {
  padding-top: 5rem;
  margin-bottom: 0;
}

.about_us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  color: #1a2257;
}
.about_us__image {
  justify-self: center;
}
.about_us__image > img {
  width: 100%;
  height: 460px;
  object-fit: contain;
}
.about_us__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}
.about_us__content__row {
  width: 100%;
}
.about_us__content__row__text {
  display: grid;
  gap: 0.5rem;
}
.about_us__content__row__text__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
.about_us__content__row__text__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  max-width: 500px;
}

@media only screen and (max-width: 1050px) {
  .about_us_wrapper {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
@media only screen and (max-width: 900px) {
  section {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .about_us_wrapper {
    margin-top: -2rem;
  }
  .quote {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2rem 0.5rem;
  }
  .quote img {
    width: 4rem;
  }
  .quote__text h2 {
    margin-top: 1rem;
  }
  .about_us {
    grid-template-columns: 1fr;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .about_us__image > img {
    display: none;
  }
  .about_us__content {
    justify-self: start;
    max-width: 100%;
  }
  .about_us__content__row__text__description {
    max-width: 100%;
  }
}
@media only screen and (max-width: 670px) {
  .about_us_wrapper {
    margin-top: 0rem;
  }
  .quote {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1rem;
  }
  .quote img {
    width: 4rem;
  }
  .quote__text h2 {
    margin-top: 1rem;
    font-size: 24px;
    line-height: 28px;
  }
  .about_us {
    grid-template-columns: 1fr;
  }
  .about_us__image > img {
    display: none;
  }
  .about_us__content {
    justify-self: start;
    max-width: 100%;
  }
  .about_us__content__row__text__description {
    max-width: 100%;
  }
}
.background_hexagon_blend {
  background-image: url("/assets/images/backgrounds/hexagon_blend.svg");
  background-repeat: no-repeat;
  background-position-y: -5%;
  width: 100vw;
  height: 280%;
  position: absolute;
  z-index: -1;
  max-width: 1440px;
}

.our_experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  color: #1a2257;
  padding: 5rem;
  border: 1px solid #e4e6f3;
  border-radius: 16px;
  font-size: 14px;
  background-color: white;
  margin-top: 14rem;
  align-items: center;
}
.our_experience h2 {
  font-size: 40px;
  color: #1a2257;
  margin-bottom: 1.5rem;
  height: fit-content;
}
.our_experience__rows {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.our_experience__rows__row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
}
.our_experience__rows__row__number {
  width: 56px;
  height: 56px;
  border: 1px solid #e4e6f3;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  justify-self: center;
  color: #2f6c1c;
  font-weight: 700;
  background-color: white;
  box-shadow: 0px 4px 39px 0px rgb(250, 241, 239);
}
.our_experience__rows__row__text {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1200px) {
  .our_experience {
    gap: 1rem;
    padding: 3rem;
  }
}
@media only screen and (max-width: 900px) {
  .background_hexagon_blend {
    height: 300%;
  }
  .our_experience {
    grid-template-columns: 1fr;
    gap: 0rem;
    padding: 3rem;
    border-radius: 2px;
    margin-top: 0;
  }
  .our_experience h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 670px) {
  .background_hexagon_blend {
    background-position-x: 20%;
  }
  .our_experience {
    grid-template-columns: 1fr;
    margin: 2rem;
    margin-bottom: 0;
    padding: 2rem;
    line-height: 22px;
  }
  .our_experience h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 400px) {
  .our_experience__rows__row {
    grid-template-columns: 1fr;
  }
}
.skills {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 60px;
  color: #1a2257;
  padding-top: 5rem;
}
.skills__image {
  justify-self: start;
}
.skills__image > img {
  width: 100%;
  height: 580px;
  object-fit: contain;
}
.skills__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}
.skills__content__header {
  font-weight: 700;
}
.skills__content__description {
  font-size: 14px;
  line-height: 22px;
}
.skills__content__tags {
  display: flex;
  flex-flow: row wrap;
  column-gap: 0.5rem;
  row-gap: 1rem;
  width: 100%;
  margin-top: -1rem;
}
.skills__content__tags__tag {
  position: relative;
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: 3.75rem;
  overflow: hidden;
  align-items: center;
}
.skills__content__tags__tag__content {
  display: flex;
  gap: 0.5rem;
  margin: 0.5rem 2rem;
  height: fit-content;
  width: fit-content;
  align-items: center;
  justify-content: start;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 400;
  background-color: white;
  height: 100%;
  min-width: 6rem;
  border-top: 1px solid rgb(228, 230, 243);
  border-bottom: 1px solid rgb(228, 230, 243);
}
.skills__content__tags__tag__content img {
  object-fit: contain;
  height: 30px;
  width: 30px;
}
.skills__content__tags__tag::before {
  content: "";
  position: absolute;
  background-color: white;
  width: 6.875rem;
  height: 6.875rem;
  left: 1.5rem;
  border-top: 1px solid rgb(228, 230, 243);
  border-left: 1px solid rgb(228, 230, 243);
  z-index: -1;
  transform: rotate(-45deg);
}
.skills__content__tags__tag::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 6.875rem;
  height: 6.875rem;
  right: 1.5rem;
  border-top: 1px solid rgb(228, 230, 243);
  border-right: 1px solid rgb(228, 230, 243);
  z-index: -1;
  transform: rotate(45deg);
}

@media only screen and (max-width: 990px) {
  #skills {
    padding-top: 5rem;
    margin-top: 0;
  }
  .skills {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 1rem;
  }
  .skills__image {
    margin: 0 auto;
  }
  .skills__content {
    justify-self: center;
  }
  .skills__content__header {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 1rem;
  }
  .skills__content__tags {
    width: 100%;
  }
}
@media only screen and (max-width: 670px) {
  section {
    padding-top: 4rem;
  }
  #skills {
    margin-top: 0;
  }
  .skills {
    gap: 2rem;
  }
  .skills__image {
    height: 100%;
  }
  .skills__image img {
    height: 100%;
  }
  .skills__content__tags {
    column-gap: 0.5rem;
  }
  .skills__content__tags__tag__content {
    font-size: 1rem;
  }
  .skills__content__header {
    margin-left: 0;
  }
}
@media only screen and (max-width: 350px) {
  section {
    padding-top: 4rem;
  }
  .skills {
    gap: 1rem;
  }
  .skills h2 {
    max-width: 90%;
  }
  .skills__content__description {
    max-width: 90%;
  }
  .skills__image {
    height: 90%;
  }
  .skills__image img {
    height: 100%;
  }
}
.advantages_header {
  text-align: center;
  color: #1a2257;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.background_hexagon_light {
  background-image: url("/assets/images/backgrounds/hexagon_diagonal_light.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: 8rem;
  position: absolute;
  width: 100%;
  max-width: 1440px;
  height: 165rem;
  z-index: -1;
}

.advantages {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  color: #1a2257;
}
.advantages__quote {
  width: 100%;
  background-image: url("/assets/images/backgrounds/hexagon_quotes.svg");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 55% 10%;
  height: 100%;
  position: relative;
  text-align: center;
  margin: auto 0;
  color: white;
  font-size: 20px;
  line-height: 1.8rem;
  font-weight: 700;
}
.advantages__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
.advantages__content__card {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  border: 1px solid #e4e6f3;
  background-color: white;
  padding: 2rem;
  vertical-align: top;
  align-items: start;
  border-radius: 16px;
}
.advantages__content__card img {
  width: 30px;
  object-fit: contain;
}
.advantages__content__card__text {
  display: grid;
  gap: 0.5rem;
}
.advantages__content__card__text__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
.advantages__content__card__text__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  max-width: 500px;
}

@media only screen and (max-width: 1240px) {
  .background_hexagon_light {
    margin-top: 25%;
    background-size: cover;
    background-position-y: 0;
    height: 120%;
  }
  .advantages__quote {
    padding: 50% 5%;
    font-size: 18px;
  }
}
@media only screen and (max-width: 1050px) {
  .background_hexagon_light {
    margin-top: 130%;
    height: 110%;
  }
  .advantages {
    grid-template-columns: 1fr;
    height: 50%;
  }
  .advantages__quote {
    width: 100%;
    padding: 50% 10%;
    margin: 0 auto;
    font-size: 20px;
    line-height: 3rem;
    font-weight: 700;
  }
}
@media only screen and (max-width: 1000px) {
  .background_hexagon_light {
    background-position-x: 80%;
    height: 180%;
  }
  #advantages_wrapper {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 950px) {
  .background_hexagon_light {
    margin-top: 140%;
    height: 175%;
  }
  .advantages_header {
    text-align: start;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 900px) {
  .background_hexagon_light {
    margin-top: 160%;
    height: 160%;
  }
  .advantages__quote {
    padding: 50% 10% 40% 10%;
  }
}
@media only screen and (max-width: 840px) {
  .advantages__quote {
    padding: 50% 10% 30% 10%;
  }
}
@media only screen and (max-width: 800px) {
  .background_hexagon_light {
    margin-top: 170%;
    height: 160%;
  }
  .advantages__quote {
    padding: 50% 10% 25% 10%;
  }
}
@media only screen and (max-width: 730px) {
  .background_hexagon_light {
    margin-top: 190%;
    height: 160%;
  }
  .advantages__quote {
    background-position: center;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 670px) {
  .background_hexagon_light {
    margin-top: 210%;
    height: 145%;
  }
  .advantages {
    grid-template-columns: 1fr;
  }
  .advantages__quote {
    padding: 45% 10% 35% 10%;
  }
  .advantages__content {
    justify-self: center;
    max-width: 100%;
  }
  .advantages__content__card {
    grid-template-columns: fit-content 1fr;
    gap: 1.5rem;
    padding-left: 1.5rem;
  }
  .advantages__content__card__text {
    grid-template-rows: fit-content 1fr;
  }
  .advantages__quote {
    padding: 50% 10% 20% 10%;
  }
}
@media only screen and (max-width: 600px) {
  .background_hexagon_light {
    margin-top: 240%;
    height: 150%;
  }
}
@media only screen and (max-width: 530px) {
  .background_hexagon_light {
    margin-top: 270%;
    height: 140%;
  }
  .advantages__quote {
    padding: 50% 5% 25% 5%;
    line-height: 2rem;
  }
  .advantages__content__card {
    gap: 1rem;
    padding-left: 1rem;
  }
}
@media only screen and (max-width: 500px) {
  .background_hexagon_light {
    margin-top: 300%;
    height: 150%;
  }
  .advantages__quote {
    padding: 55% 5% 30% 5%;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 470px) {
  .background_hexagon_light {
    margin-top: 340%;
    height: 140%;
  }
  .advantages__quote {
    font-size: 18px;
  }
}
@media only screen and (max-width: 420px) {
  .background_hexagon_light {
    margin-top: 400%;
  }
  .advantages__quote {
    line-height: 1.2rem;
  }
}
@media only screen and (max-width: 400px) {
  .background_hexagon_light {
    margin-top: 415%;
    height: 135%;
  }
  .advantages__quote {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .background_hexagon_light {
    margin-top: 480%;
    height: 130%;
  }
  .advantages__quote {
    padding: 60% 5% 40% 5%;
    line-height: 1.1rem;
  }
}
@media only screen and (max-width: 350px) {
  .background_hexagon_light {
    margin-top: 540%;
    height: 130%;
  }
  .advantages__quote {
    padding: 55% 5% 35% 5%;
    font-size: 0.8rem;
  }
}
.offers_header {
  text-align: start;
  color: #1a2257;
  padding-top: 6rem;
  margin-bottom: 2rem;
}

#offers {
  margin-top: -4rem;
}

.offers {
  position: relative;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2rem;
  color: #1a2257;
}
.offers__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
}
.offers__content__row {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  width: 100%;
  vertical-align: top;
  align-items: start;
  border-radius: 16px;
}
.offers__content__row__text {
  display: grid;
  gap: 0.5rem;
}
.offers__content__row__text__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
.offers__content__row__text__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  max-width: 500px;
}
.offers__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: -5rem;
}
.offers__cards__card {
  margin: -1.5rem 0.5rem;
  width: 15rem;
  height: 16.5rem;
  display: inline-flex;
  text-align: center;
  background: url("/assets/images/backgrounds/hexagon_white.svg") no-repeat center;
  background-size: auto;
}
.offers__cards__card__content {
  display: grid;
  flex-direction: column;
  margin: auto;
  height: 70%;
  padding: 1rem;
  vertical-align: middle;
}
.offers__cards__card__content__icon {
  height: fit-content;
}
.offers__cards__card__content__icon img {
  object-fit: contain;
  height: 60px;
  width: 60px;
}
.offers__cards__card__content__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.offers__cards__card__content__description {
  font-size: 14px;
}
.offers__cards__card:first-child, .offers__cards__card:nth-child(5) {
  margin-left: 8.5rem;
}
.offers__cards__card:nth-child(4) {
  margin-left: -7.5rem;
}

@media only screen and (max-width: 1200px) {
  .offers {
    gap: 2rem;
  }
  .offers__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .offers__cards__card {
    width: 12rem;
    height: 13rem;
    background-size: cover;
  }
  .offers__cards__card__content {
    height: 85%;
  }
  .offers__cards__card__content__icon {
    max-height: 50px;
  }
  .offers__cards__card__content__title {
    font-size: 14px;
    line-height: 16px;
    padding: 2rem 0 0 0;
  }
  .offers__cards__card__content__description {
    font-size: 12px;
    padding: 0.5rem 1rem 2rem 1rem;
  }
  .offers__cards__card:nth-child(5) {
    margin-top: -5rem;
  }
  .offers__cards__card:nth-child(3) {
    margin-left: 2rem;
    margin-top: -5rem;
  }
  .offers__cards__card:nth-child(4) {
    margin-left: -6rem;
    margin-top: -5rem;
  }
}
@media only screen and (max-width: 1000px) {
  .offers_header {
    margin-top: 0;
  }
  .offers {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-bottom: 0rem;
    flex-direction: column;
  }
  .offers__content__row__text__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    max-width: 90%;
  }
  .offers__cards {
    width: fit-content;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    margin-top: 5rem;
  }
  .offers__cards__card {
    width: 240px;
    height: 270px;
    background-size: auto;
  }
  .offers__cards__card__content__title {
    font-size: 16px;
    line-height: 24px;
    padding: 2rem 0 0 0;
  }
  .offers__cards__card__content__description {
    font-size: 14px;
  }
  .offers__cards__card:first-child, .offers__cards__card:nth-child(5) {
    margin-left: 6rem;
  }
  .offers__cards__card:nth-child(3), .offers__cards__card:nth-child(4) {
    margin-top: -1.5rem;
  }
  .offers__cards__card:nth-child(2) {
    margin-left: 0.5rem;
  }
  .offers__cards__card:nth-child(3) {
    margin-left: -2rem;
  }
  .offers__cards__card:nth-child(4) {
    margin-left: -7.5rem;
  }
  .offers__cards__card:nth-child(5) {
    margin-top: -1.5rem;
  }
}
@media only screen and (max-width: 670px) {
  #offers {
    margin-top: -2rem;
  }
  .offers_header {
    padding-top: 2rem;
  }
  .offers {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  .offers__content__row__text__description {
    max-width: 80%;
  }
  .offers__cards {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
  .offers__cards__card {
    width: 11rem;
    height: 12rem;
    background-size: cover;
  }
  .offers__cards__card__content {
    height: 95%;
  }
  .offers__cards__card__content__title {
    font-size: 14px;
    line-height: 16px;
    padding: 1.8rem 0 0 0;
  }
  .offers__cards__card__content__description {
    font-size: 12px;
    padding: 0.5rem 1rem 2rem 1rem;
  }
  .offers__cards__card:nth-child(3) {
    margin-left: 0rem;
    margin-top: -0.5rem;
  }
  .offers__cards__card:nth-child(4) {
    margin-left: -5.5rem;
    margin-top: -0.5rem;
  }
  .offers__cards__card:nth-child(5) {
    margin-top: -0.5rem;
  }
}
@media only screen and (max-width: 500px) {
  .offers {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 2rem;
  }
  .offers__content__row__text__description {
    max-width: 80%;
  }
  .offers__cards {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    margin-top: 2rem;
  }
  .offers__cards__card {
    width: 11rem;
    height: 12rem;
  }
  .offers__cards__card__content {
    height: 90%;
  }
  .offers__cards__card__content__icon {
    max-height: 35px;
  }
  .offers__cards__card__content__title {
    font-size: 14px;
    width: 100%;
    line-height: 16px;
    padding: 2.3rem 0 0 0;
  }
  .offers__cards__card__content__description {
    font-size: 12px;
    padding: 0.2rem 0 1rem 0;
  }
  .offers__cards__card:first-child, .offers__cards__card:nth-child(4) {
    grid-column: span 2;
    margin-left: 25%;
    margin-top: -0.5rem;
  }
  .offers__cards__card:nth-child(3) {
    margin-left: 0.2rem;
    margin-top: -0.5rem;
  }
  .offers__cards__card:nth-child(2), .offers__cards__card:nth-child(5) {
    margin-left: -0.2rem;
    margin-top: -0.5rem;
  }
}
@media only screen and (max-width: 400px) {
  .offers__cards {
    margin: 0 auto;
  }
  .offers__cards__card {
    width: 9.5rem;
    height: 10.4rem;
  }
  .offers__cards__card__content {
    height: 100%;
    width: 100%;
    padding: 1rem 0.8rem;
  }
  .offers__cards__card__content__title {
    font-size: 12px;
    width: 100%;
    line-height: 16px;
  }
  .offers__cards__card__content__description {
    font-size: 10px;
  }
  .offers__cards__card:nth-child(2) {
    margin-left: 0rem;
  }
  .offers__cards__card:nth-child(3) {
    margin-left: 0.2rem;
  }
}
@media only screen and (max-width: 350px) {
  .offers__cards {
    margin-left: -2rem;
  }
  .offers__cards__card:nth-child(2) {
    margin-left: 0.1rem;
  }
  .offers__cards__card:nth-child(3) {
    margin-left: -0.1rem;
  }
}
.other_areas_header {
  text-align: center;
  color: #1a2257;
  margin-top: 1rem;
  margin-bottom: 0rem;
}

.other_areas_wrapper {
  padding-bottom: 0;
  margin-bottom: 0;
  padding-top: 2rem;
}

.other_areas {
  max-width: 1440px;
  position: relative;
  display: flex;
  flex-direction: row;
  grid-template-columns: 1fr 1fr;
  color: #1a2257;
  gap: 1rem;
}
.other_areas__card {
  height: 40rem;
  width: 100%;
  background-image: url("/assets/images/backgrounds/hexagon_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.other_areas__card__content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-direction: column;
  text-align: left;
}
.other_areas__card__content__image {
  margin-top: 7%;
  height: 20%;
}
.other_areas__card__content__image img {
  height: 85%;
}
.other_areas__card__content__text {
  position: relative;
}
.other_areas__card__content__text__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  padding: 0.5rem 9.5%;
  margin-bottom: 5%;
}
.other_areas__card__content__text__description {
  display: flex;
  flex-direction: row;
}
.other_areas__card__content__text__description__text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 22px;
  padding: 0 8%;
  margin-bottom: 2%;
}

@media only screen and (max-width: 1300px) {
  .other_areas__card {
    height: 35rem;
  }
}
@media only screen and (max-width: 1200px) {
  .other_areas_wrapper {
    margin: 0 1rem;
  }
  .other_areas {
    margin: 0 7rem;
  }
  .other_areas__card__content__image {
    height: 20%;
  }
  .other_areas__card__content__text__title {
    margin-top: -1rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1110px) {
  .other_areas {
    margin: 0 3rem;
  }
}
@media only screen and (max-width: 1000px) {
  .other_areas {
    grid-template-rows: 1fr;
    flex-direction: column;
    margin-top: 3rem;
    align-items: center;
    gap: 0;
    width: 35.5rem;
    margin: 0 auto;
    margin-bottom: 2rem;
  }
  .other_areas__card {
    width: 90%;
    height: 35rem;
    margin-top: 2rem;
  }
  .other_areas__card__content__image {
    position: relative;
    bottom: 0;
    margin-top: 10%;
    margin-bottom: 1%;
    height: 25%;
  }
  .other_areas__card__content__image img {
    height: 100%;
  }
  .other_areas__card__content__text {
    justify-content: center;
    position: relative;
  }
  .other_areas__card__content__text__title {
    padding: 0rem 6.5%;
    margin-top: 1%;
    margin-bottom: 1rem;
  }
  .other_areas__card__content__text__description__text {
    padding: 0 5%;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 900px) {
  .other_areas_wrapper {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 600px) {
  .other_areas_wrapper {
    padding: 0;
    margin: 1rem;
  }
  .other_areas {
    margin-top: 5rem;
    width: 100%;
    gap: 2rem;
  }
  .other_areas__card {
    margin: auto 0;
    width: 90%;
    height: 35rem;
  }
  .other_areas__card__content__image {
    height: 25%;
    margin-top: 5%;
  }
  .other_areas__card__content__image img {
    height: 100%;
  }
  .other_areas__card__content__text__title {
    font-size: 20px;
    padding: 0 2rem;
  }
  .other_areas__card__content__text__description__text {
    line-height: 20px;
    padding: 0 1.5rem;
  }
}
@media only screen and (max-width: 520px) {
  .other_areas__card {
    height: 30rem;
  }
  .other_areas__card__content__image {
    margin-top: 0%;
  }
  .other_areas__card__content__text__title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .other_areas_wrapper {
    margin-top: 5rem;
  }
  .other_areas {
    gap: 2rem;
  }
  .other_areas__card {
    height: 25rem;
    margin-bottom: 0;
  }
  .other_areas__card__content__image {
    height: 25%;
  }
  .other_areas__card__content__text__title {
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0rem;
  }
  .other_areas__card__content__text__description__text {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    line-height: 1rem;
    width: 90%;
  }
}
@media only screen and (max-width: 415px) {
  .other_areas_wrapper {
    margin: 6rem 0.5rem;
    margin-bottom: 0;
  }
  .other_areas__card {
    height: 25rem;
  }
  .other_areas__card__content {
    position: relative;
  }
  .other_areas__card__content__image {
    height: 25%;
    margin-top: -5%;
  }
  .other_areas__card__content__text__title {
    margin-top: 0.5rem;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0.5rem;
  }
  .other_areas__card__content__text__description__text {
    line-height: 16px;
    font-size: 0.75rem;
    width: 100%;
  }
}
@media only screen and (max-width: 360px) {
  .other_areas__card {
    height: 22rem;
  }
  .other_areas__card__content__image {
    margin-bottom: 5%;
    margin-top: -15%;
  }
  .other_areas__card__content__text__title {
    margin-bottom: 1%;
    margin-top: 5%;
  }
  .other_areas__card__content__text__description__text {
    line-height: 16px;
    font-size: 10px;
  }
}
.testimonials {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  color: #1a2257;
  padding-top: 5rem;
  margin-top: -2rem;
}
.testimonials__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-right: 5rem;
}
.testimonials__header__title {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.testimonials__header__description {
  font-size: 14px;
  line-height: 22px;
}
.testimonials__header__image {
  margin: auto 0;
}
.testimonials__header__image img {
  object-fit: contain;
  height: 25rem;
}
.testimonials__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
}
.testimonials__list__testimonial {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  padding: 3rem;
  align-items: start;
  border: 1px solid #e4e6f3;
  border-radius: 2px 2px 2px 32px;
  background-color: white;
  box-shadow: 0px 4px 40px 0px rgba(165, 166, 180, 0.1490196078);
}
.testimonials__list__testimonial__quote {
  display: grid;
}
.testimonials__list__testimonial__quote__text {
  margin-top: 1rem;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 1rem;
}
.testimonials__list__testimonial__quote__author {
  font-size: 16px;
  font-weight: 600;
}
.testimonials__list__testimonial__quote__job {
  font-size: 16px;
}

@media only screen and (max-width: 1200px) {
  .testimonials {
    padding-top: 2rem;
  }
}
@media only screen and (max-width: 1100px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
  .testimonials__list {
    gap: 1rem;
  }
  .testimonials__list__testimonial {
    border-radius: 2px;
  }
  .testimonials__header {
    margin-right: 0;
    padding-top: 2.5rem;
  }
  .testimonials__header__image {
    margin: 0 auto;
  }
  .testimonials__header__image > img {
    height: 300px;
  }
}
@media only screen and (max-width: 670px) {
  .testimonials {
    margin-top: -3rem;
    grid-template-columns: 1fr;
  }
  .testimonials__header__image > img {
    height: 200px;
  }
  .testimonials__list {
    max-width: 0rem;
  }
  .testimonials__list__testimonial {
    padding: 2rem;
    flex-direction: column;
    gap: 0;
  }
}
@media only screen and (max-width: 540px) {
  .testimonials {
    margin-top: -8rem;
  }
}
@media only screen and (max-width: 520px) {
  .testimonials {
    margin-top: -5rem;
  }
}
@media only screen and (max-width: 485px) {
  .testimonials {
    margin-top: -6rem;
  }
}
.contact {
  margin-top: 15rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  color: white;
  margin-bottom: 0;
  padding-top: 5rem;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__info__title {
  margin-bottom: 10px;
  margin-top: 0;
  max-width: 320px;
}
.contact__info__action {
  color: #ffb800;
}
.contact__info__info-group {
  font-size: 14px;
  line-height: 22px;
  margin-top: 1rem;
}
.contact__info__info-group__title {
  color: rgba(255, 255, 255, 0.7);
}
.contact__info__info-group__info {
  font-weight: 600;
}
.contact__info__info-group__links {
  display: inline-flex;
  margin-top: 1.2rem;
  gap: 1rem;
}
.contact__info__info-group__links img {
  height: 50px;
}
.contact__middle-row {
  display: flex;
  flex-direction: row;
  gap: 5rem;
}
.contact__middle-row__title {
  margin-bottom: 10px;
  max-width: 320px;
}
.contact__middle-row__info-group {
  font-size: 14px;
  line-height: 22px;
}
.contact__middle-row__info-group__title {
  font-weight: 400;
}
.contact__middle-row__info-group__info {
  font-weight: 700;
}
.contact__form__input-group {
  margin-bottom: 35px;
}
.contact__form__input-group label {
  display: block;
  color: white;
  opacity: 60%;
}
.contact__form__input-group > input:focus, .contact__form__input-group > textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.contact__form__input-group__input, .contact__form__input-group__textarea {
  outline: none;
  appearance: none;
  border: none;
  background-color: transparent;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 1rem 0.5rem;
}
.contact__form__input-group__input__error, .contact__form__input-group__textarea__error {
  display: none;
}
.contact__form__input-group__input.error, .contact__form__input-group__textarea.error {
  border-bottom-color: #f59789 !important;
}
.contact__form__input-group__input.error + div, .contact__form__input-group__textarea.error + div {
  display: flex !important;
  font-size: 12px;
  margin-top: 5px;
  justify-content: flex-end;
  color: #f59789;
}
.contact__form__input-group__input {
  height: 30px;
}
.contact__form__input-group__textarea {
  height: 110px;
}
.contact__form__send {
  display: flex;
  width: 375px;
  height: 72px;
  float: right;
  background-image: url("/assets/images/buttons/hexagon_yellow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.contact__form__send button {
  margin: auto 0;
  font-weight: 600;
  width: 100%;
  height: fit-content;
  font-size: 20px;
  color: #1a2257;
}
.contact__form__send button:hover {
  color: white;
}
.contact__form__send button:disabled, .contact__form__send button:disabled:hover {
  opacity: 0.7;
  color: #1a2257;
  background-color: #ffb800;
  cursor: not-allowed;
}

@media only screen and (max-width: 1000px) {
  .contact__info {
    gap: 0.5rem;
  }
  .contact__info__info-group__links {
    margin-top: 3.5rem;
  }
  .contact__middle-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact__form {
    margin-top: 8rem;
  }
  .contact__form__input-group__textarea {
    height: 90px;
  }
  .contact__form__send {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr 1fr;
  }
  .contact__info__title {
    max-width: 210px;
  }
  .contact__middle-row {
    flex-direction: column;
    gap: 1rem;
  }
  .contact__image {
    display: none;
  }
  .contact__form {
    margin-top: 7.5rem;
  }
  .contact__form__input-group__textarea {
    height: 90px;
  }
  .contact__form__send {
    margin-top: 2.2rem;
  }
}
@media only screen and (max-width: 750px) {
  .contact {
    margin-top: 5rem;
    padding-top: 4rem;
    grid-template-columns: 1fr;
  }
  .contact__info__info-group__links {
    margin-top: 1rem;
  }
  .contact__middle-row {
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }
  .contact__form {
    margin-top: 0;
  }
  .contact__form__input-group {
    max-width: 100%;
  }
  .contact__form__input-group__input, .contact__form__input-group__textarea {
    max-width: unset;
    min-width: 0;
    width: 100%;
  }
  .contact__form__send {
    max-width: unset;
    min-width: 0;
    width: 100%;
    margin-top: 0;
  }
}
@media only screen and (max-width: 670px) {
  .contact {
    margin-top: 4rem;
    padding-top: 5rem;
  }
}
@media only screen and (max-width: 420px) {
  .contact {
    padding-top: 6rem;
  }
}
.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 4rem;
  margin-bottom: 0;
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 22px;
}
.footer__links {
  display: inline-flex;
  gap: 1.5rem;
}

@media only screen and (max-width: 1100px) {
  .footer {
    margin: 4rem;
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 750px) {
  .footer {
    margin: 2.5rem 1.5rem;
    margin-bottom: 0;
  }
}
#cookie-notice {
  padding: 20px 40px 20px 40px;
  display: none;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  min-height: 84px;
  max-width: 1440px;
  margin: 0 auto;
  background: #ecf5ea;
}
#cookie-notice img {
  width: 40px;
  height: 40px;
}
#cookie-notice span {
  font-size: 14px;
  color: black;
  margin: auto 20px;
}
#cookie-notice a {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 12px 30px 12px 30px;
  width: 160px;
  font-size: 14px;
  font-weight: 600;
  background-color: #ffb800;
}

@media (max-width: 767px) {
  #cookie-notice span {
    margin: auto 10px;
  }
}
@media (max-width: 481px) {
  #cookie-notice {
    flex-direction: column;
  }
  #cookie-notice span {
    margin: 20px auto;
  }
}

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