body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #06192e;
  background-image: url(/wp-content/uploads/2025/10/arrows-bg.svg);
  background-repeat: repeat;
  background-color: #9DD8F7;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  /* font-family: "Gilroy"; */
}

h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  color: #06192e;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  outline: none;
}

button:focus {
  outline: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* :root {
  --main-color: #FE8300;
} */

.container {
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
}

.burger_block {
  display: none;
}

.center {
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute; */
  width: 50px;
}

.center:before,
.center:after,
.center div {
  background: #000;
  content: "";
  display: block;
  height: 6px;
  border-radius: 3px;
  margin: 7px 0;
  transition: 0.5s;
}

.show-menu .center:before {
  transform: translateY(12px) rotate(135deg);
}

.show-menu .center:after {
  transform: translateY(-12px) rotate(-135deg);
}

.show-menu .center div {
  transform: scale(0);
}

/* 
.burger-menu-wraper {
  display: none;
  width: 45px;
  height: 27px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  margin-right: 15px;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 12px;
}

#nav-icon3 span:nth-child(4) {
  top: 24px;
}

#nav-icon3.show-menu span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon3.show-menu span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.show-menu span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.show-menu span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
} */

.mobile_menu {
  display: none;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: 0.4s;
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  transition: 0.4s;
  gap: 20px;
}

.header.sticky {
  background: #9DD8F7;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.20);
}

@media (min-width: 992px) {
  .header.sticky .header_wrapper {
    padding: 10px 0;
  }
}

.menu-header ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu-header ul li a {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: #06192e;
  transition: 0.4s;
}

.menu-header ul li a:hover {
  color: #fff;
}

.header_right-side {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (min-width: 992px) {
  .header.sticky .header_num {
    font-size: 20px;
  }
}

.dropdown_lang .dropdown_menu a,
.header_lang__btn span {
  transition: 0.3s;
  font-size: 18px;
  font-weight: 500;
  padding-right: 13px;
}

.header_lang__btn {
  border-radius: 30px;
  background: #ECEFF6;
  width: 76px;
  height: 50px;
  position: relative;
  z-index: 5;
}

.header_lang__btn svg {
  position: absolute;
  top: 21px;
  right: 27%;
}

.dropdown_lang .dropdown_menu a:hover {
  color: var(--main-color);
}

.dropdown_lang .dropdown_menu {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 27px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: #ECEFF6;
  width: 76px;
  padding-bottom: 10px;
  padding-top: 20px;
  z-index: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.dropdown_lang.open .dropdown_menu {
  opacity: 1;
  visibility: visible;
}

.dropdown_item.disabled {
  display: none;
}

.dropdown_lang {
  position: relative;
  top: 0;
}



.slider_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.slider_btn svg {
  position: relative;
  z-index: 5;
  min-width: 48px;
}

.default-btn {
  border-radius: 4px;
  background: #FD0;
  color: #121C2C;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  border: 1px solid #FD0;
  padding: 12px 50px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.slider_btn:hover .default-btn {
  color: white;
  background: #ad9600;
}

.slider_btn .default-btn {
  padding: 0 50px;
  height: 49px;
  margin-left: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home_top_col_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  font-weight: 700;
  font-size: 30px;
  line-height: 135%;
  color: #06192e;
}

.home_top_col_wrapper span {
  text-transform: uppercase;
}

.home_top_col {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
  margin-bottom: 80px;
}

.home_top_col:before,
.home_top_col:after {
  content: '';
  position: absolute;
  height: 50%;
  left: 0;
  right: 0;
  z-index: -1;
}

.home_top_col:before {
  top: 0;
  background: #00b9f2;
}

.home_top_col:after {
  bottom: 0;
  background: #ffeb3d;
}

.main_home {
  padding-top: 82px;
  overflow: hidden;
}

.home_top_title {
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  color: #06192e;
  margin-bottom: 25px;
}

.home_top_subtitle {
  font-weight: 400;
  font-size: 23px;
  line-height: 140%;
  text-align: center;
  color: #06192e;
  max-width: 975px;
  width: 100%;
  margin: 0 auto;
}

.whocan {
  margin: 90px 0 100px;
}

.whocan_title {
  margin-bottom: 40px;
}

.whocan_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.whocan_item {
  background: #fff;
  padding: 10px;
  /* width: 316px; */
  height: 273px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.whocan_item img {
  width: 90px;
  height: 90px;
  min-width: 90px;
  transition: 0.4s;
}

.whocan_item:hover img {
  translate: 0 -10px;
  scale: 0.8;
}

.whocan_item span {
  font-weight: 500;
  font-size: 21px;
  line-height: 140%;
  text-align: center;
  color: #000;
  transition: 0.4s;
}

.whocan_item:hover span {
  scale: 1.1;
  translate: 0 -15px;
}

.units_title {
  margin-bottom: 40px;
}

.units_wrapper {
  gap: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.units_item {
  position: relative;
  overflow: hidden;
}



.units_add_img {
  width: 100%;
  display: block;
  transition: 0.3s;
}

.units_item:hover .units_add_img {
  scale: 1.1;
}

.units_txt {
  position: absolute;
  bottom: 20px;
  width: 412px;
  right: 0;
  z-index: 5;
  padding-right: 35px;
  padding-left: 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  isolation: isolate;
}

.units_txt:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 17.5px;
  height: 49px;
  background: rgba(254, 254, 254, 0.8);
  width: 100%;
  z-index: -1;
}

.units_txt span {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #121c2c;
  display: block;
  margin-top: 20px;
}

.units {
  margin-bottom: 100px;
}

.units_txt svg {
  position: absolute;
  left: -56px;
  bottom: 17px;
}

.roles {
  padding: 80px 0 100px;
  background-color: #4b4e25;
  background-image: url(/wp-content/uploads/2025/10/green-arrow-bg.svg);
  background-repeat: repeat;
}

.role_title {
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

.role_title_item svg {
  position: absolute;
  top: 0;
  left: -40px;
}

.role_subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 790px;
  margin: 0 auto 60px;
}

.roles_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  row-gap: 35px;
}

.role_img {
  position: relative;
  overflow: hidden;
}

.role_img img {
  width: 100%;
  transition: 0.3s;
}

.role_item:hover .role_img img {
  scale: 1.1;
}

.role_title_item {
  position: absolute;
  bottom: 25px;
  right: 0;
  z-index: 2;
  height: 62px;
  background: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #121c2c;
  line-height: 120%;
}

.role_item {
  background: #6f7341;
}

.role_item:nth-child(2),
.role_item:nth-child(5),
.role_item:nth-child(8) {
  background: #536b2e;
}

.role_bottom {
  padding: 35px 50px 40px 50px;
}

.role_txt_block_title {
  opacity: 0.7;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 5px;
}

.role_txt_block_descr {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}

.role_txt_block {
  margin-bottom: 24px;
}

.role_btn {
  background: transparent;
  display: flex;
  align-items: center;
  height: 43px;
  cursor: pointer;
  position: relative;
  left: 50%;
  translate: -50% 0;
  margin-top: 35px;
}

.role_btn span {
  height: 42.74px;
  width: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fd0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #121c2c;
  transition: 0.3s;
  margin-left: -1px;
}

.role_btn:hover span {
  background: #ad9600;
  color: white;
}

.role_title_drone {
  font-size: 18px;
}

.role_title_bottom {
  margin-top: 100px;
}

.apply_block {
  margin: 100px auto 0;
  background: #303218;
  padding: 50px 65px 60px;
  max-width: 762px;
  width: 100%;
}

.apply_title {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 35px;
}

.apply_list_item .role_btn {
  position: unset;
  translate: unset;
  margin-top: 0;
  scale: 0.88;
}

.apply_list_item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.apply_list_item:last-child {
  margin-bottom: 0;
}

.apply_list_item_txt {
  font-weight: 500;
  font-size: 21px;
  line-height: 140%;
  color: #fff;
}

.apply_list_item_txt span {
  color: #fd0;
}

.faq {
  margin: 100px 0;
}

.faq_title {
  margin-bottom: 35px;
}

.post_title {
  font-weight: 700;
  font-size: 21px;
  color: #121c2c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  cursor: pointer;
}

.post_title svg {
  transition: 0.3s;
}

.faq_cat_item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(18, 28, 44, 0.25);
}

.faq_answ {
  transition: 0.4s;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #121c2c;
}

.faq_ques.active+.faq_answ {
  opacity: 1;
  visibility: visible;
  margin-top: 20px;
}

.faq_ques.active svg {
  rotate: 45deg;
}


.faq_answ ul {
  list-style-type: disc;
  padding-left: 20px;
}

.faq_answ ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #121c2c;
}

.form_wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.form {
  margin-bottom: 80px;
}

.form_side {
  flex-basis: 50%;
}

.form_side img {
  width: 100%;
}

.form_title {
  font-weight: 700;
  font-size: 42px;
  line-height: 87%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #17385b;
  margin-bottom: 40px;
  display: block;
  width: 100%;
}


.form_row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-left: -6px;
  margin-right: -6px;
}

.f-basis-50 {
  flex-basis: calc(50% - 12px);
  margin: 6px;
}

.form_input p {
  margin: 0px;
}

.f-basis-100 {
  flex-basis: calc(100% - 12px);
  margin: 6px;
}

.form_input input,
.form_input textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #FFF;
  color: #1F4771;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding: 10px 18px;
  box-sizing: border-box;
  background: transparent;
  font-family: 'Inter';
}

