@font-face {
  font-family: 'Figtree';
  src: url('assets/fonts/Figtree-VariableFont_wght.ttf');
}
@font-face {
  font-family: 'Noto Sans';
  src: url('assets/fonts/NotoSans-VariableFont_wdth,wght.ttf');
}

html
{
  height: 100%;
  width: 100%;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial;
}
body
{
  width: 100vw;
  height: 100vh;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  background: white;
  color: #212121;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

p {
  margin: 0;
}

@media (min-width: 1450px) {
  .elementor-section:not(.elementor-section-full_width) .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 10px 0px !important;
  }
  .elementor-section-full_width .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0px 0px !important;
  }
}
@media (max-width: 1450px) and (min-width: 750px) {
  .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 10px 2em !important;
  }
  .elementor-section-full_width .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0px !important;
  }
}
@media (max-width: 750px) {
  .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0px !important;
  }
  .elementor-section-full_width .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0px !important;
  }
}

#container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}
#header-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 1px solid #eeeeee;
}
#header {
  width: calc(1400px + 4em);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 2em;
  column-gap: 1em;
}
#logo-link {
  text-decoration: none;
  margin: 1em 0;
}
@media (min-width: 1150px) {
  #logo-link img {
    height: 3em;
    width: auto;
  }
  #nav-links a {
    font-size: 120%;
  }
}
@media (max-width: 1150px) {
  #logo-link img {
    height: 1.8em;
    width: auto;
  }
  #nav-links a {
    font-size: 100%;
  }
}
#nav-container {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#nav-links {
    display: inline-flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    height: 100%;
}
#nav-links > li:hover > a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
@media (min-width: 950px) {
  #nav-links {
    column-gap: 3em;
  }
}
@media (min-width: 1150px) {
  #nav-links > li:hover > a:after {
    width: calc(100% + 2.5em);
  }
}
@media (min-width: 950px) and (max-width: 1150px) {
  #nav-links > li:hover > a:after {
    width: calc(100% + 3em);
  }
}
@media (max-width: 950px) {
  #nav-links {
    column-gap: 1em;
  }
  #nav-links > li:hover > a:after {
    width: calc(100% + 1em);
  }
}
#nav-links > li {
  height: 100%;
  position: relative;
}
#nav-links > li a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #212121;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}
#nav-links a:hover, #nav-links .current-menu-item > a, #nav-links .current_page_parent > a {
    color: #1976d2;
}
#nav-links .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #e0e0e0;
  border-top: 2px solid #1976d2;
  box-shadow: rgba(7, 3, 3, 0.05) 2px 1px 2px, rgba(0, 0, 0, 0.05) -2px 2px 2px;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
#nav-links li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
#nav-links .sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#nav-links .sub-menu a {
  padding: 0.5em 1em;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 110%;
  transition: color 0.3s, background 0.3s;
}
#nav-links .sub-menu a:hover {
  background: #eeeeee;
}

.language-selector {
  white-space: nowrap;
}
.language-selector a {
  text-decoration: none;
  color: #9e9e9e;
  cursor: pointer;
  transition: all 0.3s;
}
.language-selector a:hover, .language-selector a.selected {
    color: #424242;
}

#mainContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}


footer
{
  padding: 1.5em 0;
  background: #223038;
  color: #d8e8f2;
  font-size: 100%;
  text-align: center;
  margin-top: auto;
}
#footer-container
{
  display: inline-grid;
  text-align: left;
}
footer .footer-header
{
  font-size: 100%;
  margin: 0.5em 0;
  font-family: Arial;
  font-weight: bold;
  color: white;
}
.footer-icon
{
  height: 1.1em;
  vertical-align: middle;
}
footer a
{
  text-decoration: none;
  color: #d8e8f2;
}
footer a:hover
{
  text-decoration: underline;
}
footer p
{
  line-height: 150%;
}
.footer-element-inner
{
  display: inline-block;
  text-align: left;
}
#footer-divider
{
  height: 1.2px;
  background: #77868f;
  margin-bottom: 1.5em;
  width: 100%;
  margin-top: 2em;
}

@media (max-width: 750px) {
  #footer-container
  {
    grid-template-columns: 1fr;
  }
  footer p
  {
    margin: 0;
  }
  footer .footer-header
  {
    margin: 1em 0 0 0;
  }
}

@media (max-width: 970px) and (min-width: 750px) {
  #footer-container
  {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 80px;
  }
}
@media (max-width: 1200px) and (min-width: 970px) {
  #footer-container
  {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 120px;
  }
}
@media (max-width: 1400px) and (min-width: 1200px) {
  #footer-container
  {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 120px;
  }
}
@media (min-width: 1400px) {
  #footer-container
  {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 120px;
  }
}

