@charset "UTF-8";
/**
 * Reset
 */
/* 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;
}

/* 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;
}

/**
 * Font
 */
/* inter-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin_latin-ext-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-v20-latin_latin-ext-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v20-latin_latin-ext-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/inter-v20-latin_latin-ext-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  src: url("../fonts/inter-v20-latin_latin-ext-900italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/**
 * Base
 */
:root {
  --light-blue-color: #749ba6;
  --blue-color: #00b0e6;
  --blue-color-hover: #02a4d5;
  --light-gray-color: #d1d1d1;
}

body {
  background: url(../images/header.png) #000 no-repeat center 10px;
  background: url(../images/header.webp) #000 no-repeat center 10px;
  background-size: 924px 836px;
  color: #fff;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.25;
}

.container {
  max-width: 1092px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1140px) {
  .container {
    padding: 0 44px;
    width: calc(100% - 88px);
  }
}

header {
  padding: 29px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 1002;
}
header .logo {
  margin-right: auto;
  padding: 5px 0;
  position: relative;
  z-index: 1001;
}
header .logo img {
  width: 96px;
  height: auto;
}
@media (min-width: 1040px) {
  header .logo img {
    width: 160px;
  }
}
header .language-links {
  position: relative;
  z-index: 1001;
  display: none;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
  font-size: 16px;
  letter-spacing: -0.5px;
  line-height: 1.25;
  font-weight: 500;
  text-transform: uppercase;
}
header .language-links a {
  color: #fff;
  text-decoration: none;
}
header .language-links.language-links--visible {
  display: flex;
}
header .language-links .is-active {
  display: none;
}
@media (min-width: 1040px) {
  header .language-links {
    display: flex;
    margin-right: 0;
  }
}
header .language-switcher-language-url a {
  padding: 10px 20px;
}
@media (min-width: 1040px) {
  header .language-switcher-language-url {
    border-left: 1px solid var(--light-blue-color);
  }
}
header nav {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 99px;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 99px);
  overflow-y: auto;
  background: url(../images/header.png) #000 no-repeat calc(50% - 20px) 10px;
  background: url(../images/header.webp) #000 no-repeat calc(50% - 20px) 10px;
  background-size: 924px 932px;
}
header nav.menu-open {
  display: block;
}
header nav > ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
  margin: 0 auto;
}
header nav > ul li {
  position: relative;
  text-align: left;
  padding: 0 24px;
}
header nav > ul li:last-child {
  border-bottom: none;
}
header nav > ul a {
  font-size: 16px;
  letter-spacing: -0.5px;
  line-height: 1.25;
  position: relative;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 15px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #163b46;
}
header nav > ul .menu-underline {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
  transform-origin: left;
}
header nav > ul li:hover .menu-underline {
  width: 100%;
}
header nav > ul li.is-active .menu-underline,
header nav > ul a.is-active + .menu-underline {
  width: 100%;
}
@media (min-width: 1040px) {
  header nav {
    display: flex;
    position: relative;
    top: auto;
    left: auto;
    margin-left: 0;
    width: auto;
    background: none;
    padding-top: 0;
  }
  header nav > ul {
    flex-direction: row;
    margin: 0;
  }
  header nav > ul a {
    border-bottom: none;
  }
  header nav > ul .menu-underline {
    display: block;
  }
}
header .menu-toggle {
  display: flex;
  align-items: center;
  height: 40px;
  position: relative;
  z-index: 1001;
}
header .menu-toggle .menu-btn {
  display: flex;
  align-items: center;
  color: var(--light-blue-color);
  cursor: pointer;
  padding: 0px 3px;
  transition: all 0.3s ease;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
header .menu-toggle .menu-btn:hover {
  color: #fff;
}
header .menu-toggle .menu-text {
  font-size: 14px;
  font-weight: 700;
  display: inline;
  color: var(--light-blue-color);
}
header .menu-toggle .menu-icon {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  margin-left: 10px;
}
header .menu-toggle .menu-icon--menu {
  width: 29px;
  height: 15px;
  display: block;
}
header .menu-toggle .menu-icon--close {
  width: 24px;
  height: 24px;
  display: none;
}
header .menu-toggle .menu-btn[aria-expanded=true] {
  color: #fff;
}
header .menu-toggle .menu-btn[aria-expanded=true] .menu-text {
  display: none;
}
header .menu-toggle .menu-btn[aria-expanded=true] .menu-icon--menu {
  display: none;
}
header .menu-toggle .menu-btn[aria-expanded=true] .menu-icon--close {
  display: inline-block;
  margin-left: 0;
}
@media (min-width: 1040px) {
  header .menu-toggle {
    display: none;
  }
}
@media (min-width: 1140px) {
  header {
    padding: 37px 0;
  }
}

footer .contact {
  margin: 110px 0 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
footer .contact__locations {
  display: flex;
  flex-direction: column;
  margin-top: 90px;
}
footer .contact__locations .contact__location {
  text-align: center;
  width: 100%;
}
footer .contact__locations .contact__location-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -1.3px;
}
footer .contact__locations .contact__location-address {
  font-size: 20px;
  line-height: 1.2;
  color: var(--light-gray-color);
}
footer .contact__title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.9px;
  margin-bottom: 5px;
}
footer .contact .btn {
  width: calc(100% - 48px);
  max-width: 266px;
}
@media (min-width: 690px) {
  footer .contact {
    background: url(../images/footer.png) no-repeat center -2px;
    background: url(../images/footer.webp) no-repeat center -2px;
    background-size: 902px 574px;
  }
  footer .contact__locations {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    max-width: 830px;
  }
  footer .contact__locations .contact__location {
    width: 50%;
  }
}
footer .footer__bottom {
  border-top: 1px solid var(--light-gray-color);
  padding: 20px 0;
  color: var(--light-gray-color);
  font-size: 16px;
  line-height: 1.25;
  display: flex;
  justify-content: space-between;
  opacity: 0.61;
}
footer .footer__bottom-info {
  display: flex;
  gap: 25px;
}

