@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --background: #ffffff;
  --border-color: #ced7df;
  --primary: #007AFF;
  --primaryRGB: 0, 122, 255;
  --secondary: #001254;
  --text: #002d57;
  --hover: #007AFF;
  --section-dark: #f5f8ff;
  --section-light: #ffffff;
  --footer-bg: #007AFF;
  --footer-text: #ffffff;
  --shadow: rgba(0, 45, 86, 0.05);
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ai-c {
  align-items: center;
}

.ai-fs {
  align-items: flex-start;
}

.ai-fe {
  align-items: flex-end;
}

.pbs-8 {
  padding-block-start: 8em !important;
}

.pbe-8 {
  padding-block-end: 8em !important;
}

.ta-c {
  text-align: center;
}

.mbe-2 {
  margin-block-end: 2em !important;
}

.mbs-0 {
  margin-block-start: 0 !important;
}

body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--secondary);
}

.inner-wrap {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1em;
  position: relative;
  z-index: 1;
}

.btn {
  padding: 0.6em 1em;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 500;
  border-radius: 0.6em;
}

.icon {
  color: currentColor;
  font-size: inherit;
  display: inline-flex;
}
.icon svg {
  fill: currentColor;
  width: 1em;
  height: 1em;
}

.header {
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background-color: var(--background);
  z-index: 99;
}
@media screen and (max-width: 550px) {
  .header {
    border-bottom: none;
    height: 5.625em;
  }
}
.header .menu-opener {
  display: none;
  position: relative;
  width: 1.5em;
  height: 0.6em;
}
.header .menu-opener span {
  width: 1.5em;
  height: 2px;
  border-radius: 1px;
  background-color: currentColor;
  position: absolute;
  transition: 0.3s all ease-in-out;
}
.header .menu-opener span.t {
  top: 0;
}
.header .menu-opener span.b {
  bottom: 0;
}
.header .menu-opener.active .t {
  transform: rotate(45deg);
  transform-origin: center;
  top: 4px;
}
.header .menu-opener.active .b {
  transform: rotate(-45deg);
  transform-origin: center;
  bottom: 4px;
}
.header .inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 550px) {
  .header .inner-wrap {
    height: 100%;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
  .header .inner-wrap .menu-opener {
    display: block;
  }
}
.header .lang {
  position: relative;
  padding: 0.6em;
  border: 1px solid var(--border-color);
  border-radius: 0.5em;
  font-size: 1.1em;
  cursor: pointer;
}
.header .lang .selected {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.6em;
       column-gap: 0.6em;
}
.header .lang .selected .icon {
  font-size: 1.2em;
}
.header .lang ul {
  display: none;
  position: absolute;
  width: 100%;
  top: 100%;
  inset-inline-end: -1px;
  padding: 0.5em 1em;
  background-color: var(--background);
  border: 1px solid var(--border-color);
  border-radius: 0em 0 0.5em 0.5em;
  display: none;
  margin-top: -1px;
  width: calc(100% + 2px);
}
@media screen and (max-width: 550px) {
  .header .lang ul {
    border-radius: 0.5em 0.5em 0 0;
    top: auto;
    bottom: 100%;
  }
}
.header .lang ul a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.header .lang ul li {
  padding: 0.5em 0;
}
.header .lang ul li:hover a {
  color: var(--primary);
}
.header .lang:hover {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media screen and (max-width: 550px) {
  .header .lang:hover {
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.header .lang:hover ul {
  display: block;
}
.header .lang:hover ul li {
  text-align: end;
}
.header__start .logo {
  font-size: 1em;
}
.header__start .logo h1 {
  position: absolute;
  text-indent: -9999em;
}
.header__start .logo img {
  height: 4em;
}
@media screen and (max-width: 550px) {
  .header__start .logo img {
    height: 3.3em;
  }
}
.header__end nav {
  display: flex;
  -moz-column-gap: 2em;
       column-gap: 2em;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .header__end nav {
    position: fixed;
    top: 5.625em;
    inset-inline-end: -100%;
    width: 100%;
    height: calc(100% - 5.625em);
    flex-direction: column;
    align-items: flex-end;
    background-color: var(--background);
    z-index: 99;
    padding: 2em;
    transition: all 0.2s ease-in-out;
    justify-content: space-between;
  }
  .header__end nav.active {
    inset-inline-end: 0;
  }
}
.header__end nav > ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .header__end nav > ul {
    font-size: 1.2em;
    flex-direction: column;
    align-items: flex-end;
  }
}
.header__end nav > ul > li {
  list-style: none;
  position: relative;
  padding: 2.5em 1em;
  border-bottom: 3px solid transparent;
}
@media screen and (max-width: 550px) {
  .header__end nav > ul > li {
    padding: 1em;
  }
}
.header__end nav > ul > li ul {
  position: absolute;
  top: 100%;
  inset-inline-end: 0;
  padding: 1em 2em;
  background-color: var(--background);
  border: 1px solid var(--border-color);
  border-radius: 0em 0 0.5em 0.5em;
  display: none;
  margin-top: 3px;
}
@media screen and (max-width: 550px) {
  .header__end nav > ul > li ul {
    position: relative;
    display: block;
    top: unset;
    border: none;
    margin-top: 0;
    padding: 1em 0 0;
    opacity: 0.6;
  }
}
.header__end nav > ul > li ul li {
  white-space: nowrap;
  border-bottom: 1px solid var(--border-color);
}
@media screen and (max-width: 550px) {
  .header__end nav > ul > li ul li {
    border: none;
    font-size: 0.9em;
  }
}
.header__end nav > ul > li ul li:last-child {
  border-bottom: none;
}
.header__end nav > ul > li ul li a {
  text-align: end;
  padding: 0.6em 0;
  display: block;
  line-height: 1.4;
}
@media screen and (max-width: 550px) {
  .header__end nav > ul > li ul li a {
    padding: 0.3em 0;
  }
}
.header__end nav > ul > li ul li a:hover {
  color: var(--primary);
}
.header__end nav > ul > li a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.1em;
}
@media screen and (max-width: 550px) {
  .header__end nav > ul > li a {
    display: block;
    text-align: end;
  }
}
.header__end nav > ul > li:hover {
  border-bottom-color: var(--primary);
}
.header__end nav > ul > li:hover > ul {
  display: block;
}
.header__end nav > ul > li:hover > a {
  color: var(--primary);
}

.section {
  padding-block: 5em;
}
.section__title h2 {
  font-size: 2em;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1em;
  line-height: 1.4;
}
.section__title h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1em;
  line-height: 1.4;
}
.section__title h4 {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1em;
  line-height: 1.4;
}
.section__text p {
  opacity: 0.6;
  line-height: 1.4;
  font-size: 1.2em;
  margin-block-end: 1em;
}
.section__text ul {
  opacity: 0.6;
  margin-block: 1.5em 2.5em;
  padding-inline-start: 1em;
}
.section__text ul li {
  position: relative;
  line-height: 1.2;
  font-size: 1.2em;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 2em;
       column-gap: 2em;
  font-style: italic;
  margin-block-end: 0.7em;
}
.section__text ul li:last-child {
  margin-block-end: 0;
}
.section__text ul li:before {
  content: "";
  max-width: 8px;
  max-height: 8px;
  min-width: 8px;
  min-height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  margin-block-start: 0.3em;
}
.section__text dl {
  font-size: 1.2em;
  line-height: 1.4;
}
.section__text dl dt {
  font-weight: 600;
}
.section__text dl dd {
  margin-bottom: 1.4em;
  opacity: 0.6;
}
.section__text dl a {
  color: currentColor;
  text-decoration: none;
  opacity: 1;
}
.section__text dl a:hover {
  color: var(--primary);
}
.section__dark {
  background-color: var(--section-dark);
}

.masthead__text {
  padding: 6em 0;
}
.masthead__text .inner-wrap {
  display: grid;
  grid-template-columns: 4fr 2fr;
  -moz-column-gap: 1em;
       column-gap: 1em;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .masthead__text .inner-wrap {
    grid-template-columns: 1fr;
    row-gap: 2em;
  }
}
.masthead__text.inner-page {
  background-color: var(--section-dark);
}
.masthead__text__start h2 {
  font-size: 3.1em;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 550px) {
  .masthead__text__start h2 {
    font-size: 2.3em;
  }
}
.masthead__text__start h2 span {
  color: var(--primary);
}
.masthead__text__end p {
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.5;
}
.masthead__image-text {
  display: flex;
  flex-direction: column;
  height: 35em;
  width: 100%;
  justify-content: center;
  background-color: #efefef;
  position: relative;
}
@media screen and (max-width: 550px) {
  .masthead__image-text {
    height: 40em;
    justify-content: flex-start;
  }
}
.masthead__image-text h2 {
  max-width: 620px;
  width: 100%;
  font-size: 2.2em;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}
.masthead__image-text__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  position: absolute;
}
.masthead__image-text__image img {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
@media screen and (max-width: 550px) {
  .masthead__image-text__image img {
    width: auto;
    height: 100%;
  }
}
.masthead__image-text__bottom {
  position: absolute;
  z-index: 2;
  top: 100%;
  transform: translateY(-50%);
  background-color: var(--primary);
  color: #ffffff;
  inset-inline-end: 0;
  width: 100%;
  max-width: 1350px;
  border-inline-start: 3px solid var(--secondary);
}
@media screen and (max-width: 550px) {
  .masthead__image-text__bottom {
    max-width: 90%;
    transform: translateY(-20%);
  }
}
.masthead__image-text__bottom .features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 2em;
       column-gap: 2em;
  padding: 1em 2em;
}
@media screen and (max-width: 550px) {
  .masthead__image-text__bottom .features {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}
.masthead__image-text__bottom .features > div {
  padding: 1em 0;
  line-height: 1.4;
}
.masthead__image-text__bottom .features > div h3 {
  margin-bottom: 1em;
  font-size: 1.2em;
  font-weight: 600;
}

.image-text__start, .image-text__end {
  max-width: 50%;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 550px) {
  .image-text__start, .image-text__end {
    max-width: 100%;
  }
}
.image-text__even {
  background-color: var(--section-dark);
  margin-top: 7em;
}
.image-text__even img {
  margin-top: -10em;
}
.image-text__even .inner-wrap {
  flex-direction: row-reverse;
}
@media screen and (max-width: 550px) {
  .image-text__even .inner-wrap {
    flex-direction: column-reverse;
  }
}
.image-text .map {
  overflow: hidden;
  border-radius: 0.6em;
  width: 100%;
}
.image-text .map iframe {
  max-width: 100%;
}
.image-text img {
  width: 100%;
  border-radius: 0.6em;
  display: block;
  overflow: hidden;
}
.image-text .inner-wrap {
  position: relative;
  display: flex;
  gap: 3em 7em;
}
@media screen and (max-width: 550px) {
  .image-text .inner-wrap {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 550px) {
  .image-text.about-us-section {
    padding-top: 28em !important;
  }
}
.image-text .about-us-img {
  position: unset;
}
.image-text .about-us-img img {
  position: absolute;
  inset-block-end: 0;
  margin-block-end: -3em;
  width: 100%;
  max-height: 1300px;
  inset-inline-end: 0;
}
@media screen and (max-width: 550px) {
  .image-text .about-us-img img {
    margin-block-end: -6em;
  }
}
.image-text .about-us-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 550px) {
  .image-text .about-us-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 550px) {
  .item-list .section__title h2 {
    text-align: start !important;
  }
}
.item-list__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6em 2em;
}
@media screen and (max-width: 550px) {
  .item-list__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 3em 2em;
  }
}
.item-list__content h4 {
  font-size: 1.3em;
  color: var(--primary);
  margin-bottom: 1.1em;
}
.item-list__content p {
  font-size: 1.1em;
  line-height: 1.5;
  opacity: 0.6;
}

