/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  color: white;
}

.background-main {
  background-color: rgb(3, 10, 29);
}

.main {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

/* HEADER */
.header {
  height: auto;
  padding: 16px 0;
  position: fixed;
  z-index: 3;
  background-color: rgb(3, 10, 29);
  box-shadow: 0px 4px 12px 2px rgba(0, 0, 0, 0.04);
  width: 100%;
  top: 0;
  transition: 0.4s;
}

.header.active {
  height: 100%;
}

.header__logo {
  width: 100%;
  margin-right: 0;
  max-width: 130px;
}

.flex {
  display: flex;
}

.header__content {
  display: none;
}

.header__content--mobile {
  display: none;
}

.burger {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../assets/images/common/burger.svg) no-repeat center;
  cursor: pointer;
}

.burger.burger__close {
  display: none;
}

.close {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../assets/images/common/close.svg) no-repeat center;
  cursor: pointer;
  background-size: contain;
}

a {
  text-decoration: unset;
  outline: none;
}

ol,
ul {
  list-style: none;
}

.header ul li {
  margin-right: 37px;
}

.header ul li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #81858e;
  position: relative;
}

.header .header__content--mobile li a {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #81858e;
  position: relative;
}

.header .header__content--mobile li {
  margin-bottom: 36px;
}

.header ul li a.active {
  color: #fff;
}

.header ul li a.active:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #44d2ff;
  bottom: -4px;
}

/* END HEADER */

/* FOOTER */
.footer ul li {
  margin-right: 37px;
  margin-bottom: 20px;
}

.footer ul li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #81858e;
  position: relative;
}

/* END FOOTER */

/* REPONSIVE */
@media (min-width: 1200px) {
  .header__logo {
    margin-right: 50px;
    max-width: 200px;
  }

  .burger,
  .close {
    display: none;
  }

  .flex {
    display: flex;
  }

  .footer ul li {
    margin-bottom: 0;
  }

  .hero_bg {
    position: absolute;
    right: 0px;
    top: 100px;
    display: block;
  }

  .hero_bg2 {
    position: absolute;
    left: 0px;
    top: 1200px;
    display: block;
    width: 42%;
  }
}