.wpcf7-form {
  border-radius: 5px;
  padding: 2em 2em;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.wpcf7-text, .wpcf7-textarea {
  font-size: 110%;
  padding: 0.6em 0.7em;
  background: #eceff1;
  border: 2px solid #eceff1;
  border-radius: 5px;
  width: 100%;
  transition: border 0.3s;
}
.wpcf7-not-valid {
  border: 2px solid #dc3232;
}
.wpcf7-text:focus, .wpcf7-textarea:focus {
  border: 2px solid #212121;
  outline: none;
}
.wpcf7-textarea {
  resize: none;
  font-family: 'Figma', sans-serif;
}
.wpcf7-form label {
  color: #263238;
  font-size: 90%;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}
.wpcf7-form-control {
  margin-top: 0.3em;
}
.wpcf7-form label, .wpcf7-form > p {
  margin-bottom: 1em;
}
.contact-form-table > p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2em;
}
@media ((min-width: 770px) and (max-width:  1100px)) or (max-width:  550px) {
  .contact-form-table > p {
    grid-template-columns: 1fr;
  }
}
.wpcf7-submit {
  border: none;
  background: #0d47a1;
  color: white;
  padding: 0.7em 1.5em;
  font-size: 100%;
  border-radius: 1.35em;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
}
.contact-form-centered {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.wpcf7-form:not(.submitting) .wpcf7-spinner {
  display: none;
}
.wpcf7-form.submitting .wpcf7-submit {
  display: none;
}
.wpcf7-response-output {
  padding: 0.7em 1em !important;  
  border-radius: 5px;
}
.wpcf7-form.invalid .wpcf7-response-output {
  border: 2px solid #dc3232 !important;
}
.wpcf7-form.sent .wpcf7-response-output {
  margin: 0 !important;
}
.wpcf7-form.sent .contact-form-table, .wpcf7-form.sent .contact-form-centered, .wpcf7-form.sent > p {
  display: none;
}


#cookie-consent {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 100;
}
#cookie-consent.hidden, #cookie-consent .hidden {
  display: none;
}
#cookie-consent .content {
  padding: 2em 2em;
  max-width: 750px;
}
#cookie-consent .content > .title {
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 0.7em;
}
#cookie-consent .content > .info-text {
  font-size: 110%;
}

#cookie-consent .content .consent-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 0.3em;
  margin-top: 1em;
  background: #f5f5f5;
  padding: 1em 1.5em;
  border-radius: 7px;
}
#cookie-consent .content .consent-box > .title {
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#cookie-consent .content .expand-btn {
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
#cookie-consent .content .expand-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0.25em;
  width: 2em;
  height: 2em;
}
#cookie-consent .content .expand-btn:focus {
  outline: none;
}
#cookie-consent .content .expand-btn img {
  height: 1.5rem;
  width: auto;
}
#cookie-consent .content .consent-box .consent-btn {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
#cookie-consent .content .consent-box .consent-btn::after {
  content: "";
  position: absolute;
  top: -0.6em;
  left: -0.6em;
  width: 3em;
  height: 3em;
}
#cookie-consent .content .consent-box .consent-btn:active {
  outline: none;
}
#cookie-consent .content .consent-box .consent-btn img, #cookie-consent .content .consent-img {
  height: 1.5rem;
  width: auto;
}
#cookie-consent .content .consent-box .info-text {
  grid-column: 1 / span 3;
  margin-top: 0.3em;
}
#cookie-consent .content .consent-box .divider {
  grid-column: 1 / span 3;
  margin-top: 0.7em;
  margin-bottom: 0.7em;
  height: 1px;
  width: 100%;
  background: #e0e0e0;
}

#cookie-consent .content .main-btns {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top: 1.5em;
}
#cookie-consent .content .main-btns button {
  border: none;
  font-size: 100%;
  padding: 0.7em 1.5em;
  border-radius: 1.2em;
  cursor: pointer;
}
#cookie-consent .content .main-btns button:active {
  transform: scale(0.97);
}
#cookie-consent .content .main-btns .accept-all {
  background: #1976d2;
  color: white;
}
#cookie-consent .content .main-btns .accept-all:hover {
  background: #1565c0;
}
#cookie-consent .content .main-btns .accept-selected {
  background: #eeeeee;
  color: #212121;
}
#cookie-consent .content .main-btns .accept-selected:hover {
  background: #bdbdbd;
}

.custom-h-el a {
  word-break: break-all;
}
.main-heading h1, .std-font * {
  font-family: 'Figtree', sans-serif !important;
}