.form_block {
  flex-basis: 45% !important;
  margin-right: 5%;
}

.form_input input::placeholder,
.form_input textarea::placeholder {
  color: #1F4771;
}

.form_input textarea {
  height: 113px;
  resize: none;
}

.wpcf7-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: #fd0;
  border-radius: 0 3px 3px 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #121c2c;
  border: unset;
  padding: 0 80px;
  cursor: pointer;
  transition: 0.4s;
}

.wpcf7-submit:hover {
  background: #ad9600;
  color: white;
}

.btn-submit-form {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.btn-submit-form p {
  position: relative;
}

.btn-submit-form p:before {
  content: '';
  position: absolute;
  top: 0;
  left: -50px;
  background-image: url(/wp-content/uploads/2025/10/btn-arrow.svg);
  width: 50px;
  height: 50px;
}

.text_agree_form p {
  margin-top: 25px;
  font-weight: 400;
  font-size: 12px;
  line-height: 155%;
  text-align: center;
  color: #17385b;
}

.footer {
  padding: 60px 0;
  background: #17385b;
}

.footer_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo_block {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo_block div {
  font-weight: 700;
  font-size: 25px;
  line-height: 135%;
  color: #fff;
}

.logo_block div span {
  text-transform: uppercase;
}

.footer_social_title {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 20px;
}

.footer_social_wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
}

.footer_social_wrapper a svg {
  width: 44px;
  height: 44px;
}

.footer_tel {
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  color: #fff;
  display: block;
  transition: 0.3s;
}



.footer_mail {
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #fff;
  transition: 0.3s;
}

.footer_tel:hover,
.footer_mail:hover {
  color: #FD0;
}

.footer_content_bottom {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer_content_bottom span,
.footer_content_bottom a {
  font-weight: 400;
  font-size: 14px;
  line-height: 155%;
  color: #fff;
}

.footer_content_bottom a {
  text-decoration: underline;
}

.footer_social_wrapper a svg {
  transition: 0.4s;
}

.footer_social_wrapper a:hover svg {
  filter: drop-shadow(0px 0px 5px white);
  scale: 1.1;
}

.role_item:nth-child(2) {
  transition-delay: 0.2s;
}

.role_item:nth-child(3) {
  transition-delay: 0.3s;
}

.role_item:nth-child(4) {
  transition-delay: 0.4s;
}

.role_item:nth-child(5) {
  transition-delay: 0.5s;
}

.role_item:nth-child(6) {
  transition-delay: 0.6s;
}

.role_item:nth-child(7) {
  transition-delay: 0.7s;
}

.role_item:nth-child(8) {
  transition-delay: 0.8s;
}

.role_item:nth-child(9) {
  transition-delay: 0.9s;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-not-valid {
  border: 1px solid red !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: unset !important;
  border-color: unset !important;
  text-align: center;
}

.wpcf7-spinner {
  display: none;
}


.hidden-anim {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s cubic-bezier(.34, .88, .44, .95);
}

.leftAnim {
  translate: -50px 0;
  transition: 1s;
}

.rightAnim {
  translate: 50px 0;
}

.bottomAnim {
  translate: 0 50px;
}

.topAnim {
  translate: 0 -50px;
}

.scaleAnim {
  scale: 0.1;
}

.scaleAnim07 {
  scale: 0.7;
}

.delay_02 {
  transition-delay: 0.2s;
}

.delay_03 {
  transition-delay: 0.3s;
}

.delay_04 {
  transition-delay: 0.4s;
}

.delay_05 {
  transition-delay: 0.5s;
}

.delay_06 {
  transition-delay: 0.6s;
}

.delay_08 {
  transition-delay: 0.8s;
}

.delay_1 {
  transition-delay: 1s;
}


.show-elements.leftAnim,
.show-elements.rightAnim,
.show-elements.bottomAnim,
.show-elements.topAnim,
.show-elements.scaleAnim,
.show-elements.scaleAnim07 {
  translate: 0;
  visibility: visible;
  opacity: 1;
  scale: 1;
}





.error404 {
  background: #9DD8F7;
}

h1.title-404 {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 400px;
  font-style: normal;
  font-weight: 700;
  line-height: 126%;
  ;
  margin-top: 2rem;
}

.main-404 {
  position: absolute;
  bottom: -10rem;
}

section.error-404.not-found {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.main-404 img {
  width: 100vw;
  object-fit: cover;
}

h1.default-title.blue-title.nothing-found-title {
  margin-top: 60px;
}

body.error404 footer#colophon {
  display: none;
}

.error404 header#masthead {
  display: none;
}

body.error404 {
  height: 100vh;
  overflow: hidden;
}

.main-content-404 {
  text-align: center;
  z-index: 9;
  position: relative;
  margin-top: 7rem;
}

.main_404-desc {
  color: #17385B;
  text-align: center;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 126%;
  margin-bottom: 40px;
  margin-top: 15px;
}

.main-content-404 a {
  margin: 0;
}

h2.default-title {
  color: #17385B;
  /* font-family: "e-Ukraine Head"; */
  font-family: "Martian Mono", monospace;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 0;
  margin: 0;
  padding: 0;
}

.blue-btn {
  border-radius: 3px;
  background: #17385B;
  border: none;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.313px;
  text-transform: uppercase;
  padding: 1rem 5rem;
  /* margin-right: 2.5rem; */
  border: 1px solid #17385B;
  transition: all 0.4s ease-in-out;
}


.blue-btn:hover {
  background-color: #FD0;
  border-color: #FD0;
  color: #17385B;
}

.main-404 img {
  min-height: 100vh;
}


.thx_section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/wp-content/uploads/2025/05/thanks_page_v1.jpg);
  background-repeat: repeat;
  height: 100vh;
}

