header {
  position: relative;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  font-weight: 400;
  line-height: 1.4;
  padding-top: 30px;
  transition: 0.3s;
}
@media (max-width: 991px) {
  header {
    padding-top: 20px;
  }
}
header .logo {
  width: 108px;
  height: 62px;
}
@media (min-width: 1200px) {
  header .logo {
    animation: logoIn 1.5s ease-in;
  }
}
header .logo.logo_mobile {
  display: none;
}
@media (max-width: 1199px) {
  header .logo.logo_mobile {
    display: block;
  }
}
header .logo.logo_desktop {
  margin-right: 5px;
}
@media (max-width: 1199px) {
  header .logo.logo_desktop {
    display: none;
  }
}
header .header__wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--dark, #262626);
  box-shadow: 0 0 5px 5px var(--white, #fff), inset 0 0 0 1px var(--dark-gray, #4f4f4f);
  border-radius: var(--radius-l, 15px);
  padding: 5px 20px 5px 10px;
}
@media (min-width: 1200px) {
  header .header__wrap {
    animation: headerWidth 1s ease-in;
  }
}
@media (max-width: 1199px) {
  header .header__wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  header .header__wrap {
    padding: 1px;
  }
}
@media (min-width: 992px) {
  header .header__wrap .header__nav {
    display: block !important;
  }
}
header .header__wrap .menu-btn {
  display: none;
}
@media (max-width: 1199px) {
  header .header__wrap .menu-btn {
    display: block;
    position: absolute;
    z-index: 10;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 24px;
    cursor: pointer;
    transition: 0.3s;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  header .header__wrap .menu-btn {
    width: 30px;
    top: 17px;
    right: 18px;
  }
}
@media (max-width: 1199px) {
  header .header__wrap .menu-btn:after {
    content: '';
    position: absolute;
    display: block;
    width: 75%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: 0.3s;
  }
  header .header__wrap .menu-btn .menu-btn__line {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    margin: auto;
    transition: 0.3s;
  }
  header .header__wrap .menu-btn .menu-btn__line:nth-child(1) {
    top: 0;
  }
  header .header__wrap .menu-btn .menu-btn__line:nth-child(2) {
    bottom: 0;
  }
  header .header__wrap .menu-btn.menu-open {
    right: 0 !important;
  }
  header .header__wrap .menu-btn.menu-open .menu-btn__line:nth-child(1), header .header__wrap .menu-btn.menu-open .menu-btn__line:nth-child(2) {
    left: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 4px;
    border-radius: 3px;
  }
  header .header__wrap .menu-btn.menu-open .menu-btn__line:nth-child(1) {
    top: 10px;
    transform: rotate(-45deg);
  }
  header .header__wrap .menu-btn.menu-open .menu-btn__line:nth-child(2) {
    bottom: 10px;
    transform: rotate(45deg);
  }
  header .header__wrap .menu-btn.menu-open:after {
    right: 25px;
    opacity: 0;
  }
}
header .main-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}
@media (max-width: 1199px) {
  header .main-menu {
    position: fixed;
    z-index: 5;
    right: 0;
    top: 0;
    width: 350px;
    background: #1B1A1D;
    border-radius: 15px 0 15px 15px;
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 20px 20px;
    transform: translateX(110%);
    transition: 0.5s;
  }
}
@media (max-width: 1199px) and (max-width: 575px) {
  header .main-menu {
    width: 100%;
    align-items: center;
    transform: translateY(-120%);
    border-radius: 0 0 20px 20px;
    padding-top: 90px;
  }
}
@media (max-width: 1199px) {
  header .main-menu.active {
    transform: translateX(0);
  }
}
@media (max-width: 1199px) and (max-width: 575px) {
  header .main-menu.active {
    transform: translateY(0);
  }
}

header .main-menu .header__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 70px;
  font-size: 16px;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  header .main-menu .header__menu li:nth-child(1) {
    animation: linkIn 2s ease-in;
  }
  header .main-menu .header__menu li:nth-child(2) {
    animation: linkIn 2.4s ease-in;
  }
  header .main-menu .header__menu li:nth-child(3) {
    animation: linkIn 2.6s ease-in;
  }
}
@media (max-width: 1199px) {
  header .main-menu .header__menu {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  header .main-menu .header__menu {
    align-items: center;
  }
}
header .main-menu .header__menu .header__menu__link {
  position: relative;
  display: inline-flex;
  color: var(--white, #fff);
  text-decoration: none;
  border-radius: var(--radius-s);
  transition: 0.3s;
  opacity: 0.7;
  cursor: pointer;
}
header .main-menu .header__menu .header__menu__link:hover {
  opacity: 1;
}
header .main-menu .header__menu .header__menu__link br {
  display: none;
}
@media (max-width: 1199px) {
  header .main-menu .header__menu .header__menu__link br {
    display: block;
  }
}
header .main-menu .header__action {
  display: flex;
  gap: 15px;
}
header .main-menu .header__action .header__btn {
  width: fit-content;
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  text-transform: none;
  font-weight: 800;
  line-height: 1.4;
  color: var(--white, #fff);
  background: var(--dark-gray, #4f4f4f);
  border-radius: var(--radius-m, 10px);
  padding: 10px 41px;
  cursor: pointer;
  transition: 0.3s;
}
header .main-menu .header__action .header__btn:hover {
  background: var(--white, #fff);
  color: var(--black, #000);
  animation: none;
}
@media (max-width: 575px) {
  header .main-menu .header__action .header__btn {
    height: 50px;
    margin-top: 10px;
  }
}
@media (max-width: 1199px) {
  header .menu-overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background: var(--black);
    opacity: 0.5;
  }
}

@media (min-width: 769px) {
  header.gc-menu-exist {
    padding-left: 70px;
  }
}
@keyframes headerWidth {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoIn {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes linkIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=header.css.map */
