* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

*, a {
  -webkit-tap-highlight-color: transparent !important;
}

body, html {
  font-family: "avenir-lt-pro";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
}
@media screen and (max-width: 980px) {
  body, html {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  body, html {
    font-size: 14px;
  }
}

p {
  text-align: left;
  font-family: "avenir-lt-pro";
  font-style: normal;
  font-weight: 300;
  color: #1C253B;
  font-size: 0.9rem;
  line-height: 1.65em;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/***SECTION + CONTAINS***/
section.padSml {
  padding: 4.5rem 0;
}
section.padMed {
  padding: 6rem 0;
}
section.padLrg {
  padding: 8rem 0;
}

.contain, .container {
  width: calc(100% - 2rem);
  max-width: 2500px;
  margin: 0 auto;
}

.flex_wrapper {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
}
.flex_wrapper.--space_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_wrapper.--item_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/***** FORM *****/
form input, form textarea {
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
form input:focus, form textarea:focus, form button:focus, form select:focus {
  outline: none;
}
form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form textarea:-webkit-autofill,
form textarea:-webkit-autofill:hover,
form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

header {
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.38);
  padding: 20px 0 16px 0;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 100;
}
header .contain, header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header #menu_btn {
  display: none;
}
header .logo {
  width: 90px;
  display: block;
}
header .logo img {
  width: 100%;
}
header nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
header nav a {
  text-transform: uppercase;
  color: rgb(33, 67, 110);
  font-weight: 800;
  font-size: 15px;
}

footer {
  padding: 20px 0;
}
footer .contain, footer .container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 50px;
}
footer .contain > div:nth-child(2) p, footer .container > div:nth-child(2) p {
  font-size: 10px;
  color: rgb(33, 67, 110);
  font-weight: 400;
  margin-top: 2em;
  opacity: 0.7;
}
footer .contain > div:nth-child(3), footer .container > div:nth-child(3) {
  margin-left: auto;
}
footer .contain > div:nth-child(3) h1, footer .container > div:nth-child(3) h1 {
  font-size: 10px;
  font-weight: 800;
  color: rgb(33, 67, 110);
}
footer .contain > div:nth-child(3) p, footer .container > div:nth-child(3) p {
  font-size: 10px;
  font-weight: 400;
  color: rgb(33, 67, 110);
}
footer .contain > div:nth-child(3) a, footer .container > div:nth-child(3) a {
  color: inherit;
}
footer .contain > div:nth-child(3) a:hover, footer .container > div:nth-child(3) a:hover {
  text-decoration: underline;
}
footer .logo {
  width: 90px;
  display: block;
}
footer .logo img {
  width: 100%;
}
footer nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
footer nav a {
  text-transform: uppercase;
  color: rgb(33, 67, 110);
  font-weight: 800;
  font-size: 10px;
}
footer .content p {
  display: flex;
  gap: 50px;
  flex-direction: row;
  justify-content: center;
  color: rgb(33, 67, 110);
  font-size: 10px;
  font-weight: 400;
}
footer .content p a {
  color: inherit;
  text-decoration: underline;
}

#shade {
  display: none;
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup-modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  width: 90vw;
  max-width: 900px;
  height: 55vh;
  max-height: 550px;
  background-color: #fff;
  display: none;
  z-index: 999;
  border-radius: 10px;
  overflow: hidden;
}
.popup-modal .btn-close {
  height: 22px;
  width: 22px;
  background: url(/i/close.svg) center/contain no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.popup-modal .content {
  width: 100%;
  padding: 2rem 1rem;
  height: 100%;
  overflow: auto;
}
.popup-modal .content p strong {
  font-weight: 700;
}
.popup-modal .content a {
  color: #76B0BD;
  text-decoration: underline;
}
.popup-modal .content ul {
  padding-left: 1em;
}

@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  header nav ul {
    gap: 16px;
  }
}
@media screen and (max-width: 500px) {
  footer .logo {
    margin: 0 auto;
  }
  footer .contain, footer .container {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
  }
  footer .contain > div, footer .container > div {
    width: 100%;
    text-align: center;
  }
  footer .contain p, footer .container p {
    text-align: center;
  }
}

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