.thx_section_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 770px;
  width: 100%;
}

.thx_section_title {
  font-weight: 700;
  font-size: 35px;
  text-transform: uppercase;
  text-align: center;
  color: #17385b;
  margin: 45px 0 20px;
}

.thx_section_subtitle {
  font-weight: 300;
  font-size: 18px;
  line-height: 142%;
  text-align: center;
  color: #17385b;
}

.thx_section_link {
  background: #17385b;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  padding: 0 64px;
  height: 60px;
  margin-top: 45px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: unset;
  color: #fff;
  transition: 0.3s;
  border: 1px solid #17385b;
}

.thx_section_link:hover {
  border: 1px solid #17385b;
  background: transparent;
  color: #17385b;
}

.page-template-page-thanks header {
  opacity: 0;
  visibility: hidden;
}

.ukwebsite {
  padding: 60px 0;
  background: #06192e;
}

.ukwebsite_title {
  font-weight: 700;
  font-size: 42px;
  line-height: 87%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}

.ukwebsite_subtitle {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 35px;
}


.ukwebsite_btn {
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 20px 70px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.ukwebsite_btn:hover {
  border: 1px solid #fff;
  background: #fff;
  color: #06192e;
}

.ukwebsite_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.company_video iframe {
  width: 620px;
  height: 350px;
}

.video-layer {
  display: flex;
  justify-content: center;
}

.video-preview {
  width: 620px;
  height: 350px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}

.video-preview:hover svg {
  scale: 1.1;
}

.video-preview svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: 0.4s;
}

