@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

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

body, html {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
}

@media screen and (max-width: 980px) {
  body, html {
    font-size: 17px;
  }
}

@media screen and (max-width: 767px) {
  body, html {
    font-size: 16px;
  }
}

p {
  text-align: left;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #264C5B;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.666em;
}

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: 1280px;
  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;
}

.btn-contact {
  cursor: pointer;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  height: 100px;
}

header .contain, header .container {
  position: relative;
  height: 100%;
}

header .logo {
  background: url(/i/logo.svg) no-repeat center/contain;
  width: 215px;
  height: 60px;
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
}

header nav {
  float: right;
}

header ul.top-nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  height: 100px;
}

header ul.top-nav li {
  color: #fff;
  font-size: 0.888em;
}

header ul.top-nav li:hover {
  font-weight: 500;
}

header ul.top-nav li a {
  color: inherit;
  font-size: inherit;
}

header ul.top-nav li a:hover {
  font-weight: 500;
}

header ul.top-nav li.selNav a {
  font-weight: 500;
}

header .menu_container {
  display: none;
  position: absolute;
  right: 0;
  top: calc(50% - 2px);
  transform: translate(0, -50%);
}

header #menu_btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 37px;
  height: 10px;
  position: relative;
}

header #menu_btn i {
  transition-delay: .6s;
  transition: all 0.2s ease-out;
  height: 3px;
  width: 37px;
  background-color: #fff;
  position: absolute;
  left: 0;
}

header #menu_btn i:nth-child(1) {
  top: 0;
}

header #menu_btn i:nth-child(2) {
  top: 10px;
}

header.active #menu_btn i:nth-child(1) {
  transform: rotate(45deg);
  top: 5px;
}

header.active #menu_btn i:nth-child(2) {
  transform: rotate(-45deg);
  top: 5px;
}

header.scroll {
  background: #fff;
}

header.scroll ul.top-nav li {
  color: #55585B;
}

header.scroll #menu_btn i {
  background-color: #55585B;
}

header.scroll .logo {
  background-image: url(/i/logo2.svg);
}

footer {
  padding: 80px 0 0 0;
}

footer .logo {
  background: url(/i/logo2.svg) no-repeat center/contain;
  width: 215px;
  height: 60px;
  display: block;
}

footer .cols {
  display: flex;
  flex-direction: row;
  margin-bottom: 80px;
  justify-content: space-between;
}

footer nav ul {
  list-style: none;
}

footer nav ul li {
  color: #264C5B;
  font-size: 0.888em;
  font-weight: 300;
}

footer nav ul li a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

footer nav li {
  padding-bottom: 10px;
}

footer nav li:last-child {
  padding-bottom: 0;
}

footer li.btn-linkedin a {
  background: url(/i/in.svg) no-repeat center/15px auto;
  display: inline-block;
  text-indent: -9999px;
  width: 15px;
}

footer .cols > div:nth-child {
  min-wiedth: 300px;
}

footer .cols p {
  border-top: 1px solid #D4D4D4;
  padding-top: 18px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
}

footer .cols p span:nth-child(1) {
  line-height: 1;
  letter-spacing: 1.56px;
  font-size: 0.722em;
  font-weight: 500;
  text-transform: uppercase;
  color: #264C5B;
  padding-right: 30px;
}

footer .cols p span:nth-child(2) {
  font-weight: 200;
  letter-spacing: -1.17px;
  font-size: 2.166em;
  color: #264C5B;
}

footer .cols p span a {
  color: #43A2A3;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

footer .contain:nth-child(2), footer .container:nth-child(2) {
  text-align: center;
  border-top: 1px solid #D4D4D4;
  padding: 30px 0;
}

footer .contain:nth-child(2) p, footer .container:nth-child(2) p {
  text-align: center;
  color: #264C5B;
  font-size: 0.888em;
  font-weight: 300;
}

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

#contact {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #14262E;
  color: #fff;
  top: 0;
  left: 0;
  z-index: 101;
  padding: 100px 0;
}

#contact .contain, #contact .container {
  position: relative;
}

#contact .btn-close {
  cursor: pointer;
  background: url(/i/btn-close.svg) no-repeat center/50% auto;
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  top: 0;
  outline: none;
  border: 1px solid #fff;
  border-radius: 50%;
}

#contact h2 {
  font-size: 5em;
  color: #fff;
  font-weight: 200;
  padding-top: 100px;
}

#contact .cols {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#contact .cols > div:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  padding-right: 100px;
  width: 65%;
  box-sizing: border-box;
}

#contact .cols > div:nth-child(2) {
  padding-left: 100px;
  width: 35%;
  box-sizing: border-box;
}

#contact label {
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  font-size: 0.722em;
  letter-spacing: 1.56px;
  color: rgba(255, 255, 255, 0.5);
}

#contact p {
  margin-bottom: 2em;
  color: #fff;
}

#contact a {
  color: #43A2A3;
  text-decoration: underline;
}

#contact .response {
  padding-top: 20px;
}

#contact form {
  text-align: center;
}

#contact form input.hidhp {
  display: none;
}

#contact form ::placeholder {
  display: block;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  line-height: 1;
  color: #fff;
}

#contact form input {
  display: block;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 1.2rem 0 0.5rem 0;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: solid 1px rgba(212, 212, 212, 0.5);
  appearance: none;
  -webkit-appearance: none;
  margin-bottom: 1.5rem;
}

#contact form textarea {
  display: block;
  height: 170px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  background: transparent;
  padding: 1rem;
  border: solid 1px rgba(212, 212, 212, 0.5);
  appearance: none;
  -webkit-appearance: none;
  resize: none;
  margin-bottom: 1.5rem;
}

