/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
:root {
  --primary: #205c94;
  --primary-dark: #0B0F14;
  --text-light: #d0d0d0;
  --btn-bd-space: -12px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
}

.img-bdrs-4 {
  max-width: 100%;
  border-radius: 4px;
}

p {
  margin-bottom: 1rem;
  font-size: 20px;
}

body {
  background: #0B0F14;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.6;
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  cursor: crosshair;
  letter-spacing: 0.04em;
  word-spacing: 3px;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #0B0F14;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease,
  visibility .4s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader__spinner {
  width: 200px;
  height: 200px;
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(140deg, #fff 0%, gray 100%);
  padding: 3px;
  animation: spin 1s linear infinite;
}

.preloader__spinner::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #0B0F14;
}

.fade-up {
  transform: translateY(80px);
  opacity: 0;
}

.preloader img {
  width: auto;
  height: 130px;
  top: 10px;
  position: relative;
  z-index: 2;
  animation: logoPulse .7s ease-in-out infinite;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: .85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

section {
  padding: 96px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 32px;
}

h1, .h1 {
  font-size: 64px;
  margin-bottom: 40px;
  line-height: 1.1;
}

h2, .h2 {
  font-size: 52px;
  margin-bottom: 80px;
  line-height: 1.2;
}

h3, .h3 {
  font-size: 32px;
}

h4, .h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.title-dec {
  color: #fff;
  padding: 28px 40px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.title-dec::before, .title-dec::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, transparent));
  background: -o-linear-gradient(left, #fff 0%, transparent 50%);
  background: linear-gradient(90deg, #fff 0%, transparent 50%);
  border-radius: 5px;
}

.title-dec::before {
  top: 0;
}

.title-dec::after {
  bottom: 0;
  background: -webkit-gradient(linear, right top, left top, from(#fff), color-stop(50%, transparent));
  background: -o-linear-gradient(right, #fff 0%, transparent 50%);
  background: linear-gradient(-90deg, #fff 0%, transparent 50%);
}

.mask-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 32px;
  text-decoration: none;
  transition: .3s;
  position: relative;
  border: 1px solid #fff;
  background: #4E491F;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  text-transform: uppercase;
  font-weight: 700;
}

.btn--dark {
  -webkit-box-shadow: 0 0 6px 0 #4E491F;
  box-shadow: 0 0 6px 0 #4E491F;
  border: 1px solid #4E491F;
  background: -o-linear-gradient(310deg, #4E491F 0%, #1a0900 100%);
  background: linear-gradient(140deg, #4E491F 0%, #1a0900 100%);
  color: #fff !important;
}

.btn--dark:hover {
  -webkit-box-shadow: 0 0 20px 0 #4E491F;
  box-shadow: 0 0 20px 0 #4E491F;
}

.btn--dark:hover span {
  color: #fff !important;
}

.btn span {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
}

.btn:hover span {
  color: #0B0F14;
}

span.btn-bd-top-dec,
span.btn-bd-bottom-dec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.btn-bd-top-dec:before,
.btn-bd-top-dec:after,
.btn-bd-bottom-dec:before,
.btn-bd-bottom-dec:after {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 10px;
  height: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.btn-bd-top-dec:before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  left: var(--btn-bd-space);
  top: var(--btn-bd-space);
}

.btn-bd-top-dec:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: var(--btn-bd-space);
  top: var(--btn-bd-space);
}

.btn-bd-bottom-dec:before {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  left: var(--btn-bd-space);
  bottom: var(--btn-bd-space);
}

.btn-bd-bottom-dec:after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  right: var(--btn-bd-space);
  bottom: var(--btn-bd-space);
}

.btn:hover .btn-bd-top-dec:before {
  left: -1px;
  top: -1px;
  opacity: 0;
}

.btn:hover .btn-bd-top-dec:after {
  right: -1px;
  top: -1px;
  opacity: 0;
}

.btn:hover .btn-bd-bottom-dec:before {
  left: -1px;
  bottom: -1px;
  opacity: 0;
}

.btn:hover .btn-bd-bottom-dec:after {
  right: -1px;
  bottom: -1px;
  opacity: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.subheading p:last-of-type {
  margin-bottom: -0px;
}

/*--------------------------------------*/
/* Header */
.header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.header.sticky {
  background: #1F1F1F;
  padding: 0 0;
  border-bottom: 1px solid #d0d0d0;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo {
  max-width: 250px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #d0d0d0;
  font-size: 14px;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.header__logo img {
  width: 70px;
  height: auto;
}

.header.sticky .header__logo {
  -webkit-transform: scale(.8);
  -ms-transform: scale(.8);
  transform: scale(.8);
}

.header__nav {
  flex: 1 1;
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  padding-left: 100px;
}

.header__nav a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  position: relative;
  font-weight: 900;
}

.header.sticky .header__nav a {
  font-size: 14px;
}

.header__nav a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
}

.header__nav a:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.header__nav a:hover {
  color: #ffffff;
}

.header__cta-wrapper {
  margin-left: auto;
}

.header .btn span {
  font-size: 16px;
}

.header.sticky .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.header.sticky {
  --btn-bd-space: -8px;
}

.header-spacer {
  height: 120px;
}

/* Hero */
.hero {
  min-height: calc(100vh - 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__bg:before,
.hero__bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #0B0F14;
  opacity: .6;
  z-index: 2;
}

.hero__bg:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(11, 15, 20, 0)), to(#0B0F14));
  background: -o-linear-gradient(top, rgba(11, 15, 20, 0) 0%, #0B0F14 100%);
  background: linear-gradient(to bottom, rgba(11, 15, 20, 0) 0%, #0B0F14 100%);
  height: 100px;
  z-index: 2;
  bottom: -1px;
  top: auto;
  opacity: 1;
}

.hero__bg img {
  width: 70%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
}

.hero__image {
  max-width: 500px;
}

/* Card Deck */
.card-deck__row {
  row-gap: 32px;
}

.card-deck__card-wrapper {
  padding: 24px !important;
  text-align: center;
  background: #1F1F1F;
  border: 1px solid #222222;
  height: 100%;
}

.card-deck__img-wrapper {
  min-height: 100px;
  margin-bottom: 8px;
}

.card-deck__card-icon-wrapper {
  min-height: 49px;
}

.card-deck__card-wrapper img {
  width: 90px;
  height: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* Switchback */
.switchback ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 8px;
}

.switchback li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
}

.switchback li::before {
  content: "⌖";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  color: #fff;
  font-size: 14px;
}

.switchback.reverse .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* Switchback */
.slider-sec {
  overflow: hidden;
}

.slider-sec .h1 {
  margin-bottom: 80px;
}

.slider-sec .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider-sec__swiper-pagination {
  position: static;
  margin-top: 40px;
}

.slider-sec__swiper-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #fff;
}

.slider-sec__img {
  max-width: 600px;
}

.drone-card {
  position: relative;
  width: fit-content;
}

.tooltip-box {
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  width: 260px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(20, 20, 20, .95);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  transition: .25s ease;
  pointer-events: none;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tooltip-box::-webkit-scrollbar {
  display: none;
}

.drone-card:hover .tooltip-box,
.tooltip-box:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Videos */
.card-deck-video__video-wrapper {
  outline: 3px solid #222222;
}

.card-deck-video__video-wrapper video {
  width: 100%;
  height: 100%;
  max-height: 350px;
  display: block;
  pointer-events: none;
}

/* Positions */
.position_card-wrapper {
  position: relative;
  padding: 32px 24px;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.position_card-wrapper ul {
  list-style: none;
  padding: 0;
}

.position_card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.position_card-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.position_card-bg:before,
.position_card-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #0B0F14;
  opacity: .4;
  z-index: 2;
}

.position_card-bg:before {
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.position_card-wrapper:hover .position_card-bg:before {
  opacity: .8;
}

.position_card-bg:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(11, 15, 20, 0)), to(#0B0F14));
  background: -o-linear-gradient(top, rgba(11, 15, 20, 0) 0%, #0B0F14 100%);
  background: linear-gradient(to bottom, rgba(11, 15, 20, 0) 0%, #0B0F14 100%);
  height: 100px;
  z-index: 2;
  bottom: -1px;
  top: auto;
  opacity: 1;
}

.positions__title {
  font-size: 32px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}

.positions__description {
  text-align: center;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 32px;
  transition-delay: .3s;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  width: 80%;
}

.position_card-wrapper:hover .positions__description {
  opacity: 1;
  visibility: visible;
  top: 70%;
}

.position_card-wrapper:hover .positions__title {
  top: 45%;
}

/* FAQ */
.faq-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 24px;
  word-spacing: 3px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  outline: none !important;
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-size: 20px;
  border-bottom: 2px solid #fff;
  padding: 16px 0;
  width: 100%;
  cursor: pointer;
}

.faq-answer {
  display: none;
  font-size: 16px;
  background: #1F1F1F;
  padding: 24px 16px;
}

.faq-item:first-child .faq-answer {
  display: block;
}

.faq-icon {
  width: 32px;
  height: auto;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.faq-icon.active {
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1);
}

.faq-icon path {
  fill: #ffffff;
}

/* Form */
.form-group {
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-group--full {
  width: 100%;
  max-width: calc(50% - 10px);
}

.form-group label {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 78px;
  border: 1px solid #ffffff;;
  outline: none;
  background: transparent;
  padding: 0 22px;
  font-size: 18px;
  color: #fff;
}

.form-group input::-webkit-input-placeholder {
  color: #8c8c8c;
  font-size: 16px;
}

.form-group input::-moz-placeholder {
  color: #8c8c8c;
  font-size: 16px;
}

.form-group input:-ms-input-placeholder {
  color: #8c8c8c;
  font-size: 16px;
}

.form-group input::-ms-input-placeholder {
  color: #8c8c8c;
  font-size: 16px;
}

.form-group input::placeholder {
  color: #8c8c8c;
  font-size: 16px;
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath fill='%23000' d='M7 10L0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px;
  color: #8c8c8c;
}

.form-group select.valid {
  color: #fff;
}

.form-bottom {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}

#form-phone.error {
  border: 2px solid red;
}

.error-message {
  display: block;
  margin-top: 8px;
  color: red;
  font-size: 14px;
}

.checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

input[type="checkbox"] {
  accent-color: #000;
  width: 24px;
  height: 24px;
  border: 1px solid #fff !important;
  margin-right: 16px;
  position: relative;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-text {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  margin-top: -4px;
}

form button.btn {
  padding: 24px;
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}

/* Footer */
.footer {
  padding: 80px 0 20px;
}

.footer h4 {
  font-size: 20px;
}

.footer li {
  list-style: none;
}

.footer a {
  color: #fff;
  text-decoration: underline;
  margin-bottom: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
}

.footer a:hover {
  text-decoration: none;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none !important;
}

.footer-logo img {
  max-width: 100px;
}

.footer a svg {
  width: 32px;
  height: auto;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.footer a:hover svg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.footer a svg path {
  fill: #fff;
}

.footer__social-list {
  gap: 16px;
}

.footer__copyright {
  font-size: 14px;
}

.menu-btn {
  background: 0;
  border: none !important;
  box-shadow: none !important;
  margin: auto 0 auto 17px;
  outline: none !important;
  padding: 9px
}

.mobile-menu-button-icon {
  height: auto;
  width: 20px
}

.mobile-menu-button-icon path {
  transform-origin: center;
  transition: transform .3s ease, opacity .3s ease
}

.menu-btn.active .mobile-menu-button-icon path:first-child {
  transform: rotate(45deg) translateY(8px)
}

.menu-btn.active .mobile-menu-button-icon path:nth-child(2) {
  opacity: 0
}

.menu-btn.active .mobile-menu-button-icon path:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px)
}

/* Responsive */
@media (max-width: 1199.98px) {
  section {
    padding: 72px 0;
  }
  
  .btn {
    padding: 12px 24px;
  }
  
  .btn span {
    font-size: 16px;
  }
  
  h1, .h1 {
    font-size: 40px;
  }
  
  h2, .h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  h4, .h4 {
    font-size: 20px;
  }
  
  p {
    font-size: 16px;
  }
  
  .text-center-xl {
    text-align: center;
  }
  
  .header__nav ul {
    gap: 16px;
    padding-left: 60px;
  }
  
  .header .btn {
    font-size: 14px;
  }
  
  .header__nav a {
    font-size: 14px;
  }
  
  .slider-sec .h1 {
    margin-bottom: 40px;
  }
  
  .slider-sec__img {
    width: 600px;
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .text-center-lg {
    text-align: center;
  }
  
  /* Header */
  .header .container {
    justify-content: flex-start;
  }
  
  .header.menu-open {
    border-bottom: 1px solid #fff;
  }
  
  .header__logo img {
    max-width: 55px;
  }
  
  .header__nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: #0B0F14;
    width: 100vw;
    height: calc(100vh - 100%);
    flex-direction: column;
    align-items: center;
    padding: 32px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
  }
  
  .header__nav ul {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }
  
  .header__nav.open {
    visibility: visible;
    opacity: 1;
  }
  
  .header__cta-wrapper {
    margin: 40px 0 0;
  }
  
  .header-spacer {
    height: 108px;
  }
  
  /* Hero */
  .hero {
    min-height: calc(100vh - 108px);
  }
  
  .hero__content-wrapper {
    text-align: center;
  }
  
  .positions__title {
    font-size: 28px;
  }
  
  .position_card-wrapper:hover .positions__title {
    top: 40%;
  }
  
  .positions__description {
    padding: 0;
  }
  
  .faq-icon {
    flex: 0 0 24px;
    margin-left: 16px !important;
  }
}

@media (max-width: 767.98px) {
  .tooltip-box {
    display: none;
  }
}

@media (max-width: 575.98px) {
  
  .header__logo {
    max-width: 190px;
   }
  
  .header__logo-text {
    font-size: 12px;
  }
  
  .btn--support {
    padding: 12px 14px;
    font-size: 12px !important;
  }
  
  .menu-btn {
    margin-left: 8px !important;
  }
  
  section {
    padding: 48px 0;
  }
  
  .mask-link {
    pointer-events: none;
  }
  
  .hero__bg img {
    width: 100%;
  }
  
  .card-deck__img-wrapper {
    min-height: 70px;
  }
  
  .card-deck__card-wrapper img {
    width: 70px;
  }
  
  h1, .h1 {
    font-size: 32px;
  }
  
  .slider-sec .card-deck__card-wrapper {
    padding: 0 !important;
    border: none;
    background: none;
  }
  
  .faq-question {
    font-size: 18px;
  }
  
  .form-group input, .form-group select {
    height: 50px;
  }
  
  .checkbox-text {
    font-size: 12px;
  }
  
  form button.btn {
    width: 100%;
    padding: 16px;
  }
  
  .footer-logo img {
    max-width: 80px;
  }
}

@media (max-width: 400px) {
  
  .header__logo-text {
    font-size: 10px;
  }
  
  .header__logo {
    max-width: 190px;
    gap: 10px;
  }
  
  .btn--support {
    padding: 8px 12px;
  }
}