body {
  padding-top: 80px;
}

.btn {
  display: table;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.header {
  background: #0D1A40;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header .container {
  max-width: 1208px;
}
.header__inner {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__logo {
  width: 150px;
  height: auto;
  margin-right: 40px;
}
.header__logo img {
  display: block;
  width: 100%;
}
.header__nav {
  position: relative;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__list-item {
  color: #a0a6ba;
  transition: 0.3s;
  padding: 13px 0;
  position: relative;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.header__list-item:hover {
  color: #fff;
  transition: 0.3s;
}
.header__list-item:hover .header__modal {
  opacity: 1;
  pointer-events: painted;
  transition: 0.3s;
}
.header__list-item.header__item-dropdown span {
  position: relative;
  padding-right: 30px;
}
.header__list-item.header__item-dropdown span::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  width: 24px;
  height: 24px;
  background: center/contain no-repeat url("./images/header/header-nav-arrow.svg");
  transition: 0.3s;
}
.header__list-item.header__item-dropdown:hover span::before {
  rotate: 180deg;
  background-image: url("./images/header/header-nav-arrow-hover.svg");
  transition: 0.3s;
}
.header__list-item.header__item-services {
  position: static;
}
.header__list-item.header__item-services .header__modal {
  padding: 0;
  max-width: 410px;
}
.header__list-item.header__item-services .header__modal-list {
  padding: 18px;
  gap: 4px;
}
.header__list-item.header__item-services .header__modal-list li {
  position: relative;
  padding: 12px 12px 12px 44px;
}
.header__list-item.header__item-services .header__modal-list li::before {
  left: 12px;
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: center/contain no-repeat;
}
.header__list-item.header__item-services .header__modal-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  background: center/contain no-repeat url("./images/header/header-nav-arrow-right.svg");
  transition: 0.3s;
}
.header__list-item.header__item-services .header__modal-list li:hover {
  background: #0D1A40;
  color: #fff;
}
.header__list-item.header__item-services .header__modal-list li:hover::before {
  scale: 1;
}
.header__list-item.header__item-services .header__modal-list li:hover::after {
  background-image: url("./images/header/header-nav-arrow-right-hover.svg");
  transition: 0.3s;
}
.header__list-item.header__item-services .header__modal-list li:hover + .header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: painted;
  transition: 0.3s;
}
.header__list-item.header__item-services .header__modal-list li.header-item-investigation::before {
  background-image: url("./images/header/header-icon-1.svg");
}
.header__list-item.header__item-services .header__modal-list li.header-item-investigation:hover::before {
  background-image: url("./images/header/header-icon-1-hover.svg");
}
.header__list-item.header__item-services .header__modal-list li.header-item-education::before {
  background-image: url("./images/header/header-icon-2.svg");
}
.header__list-item.header__item-services .header__modal-list li.header-item-education:hover::before {
  background-image: url("./images/header/header-icon-2-hover.svg");
}
.header__list-item.header__item-services .header__modal-list li.header-item-guidance::before {
  background-image: url("./images/header/header-icon-3.svg");
}
.header__list-item.header__item-services .header__modal-list li.header-item-guidance:hover::before {
  background-image: url("./images/header/header-icon-3-hover.svg");
}
.header__list-item.header__item-services .header__modal-list li.header-item-security::before {
  background-image: url("./images/header/header-icon-4.svg");
}
.header__list-item.header__item-services .header__modal-list li.header-item-security:hover::before {
  background-image: url("./images/header/header-icon-4-hover.svg");
}
.header__list-item.header__item-services .header__modal-note {
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 30px;
}
.header__list-item.header__item-services .header__modal-note p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #616267;
}
.header__list-item.header__item-services .header__modal-note p b {
  font-weight: 600;
}
.header__list-item.header__item-services .header__submenu {
  position: absolute;
  top: 0;
  left: 101%;
  background: #fff;
  padding: 12px 32px 12px 24px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 3px 3px 24px 1px rgba(0, 0, 0, 0.15);
}
.header__list-item.header__item-services .header__submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -23px;
  width: 23px;
  height: 100%;
  background: transparent;
}
.header__list-item.header__item-services .header__submenu-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0px 12px;
  max-height: 360px;
  width: -moz-max-content;
  width: max-content;
}
.header__list-item.header__item-services .header__submenu-list li {
  padding: 12px;
}
.header__list-item.header__item-services .header__submenu-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 4px;
  height: 4px;
  background: #616267;
  border-radius: 50%;
  transition: 0.3s;
}
.header__list-item.header__item-services .header__submenu-list li:hover {
  background: transparent;
  color: #0D1A40;
  transition: 0.3s;
}
.header__list-item.header__item-services .header__submenu-list li:hover::before {
  background: #0D1A40;
  scale: 1.3;
  transition: 0.3s;
}
.header__list-item.header__item-services .header__submenu-list li::after {
  display: none;
}
.header__list-item.header__item-services .header__submenu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: painted;
  transition: 0.3s;
}
.header__list-item.header__item-blog .header__modal {
  left: -100%;
  width: 360px;
}
.header__list-item.header__item-blog .header__modal-list {
  margin-bottom: 24px;
}
.header__list-item.header__item-blog .header__modal-list li {
  padding: 0;
}
.header__list-item.header__item-blog .header__modal-list li::before {
  display: none;
}
.header__list-item.header__item-blog .header__modal-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
  white-space: normal;
}
.header__list-item.header__item-blog .header__modal-list li a .thumbnail {
  width: 112px;
  height: 72px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: grayscale(1);
  transition: 0.3s;
}
.header__list-item.header__item-blog .header__modal-list li a .date {
  display: inline-block;
  color: #616267;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 4px;
}
.header__list-item.header__item-blog .header__modal-list li a:hover .thumbnail {
  filter: grayscale(0);
  transition: 0.3s;
}
.header__list-item.header__item-blog .header__modal .all-articles {
  color: #0D1A40;
  font-weight: 500;
  position: relative;
  padding-right: 30px;
}
.header__list-item.header__item-blog .header__modal .all-articles::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  width: 24px;
  height: 24px;
  background: center/contain no-repeat url("./images/header/header-nav-arrow-right-blue.svg");
}
.header__modal {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  padding: 24px;
  box-shadow: 3px 3px 24px 1px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
}
.header__modal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header__modal-list li {
  white-space: nowrap;
  color: #616267;
  position: relative;
  padding-left: 14px;
  transition: 0.3s;
}
.header__modal-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 4px;
  height: 4px;
  background: #616267;
  border-radius: 50%;
  transition: 0.3s;
}
.header__modal-list li:hover {
  color: #0D1A40;
  transition: 0.3s;
}
.header__modal-list li:hover::before {
  background: #0D1A40;
  scale: 1.3;
  transition: 0.3s;
}
.header__btn {
  margin-left: auto;
  display: block;
  padding: 12px 24px;
  color: #edf2ff;
  background-color: #0D1A40;
  border: 1px solid #edf2ff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  cursor: pointer;
  transition: 0.3s;
}
.header__btn:hover {
  background-color: #fff;
  color: #0D1A40;
  transition: 0.3s;
}
.header__nav-btn {
  display: none;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.form__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.form__wrapper-input, .form__wrapper-textarea {
  display: block;
  width: 100%;
  font: 400 16px/24px "Poppins";
  padding: 12px 16px;
  border: 1px solid #f4f4f4;
  background: #f4f4f4;
  outline: none;
  transition: all 0.2s ease;
}
.form__wrapper-input::-moz-placeholder, .form__wrapper-textarea::-moz-placeholder {
  color: #616267;
}
.form__wrapper-input::placeholder, .form__wrapper-textarea::placeholder {
  color: #616267;
}
.form__wrapper-textarea {
  resize: none;
  height: 120px;
}
.form__wrapper-textarea::-webkit-scrollbar {
  width: 6px;
  height: 21px;
}
.form__wrapper-textarea::-webkit-scrollbar-track {
  background: #b7c3e8;
}
.form__wrapper-textarea::-webkit-scrollbar-thumb {
  background: #0D1A40;
}
.form__wrapper-select {
  display: none;
}
.form__wrapper-error {
  display: none;
  margin-top: 4px;
  color: #e22020;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: right;
}
.form__wrapper-checkbox {
  display: none;
}
.form__wrapper-submit {
  background-color: gold;
  border: 1px solid gold;
  padding: 12px 0;
  font: 500 16px/24px "Poppins";
  cursor: pointer;
  transition: 0.3s;
}
.form__wrapper-submit:hover {
  background-color: #ffe661;
  border-color: #ffe661;
  transition: all 0.3s ease;
}
.form__wrapper-submit:disabled {
  color: #fff;
  background: gray;
  border-color: gray;
  cursor: not-allowed;
  transition: all 0.3s ease;
}
.form__wrapper.invalid .form__wrapper-input,
.form__wrapper.invalid .form__wrapper-textarea,
.form__wrapper.invalid .form__select-title {
  border-color: #e22020;
  background: #fff;
}
.form__wrapper.invalid .form__wrapper-input:not([type=tel])::-moz-placeholder, .form__wrapper.invalid .form__wrapper-textarea:not([type=tel])::-moz-placeholder, .form__wrapper.invalid .form__select-title:not([type=tel])::-moz-placeholder {
  color: #e22020;
}
.form__wrapper.invalid .form__wrapper-input:not([type=tel])::placeholder,
.form__wrapper.invalid .form__wrapper-textarea:not([type=tel])::placeholder,
.form__wrapper.invalid .form__select-title:not([type=tel])::placeholder {
  color: #e22020;
}
.form__wrapper.invalid .form__select-title {
  color: #e22020;
}
.form__wrapper.invalid .form__wrapper-error {
  display: block;
}
.form__checkbox {
  margin: 8px 0;
}
.form__checkbox .checkbox-text {
  position: relative;
  padding-left: 30px;
  color: #616267;
  font: 400 16px/24px;
}
.form__checkbox .checkbox-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: center/contain no-repeat, #fff;
  border: 1px solid #616267;
  transition: all 0.3s ease;
}
.form__checkbox .form__wrapper-checkbox:checked + .checkbox-text::before {
  background-image: url("./images/form-check-icon.svg");
  background-color: #0D1A40;
  border-color: #0D1A40;
  transition: all 0.3s ease;
}
.form__select {
  position: relative;
}
.form__select .form__wrapper-error {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.form__select.invalid {
  padding-bottom: 20px;
}
.form__select.invalid .form__select-list {
  top: calc(100% - 12px);
}
.form__select-title {
  cursor: pointer;
  padding: 12px 50px 12px 16px;
  border: 1px solid #f4f4f4;
  background: #f4f4f4;
  color: #616267;
  position: relative;
  outline: none;
}
.form__select-title::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 16px;
  width: 24px;
  height: 24px;
  background: center/contain no-repeat url("./images/header/arrow-bottom-icon.svg");
  transition: all 0.3s ease;
}
.form__select-title:focus {
  border-color: #0D1A40;
}
.form__select-list {
  width: 100%;
  position: absolute;
  top: calc(100% + 8px);
  margin: 0;
  padding: 0;
  display: block;
  max-height: 250px;
  overflow-y: auto;
  cursor: pointer;
  border: 1px solid #f4f4f4;
  background: #f4f4f4;
  z-index: 10;
  display: none;
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.form__select-list::-webkit-scrollbar {
  width: 6px;
  height: 21px;
}
.form__select-list::-webkit-scrollbar-track {
  background: #b7c3e8;
}
.form__select-list::-webkit-scrollbar-thumb {
  background: #0D1A40;
}
.form__select-list li {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-top: 1px solid #f4f4f4;
  padding: 12px 20px;
  color: #616267;
  outline: none;
  transition: 0.3s;
}
.form__select-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: gold;
  opacity: 0;
  transition: 0.3s;
}
.form__select-list li:hover::before, .form__select-list li:focus::before {
  opacity: 1;
  transition: 0.3s;
}
.form__select-list li.selected {
  color: gold;
  background: #0D1A40;
  transition: 0.3s;
}
.form__select-list li.selected::before {
  opacity: 1;
  transition: 0.3s;
}
.form__select.active .form__select-title::before {
  rotate: 180deg;
  transition: all 0.3s ease;
}
.form__select.active .form__select-list {
  display: block;
}
.form__select.selected .form__select-title {
  color: #0D1A40;
}