.home_top_video {
  margin-top: 60px;
}

.company_video:has(iframe) .video-preview {
  display: none;
}

.units_video {
  margin: 102px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.units_video .video-preview {
  width: 100%;
  height: 235px;
}

.units_video .video-preview svg {
  scale: 0.7;
}

.units_video .video-preview:hover svg {
  scale: 0.8;
}

.units_video .company_video iframe {
  width: 100%;
  height: 235px;
}


















@media(max-width: 1280px) {
  .menu-header ul {
    gap: 15px;
  }

  .menu-header ul li a {
    font-size: 13px;
  }

  .units_video .video-preview,
  .units_video .company_video iframe {
    height: 225px;
  }
}

@media(max-width: 1024px) {

  .units_video .video-preview,
  .units_video .company_video iframe {
    height: 170px;
  }


  .slider_btn svg {
    display: none;
  }

  .slider_btn .default-btn {
    font-size: 11px;
    padding: 0 15px;
  }



  .header_wrapper {
    gap: 10px;
  }

  .roles_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    row-gap: 15px;
  }

  .form_wrapper {
    gap: 30px;
  }
}

@media(max-width: 992px) {

  .units_video {
    margin: 70px 0;
    gap: 15px;
  }

  .units_video .video-preview,
  .units_video .company_video iframe {
    height: 140px;
  }

  .units_video .video-preview svg {
    scale: 0.5;
  }

  .error404 header {
    display: none !important;
  }

  .main-404 {
    bottom: -40px;
  }

  .main-content-404 {
    margin-top: -9rem;
  }

  h2.default-title {
    font-size: 2.5rem;
  }

  .main_404-desc {
    font-size: 1.2rem;
  }

  .menu-header {
    display: none;
  }

  .burger_block {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .burger-menu-wraper {
    display: block;
  }

  .mobile_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    translate: 0 -120%;
    z-index: 50;
    background-color: white;
    position: fixed;
    inset: 0;
    padding: 100px 15px 100px;
    /* background-image: url(/wp-content/uploads/2023/10/mobile-menu-bg.svg); */
    /* background-repeat: no-repeat;
    background-size: cover; */
    overflow: auto;
  }

  .mobile_menu.show-menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .mobile_menu .menu-header {
    display: block;
  }

  .logo_wrapper,
  .burger-menu-wraper {
    position: relative;
    z-index: 55;
  }

  .menu-header ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu-header ul li a {
    font-size: 23px;
  }

  .slider_btn .default-btn {
    font-size: 16px;
    padding: 0px 30px;
  }

  .header.sticky .header_wrapper {
    padding: 10px 0;
  }

  .home_top_title {
    font-size: 30px;
  }

  .home_top_subtitle {
    font-size: 20px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 20px !important;
  }

  .whocan_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .units_wrapper {
    gap: 15px;
  }

  .whocan {
    margin: 60px 0 70px;
  }

  .units_txt {
    padding-right: 20px;
    justify-content: flex-end;
    width: 365px;
  }

  .units_txt span {
    font-size: 16px;
  }

  .units {
    margin-bottom: 70px;
  }

  .roles {
    padding: 64px 0 70px;
  }

  .role_txt_block_descr {
    font-size: 16px;
  }

  .apply_block {
    margin-top: 70px;
  }

  .faq {
    margin: 52px 0 70px;
  }

  .form_title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .form_row {
    margin-top: 0;
  }

  .wpcf7-submit {
    padding: 0 28px;
  }

  .btn-submit-form {
    margin-top: 20px;
  }

  .logo_block div {
    font-size: 20px;
  }
}

