@import url("https://use.typekit.net/mya6sfd.css");
section.contact-modal .contact-panel .contact .name {
  font-family: "nimbus-sans-dv", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 135.714%;
  letter-spacing: -0.14px;
}

section.contact-modal .contact-panel .contact .description, body, .button {
  font-family: "nimbus-sans-dv", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
}

.button {
  font-weight: 700;
}

#snackbar {
  font-family: "nimbus-sans-dv", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}

@media (max-width: 991.98px) {
  section.contact-modal .contact-panel .contact .name {
    font-size: 22px;
  }
  section.contact-modal .contact-panel .contact .description, body, .button {
    font-size: 16px;
  }
  #snackbar {
    font-size: 16px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background: #FFFFFF;
  color: #0F194C;
}
body.hamburger-menu-opened {
  overflow: hidden;
}
body.modal-blocked {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #F2F4FA;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background-color: #176DE5;
  border-radius: 0;
}

.container,
.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 767.98px) {
  .container,
  .container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.container {
  max-width: 1488px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > div[class^=col] {
  padding-left: 16px;
  padding-right: 16px;
}

a {
  color: #176DE5;
  text-decoration: underline;
  transition: color 0.3s;
}
a:hover {
  color: #1463D1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 64px;
  margin: 0;
  padding: 0 40px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s;
}
.button.button-emphasis-50 {
  background: #176DE5;
  color: #FFFFFF;
}
.button.button-emphasis-50:hover {
  background: #1463D1;
  color: #FFFFFF;
  text-decoration: none;
}
.button.button-primary-10 {
  background: #E6E8F2;
  color: #0F194C;
}
.button.button-primary-10:hover {
  background: #F2F4FA;
  color: #0F194C;
  text-decoration: none;
}
.button.button-full-width {
  display: flex;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
@media (max-width: 767.98px) {
  .button {
    display: flex;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
#snackbar {
  visibility: hidden;
  position: fixed;
  left: 50%;
  bottom: 30px;
  max-width: 100%;
  min-width: 250px;
  margin-left: -125px;
  padding: 16px;
  z-index: 1;
  background: #176DE5;
  border-radius: 12px;
  text-align: center;
  color: #FFFFFF;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

section.contact-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s, bottom 0s 0.3s;
  z-index: 9999999;
}
section.contact-modal.show {
  display: flex;
  opacity: 1;
  bottom: 0;
  transition: opacity 0.3s, bottom 0s;
}
section.contact-modal .overlay {
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(15, 25, 76, 0.8);
}
section.contact-modal .contact-panel {
  display: flex;
  align-items: stretch;
  position: relative;
  width: 100%;
  max-width: 816px;
  height: auto;
  margin: 16px;
  padding: 0;
  background: #FFFFFF;
  z-index: 1;
}
section.contact-modal .contact-panel .close {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 24px;
  right: 24px;
  background-image: url(../images/icon-close-primary-50.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
section.contact-modal .contact-panel .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: auto;
  margin: 0;
  padding: 56px;
  border-right: solid 1px #C2C6D9;
}
section.contact-modal .contact-panel .contact .name {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  color: #0F194C;
  text-align: center;
}
section.contact-modal .contact-panel .contact .description {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 40px;
  padding: 0;
  color: #333B66;
  text-align: center;
}
section.contact-modal .contact-panel .contact .contact-button {
  margin: auto 0 0;
}
section.contact-modal .contact-panel .contact:last-child {
  border-right: none;
}
@media (max-width: 767.98px) {
  section.contact-modal {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  section.contact-modal .contact-panel {
    flex-direction: column;
    max-height: 100%;
    padding-top: 48px;
    overflow: auto;
  }
  section.contact-modal .contact-panel .contact {
    width: 100%;
    padding: 32px 24px;
    border-right: none;
    border-bottom: solid 1px #ACBABF;
  }
  section.contact-modal .contact-panel .contact:last-child {
    border-bottom: none;
  }
}

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