.bold-font {
  font-weight: 700;
}

.light-font {
  font-weight: 400;
}

.header {
  position: relative;
  z-index: 99;
  margin-bottom: 40px;
}
@media (max-width: 990px) {
  .header {
    margin-bottom: 25px;
  }
}
.header__wrap {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 70px;
  grid-gap: 20px;
}
@media (max-width: 990px) {
  .header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
  }
}
.header__logo {
  max-width: 100%;
  height: 50px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 576px) {
  .header__logo {
    height: 30px;
  }
}
.header__logo-link {
  display: flex;
  align-items: center;
}
.header nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header nav {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 15px;
    background: #000;
    height: 100vh;
    transition: 0.3s;
    transform: translateX(-110%);
    width: 100vw;
    box-sizing: border-box;
    z-index: 99;
  }
}
.header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  .header nav ul {
    justify-content: center;
    flex-direction: column;
  }
}
.header nav li {
  margin: 0 10px 0 0;
}
@media (max-width: 990px) {
  .header nav li {
    margin: 0;
  }
}
.header nav a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.header .type-2 nav {
  justify-content: flex-start;
}
@media (max-width: 990px) {
  .header .type-2 nav {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 15px;
    background: #000;
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
  }
}
.header .type-2 .header__logo {
  display: block;
  margin: 0 auto;
}
.header .type-3 .header__btn {
  grid-column-start: 3;
}
@media (max-width: 990px) {
  .header .type-3 .header__btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}
@media (max-width: 990px) {
  .header .type-3 .header__btn-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 8px 5px;
    font-size: 12px;
    font-weight: 500;
  }
}
.header__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 990px) {
  .header__btn {
    display: none;
  }
}
.header__btn-mob {
  display: none;
}
@media (max-width: 990px) {
  .header__btn-mob {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    max-width: 280px;
    margin: 15px auto 0 auto;
  }
}
.header__btn-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 990px) {
  .header__btn-item {
    font-size: 14px;
    padding: 4px 20px;
    margin: 0;
  }
}
.header .active {
  transform: translateX(0);
}

.call-menu {
  display: none;
}
@media (max-width: 990px) {
  .call-menu {
    display: block;
  }
}

.close-menu {
  display: none;
}
@media (max-width: 990px) {
  .close-menu {
    display: block;
    margin: 0 0 10px auto;
  }
}

.table-of-content__wrap {
  overflow: hidden;
}
.table-of-content__wrap ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 10px;
}
.table-of-content__wrap li {
  margin: 0 10px 0 0;
  font-size: 16px;
  padding: 2px;
  cursor: pointer;
  font-weight: 500;
}

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