body.mobile__menu--open {
  overflow: hidden;
}

.mobile__menu--open .drawer-overlay {
  display: block;
}

body.mobile__menu--open .mobile__nav {
  transform: translateX(0);
}

.mobile__nav {
  position: fixed;
  z-index: 250;
  overflow: hidden;
  overflow-y: auto;
  width: calc(100% - 0px);
  height: 100%;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.98);
  top: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  left: 0px;
  padding-top: 200px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 650px) {
  .mobile__nav {
    padding: 150px 0 50px;
  }
}
.mobile__nav ul {
  list-style-type: none;
  padding-left: 50px;
  padding-right: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 650px) {
  .mobile__nav ul {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.mobile__nav ul li {
  position: relative;
  text-align: left;
  width: 100%;
}
.mobile__nav ul li.menu-item-has-children > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: unset;
  right: 0px;
  transform: translateY(-50%);
  background-image: url(../images/strzalka-2@2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 8px;
  height: 12px;
  z-index: 2;
}
.mobile__nav ul li a {
  color: #19295a;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  padding: 12px 0;
  display: inline-flex;
  transition: all 0.3s;
  position: relative;
  width: 100%;
  padding-right: 40px;
}
@media (max-width: 600px) {
  .mobile__nav ul li a {
    font-size: 22px;
  }
}
.mobile__nav ul li a span {
  position: absolute;
  width: 45px;
  height: 45px;
  text-align: center;
  padding-right: 0px;
  font-size: 17px;
  display: inline-flex;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}
.mobile__nav ul li a span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: unset;
  right: 0px;
  transform: translateY(-50%);
  background-image: url(../../img/strzalka-rozwin-3@2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 8px;
  height: 12px;
  z-index: 2;
}

.hamburger {
  position: relative;
  width: 30px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
  top: -5px;
  display: none;
}
@media (max-width: 1200px) {
  .hamburger {
    display: block;
  }
}
.hamburger__bar, .hamburger__bar:after, .hamburger__bar:before {
  position: absolute;
  display: block;
  width: 30px;
  height: 3px;
  content: "";
  transform: rotate(0);
  pointer-events: none;
  background-color: #19295a;
  border-radius: 10px;
}
.hamburger__bar:before {
  right: 0;
}
.hamburger__bar:after {
  opacity: 0;
}

.hamburger .hamburger__bar {
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.hamburger .hamburger__bar, .hamburger .hamburger__bar:after, .hamburger .hamburger__bar:before {
  transition: top 0.2s 0.2s, left 0.1s, transform 0.2s, background-color 0.1s 0.1s;
}
.hamburger .hamburger__bar:after, .hamburger .hamburger__bar:before {
  transform: rotate(0);
}
.hamburger .hamburger__bar:before {
  top: 10.6666666667px;
}
.hamburger .hamburger__bar:after {
  top: -calc(32px/3);
}
.hamburger .hamburger__bar:before {
  right: 0;
}

.hamburger.is-active {
  top: 0px;
}
.hamburger.is-active .hamburger__bar {
  background-color: transparent;
}
.hamburger.is-active .hamburger__bar:after, .hamburger.is-active .hamburger__bar:before {
  top: 0;
  transition: background-color 0.2s, top 0.2s, left 0.2s, transform 0.2s 0.15s;
}
.hamburger.is-active .hamburger__bar:before {
  transform: rotate(45deg);
  width: 30px;
  right: unset;
}
.hamburger.is-active .hamburger__bar:after {
  transform: rotate(-45deg);
  opacity: 1;
}

.mobile__sub-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 170px;
  padding-bottom: 50px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}
@media (max-width: 650px) {
  .mobile__sub-panel {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 140px;
  }
}
.mobile__sub-panel.is-open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible !important;
}
.mobile__sub-panel.is-open .sub-menu {
  display: block !important;
}
.mobile__sub-panel .mobile__back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin: 25px 0;
  padding: 0.5rem 0;
  border: 0;
  background: transparent;
  color: #19295a;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  position: relative;
  padding-left: 20px;
  background-image: url(../images/strzalka-3@2.png);
  background-position: 0px center;
  background-repeat: no-repeat;
  background-size: 7px;
}
.mobile__sub-panel .mobile__back br {
  display: none;
}
.mobile__sub-panel .mobile__panel-title {
  font-size: 16px;
  font-weight: 700;
  color: #19295a;
  margin: 0 0 3rem;
}
.mobile__sub-panel .sub-menu {
  padding-left: 0px;
  padding-right: 0;
}
.mobile__sub-panel .sub-menu li {
  margin: 0;
}
.mobile__sub-panel .sub-menu li > a {
  display: block;
  padding: 1.3rem 3.5rem 1.3rem 0;
  color: #19295a;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.mobile__sub-panel .sub-menu li > a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mobile__sub-panel .sub-menu li.menu-item-has-children .mobile-menu__chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  bottom: 0;
  width: 7px;
  height: 11px;
  pointer-events: none;
  background-image: url(../../img/strzalka-8@2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.more_text_container {
  background-color: #f2f5f8;
  padding: 30px 50px;
  color: #19295a;
  margin-top: 60px;
}
@media (max-width: 650px) {
  .more_text_container {
    padding: 20px 25px;
  }
}
.more_text_container .flex_items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 100px;
       column-gap: 100px;
}
@media (max-width: 900px) {
  .more_text_container .flex_items {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (max-width: 500px) {
  .more_text_container .flex_items {
    flex-direction: column;
    row-gap: 15px;
    align-items: flex-start;
  }
}
.more_text_container .flex_items .more_text {
  max-width: 55%;
}
@media (max-width: 700px) {
  .more_text_container .flex_items .more_text {
    max-width: 75%;
  }
}
@media (max-width: 500px) {
  .more_text_container .flex_items .more_text {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .more_text_container .flex_items .cta_btn {
    width: -moz-max-content;
    width: max-content;
    padding: 10px 15px;
    min-height: 55px;
    flex-shrink: 0;
  }
}

.menu_item_with_icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 10px !important;
}
@media (max-width: 600px) {
  .menu_item_with_icon {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
.menu_item_with_icon .menu-icon {
  position: relative;
  background-color: #f2f5f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.menu_item_with_icon .menu-icon img {
  width: 45px;
  height: 45px;
}
@media (max-width: 600px) {
  .menu_item_with_icon .menu-icon img {
    width: 40px;
    height: 40px;
  }
}
.menu_item_with_icon .menu-icon img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #19295a;
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}
.menu_item_with_icon.active, .menu_item_with_icon:hover {
  -webkit-text-stroke: 0.6px;
}
.menu_item_with_icon.active img, .menu_item_with_icon:hover img {
  filter: brightness(0) invert(1);
}
.menu_item_with_icon.active .menu-icon, .menu_item_with_icon:hover .menu-icon {
  background-color: #19295a;
}
.menu_item_with_icon.active .menu-icon::before, .menu_item_with_icon:hover .menu-icon::before {
  box-shadow: 3px 3px 20px 0 rgba(3, 62, 118, 0.3);
  opacity: 1;
}/*# sourceMappingURL=mobile-menu2.css.map */