.new-header {
  display: flex;
  flex-direction: column;
}
.new-header.sticky {
  position: fixed;
  top: 0;
  z-index: 100;
  transform: translateX(-50%);
  left: 50%;
  background: #fff;
  width: 100%;
}
.new-header .new-header-wrapper {
  display: flex;
  flex-direction: column;
}
.new-header .new-header-top {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}
.new-header .new-header-top__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.new-header .new-header-top__info {
  display: flex;
  max-width: 540px;
  width: 100%;
  justify-content: space-between;
  gap: 32px;
}
.new-header .new-header-top__socials {
  display: flex;
  gap: 16px;
}
.new-header .new-header-top__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.new-header .new-header-top__item a {
  color: #111;
  text-decoration: none;
}
.new-header .new-header-middle__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 20px;
}
.new-header .new-header-middle__logo {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 366px;
}
.new-header .new-header-middle__logo span {
  color: #444;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 116.667% */
}
.new-header .new-header-middle__logo span:first-child {
  display: flex;
  gap: 16px;
}
.new-header .new-header-middle__logo span:last-child {
  max-width: 149px;
}
.new-header .new-header-middle__wrapper {
  display: flex;
  gap: 32px;
  align-items: center;
}
.new-header .new-header-middle__socials {
  display: flex;
  gap: 16px;
  align-items: center;
}
.new-header .new-header-middle__socials svg {
  transition: 0.4s;
}
.new-header .new-header-middle__socials svg:hover path {
  fill: #5BC0DE;
}
.new-header .new-header-middle__phones {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: 0 !important;
}
.new-header .new-header-middle__phones .spacer {
  width: 1px;
  height: 20px;
  display: block;
  background: #DAE7F3;
}
@media screen and (max-width: 1196px) {
  .new-header .new-header-middle__phones {
    flex-direction: column;
    gap: 8px;
  }
  .new-header .new-header-middle__phones .spacer {
    display: none;
  }
}
.new-header .new-header-middle__phone {
  display: flex;
  gap: 8px;
  align-items: center;
}
.new-header .new-header-middle__phone a {
  color: #111;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  text-decoration: none;
}
.new-header .new-header-middle .call-me-btn {
  padding: 14px 40px;
  color: #FFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 153.846% */
  text-transform: uppercase;
  text-decoration: none;
  background: #5BC0DE;
  width: fit-content;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .new-header .new-header-middle .call-me-btn {
    padding: 14px 24px;
  }
}
.new-header .new-header-bottom {
  background: #005AAE;
}
.new-header .new-header-bottom ul.menu {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-between;
}
.new-header .new-header-bottom ul.menu > li {
  margin: 0;
  padding: 16px 0;
  transition: 0.3s;
  min-width: 126px;
  text-align: center;
  position: relative;
}
.new-header .new-header-bottom ul.menu > li:hover {
  background: #004484;
}
.new-header .new-header-bottom ul.menu > li:hover > .sub-menu {
  display: flex;
}
.new-header .new-header-bottom ul.menu > li > .sub-menu {
  top: 56px;
  position: absolute;
  z-index: 150;
  width: 365px;
  list-style-type: none;
  text-align: left;
  background: #fff;
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}
.new-header .new-header-bottom ul.menu > li > .sub-menu li {
  padding: 4px 32px;
  margin: 0;
  position: relative;
}
.new-header .new-header-bottom ul.menu > li > .sub-menu li:hover {
  background: #F4F9FE;
}
.new-header .new-header-bottom ul.menu > li > .sub-menu li:hover .sub-menu {
  display: flex;
}
.new-header .new-header-bottom ul.menu > li > .sub-menu li > a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: #111;
  text-decoration: none;
  transition: 0.3s;
}
.new-header .new-header-bottom ul.menu > li > .sub-menu li > a:hover {
  color: #005AAE;
  font-weight: 600;
}
.new-header .new-header-bottom ul.menu > li > .sub-menu .sub-menu {
  left: 100%;
  top: 0;
  flex-direction: column;
  width: 248px;
  background: #FFF;
  box-shadow: 0px 5px 10px 0px rgba(17, 17, 17, 0.1);
  list-style-type: none;
  position: absolute;
  padding: 20px 0;
  gap: 16px;
}
.new-header .new-header-bottom ul.menu > li > .sub-menu .sub-menu li {
  padding: 4px 24px;
}
.new-header .new-header-bottom ul.menu > li > a {
  color: #FFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 138.462% */
  text-transform: uppercase;
  text-decoration: none;
}
.new-header .new-header-bottom ul.menu .sub-menu {
  display: none;
}

.mobile-header {
  display: none;
}