#contact form .col {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

#contact form .col input {
  width: 50%;
}

#contact form .btn-submit {
  margin-top: 1.5rem;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.5s ease-out;
  width: fit-content;
  display: block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 15px 60px 15px 30px;
  border-radius: 30px;
  position: relative;
}

#contact form .btn-submit::after {
  top: 0;
  left: 0;
  content: "";
  background: url(/i/arrow.svg) no-repeat calc(100% - 25px) center/25px auto;
  position: absolute;
  width: 100%;
  height: 100%;
}

#contact form .btn-submit:hover {
  background: #43A2A3;
}

body .cookie-disclaimer {
  background-color: #E5F3F3;
  box-shadow: initial;
  border-radius: 10px;
  width: 90% !important;
  max-width: 1320px !important;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px !important;
  z-index: 1000;
}

body .cookie-disclaimer * {
  color: #264C5B;
  text-transform: none !important;
}

body .cookie-disclaimer .c-disclaimer.c-on {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

body .cookie-disclaimer .c-disclaimer.c-on p {
  margin: 0 1rem 0 0;
}

body .cookie-disclaimer .c-disclaimer.c-on > a, body .cookie-disclaimer .c-disclaimer.c-on button {
  min-width: 175px;
  margin: 0 !important;
}

body .cookie-disclaimer .c-content a:nth-child(5), body .cookie-disclaimer .c-content button:nth-child(5) {
  color: #fff;
  background-color: #d13e3e !important;
}

body .cookie-disclaimer .c-content a:nth-child(6), body .cookie-disclaimer .c-content button:nth-child(6) {
  color: #fff;
  background-color: #93aac5 !important;
}

body .cookie-disclaimer p, body .cookie-disclaimer div {
  font-size: .8rem;
  line-height: 1.33em;
}

body .cookie-disclaimer a, body .cookie-disclaimer button {
  text-decoration: none;
}

body .cookie-disclaimer ul {
  list-style-type: none;
}

body .cookie-disclaimer .c-content h2 {
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.2em;
  letter-spacing: normal;
}

body .cookie-disclaimer h3 {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2em;
}

body .cookie-disclaimer h3.c-on {
  color: #A5C4D4 !important;
}

body .cookie-disclaimer .btn-agree, body .cookie-disclaimer li > a, body .cookie-disclaimer li > button {
  background-color: #264C5B;
  color: #fff;
}

body .cookie-disclaimer li > button {
  width: 100%;
  text-align: left;
  text-decoration: none !important;
}

body .cookie-disclaimer .btn-preferences, body .cookie-disclaimer .c-nav .btn-close-pref a, body .cookie-disclaimer .c-nav .btn-close-pref button {
  background-color: #264C5B;
  color: #fff;
}

body .cookie-disclaimer .c-nav .btn-close-pref button {
  text-align: left;
}

body .cookie-disclaimer .btn-agree, body .cookie-disclaimer .btn-preferences {
  border-radius: 3.5rem;
  padding: .5rem 1rem;
  text-align: center;
}

@media screen and (max-width: 1350px) {
  body .cookie-disclaimer {
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
    bottom: 0 !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on {
    display: block !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > p {
    margin-bottom: 1.5rem;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > a {
    margin-bottom: .5rem !important;
  }
  body .cookie-disclaimer .c-disclaimer.c-on > .btn-agree {
    margin-right: .75rem !important;
  }
}

@media screen and (max-width: 1279px) {
  #contact {
    overflow-y: auto;
  }
  #contact .cols > div:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    padding-right: 40px;
    width: 60%;
    box-sizing: border-box;
  }
  #contact .cols > div:nth-child(2) {
    padding-left: 40px;
    width: 40%;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1024px) {
  footer .cols {
    flex-wrap: wrap;
  }
  footer .cols > div:nth-child(1) {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) and (max-height: 900px) {
  #contact {
    padding: 1rem 0;
  }
  #contact .contain, #contact .container {
    height: 100%;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #contact .btn-close {
    width: 60px;
    height: 60px;
  }
  #contact h2 {
    font-size: 4em;
    padding-top: 0;
  }
  #contact form input {
    padding: 1rem 0 0.5rem;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  header nav {
    display: none;
  }
  header .menu_container {
    display: block;
  }
  header.active .logo {
    background-image: url(/i/logo2.svg);
    z-index: 104;
  }
  header.active nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
  }
  header.active nav .wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  header.active nav ul.top-nav {
    flex-direction: column;
  }
  header.active nav li {
    display: block;
    font-size: 1.25em;
  }
  header.active nav ul.top-nav li {
    color: #55585B;
  }
  header.active #menu_btn i {
    background-color: #55585B;
  }
  footer {
    padding-top: 50px;
  }
  footer nav ul li {
    font-size: 1.25em;
  }
  footer .cols {
    margin-bottom: 0;
  }
  footer .cols > div {
    width: 100% !important;
    margin-bottom: 30px;
  }
  footer .cols p span:nth-child(1) {
    padding-right: 10px;
  }
  footer .cols p span:nth-child(2) {
    font-size: 1.25em;
  }
  #contact {
    padding: 50px 0;
  }
  #contact .btn-close {
    width: 60px;
    height: 60px;
  }
  #contact h2 {
    font-size: 3.5em;
    padding-top: 60px;
  }
  #contact .cols {
    flex-direction: column;
  }
  #contact .cols > div:nth-child(1) {
    border-right: none;
    padding-right: 0px;
    width: 100%;
    padding-top: 30px;
    order: 2;
  }
  #contact .cols > div:nth-child(2) {
    padding-left: 0px;
    width: 100%;
    padding-bottom: 0;
    order: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
}