.p-view {
  margin-top: 90px;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  z-index: 999;
}
.p-view__heading {
  text-align: center;
}
.p-view {
  color: var(--light-gray-color) !important;
}
.p-view--cards .p-view__view, .p-view--stats .p-view__view {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
}
@media (min-width: 690px) {
  .p-view--cards .p-view__view, .p-view--stats .p-view__view {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 900px) {
  .p-view--cards .p-view__view, .p-view--stats .p-view__view {
    gap: 42px;
  }
}
.p-view--cards .p-view__view {
  margin-top: 48px;
  gap: 25px;
  align-items: stretch;
}
.p-view--cards .tile-item {
  border: 5px solid #979797;
  padding: 35px 25px;
  text-align: left;
  max-width: 305px;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 300px;
  margin: 0 auto;
}
.p-view--cards .tile-item__subheading {
  max-width: 170px;
}
@media (min-width: 690px) {
  .p-view--cards .tile-item {
    margin: 0;
  }
}
.p-view--cards.p-view--checklist .tile-item {
  text-align: center;
  max-width: 355px;
  border: 1px solid #979797;
}
.p-view--cards.p-view--checklist .tile-item__heading {
  font-size: 32px;
  line-height: 1;
  max-width: none;
  width: 100%;
}
.p-view--cards.p-view--checklist .tile-item__subheading {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 10px;
  max-width: none;
  width: 100%;
}
.p-view--cards.p-view--checklist .tile-item__image {
  text-align: center;
}
.p-view--cards.p-view--checklist .tile-item__image img {
  width: 41px;
  height: 41px;
}
.p-view--stats .p-view__view {
  align-items: center;
}
@media (min-width: 690px) {
  .p-view--stats .p-view__view {
    align-items: stretch;
  }
}
.p-view--stats .tile-item {
  padding: 65px 40px;
  min-height: 200px;
}
.p-view--stats .tile-item__heading {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -1.9px;
}
.p-view--stats .tile-item__subheading {
  font-size: 44px;
  letter-spacing: -1.3px;
  font-weight: 300;
}
@media (min-width: 690px) {
  .p-view--stats .tile-item {
    padding: 30px 20px;
    min-height: 180px;
  }
  .p-view--stats .tile-item__heading {
    font-size: 48px;
  }
  .p-view--stats .tile-item__subheading {
    font-size: 36px;
  }
}
@media (min-width: 900px) {
  .p-view--stats .tile-item {
    padding: 65px 40px;
    min-height: 200px;
  }
}
.p-view--solution .p-view__view {
  margin-top: 48px;
  gap: 25px;
}
@media (min-width: 690px) {
  .p-view--solution .p-view__view .tile-item {
    padding: 35px 40px;
    background-position: 36px 36px;
  }
}
.p-view--formatted-list {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 32px;
  line-height: 1.25;
  text-align: left;
}
.p-view--formatted-list.p-view--odrážka {
  font-size: 22px;
}
.p-view--formatted-list.p-view--odrážka ul li,
.p-view--formatted-list.p-view--odrážka ol li {
  counter-increment: step;
  position: relative;
  padding-left: 48px;
  margin-bottom: 50px;
  line-height: 1.5;
}
.p-view--formatted-list.p-view--odrážka ul li:last-child,
.p-view--formatted-list.p-view--odrážka ol li:last-child {
  margin-bottom: 0;
}
.p-view--formatted-list.p-view--odrážka ul li::before,
.p-view--formatted-list.p-view--odrážka ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--blue-color);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-view--formatted-list.p-view--clocktime {
  text-align: left;
  max-width: 620px;
}
.p-view--formatted-list.p-view--clocktime ul li,
.p-view--formatted-list.p-view--clocktime ol li {
  position: relative;
  padding-left: 170px;
  margin-bottom: 60px;
  line-height: 1.5;
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--light-gray-color);
}
.p-view--formatted-list.p-view--clocktime ul li::before,
.p-view--formatted-list.p-view--clocktime ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 105px;
  height: 105px;
  background: url(../images/clocktime.png) no-repeat center center;
  background: url(../images/clocktime.webp) no-repeat center center;
  background-size: 105px 105px;
}
.p-view--formatted-list.p-view--clocktime ul li:last-child,
.p-view--formatted-list.p-view--clocktime ol li:last-child {
  margin-bottom: 0;
}
.p-view--formatted-list.p-view--strong-block b,
.p-view--formatted-list.p-view--strong-block strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  margin-bottom: 7px;
}
.p-view--formatted-list.p-view--checkbox {
  text-align: left;
  font-size: 22px;
}
.p-view--formatted-list.p-view--checkbox ul li,
.p-view--formatted-list.p-view--checkbox ol li {
  position: relative;
  padding-left: 48px;
  color: var(--light-gray-color);
  margin-bottom: 50px;
  line-height: 1.5;
}
.p-view--formatted-list.p-view--checkbox ul li::before,
.p-view--formatted-list.p-view--checkbox ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 18px;
  background: url(../images/checkbox.png) no-repeat center center;
  background: url(../images/checkbox.webp) no-repeat center center;
  background-size: 26px 18px;
}
.p-view--formatted-list.p-view--checkbox ul li:last-child,
.p-view--formatted-list.p-view--checkbox ol li:last-child {
  margin-bottom: 0;
}
.p-view--formatted-list.p-view--number {
  text-align: left;
  font-size: 22px;
}
.p-view--formatted-list.p-view--number ul li,
.p-view--formatted-list.p-view--number ol li {
  counter-increment: step;
  position: relative;
  padding-left: 48px;
  margin-bottom: 50px;
  line-height: 1.5;
}
.p-view--formatted-list.p-view--number ul li:last-child,
.p-view--formatted-list.p-view--number ol li:last-child {
  margin-bottom: 0;
}
.p-view--formatted-list.p-view--number ul li::before,
.p-view--formatted-list.p-view--number ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--blue-color);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-view--professional-solution {
  display: flex;
  z-index: 100;
  position: relative;
}
.p-view--professional-solution .p-view__heading,
.p-view--professional-solution .p-view__view,
.p-view--professional-solution .p-view__subheading {
  position: relative;
  z-index: 1001;
}
.p-view--professional-solution:before {
  background: url(../images/professional-solution-bg.png) no-repeat 50% 0%;
  background: url(../images/professional-solution-bg.webp) no-repeat 50% 0%;
  background-size: 666px 571px;
  content: "";
  display: block;
  width: 100%;
  height: 571px;
  position: absolute;
  z-index: 10;
}
.p-view--professional-solution .p-view__view {
  margin-top: 20px;
}
.p-view--feature-image {
  margin-top: 70px;
}
.p-view--feature-image img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  max-width: 1040px;
}
.p-view--content {
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
}
@media (min-width: 690px) {
  .p-view--content {
    font-size: 28px;
    max-width: 890px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-view--content p {
  margin-bottom: 30px;
}
.p-view__subheading {
  margin-top: 13px;
  font-size: 20px;
  line-height: 1.6;
  width: 100%;
  max-width: 890px;
}
.p-view__view {
  margin-top: 48px;
  width: 100%;
}
.p-view__view ul,
.p-view__view ol {
  counter-reset: step;
  list-style: none;
  margin: 0;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-size: 22px;
  line-height: 1.5;
}
.p-view__view ul li {
  counter-increment: step;
  position: relative;
  padding-left: 48px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.p-view__view ul li:last-child {
  margin-bottom: 0;
}
.p-view__view ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--blue-color);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 690px) {
  .p-view__subheading {
    font-size: 40px;
    line-height: 1.32;
    margin-top: 42px;
  }
  .p-view__view {
    margin-top: 76px;
  }
}

.page--type-news .page__content h2,
.page--type-news .page__content h3 {
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: -1px;
  font-weight: 700;
}

.tile-item {
  position: relative;
  line-height: 1.05;
  box-sizing: border-box;
  padding: 65px 40px;
  border: 1px solid #979797;
  width: 100%;
  max-width: 289px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
}
.tile-item__heading {
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: -0.9px;
  margin-bottom: 3px;
  font-weight: 900;
  color: #fff;
}
.tile-item__subheading {
  font-size: 18px;
  line-height: 1.05;
  color: var(--light-gray-color);
  letter-spacing: 0;
  font-weight: 400;
}
.tile-item__image {
  position: absolute;
  width: calc(100% - 72px);
  height: calc(100% - 72px);
  top: 36px;
  left: 36px;
  text-align: left;
}
.tile-item img {
  width: 100%;
  height: auto;
  max-width: 80px;
}

h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.14;
  letter-spacing: -1px;
  max-width: 880px;
  color: #fff;
}
@media (min-width: 690px) {
  h1 {
    font-size: 74px;
    line-height: 70px;
    letter-spacing: -2px;
  }
}

