@import "/css/colors.css";
@import "/css/typography.css";
body {
  height: 100%;
  width: 100vw;
  padding: 0;
  margin: 0;
}

.headerElement {
  background-color: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.145);
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1;
}
.headerElement .headerContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headerElement .headerContainer .logoContainer .logo {
  height: 60px;
  cursor: pointer;
}
.headerElement .headerContainer .logoContainer .logoMobile {
  height: 40px;
}
.headerElement .headerContainer .rightContainer {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  height: 100%;
  align-items: center;
}
.headerElement .headerContainer .rightContainer .navigationContainer {
  display: flex;
  align-items: center;
  max-width: 280px;
  min-width: 170px;
  width: 30vw;
  justify-content: space-around;
}
.headerElement .headerContainer .rightContainer .navigationButton {
  cursor: pointer;
  text-decoration: none;
}
.headerElement .headerContainer .rightContainer .navigationButton.active {
  text-decoration: underline;
  text-decoration-color: var(--primaryOne);
  pointer-events: none;
}
.headerElement .headerContainer .rightContainer .navigationButton:hover {
  text-decoration: underline;
  text-decoration-color: var(--primaryOne);
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon {
  color: var(--primaryTwo);
  cursor: pointer;
  width: 24px;
  height: 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon .rectangle {
  position: absolute;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon .rectangle.one {
  top: 0px;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon .rectangle.two {
  top: 8px;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon .rectangle.three {
  top: 16px;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon.open .rectangle.one {
  top: 0px;
  animation-name: closeToOpenOne;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon.open .rectangle.two {
  top: 8px;
  animation-name: closeToOpenTwo;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon.open .rectangle.three {
  top: 16px;
  animation-name: closeToOpenThree;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon.close {
  z-index: 1;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon.close .rectangle.one {
  top: 8px;
  animation-name: openToCloseOne;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon.close .rectangle.two {
  top: 8px;
  animation-name: openToCloseTwo;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.headerElement .headerContainer .rightContainer #mobileNavigationIcon.close .rectangle.three {
  top: 8px;
  animation-name: openToCloseThree;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.headerElement .headerContainer .rightContainer #mobileNavigationContainer {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fill-available;
  background-color: white;
  padding: 64px 0px 48px 0px;
  justify-content: center;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1450980392);
}
.headerElement .headerContainer .rightContainer #mobileNavigationContainer.open {
  display: flex;
}
.headerElement .headerContainer .rightContainer #mobileNavigationContainer .mobileLinksContainer {
  padding: 0 16px;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 16px;
}

.contentElement {
  overflow: hidden;
}
.contentElement .landingHeaderElement {
  width: 100%;
  max-height: 700px;
  height: 65vw;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contentElement .landingHeaderElement .landingImage {
  width: 100%;
  transform: scaleX(-1);
}
.contentElement .landingHeaderElement .landingTextContainer {
  position: absolute;
  top: 15%;
  width: 1000px;
}
.contentElement .landingHeaderElement .landingTextContainer .landingText {
  width: 624px;
  max-width: 65vw;
}
.contentElement .contentSectionElement {
  width: 100%;
  background-color: var(--backGround);
}
.contentElement .contentSectionElement.secondary {
  background-color: var(--white);
}
.contentElement .contentSectionElement .contentSectionContainer {
  padding: 64px 0 80px;
  max-width: 680px;
  width: 680px;
  margin: auto;
}
.contentElement .contentSectionElement .contentSectionContainer h1 {
  margin-bottom: 4px;
}
.contentElement .contentSectionElement .contentSectionContainer h2 {
  margin-top: 48px;
  margin-bottom: 4px;
}
.contentElement .contentSectionElement .contentSectionContainer h2:first-of-type {
  margin-top: 16px;
}
.contentElement .quoteSectionElement {
  width: 100%;
  background-color: var(--secondaryOne);
  position: relative;
}
.contentElement .quoteSectionElement.secondaryTwo {
  background-color: var(--secondaryTwo);
}
.contentElement .quoteSectionElement.withQuoteImage {
  height: 45vw;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.contentElement .quoteSectionElement.withQuoteImage .quoteSectionContainer {
  padding-bottom: 8%;
}
.contentElement .quoteSectionElement .quoteSectionContainer {
  padding: 64px 0;
  max-width: 680px;
  width: 680px;
  margin: auto;
  text-align: end;
}
.contentElement .quoteSectionElement .quoteSectionContainer h1 {
  color: var(--primaryTwo);
}
.contentElement .quoteSectionElement .quoteSectionContainer .mobile {
  display: none;
}
.contentElement .quoteSectionElement .quoteImageContainer {
  position: absolute;
  max-height: 600px;
  width: 45vw;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.contentElement .quoteSectionElement .quoteImageContainer .quoteImage {
  width: 100%;
  height: 100%;
}
.contentElement .quoteSectionElement .quoteImageContainer .quoteImageBorder {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.contentElement .footerSectionElement {
  width: 100%;
  background-color: var(--primaryOne);
}
.contentElement .footerSectionElement .footerSectionContainer {
  max-width: 680px;
  width: 680px;
  display: flex;
  margin: auto;
  padding: 64px 0;
}
.contentElement .footerSectionElement .footerSectionContainer .column {
  width: 50%;
}
.contentElement .footerSectionElement .footerSectionContainer .column:last-of-type {
  text-align: end;
}
.contentElement .footerSectionElement .footerSectionContainer .column h2 {
  color: var(--white);
  margin-top: 2.5rem;
}
.contentElement .footerSectionElement .footerSectionContainer .column h2:first-child {
  margin-top: 0rem;
}
.contentElement .footerSectionElement .footerSectionContainer .column .contactContainer {
  margin: 16px 0 24px 0;
}
.contentElement .footerSectionElement .footerSectionContainer .column .contactContainer .contactRow {
  margin: 4px 0;
  color: var(--white);
  display: flex;
}
.contentElement .footerSectionElement .footerSectionContainer .column .contactContainer .contactRow.location {
  margin-top: 0px;
}
.contentElement .footerSectionElement .footerSectionContainer .column .contactContainer .contactRow .contactIcon {
  margin-right: 12px;
  height: 20px;
  color: var(--white);
  margin-top: 6px;
}
.contentElement .footerSectionElement .footerSectionContainer .column .contactContainer .contactRow .contactLink {
  color: var(--white);
}
.contentElement .footerSectionElement .footerSectionContainer .column .contactContainer .ContactLocationImage {
  width: 200px;
  margin-top: 8px;
  border-radius: 8px;
}
.contentElement .footerSectionElement .footerSectionContainer .column .socialsContainer {
  display: flex;
  height: 64px;
  justify-content: flex-end;
  align-items: flex-end;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.contentElement .footerSectionElement .footerSectionContainer .column .socialsContainer .socialsButton {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: height 0.2s ease-in-out;
}
.contentElement .footerSectionElement .footerSectionContainer .column .socialsContainer .socialsButton:hover {
  height: 56px;
}
.contentElement .footerSectionElement .footerSectionContainer .column .socialsContainer .socialsButton .socialsButtonBorder {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}
.contentElement .footerSectionElement .footerSectionContainer .column .socialsContainer .socialsButton .socialsButtonBorder .socialIcon {
  height: 24px;
}
.contentElement .footerSectionElement .copyrightContainer {
  text-align: center;
  padding-bottom: 8px;
}

.actionButtonContainer {
  display: flex;
  height: 56px;
  margin-top: 8px;
  align-items: center;
}

.actionButton {
  height: 48px;
  border-radius: 24px;
  cursor: pointer;
  transition: height 0.2s ease-in-out;
}
.actionButton:hover {
  height: 56px;
}
.actionButton .actionButtonBorder {
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background-color: var(--secondaryTwo);
  text-decoration: none;
  white-space: nowrap;
}
.actionButton .actionButtonBorder h5 {
  color: var(--primaryTwo);
}

@media only screen and (max-width: 767px) {
  .headerElement .headerContainer {
    height: 75px;
    padding: 0 16px;
    width: 100%;
    max-width: 500px;
  }
  .headerElement .headerContainer .logoContainer .logo {
    display: none;
  }
  .headerElement .headerContainer .rightContainer {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .headerElement .headerContainer .rightContainer .navigationContainer {
    display: none;
  }
  .headerElement .headerContainer .rightContainer .actionButton {
    height: 32px;
  }
  .headerElement .headerContainer .rightContainer .actionButton:hover {
    height: 38px;
  }
  .headerElement .headerContainer .rightContainer .actionButton .actionButtonBorder {
    padding: 0 8px;
    height: 32px;
  }
  .headerElement .headerContainer .rightContainer .actionButton .actionButtonBorder h5 {
    font-size: 12px;
  }
  .contentElement .landingHeaderElement .landingTextContainer {
    width: 100%;
    max-width: 532px;
  }
  .contentElement .landingHeaderElement .landingTextContainer .landingText {
    padding-left: 16px;
  }
  .contentElement .contentSectionElement {
    padding: 32px 16px 48px;
    width: unset;
  }
  .contentElement .contentSectionElement .contentSectionContainer {
    padding: 0;
    width: 100%;
    max-width: 500px;
  }
  .contentElement .contentSectionElement .contentSectionContainer h2 {
    margin-top: 24px;
    margin-bottom: 4px;
  }
  .contentElement .contentSectionElement .contentSectionContainer h2:first-of-type {
    margin-top: 8px;
  }
  .contentElement .quoteSectionElement .quoteImageContainer {
    display: none;
  }
  .contentElement .quoteSectionElement .quoteSectionContainer {
    padding: 32px 16px;
    max-width: 468px;
    width: calc(100% - 32px);
  }
  .contentElement .quoteSectionElement .quoteSectionContainer .desktop {
    display: none;
  }
  .contentElement .quoteSectionElement .quoteSectionContainer .mobile {
    display: initial;
  }
  .contentElement .footerSectionElement .footerSectionContainer {
    max-width: 500px;
    width: calc(100% - 32px);
    padding: 32px 16px 48px;
    flex-direction: column-reverse;
  }
  .contentElement .footerSectionElement .footerSectionContainer .column {
    width: unset;
  }
  .contentElement .footerSectionElement .footerSectionContainer .column:last-of-type {
    text-align: unset;
    margin-bottom: 32px;
  }
  .contentElement .footerSectionElement .footerSectionContainer .column .contactContainer .contactRow .contactIcon {
    height: 18px;
    margin-top: 5px;
  }
  .contentElement .footerSectionElement .footerSectionContainer .column .socialsContainer {
    justify-content: unset;
    height: 48px;
  }
  .contentElement .footerSectionElement .footerSectionContainer .column .socialsContainer .socialsButton {
    height: 32px;
    width: 32px;
  }
  .contentElement .footerSectionElement .footerSectionContainer .column .socialsContainer .socialsButton:hover {
    height: 40px;
  }
  .contentElement .footerSectionElement .footerSectionContainer .column .socialsContainer .socialsButton .socialsButtonBorder {
    height: 32px;
    width: 32px;
  }
  .contentElement .footerSectionElement .footerSectionContainer .column .socialsContainer .socialsButton .socialsButtonBorder .socialIcon {
    height: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .headerElement .headerContainer {
    height: 100px;
    max-width: 896px;
    padding: 0 32px;
  }
  .headerElement .headerContainer .logoContainer .logo {
    height: 50px;
  }
  .headerElement .headerContainer .logoContainer .logoMobile {
    display: none;
  }
  .headerElement .headerContainer .rightContainer {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .headerElement .headerContainer .rightContainer .navigationContainer {
    max-width: 300px;
    width: 24vw;
  }
  .headerElement .headerContainer .rightContainer .navigationContainer .navigationButton h5 {
    font-size: 14px;
  }
  .headerElement .headerContainer .rightContainer .actionButton .actionButtonBorder {
    padding: 0 16px;
  }
  .headerElement .headerContainer .rightContainer .actionButton .actionButtonBorder h5 {
    font-size: 14px;
  }
  .headerElement .headerContainer .rightContainer #mobileNavigationIcon {
    display: none;
  }
  .headerElement .headerContainer .rightContainer #mobileNavigationContainer {
    display: none;
  }
  .contentElement .landingHeaderElement .landingTextContainer {
    width: 896px;
    max-width: calc(100vw - 64px);
  }
}
@media only screen and (min-width: 1280px) {
  .headerElement .headerContainer {
    height: 100px;
    max-width: 1000px;
    padding: 0 64px;
  }
  .headerElement .headerContainer .logoContainer .logoMobile {
    display: none;
  }
  .headerElement .headerContainer .rightContainer #mobileNavigationIcon {
    display: none;
  }
  .headerElement .headerContainer .rightContainer #mobileNavigationContainer {
    display: none;
  }
}
@keyframes openToCloseOne {
  0% {
    top: 0px;
  }
  50% {
    top: 8px;
    rotate: 0deg;
  }
  100% {
    rotate: 45deg;
  }
}
@keyframes openToCloseTwo {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes openToCloseThree {
  0% {
    top: 16px;
  }
  50% {
    top: 8px;
    rotate: 0deg;
  }
  100% {
    rotate: -45deg;
  }
}
@keyframes closeToOpenOne {
  0% {
    top: 8px;
    rotate: 45deg;
  }
  50% {
    top: 8px;
    rotate: 0deg;
  }
  100% {
    top: 0px;
  }
}
@keyframes closeToOpenTwo {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes closeToOpenThree {
  0% {
    top: 8px;
    rotate: -45deg;
  }
  50% {
    top: 8px;
    rotate: 0deg;
  }
  100% {
    top: 16px;
  }
}/*# sourceMappingURL=style.css.map */