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

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

body, html {
  font-family: "aktiv-grotesk-extended";
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  body, html {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  body, html {
    font-size: 16px;
  }
}

p {
  text-align: left;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  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: 1300px;
  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: #000;
  transition: background-color 5000s ease-in-out 0s;
}

.menu_btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.menu_btn i {
  transition: all 0.2s ease-out;
  height: 1px;
  width: 40px;
  background-color: #fff;
  position: absolute;
  border-radius: 2px;
  left: 0;
}
.menu_btn i:nth-child(1) {
  top: 5px;
}
.menu_btn i:nth-child(2) {
  top: 15px;
}
.menu_btn i:nth-child(3) {
  top: 25px;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  transition: opacity 0.5s ease;
}
header .content {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  align-items: center;
}
header .btn-contact {
  dipslay: inline-block;
  margin-left: auto;
  margin-right: 70px;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 4.8px;
}
header .btn-contact:hover {
  color: #95773F;
}
header .logo {
  display: block;
  width: 395px;
  height: 100px;
  background: url(/i/logo-white.svg) no-repeat center/contain;
  transition: all 0.5s ease;
}
header .menu_container {
  position: relative;
  width: 40px;
  height: 30px;
  z-index: 1000;
  cursor: pointer;
  display: block;
}

#main-nav {
  z-index: 5;
  position: fixed;
  right: -600px;
  max-height: calc(100vh - 40px);
  top: 20px;
  height: 800px;
  background: #4A6376;
  width: 600px;
  max-width: calc(100vw - 40px);
  border-radius: 10px;
  padding-left: 36px;
  padding-top: 36px;
}
#main-nav .menu_btn {
  position: absolute;
  top: 30px;
  right: 50px;
  width: 40px;
  height: 30px;
  left: auto;
}
#main-nav nav {
  margin-left: auto;
  margin-top: 150px;
}
#main-nav nav ul {
  display: flex;
  flex-direction: column;
  flex-wrap: no-wrap;
  gap: 29px;
  list-style: none;
}
#main-nav nav ul li {
  position: relative;
  border-bottom: 1px solid #9EB5C5;
  padding-bottom: 10px;
}
#main-nav nav ul li::after {
  position: absolute;
  right: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 65px;
  width: 65px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2.75px;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  line-height: 13px;
}
#main-nav nav ul li:nth-child(1)::after {
  content: "01";
}
#main-nav nav ul li:nth-child(2)::after {
  content: "02";
}
#main-nav nav ul li:nth-child(3)::after {
  content: "03";
}
#main-nav nav ul li:nth-child(4)::after {
  content: "04";
}
#main-nav nav ul a {
  color: #fff;
  position: relative;
  font-size: 44px;
  font-weight: 200;
}
#main-nav nav ul li:hover a {
  background: url(/i/arrow-white.svg) no-repeat left center/20px auto;
  padding-left: 25px;
  transition: padding 0.5s ease;
}
#main-nav nav ul li:hover::after {
  background: #fff;
  color: #4A6376;
}

.nav-on #main-nav {
  right: 20px;
  transition: right 0.5s ease-out;
}
.nav-on .menu_btn i {
  width: 90%;
  top: 50% !important;
  left: 50%;
}
.nav-on .menu_btn i:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-on .menu_btn i:nth-child(2) {
  opacity: 0;
}
.nav-on .menu_btn i:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

header.scroll {
  background: #fff;
}
header.scroll .logo {
  background-image: url(/i/logo-color.svg);
  width: 295x;
  height: 75px;
}
header.scroll .btn-contact {
  color: #111F44;
}
header.scroll .btn-contact:hover {
  color: #95773F;
}
header.scroll .menu_btn i {
  background-color: #111F44 !important;
}

footer {
  margin-top: 300px;
  background: #0E1936;
  padding: 150px 0;
  color: #fff;
  z-index: 4;
  position: relative;
}
footer .content {
  text-align: center;
}
footer img {
  margin: 0 auto;
}
footer nav {
  margin: 30px auto 0 auto;
}
footer nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0 auto;
  width: fit-content;
}
footer nav ul a {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 3px;
  font-weight: 400;
}
footer nav ul a:hover {
  color: #95773F;
}
footer .line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin: 20px 0;
}
footer p {
  font-size: 16px;
  color: #9EB5C5;
  font-weight: 300;
  text-align: center;
}

@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  header .content {
    padding: 10px 0;
  }
  header .btn-contact {
    display: none;
  }
  header .menu_container {
    margin-left: auto;
  }
  header .logo {
    width: 240px !important;
    height: 60px !important;
  }
  #main-nav nav {
    margin-top: 100px;
  }
  #main-nav nav ul a {
    font-size: 20px;
  }
  #main-nav nav ul li::after {
    width: 50px;
    padding: 5px 0;
  }
  footer {
    padding: 100px 0 50px;
  }
  footer img {
    max-width: 80%;
  }
  footer nav ul {
    flex-direction: column;
  }
}

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