h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: -1.4px;
  max-width: 880px;
  color: #fff;
}
@media (min-width: 690px) {
  h2 {
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -1.9px;
  }
}

h3,
h4,
h5,
h6 {
  color: #fff;
  font-weight: 700;
}

a {
  color: #fff;
}

b,
strong {
  font-weight: 700;
}

.text-white {
  color: #fff;
}

#toolbar-administration {
  z-index: 99999;
}

.page--type-news h1, .page--type-team h1 {
  color: #fff;
}
.page--type-news .p-intro__subheading, .page--type-team .p-intro__subheading {
  margin-top: 32px;
}
.page--type-news .page__hero, .page--type-team .page__hero {
  margin-top: 50px;
  text-align: center;
}
.page--type-news .page__hero img, .page--type-team .page__hero img {
  width: 100%;
  max-width: 1040px;
  height: auto;
}
.page--type-news .p-view, .page--type-team .p-view {
  margin-top: 0;
}
.page--type-news .p-intro__subheading {
  color: var(--light-blue-color);
  font-size: 26px;
  line-height: 1.5;
}
.page--type-news .page__hero {
  margin-top: 40px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/**
 * Parts
 */
.page--front .p-intro__heading span {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}
.page--front .p-intro__heading span:nth-child(1) {
  animation-delay: 0.3s;
}
.page--front .p-intro__heading span:nth-child(2) {
  animation-delay: 0.8s;
}
.page--front .p-intro__heading span:nth-child(3) {
  animation-delay: 1.3s;
}

.p-intro {
  margin-top: 23px;
  width: 100%;
  text-align: center;
}
.p-intro__heading {
  color: var(--light-blue-color);
  margin: 0 auto;
}
.p-intro__heading span {
  display: block;
}
@media (min-width: 690px) {
  .p-intro__heading {
    max-width: 930px;
  }
}
.p-intro__subheading {
  margin: 14px auto 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--light-gray-color);
}
@media (min-width: 690px) {
  .p-intro__subheading {
    font-size: 40px;
    line-height: 1.4;
    max-width: 900px;
    margin: 34px auto 0 auto;
  }
}
.p-intro__cta {
  display: flex;
  justify-content: center;
  margin: 28px auto 0 auto;
  width: 100%;
}
.p-intro__logos {
  display: flex;
  justify-content: space-between;
  max-width: 326px;
  width: 100%;
  margin: 54px auto 0 auto;
}
.p-intro__intro {
  margin: 28px auto 0 auto;
  font-size: 24px;
  line-height: 1.2;
  color: var(--light-blue-color);
}

