.site-header {
  position: relative;
  height: 100px;
  background: #ffffff;
  padding: 0 30px;
  border-bottom: 1px solid #d7ebff;
}

.site-header .site-header__wrapper {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: center;
}

.site-header .site-header__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  max-width: 1920px;
  width: 100%;
  gap: 30px;
}

.site-header .site-header__content-left {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-header .site-header__nav {
  height: 100%;
}

.site-header .site-header__nav-list {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.site-header .site-header__nav-list-item {
  list-style: none;
  position: relative;
  white-space: nowrap;
}

.site-header .site-header__nav-list-item:is(:hover, :focus) a {
  color: #176390;
}

.site-header .site-header__nav-list-item-title {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #001c2e;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 128%;
  padding: 10px 5px;
}

.site-header .site-header__nav-list-item-title:is(:hover, :focus, :visited) {
  color: #001c2e;
}

.site-header .site-header__nav-list-item-children {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-radius: 8px;
  border: 1px solid #e3f0ff;
  background: #fff;
  box-shadow:
    0 29px 8px 0 rgba(38, 103, 207, 0),
    0 18px 7px 0 rgba(38, 103, 207, 0.01),
    0 10px 6px 0 rgba(38, 103, 207, 0.03),
    0 5px 5px 0 rgba(38, 103, 207, 0.04),
    0 1px 3px 0 rgba(38, 103, 207, 0.05);
  margin: 0;
  list-style: none;
}

.site-header .site-header__nav-list-item-children-item {
  display: flex;
  align-items: center;
  color: #001c2e;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 128%;
  white-space: nowrap;
  text-align: left;
}

.site-header .site-header__nav-list-item-children-item a {
  padding: 10px 20px;
}

.site-header .site-header__nav-list-item-children-item a:visited,
.site-header .site-header__nav-list-item-children-item a {
  color: #001c2e !important;
  text-align: left;
}

.site-header .site-header__nav-list-item-children-item:is(:hover, :focus) a {
  color: #176390 !important;
}

.site-header .site-header__test {
  display: flex;
  padding: 14px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #009bff;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 128%;
}

.site-header .site-header__menu-toggle {
  display: none;
}

.site-header .site-header__menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: #0000004a;
}

.site-header .site-header__menu-content {
  border-radius: 0 0 30px 30px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #e4f5ff 13.73%, #c3e8ff 100%);
  max-height: 100%;
  overflow: auto;
}

.site-header .site-header__menu-header {
  display: flex;
  justify-content: end;
  margin-bottom: 20px;
  height: 88px;
  padding: 10px 20px;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.site-header .site-header__menu-nav {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.site-header .site-header__menu-nav-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  width: 100%;
  padding: 0 40px;
}

.site-header .site-header__menu-nav-item {
  list-style: none;
  width: 100%;
}

.site-header
  .site-header__menu-nav-item.site-header__menu-nav-item--children
  .site-header__menu-nav-item-title {
  cursor: pointer;
}

.site-header .site-header__menu-nav-item-title {
  color: #001c2e;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 128%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header .site-header__menu-nav-item-title a,
.site-header .site-header__menu-nav-item-title span {
  color: #001c2e;
  text-decoration: none !important;
  padding: 10px 0;
}

.site-header .site-header__menu-nav-item-title a {
  display: block;
  width: 100%;
}

.site-header .site-header__menu-nav-item a:is(:hover, :focus, :visited) {
  color: #001c2e;
}

.site-header .site-header__menu-nav-item-title-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease-in-out;
}

.site-header
  .site-header__menu-nav-item.site-header__menu-nav-item--show
  .site-header__menu-nav-item-title-icon {
  transform: rotate(180deg);
}

.site-header .site-header__menu-nav-item-children {
  padding: 0 0 0 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 100%;
}

.site-header .site-header__menu-nav-item-children-item a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #001c2e;
  text-decoration: none !important;
}

.site-header .site-header__menu-control {
  padding-top: 30px;
  display: flex;
  justify-content: center;
}

.site-header .site-header__presentation {
  display: inline-flex;
  padding: 15px 17px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #5691c8;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 128%;
}

.site-header .site-header__phone-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-header .site-header__phone {
  color: #5691c8;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 128.023%;
  white-space: nowrap;
}

.site-header .site-header__phone-label {
  color: #808080;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 15.36px;
}

.site-header .site-header__control {
  display: flex;
  gap: 26px;
  align-items: center;
}

.site-header .site-header__control-item {
  display: flex;
  flex-direction: column;
}

.site-header .site-header__lk {
  display: flex;
  padding: 8px 12px;
  align-items: center;
  gap: 6px;
  border-radius: var(--rounded-md, 6px);
  background: #5691c8;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #f8fafc;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  white-space: nowrap;
}

.site-header .site-header__lk:hover {
  background: #4d82b4;
}

.site-header .site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 68px;
}

