.header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  position: sticky;
  background: #fff;
  z-index: 999;
  top: 40px;
}
@media(max-width: 767px){
    .header{
        top: 0;
    }
}
@media screen and (max-width: 480px) {
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header-tel {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #1486C9;
}
@media screen and (max-width: 480px) {
  .header-tel {
    font-size: 18px;
    line-height: 1.2;
  }
}
.header-btns {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}
@media screen and (max-width: 950px) {
  .header-btns {
    gap: 15px;
  }
}
.header .logo-wrapper img {
  opacity: 0;
  scale: 0;
  transition: opacity 0.3s linear, scale 0.3s linear 0.1s;
}
@media screen and (max-width: 1200px) {
  .header .logo-wrapper img {
    opacity: 0.8;
    scale: 0.8;
  }
}
.header .logo-wrapper img.is-active {
  opacity: 1;
  scale: 1;
}
.header .nav {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-left: 22%;
}
@media screen and (max-width: 1400px) {
  .header .nav {
    margin-left: 0;
  }
}
@media screen and (max-width: 780px) {
  .header .nav {
    display: none;
  }
}
.header .nav li {
  border: 1px solid #212121;
  border-radius: 12px;
  padding: 9px 16px 7px 16px;
}
.header .nav li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #212121;
}

.btn {
  cursor: pointer;
}
.btn-header_up {
  border: 1px solid #7aa1ff;
  border-radius: 12px;
  padding: 9px 16px 7px 16px;
  background-color: #1486C9;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}
@media screen and (max-width: 950px) {
  .btn.mob-hide {
    display: none;
  }
}

.open {
  display: flex !important;
}

.items {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.item a {
  text-decoration: none;
}

.burger {
  display: none;
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: flex-end;
  width: 16px;
  height: 18px;
}

.burger span {
  height: 2px;
  width: 100%;
  transform: scale(1);
  background-color: #212121;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #212121;
  transition: all 0.3s ease 0s;
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

.burger.active span {
  transform: scale(0);
}

.burger.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

@media (max-width: 480px) {
  nav.mobile ul.nav {
    padding: 20px 15px;
  }
}
@media (max-width: 950px) and (min-width: 481px) {
  nav.mobile ul.nav {
    padding: 20px 30px;
  }
}
@media (min-width: 951px) {
  nav.mobile {
    display: none;
  }
  nav.mobile ul.nav {
    display: none;
  }
  nav.mobile .offer {
    display: none;
  }
  nav.mobile .footer {
    display: none;
  }
}
@media (max-width: 950px) {
  .burger {
    display: flex;
  }
  nav.mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    overflow-y: auto;
    padding: 0px 0px 50px;
    background: #fff;
    animation: burgerAnimation 0.4s;
  }
  nav.mobile .offer {
    margin-bottom: 0;
  }
  nav.mobile .offer__wrapper p.title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 23.88px;
    text-align: left;
    width: 100%;
  }
  nav.mobile .offer__wrapper p.subtitle {
    font-family: font-variantvar(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 21.6px;
    text-align: left;
    width: 100%;
  }
  nav.mobile .offer__wrapper .politics p {
    color: rgba(255, 255, 255, 0.5019607843);
  }
  nav.mobile .offer__wrapper .politics p a {
    color: rgba(255, 255, 255, 0.5019607843);
  }
  nav.mobile ul.nav {
    display: flex;
  }
  nav.mobile ul.nav li {
    width: 100%;
  }
  nav.mobile ul.nav li a {
    width: 100%;
    display: block;
    text-align: center;
  }
  nav.mobile .offer__wrapper {
    padding: 20px;
    gap: 15px;
  }
  nav.mobile ul {
    flex-direction: column;
    row-gap: 30px;
  }
  @keyframes burgerAnimation {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}


.headline{
    display: flex;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1486C9 0%, #36B4FE 100%);
    height: 40px;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 19.9px;
    color: #fff;
}
@media(max-width: 767px){
    .headline{
        display: none;
    }
}
.scroll-stop {
  overflow: hidden;
}/*# sourceMappingURL=header_up.css.map */