@media (min-width: 690px) {
  .page--front .p-intro__subheading {
    font-size: 20px;
    line-height: 33px;
    max-width: 650px;
  }
}

@media (min-width: 690px) {
  .p-view--team .views-row:nth-child(even) .team-member {
    flex-direction: row-reverse;
  }
}
.p-view--team {
  position: relative;
}
.p-view--team .views-row:last-child .team-member {
  margin-bottom: 0;
}
.p-view--team .views-row:last-child .team-member__intro {
  margin-bottom: 0;
}
.p-view--team:before {
  background: url(../images/team-bg.png) no-repeat 50% 69%;
  background: url(../images/team-bg.webp) no-repeat 50% 69%;
  background-size: 1572px 1568px;
  content: "";
  display: block;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  left: -20px;
}
.p-view--team.p-view-inline .views-element-container > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.p-view--team.p-view-inline .views-row {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  max-width: 350px;
}
.p-view--team.p-view-inline .team-member {
  flex-direction: column !important;
  align-items: center;
  text-align: center;
  height: 100%;
}
.p-view--team.p-view-inline .team-member__intro {
  margin: 15px 0 0 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.6;
  color: var(--light-gray-color);
  text-align: left;
  max-width: auto;
}
.p-view--team.p-view-inline .team-member__image {
  width: 100%;
  max-width: 350px;
  flex: none;
  max-height: 434px;
}
.p-view--team.p-view-inline .team-member__image img {
  max-height: 434px;
}
.p-view--team.p-view-inline .team-member .team-member__position {
  display: block;
  font-size: 18px;
  margin-top: 8px;
}
.p-view--team.p-view-inline .team-member .team-member__name {
  font-size: 40px;
  line-height: 1.2;
}
.p-view--team.p-view-inline img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-view--team.p-view-inline:before {
  display: none;
}
@media (max-width: 700px) {
  .p-view--team.p-view-inline .views-row {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
  }
}
@media (max-width: 600px) {
  .p-view--team.p-view-inline .views-row {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.team-member {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
.team-member__image {
  width: auto;
  position: relative;
  max-width: 534px;
  display: block;
  transition: all 0.3s ease;
  border-radius: 50px;
  overflow: hidden;
}
.team-member__image a {
  display: block;
  position: relative;
}
.team-member__image a:hover {
  transform: translateY(-2px);
}
.team-member__image a::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.team-member__image img {
  width: 100%;
  height: auto;
}
.team-member__image .team-member__overlay {
  padding: 30px 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 50px);
  z-index: 100;
}
.team-member__image .team-member__name {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -1.4px;
}
.team-member__image .team-member__name a {
  color: #fff;
  text-decoration: none;
}
.team-member__image .team-member__position {
  font-size: 24px;
  line-height: 1.2;
  color: var(--light-blue-color);
  margin-top: 11px;
}
.team-member__image .team-member__position span {
  display: inline;
}
.team-member__image span {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 690px) {
  .team-member__image .team-member__position {
    margin-top: 24px;
  }
  .team-member__image .team-member__position span {
    display: block;
  }
  .team-member__image .team-member__name {
    font-size: 64px;
    line-height: 1.05;
  }
}
.team-member__intro {
  font-size: 20px;
  line-height: 1.6;
  color: var(--light-gray-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 25px;
  max-width: 534px;
}
@media (min-width: 1040px) {
  .team-member__intro {
    font-size: 36px;
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.team-member__overlay {
  width: 100%;
  text-align: left;
}
@media (min-width: 690px) {
  .team-member {
    margin-bottom: 52px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .team-member__image {
    flex: 0 0 434px;
    width: 434px;
    max-width: none;
  }
  .team-member__intro {
    margin-top: 0;
    padding: 0 20px;
  }
}
@media (min-width: 880px) {
  .team-member__image {
    flex: 0 0 534px;
    width: 534px;
  }
  .team-member__intro {
    padding: 0 60px;
  }
}

.p-view--services .views-element-container > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 38px;
}
.p-view--services .views-element-container > div .views-row {
  width: 100%;
}
.p-view--services .p-view__view {
  margin-top: 55px;
}
@media (min-width: 690px) {
  .p-view--services .views-element-container > div {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .p-view--services .views-element-container > div .views-row {
    max-width: 460px;
    width: calc(50% - 19px);
  }
}
.p-view__subheading {
  font-size: 26px;
  line-height: 1.7;
  max-width: 750px;
}

.services {
  max-width: 460px;
  margin: 0 auto;
}
.services img {
  width: 100%;
  height: auto;
}
.services__box {
  position: relative;
  display: flex;
  border-radius: 40px;
  min-height: 200px;
  overflow: hidden;
}
.services__box a {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  z-index: 1;
  padding: 20px;
  text-align: left;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  transition: all 0.3s ease;
}
.services__box a:hover {
  transform: translateY(-2px);
}
.services__box::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.p-view--news {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.p-view--news .views-row:first-child .news {
  padding-top: 0;
}
.p-view--news a {
  text-decoration: none;
}

.news {
  display: flex;
  border-bottom: 1px solid #333;
  text-align: left;
  padding: 20px 0;
}
.news__box {
  display: flex;
  flex-direction: column;
}
.news__image {
  flex-shrink: 0;
}
.news__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
.news__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0 0 0;
  gap: 5px;
}
.news__content__date {
  color: var(--light-blue-color);
  font-size: 20px;
  line-height: 1.25;
}
.news__content__title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
}
@media (min-width: 640px) {
  .news__box {
    flex-direction: row;
  }
  .news__image img {
    width: 310px;
    height: 210px;
  }
  .news__content {
    padding: 0 20px;
  }
}
@media (min-width: 900px) {
  .news__content {
    padding: 0 40px;
  }
  .news__content__date {
    font-size: 26px;
  }
  .news__content__title {
    font-size: 44px;
  }
}

.more-link {
  margin-top: 40px;
}

.btn {
  font-size: 14px;
  line-height: 1.25;
  color: #fff;
  border-radius: 27px;
  text-decoration: none;
  cursor: pointer;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 120px;
  text-transform: uppercase;
}
.btn a {
  display: block;
}
.btn > * {
  padding: 18px 24px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--blue {
  background-color: var(--blue-color);
  color: #fff;
}
.btn--blue:hover {
  background-color: var(--blue-color-hover);
}

.btn--outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn--large {
  max-width: 272px;
  font-weight: 700;
  width: 100%;
}
.btn--large > * {
  width: calc(100% - 48px);
}

.p-faq {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .p-faq {
    padding: 80px 40px;
  }
}
@media (min-width: 1024px) {
  .p-faq {
    padding: 100px 60px;
  }
}
.p-faq__heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .p-faq__heading {
    font-size: 40px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .p-faq__heading {
    font-size: 48px;
    margin-bottom: 60px;
  }
}
.p-faq__items {
  max-width: 800px;
  margin: 0 auto;
}

.p-faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.p-faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.p-faq-item__question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 40px 20px 0;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .p-faq-item__question {
    font-size: 20px;
    padding: 25px 40px 25px 0;
  }
}
@media (min-width: 1024px) {
  .p-faq-item__question {
    font-size: 22px;
    padding: 30px 40px 30px 0;
  }
}
.p-faq-item__question:hover {
  opacity: 0.8;
}
.p-faq-item__question:focus {
  outline: none;
  outline-offset: 4px;
}
.p-faq-item__icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.p-faq-item__icon::before, .p-faq-item__icon::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.p-faq-item__icon::before {
  width: 24px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-faq-item__icon::after {
  width: 2px;
  height: 24px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-faq-item__question[aria-expanded=true] .p-faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.p-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.p-faq-item__answer p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
@media (min-width: 768px) {
  .p-faq-item__answer p {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  .p-faq-item__answer p {
    font-size: 18px;
  }
}
.p-faq-item__question[aria-expanded=true] + .p-faq-item__answer {
  max-height: 500px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .p-faq-item__question[aria-expanded=true] + .p-faq-item__answer {
    padding-bottom: 25px;
  }
}
@media (min-width: 1024px) {
  .p-faq-item__question[aria-expanded=true] + .p-faq-item__answer {
    padding-bottom: 30px;
  }
}

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