@media screen and (max-width: 991px) {
  .new-header {
    display: none;
  }
  .mobile-header {
    overflow-y: scroll;
    scrollbar-width: none;
    display: flex;
    gap: 16px;
    flex-direction: column;
    padding: 16px;
  }
  .mobile-header.opened {
    height: 100vh;
  }
  .mobile-header.opened .spacer {
    display: block !important;
  }
  .mobile-header.opened .mobile-header-bottom {
    display: flex !important;
  }
  .mobile-header .mobile-header-menu {
    display: none;
    height: 100vh;
  }
  .mobile-header .mobile-header-menu .menu {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
  }
  .mobile-header .mobile-header-menu .menu > li > a {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 160% */
    text-transform: uppercase;
  }
  .mobile-header .mobile-header-menu .menu > li .sub-menu.active {
    padding-top: 32px;
    padding-left: 0;
    display: flex !important;
    flex-direction: column;
    gap: 20px;
  }
  .mobile-header .mobile-header-menu .menu > li .sub-menu.active li a {
    color: #111;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
  .mobile-header .mobile-header-menu .menu > li .sub-menu .sub-menu .header .title {
    color: #005AAE !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 24px !important; /* 150% */
  }
  .mobile-header .mobile-header-menu .menu li a {
    padding: 0;
    color: #111;
  }
  .mobile-header .mobile-header-menu .menu-menu-1-container {
    position: relative;
  }
  .mobile-header .mobile-header-menu .mobile-header-menu-container {
    display: flex;
    flex-direction: column;
  }
  .mobile-header .mobile-header-menu__footer {
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
    margin-top: 32px;
  }
  .mobile-header .mobile-header-menu__socials {
    display: flex;
    gap: 16px;
  }
  .mobile-header .mobile-header-menu__socials svg {
    width: 32px;
    height: 32px;
  }
  .mobile-header .mobile-header-menu__item {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #111;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 166.667% */
  }
  .mobile-header .mobile-header-menu__item a {
    color: #111;
  }
  .mobile-header .mobile-header-menu__info {
    display: flex;
    gap: 16px;
    flex-direction: column;
  }
  .mobile-header .mobile-header-menu .separator {
    width: 100%;
    height: 1px;
    background: #DAE7F3;
  }
  .mobile-header.sticky {
    position: fixed;
    z-index: 100;
    width: 100%;
    background: #fff;
    top: 0;
  }
  .mobile-header.sticky .spacer {
    display: none;
  }
  .mobile-header .mobile-header-top {
    display: flex;
    justify-content: space-between;
  }
  .mobile-header .mobile-header-top__logo {
    display: flex;
    gap: 16px;
  }
  .mobile-header .mobile-header-top__burger {
    width: 46px;
    height: 46px;
    padding: 14px;
    background: #005AAE;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .mobile-header .mobile-header-top__burger.opened span:nth-child(2) {
    display: none;
  }
  .mobile-header .mobile-header-top__burger.opened span {
    position: absolute;
    width: 2px;
    height: 18px;
    left: 50%;
    bottom: 5px;
    transition: transform 0.4s;
  }
  .mobile-header .mobile-header-top__burger.opened span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .mobile-header .mobile-header-top__burger.opened span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .mobile-header .mobile-header-top__burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
  }
  .mobile-header .mobile-header-bottom {
    display: flex;
    justify-content: space-between;
  }
  .mobile-header .mobile-header-bottom__callback {
    padding: 14px 40px;
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 153.846% */
    text-transform: uppercase;
    text-decoration: none;
    background: #5BC0DE;
    width: fit-content;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 991px) and (max-width: 991px) {
  .mobile-header .mobile-header-bottom__callback {
    padding: 14px 24px;
  }
}
@media screen and (max-width: 991px) {
  .mobile-header .mobile-header-bottom__phones {
    max-width: 147px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobile-header .mobile-header-bottom__phone {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .mobile-header .mobile-header-bottom__phone a {
    color: #111;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
  }
  .mobile-header .spacer {
    background: #DAE7F3;
    height: 1px;
    width: 100%;
    display: block;
  }
}
body.no-scroll {
  overflow-y: hidden;
}

.slinky-theme-default .next::after, .slinky-theme-default .back::before {
  background: url("/wp-content/themes/onepress-child/assets/images/right-arrow.svg") center no-repeat !important;
  width: 24px !important;
}

.slinky-theme-default a:not(.back):hover {
  background: inherit !important;
  color: #005AAE !important;
  text-decoration: none;
}

.slinky-menu {
  background: #fff !important;
}
.slinky-menu .header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.slinky-menu .header .title {
  color: #005AAE;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 160% */
  text-transform: uppercase;
  padding: 0;
}

/*# sourceMappingURL=app.css.map */