.item-grid {
  background-color: var(--section-dark);
  padding-inline: 1em;
}
.item-grid__area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1.4em;
       column-gap: 1.4em;
  height: 700px;
}
@media screen and (max-width: 550px) {
  .item-grid__area {
    row-gap: 0.7em;
  }
}
@media screen and (max-width: 550px) {
  .item-grid__area {
    height: 840px;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 0.7em;
         column-gap: 0.7em;
  }
}
.item-grid__column {
  display: flex;
  flex-direction: column;
  row-gap: 1.4em;
}
@media screen and (max-width: 550px) {
  .item-grid__column {
    row-gap: 0.7em;
  }
}
.item-grid__column > div {
  display: flex;
  overflow: hidden;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.item-grid__column > div.blank {
  background-color: rgba(var(--primaryRGB), 0.95);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.item-grid__column > div.blank img {
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0.3;
}
.item-grid__column > div.blank p {
  max-width: 80%;
  font-size: 1.3em;
  line-height: 1.4;
  color: #ffffff;
}
@media screen and (max-width: 550px) {
  .item-grid__column > div.blank p {
    font-size: 1em;
  }
}
.item-grid img {
  position: absolute;
}
@media screen and (max-width: 550px) {
  .item-grid img {
    max-width: 300%;
  }
}

.footer {
  background-color: var(--secondary);
}
.footer .inner-wrap {
  display: grid;
  grid-template-areas: "logo contact" "legal legal";
}
@media screen and (max-width: 550px) {
  .footer .inner-wrap {
    grid-template-areas: "logo" "contact" "legal";
  }
}
.footer__start {
  grid-area: logo;
  padding: 4em 0;
}
@media screen and (max-width: 550px) {
  .footer__start {
    padding-bottom: 2em;
  }
}
.footer__start .logo img {
  max-height: 4em;
}
@media screen and (max-width: 550px) {
  .footer__start .logo img {
    max-height: 3em;
  }
}
@media screen and (max-width: 550px) {
  .footer__start .logo {
    text-align: center;
  }
}
.footer__end {
  grid-area: contact;
  padding: 4em 0;
  text-align: end;
}
@media screen and (max-width: 550px) {
  .footer__end {
    padding-top: 2em;
  }
}
@media screen and (max-width: 550px) {
  .footer__end {
    text-align: start;
  }
}
.footer__end ul {
  color: #fff;
}
@media screen and (max-width: 550px) {
  .footer__end ul {
    text-align: center;
  }
}
.footer__end ul li {
  opacity: 0.6;
  margin-block-end: 1em;
  line-height: 1.4;
}
.footer__end ul li:hover {
  opacity: 1;
}
.footer__end ul a {
  color: inherit;
  text-decoration: none;
}
.footer__bottom {
  grid-area: legal;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2em 0;
}
.footer__legal {
  color: #fff;
  opacity: 0.6;
  font-size: 0.8em;
  font-weight: 300;
}
@media screen and (max-width: 550px) {
  .footer__legal {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */