@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine/e-Ukraine-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine/e-Ukraine-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine/e-Ukraine-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine/e-Ukraine-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine/e-Ukraine-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "e-Ukraine";
  src: url("../fonts/e-Ukraine/e-Ukraine-UltraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
html {
  box-sizing: border-box;
}

*, *::before {
  box-sizing: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: inherit;
  height: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

span {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  padding: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

main {
  display: block;
  margin: 0;
}

::placeholder {
  color: inherit;
}

select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
}

button {
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

body {
  font-family: "e-Ukraine";
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 0;
}

a {
  transition: 0.35s;
}

.logo__box {
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.logo__box-text {
  font-size: 10px;
  font-weight: 200;
}

.btn {
  cursor: pointer;
  background: #0000FF;
  color: #fff;
  padding: 13px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}
.btn:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.168627451);
}

main {
  padding-top: 70px;
}

.btn_with_arrow_up svg {
  transition: 0.3s ease;
}
.btn_with_arrow_up:hover svg {
  transform: translateY(-3px) translateX(2px);
}

.cooperation {
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 10px #0000FF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 30px;
  color: #0000FF;
  padding: 43px 19px 21px;
}
.cooperation__text {
  font-weight: 400;
  font-size: 18px;
  display: flex;
  gap: 10px;
  padding-left: 5px;
  transition: 0.3s ease;
}
.cooperation__text svg {
  transition: 0.3s ease;
}
.cooperation__text:hover svg {
  transform: translateY(-3px) translateX(2px);
}
.cooperation__img {
  max-width: 300px;
  width: 100%;
  border-radius: 20px;
}

.help_modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1020;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all cubic-bezier(0.445, 0.05, 0.55, 0.95);
  opacity: 0;
  visibility: hidden;
}
.help_modal.active {
  opacity: 1;
  visibility: visible;
}
.help_modal__inner {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 700px;
  padding: 50px 40px;
  max-height: 90vh;
  overflow-y: auto;
}
.help_modal__cross {
  position: absolute;
  right: 25px;
  height: 20px;
}
.help_modal__title {
  text-align: center;
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 20px;
}
.help_modal__content {
  font-size: 18px;
  line-height: 23px;
}

.cross {
  padding: 10px;
  cursor: pointer;
}
.cross span {
  display: block;
  border-radius: 4px;
  width: 25px;
  height: 3px;
  background: #000;
}
.cross span:first-child {
  transform: rotate(45deg);
}
.cross span:nth-child(2) {
  transform: rotate(-45deg);
  margin-top: -3px;
}

.about__bottom_nav .btn, .footer__bottom .btn, .zbir .btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about__bottom_nav .btn svg, .footer__bottom .btn svg, .zbir .btn svg {
  margin-left: 50px;
}

.header {
  border-bottom: 1px solid #d7d7d7;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.header__logo-text {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}
.header__nav_item {
  background: #0000FF;
  border-radius: 12px;
  padding: 7px 15px;
  color: #fff;
}
.header__nav_item-link {
  font-size: 20px;
  font-weight: 600;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__right_button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__right_button svg {
  margin-bottom: -1px;
  transition: 0.3s ease;
}
.header__right_button:hover svg {
  transform: translateX(5px);
}

.header__burger {
  cursor: pointer;
  padding: 4px;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.header__burger span {
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 10px;
  background: black;
}

@media (max-width: 650px) {
  .header .header__nav {
    display: none;
  }
  .header__burger {
    display: flex;
  }
}
.burger {
  z-index: 9999;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.99);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transform: translateX(50px);
  transition: all ease 0.3s;
}
.burger__cross {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
}
.burger__cross span {
  display: block;
  width: 40px;
  height: 5px;
  border-radius: 10px;
  background: black;
}
.burger__cross span:first-child {
  transform: rotate(45deg);
  margin-top: 18px;
}
.burger__cross span:last-child {
  transform: rotate(-45deg);
  margin-top: -5px;
}
.burger.active {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.hero {
  padding: 0 5px;
}
.hero__wrapper {
  border-radius: 16px;
  padding: 8px;
  background: linear-gradient(98.67deg, #005bbb, #ffd500);
}
.hero__inner {
  display: flex;
  gap: 30px;
}
.hero__info {
  padding: 100px 0;
  color: #fff;
}
.hero__info-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero__info-text {
  font-size: 20px;
}
.hero__info_nav {
  flex-wrap: wrap;
  width: fit-content;
  padding-right: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  gap: 10px;
}
.hero__info_nav .btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__info_nav .btn svg {
  margin-left: 50px;
}
.hero__poem {
  font-size: 18px;
  font-style: italic;
  position: absolute;
  right: 40px;
  padding: 30px;
  border: 2px solid white;
  color: #fff;
  max-width: 300px;
  border-radius: 10px;
  line-height: 30px;
  box-shadow: 0px 0px 10px #fff;
}
@media (max-widtH: 1200px) {
  .hero__poem {
    display: none;
  }
}

.about {
  padding: 70px 0;
}
.about__title {
  font-size: 30px;
  font-weight: 400;
}
.about__content {
  margin-top: 50px;
  display: flex;
  gap: 30px;
}
.about__content_info {
  font-size: 15px;
  line-height: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 900px) {
  .about__content_info {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .about__content_info frame {
    height: 500px !important;
    width: auto !important;
    margin-inline: auto;
  }
}
@media (max-width: 400px) {
  .about__content_info iframe {
    width: 100% !important;
  }
}
.about__bottom {
  margin-top: 40px;
}
.about__bottom_nav {
  padding-right: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.faq {
  padding: 30px 0;
}
.faq .container {
  padding: 0;
}
.faq__inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 900px) {
  .faq__inner {
    flex-direction: column;
    align-items: center;
  }
  .faq__inner .cooperation {
    padding: 30px 30px;
  }
  .faq__inner .cooperation__img {
    max-width: 400px;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.faq__list_item {
  width: 100%;
  user-select: none;
  cursor: pointer;
  transition: 0.3s linear;
  width: fit-content;
  max-width: 840px;
  width: 100%;
}
.faq__list_item-head {
  width: 100%;
  background: #c9cde0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 22px 20px 20px 20px;
  min-height: 56px;
  margin-bottom: 0;
  transition: color 0.4s, background-color 0.4s, padding 0.4s;
  gap: 50px;
  transition: 0.3s linear;
}
@media (max-width: 450px) {
  .faq__list_item-head {
    padding: 20px;
  }
}
.faq__list_item-head-icon span {
  transition: 0.3s linear;
  background: #000;
  width: 23px;
  height: 2px;
  display: block;
  border-radius: 2px;
}
.faq__list_item-head-icon span:first-child {
  transform: rotate(90deg);
  margin-bottom: -2px;
}
.faq__list_item-head-title {
  font-size: 18px;
  text-transform: uppercase;
}
.faq__list_item-content {
  transition: 0.3s linear;
  font-size: 15px;
  min-height: 0;
  height: 0;
  opacity: 0;
  padding: 0;
  overflow: hidden;
}
.faq__list_item:not(.active):hover .faq__list_item-head {
  background-color: #000;
  color: #fff;
}
.faq__list_item:not(.active):hover .faq__list_item-head-icon span {
  background: #fff;
}
.faq__list_item.active .faq__list_item-head-icon span:first-child {
  transform: none;
}
.faq__list_item.active .faq__list_item-content {
  padding: 20px 0 20px 30px;
  opacity: 1;
  min-height: fit-content;
  height: fit-content;
}

.videos {
  padding: 70px 0;
}
.videos__title {
  font-size: 30px;
  margin-bottom: 40px;
}
.videos__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.videos__inner iframe {
  width: 48% !important;
  height: 300px;
}
@media (max-width: 700px) {
  .videos__inner iframe {
    width: 100% !important;
    min-height: 400px;
  }
}

.dracaryz {
  padding: 70px 0;
}
.dracaryz__title {
  font-size: 30px;
  margin-bottom: 40px;
}
.dracaryz__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.dracaryz__inner img {
  max-width: 400px;
  width: 100%;
  object-fit: cover;
}

.contact {
  padding-bottom: 70px;
}
.contact__title {
  font-size: 30px;
  margin-bottom: 20px;
}
.contact__nav {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__nav_item {
  font-size: 20px;
  text-decoration: underline;
}
.contact__form {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}
.contact__form_top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact__form_box {
  background: whitesmoke;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 40px;
  border-radius: 20px;
}
@media (max-width: 450px) {
  .contact__form_box {
    padding-inline: 10px;
    width: 100%;
  }
}
.contact__form_box-input {
  height: 50px;
  border-radius: 20px;
  background: #fff;
  padding: 10px 30px;
  border: none;
  font-weight: 500;
  font-size: 17px;
  outline: none;
}
.contact__form_box-input:focus {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.poem {
  padding: 80px 0;
  background: whitesmoke;
  display: none;
}
@media (max-widtH: 1200px) {
  .poem {
    display: block;
  }
}
.poem__text {
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  font-style: italic;
}

.thanks {
  padding: 70px 0;
}
.thanks__text {
  text-align: center;
  font-size: 20px;
}

.drones {
  padding: 30px 0 70px;
}
.drones__title {
  font-size: 30px;
  margin-bottom: 30px;
}
.drones__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.drones__item_media {
  width: 300px;
  height: 300px;
}
.drones__item_media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drones__item-title {
  font-size: 18px;
  margin: 15px 0;
  text-align: center;
}
.drones__item-btn {
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.footer {
  color: #fff;
  background: #000;
  padding: 50px 0 10px;
}
.footer__inner {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer__logo-text {
  font-size: 25px;
  font-weight: 700;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 15px;
  grid-template-rows: auto;
}
.footer__nav a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom {
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid white;
  padding: 20px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  opacity: 0.8;
}
.footer__bottom .btn {
  width: fit-content;
}
.footer__bottom .btn:hover {
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
}
.footer__bottom_dev {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__bottom_dev-text {
  opacity: 0.8;
}

.zbori__head {
  padding: 70px 0 80px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.zbori__head-title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
}
.zbori__head-count {
  font-size: 30px;
  font-weight: 600;
  color: #9c9c9c;
}
.zbori__list {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 88px 30px;
}
@media (max-width: 1000px) {
  .zbori__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .zbori__list {
    grid-template-columns: 1fr;
  }
}

.zbir {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px 10px 20px 20px;
}
.zbir__media {
  display: block;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  height: 242px;
}
.zbir__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.zbir__info {
  padding: 10px 15px;
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zbir__info-title {
  font-size: 25px;
  color: #0000FF;
  font-weight: 600;
}
.zbir__info-text {
  font-size: 17px;
  line-height: 24px;
}
.zbir__progress {
  width: 100%;
  padding: 0 0 12px;
  border-radius: 4px 4px 0 0;
  background-color: rgba(201, 205, 224, 0.4);
  color: #111;
}
.zbir__progress_bar {
  position: relative;
  background-color: #c9cde0;
  border-radius: 10px;
  height: 8px;
}
.zbir__progress_bar-show {
  position: absolute;
  color: #fff;
  top: -30px;
  background: linear-gradient(98.67deg, #005bbb, #ffd500);
  border-radius: 15px;
  padding: 5px;
  font-size: 15px;
  min-width: 30px;
}
.zbir__progress_bar-line {
  display: block;
  height: 8px;
  border-radius: 10px;
  background: #0000FF;
  z-index: 2;
}
.zbir__progress_numbers {
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
}
.zbir__progress_numbers-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zbir__progress_numbers-item:last-child {
  align-items: flex-end;
}
.zbir__progress_numbers-item span:first-child {
  opacity: 0.7;
}
.zbir__progress_numbers-item span:last-child {
  font-weight: 600;
  font-size: 20px;
}
.zbir .btn {
  border-radius: 0px 0px 20px 20px;
  background: linear-gradient(98.67deg, #005bbb, #ffd500);
  border: none;
}

.zbir_page {
  padding: 50px 0;
}
.zbir_page__title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 40px;
}
.zbir_page__current {
  max-width: 500px;
  border-radius: 20px;
  padding: 25px 0px 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  right: 30px;
  top: 150px;
  width: 100%;
  background: white;
  margin-bottom: 40px;
}
.zbir_page__current .zbir__progress {
  border-radius: 0px 0px 20px 20px;
}
@media (max-width: 1170px) {
  .zbir_page__current {
    position: relative;
    top: 0;
    left: 0;
  }
}
.zbir_page__current h3 {
  margin-left: 10px;
}

.other_zbori {
  padding: 50px 0;
}
.other_zbori__title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}
.other_zbori__list {
  display: flex;
  gap: 10px;
}