.ourPartnersCarousel__item img {
  width: 100%;
}

.accordion__item.active .accordion__item-btn::after,
.accordion__item.active .accordion__item-btn span {
  transform: translateY(-50%) rotate(180deg);
  transition: 0.3s;
}
.accordion__item-btn::after,
.accordion__item-btn span {
  transition: 0.3s;
}
.accordion__item-body {
  max-height: 100% !important;
  display: none;
}

.videoCarousel {
  margin-bottom: 70px !important;
}
.videoCarousel__item {
  position: relative;
  max-height: 300px;
  height: 100%;
  overflow: hidden;
  margin: 0 8px;
  padding: 0 !important;
  cursor: pointer;
}
.videoCarousel__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  width: 100%;
  height: 100%;
}
.videoCarousel__item::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  translate: -50% -50%;
  background: center/contain no-repeat url("./images/video/play-icon.svg");
}
.videoCarousel__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.videoPopup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  padding: 0 8px;
  transition: all 0.3s ease;
}
.videoPopup.active {
  opacity: 1;
  pointer-events: painted;
  transition: all 0.3s ease;
}
.videoPopup__area {
  position: absolute;
  inset: 0;
}
.videoPopup__body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoPopup__content {
  max-width: 1000px;
  width: 100%;
  height: 600px;
  position: relative;
  background: #000;
}
.videoPopup__content-video {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  inset: 0;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.popup.active {
  opacity: 1;
  pointer-events: painted;
  transition: 0.3s ease;
}

.popup.active .popup__content {
  translate: 0 0;
  scale: 1;
  transition: 0.3s ease;
}

.popup__area {
  position: absolute;
  inset: 0;
}

.popup__body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup__content {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  translate: 0 -100px;
  scale: 1.1;
  transition: 0.3s ease;
}

.popup__content-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 30px;
  background: center/contain no-repeat url("./images/close.svg");
  cursor: pointer;
}