@media(max-width: 600px) {

  .units_video {
    grid-template-columns: repeat(1, 1fr);
  }

  .units_video .video-preview,
  .units_video .company_video iframe {
    height: 204px;
  }

  .thx_section_wrapper {
    padding: 0 15px;
  }

  .thx_section_wrapper svg {
    width: 150px;
  }

  .thx_section_title {
    font-size: 24px;
    margin: 20px 0;
  }

  .thx_section_subtitle {
    font-size: 16px;
  }

  h1.title-404 {
    font-size: 140px;
  }

  .main-content-404 {
    position: absolute;
    bottom: 10vh;
    margin-top: 7rem;
  }

  .footer_content {
    flex-direction: column;
    gap: 54px;
  }

  .home_top_col_wrapper {
    gap: 16px;
    font-size: 22px;
  }

  .home_top_col {
    padding: 20px 0;
    margin-bottom: 40px;
  }

  .home_top_title {
    font-size: 23px;
  }

  .home_top_subtitle {
    font-size: 17px;
  }

  h2 {
    font-size: 21px;
  }

  .whocan_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .whocan_item {
    height: 235px;
    padding: 10px 20px;
  }

  .whocan_item span {
    font-size: 18px;
  }

  .units_wrapper,
  .roles_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .role_bottom {
    padding: 30px;
  }

  .role_subtitle {
    margin: 0 auto 40px;
    font-size: 16px;
  }

  .menu-header ul li a {
    font-size: 19px;
  }

  .role_title_item {
    font-size: 20px;
  }

  .apply_block {
    padding: 30px;
  }

  .apply_title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .apply_list_item_txt {
    font-size: 18px;
    font-weight: 400;
  }

  .apply_list_item {
    flex-direction: column;
    align-items: flex-start;
  }

  .apply_list_item .role_btn {
    scale: 1;
  }

  .post_title {
    font-size: 19px;
  }

  .faq_cat_item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .faq_answ {
    font-size: 16px;
  }

  .form_wrapper {
    flex-direction: column;
  }

  .btn-submit-form p {
    width: 100%;
  }

  .wpcf7-submit {
    width: 100%;
  }

  .btn-submit-form p:before {
    display: none;
  }

  .post_title svg {
    min-width: 15px;
    width: 15px;
  }

  .wpcf7-spinner {
    display: none;
  }

  .form {
    margin-bottom: 54px;
  }

  .logo_block {
    gap: 18px;
  }

  .footer_social {
    width: 100%;
  }

  /* .footer_social_wrapper {
    justify-content: space-between;
  } */

  .footer_content_bottom {
    flex-direction: column;
    margin-top: 60px;
    align-items: flex-start;
  }

  .whocan {
    margin-top: 34px;
  }

  .home_top_col:after {
    height: 60%;
  }

  .ukwebsite_title {
    font-size: 26px;
  }

  .ukwebsite_subtitle {
    font-size: 18px;
  }

  .video-preview,
  .company_video iframe {
    width: 100%;
    height: 200px;
  }

  .home_top_video {
    margin-top: 35px;
  }

}

@media(max-width: 321px) {

  .footer_social_wrapper a {
    display: block;
    width: 45px;
  }

  .footer_social_wrapper a svg {
    width: 100%;
  }

  .role_btn span {
    width: 195px;
  }

  .apply_list_item_txt {
    font-size: 15px;
  }

  .role_bottom {
    padding: 24px;
  }

  .units_txt span {
    font-size: 13px;
  }

  .units_txt img {
    scale: 0.7;
  }

  .units_txt {
    gap: 0;
  }

  .home_top_col_wrapper {
    font-size: 19px;
  }

  .home_top_col {
    padding: 7px 0;
  }
}