.site-header .site-header__logo > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.site-header .site-header__logo img {
  max-height: 100%;
  max-width: 100%;
  display: block;
}

.site-header .site-header__logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #001c2e;
  text-decoration: none;
}

.site-header .site-header__menu-socials {
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.site-header .site-header__menu-secondary-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}

.site-header .site-header__menu-secondary-nav-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 100%;
}

.site-header .site-header__menu-secondary-nav-list-item {
  list-style: none;
  width: 100%;
}

.site-header .site-header__menu-secondary-nav-list-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 5px 0;
  text-align: center;
  color: #373535;
  font-size: 14px;
  text-decoration: none !important;
}

.site-header .site-header__menu-phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  padding: 20px 40px;
}

.site-header .site-header__menu-phone-label {
  color: #808080;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 15.36px;
}

.site-header .site-header__menu-phone {
  color: #5691c8;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 128.023%;
  white-space: nowrap;
}

@media (width <=1324px) {
  .site-header {
    height: 88px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
  }

  .site-header .site-header__content {
    padding: 10px 0;
  }

  .site-header .site-header__nav,
  .site-header .site-header__test {
    display: none;
  }

  .site-header .site-header__logo {
    width: 156px;
    height: 56px;
  }

  .site-header .site-header__menu-toggle {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d6d6d7;
    color: black;
    border-radius: 5px;
  }

  .site-header .site-header__phone {
    font-size: 24px;
    line-height: 128%;
    /* 30.725px */
  }
}

@media (width <= 1024px) {
  .site-header {
    height: 88px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .site-subheader {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (width <=768px) {
  .site-header .site-header__phone {
    font-size: 18px;
    line-height: 128%;
    /* 23.044px */
  }

  .site-header .site-header__logo {
    width: 104px;
    height: 36px;
  }

  .site-header {
    height: 68px;
  }

  .site-header .site-header__menu-header {
    height: 68px;
  }

  .site-header .site-header__phone-label {
    display: none;
  }

  .site-header .site-header__control-item.sales {
    display: none;
  }
}

.site-subheader {
  position: relative;
  height: 50px;
  background: #ffffff;
  padding: 0 30px;
  border-bottom: 1px solid #d7ebff;
  display: flex;
  justify-content: center;
}

.site-subheader .site-subheader__wrapper {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-subheader .site-subheader__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-subheader .site-subheader__nav {
  height: 100%;
}

.site-subheader .site-subheader__nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.site-subheader .site-subheader__nav-list-item {
  color: #747474;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 128.023%;
  letter-spacing: 0.42px;
}

.site-subheader .site-subheader__nav-list-item a {
  color: #747474;
}

@media (width <= 768px) {
  .site-subheader {
    display: none;
  }

  .site-header .site-header__content {
    gap: 15px;
  }

  .site-header .site-header__content-left,
  .site-header .site-header__control {
    gap: 15px;
  }
}

@media (width <= 600px) {
  .site-header .site-header__phone-container {
    display: none;
  }
}