.popup__content-icon {
  display: block;
  width: 100px;
  margin: 0 auto 16px;
}

.popup__content-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 4px;
  text-align: center;
}

.popup__content-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}

@media (max-width: 1365px) {
  .header__inner {
    justify-content: space-between;
    padding: 18px 0;
  }
  .header__nav {
    position: fixed;
    top: 78px;
    left: 100%;
    pointer-events: none;
    width: 100%;
    height: calc(100% - 78px);
    background: #fff;
    overflow-y: auto;
    transition: all 0.35s ease;
  }
  .header__nav::-webkit-scrollbar {
    display: none;
  }
  .header__nav.active {
    left: 0;
    pointer-events: painted;
    transition: all 0.35s ease;
  }
  .header__list {
    flex-direction: column;
    padding: 16px;
    gap: 0;
  }
  .header__list-item {
    width: 100%;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #030e31;
    border-bottom: 1px solid #f4f4f4;
    padding: 0;
  }
  .header__list-item:hover {
    color: #030e31;
  }
  .header__list-item span {
    display: block;
    width: 100%;
  }
  .header__list-item.header__item-dropdown:hover span::before,
  .header__list-item.header__item-dropdown span::before {
    rotate: 0deg;
    width: 32px;
    height: 32px;
    background-image: url("./images/header/arrow-bottom-icon.svg");
  }
  .header__list-item.header__item-dropdown .header__list-btn.active::before {
    rotate: 180deg;
  }
  .header__list-item.header__item-services .header__modal {
    max-width: 100%;
  }
  .header__list-item.header__item-services .header__modal-list {
    padding: 0;
    gap: 8px;
  }
  .header__list-item.header__item-services .header__modal-list li {
    font-size: 16px;
    line-height: 24px;
    color: #0D1A40;
  }
  .header__list-item.header__item-services .header__modal-list li::after {
    width: 16px;
    height: 16px;
    rotate: 180deg;
    background-image: url("./images/header/header-arrow-mobile.svg");
  }
  .header__list-item.header__item-services .header__modal-list li:hover::after {
    rotate: 180deg;
    background-image: url("./images/header/header-arrow-mobile-white.svg");
  }
  .header__list-item.header__item-services .header__modal-list li.active {
    background: #0D1A40;
    color: #fff;
  }
  .header__list-item.header__item-services .header__modal-list li.active::after {
    transform: rotate3d(1, 0, 0, 180deg);
  }
  .header__list-item.header__item-services .header__modal-list li.active.header-item-investigation::before {
    background-image: url("./images/header/header-icon-1-hover.svg");
  }
  .header__list-item.header__item-services .header__modal-list li.active.header-item-investigation::after {
    background-image: url("./images/header/header-arrow-mobile-white.svg");
  }
  .header__list-item.header__item-services .header__modal-list li.active.header-item-education::before {
    background-image: url("./images/header/header-icon-2-hover.svg");
  }
  .header__list-item.header__item-services .header__modal-list li.active.header-item-education::after {
    background-image: url("./images/header/header-arrow-mobile-white.svg");
  }
  .header__list-item.header__item-services .header__modal-list li.active.header-item-guidance::before {
    background-image: url("./images/header/header-icon-3-hover.svg");
  }
  .header__list-item.header__item-services .header__modal-list li.active.header-item-guidance::after {
    background-image: url("./images/header/header-arrow-mobile-white.svg");
  }
  .header__list-item.header__item-services .header__modal-list li.active.header-item-security::before {
    background-image: url("./images/header/header-icon-4-hover.svg");
  }
  .header__list-item.header__item-services .header__modal-list li.active.header-item-security::after {
    background-image: url("./images/header/header-arrow-mobile-white.svg");
  }
  .header__list-item.header__item-services .header__modal-note {
    display: block;
    padding: 6px 12px 12px;
    margin-top: 16px;
  }
  .header__list-item.header__item-services .header__modal-note p {
    display: inline;
  }
  .header__list-item.header__item-services .header__submenu {
    box-shadow: none;
    position: relative;
    inset: unset;
    opacity: 1;
    pointer-events: painted;
    padding: 0 16px;
  }
  .header__list-item.header__item-services .header__submenu-list {
    flex-direction: column;
    gap: 8px;
    max-height: 100%;
    width: 100%;
  }
  .header__list-item.header__item-services .header__submenu-list li {
    padding: 6px 12px;
    color: #616267;
  }
  .header__list-item.header__item-blog .header__modal {
    width: 100%;
    inset: unset;
    margin: 16px 0;
    padding: 0;
  }
  .header__list-item.header__item-blog .header__modal-list li a {
    gap: 12px;
    max-width: 400px;
    width: 100%;
  }
  .header__list-item.header__item-blog .header__modal-list li a .thumbnail {
    width: 112px;
    height: 78px;
    filter: none;
  }
  .header__list-item.header__item-blog .header__modal-list li a .date {
    padding: 0;
  }
  .header__list-item.header__item-blog .header__modal-list li a .date::before {
    display: none;
  }
  .header__list-item.header__item-blog .header__modal-list li a .title {
    font-size: 18px;
    line-height: 28px;
    color: #0D1A40;
  }
  .header__list-item.header__item-blog .header__modal-list li a .title:hover {
    color: #0D1A40;
  }
  .header__list-item.header__item-blog .header__modal .all-articles {
    font-size: 18px;
    line-height: 26px;
  }
  .header__list-link, .header__list-btn {
    display: block;
    padding: 24px 0;
  }
  .header__modal {
    display: none;
    padding: 0 16px;
    position: relative;
    inset: unset;
    opacity: 1;
    pointer-events: painted;
    margin: 8px 0;
    box-shadow: none;
    max-width: 100%;
    transition: none !important;
  }
  .header__modal-list {
    padding: 0;
  }
  .header__modal-list li {
    font-size: 16px;
    line-height: 24px;
    white-space: unset;
  }
  .header__submenu {
    display: none;
  }
  .header__submenu.active {
    display: block;
  }
  .header__btn {
    display: none;
  }
  .header__nav-btn {
    display: block;
    width: 44px;
    height: 44px;
    border: none;
    background: center/contain no-repeat url("./images/header/burger-btn.svg");
    cursor: pointer;
    transition: 0.3s;
  }
  .header__nav-btn.active {
    background-image: url("./images/header/burger-close.svg");
    transition: 0.3s;
  }
}
@media (max-width: 1023px) {
  .videoPopup__content {
    height: auto;
    width: 100%;
    padding-top: 56%;
  }
}
@media (max-width: 767px) {
  .form__row {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .header .container {
    max-width: 1208px;
  }
}/*# sourceMappingURL=style.css.map */