* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Bahnschrift", sans-serif;
  background-color: var(--black-color);
}
:root {
  --prim-color: #ff0100;
  --white-color: #ffff;
  --black-color: #000;
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--black-color);
}

::-webkit-scrollbar-track {
  background-color: var(--prim-color);
}

a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.whites {
  color: var(--white-color);
}
.fs-39 {
  font-size: 39px;
}
.fs-31 {
  font-size: 31px;
}
.fs-16 {
  font-size: 16px;
}
.fs-20 {
  font-size: 20px;
}
.fw-700 {
  font-weight: 700;
}

.fw-400 {
  font-weight: 400;
}
.line-height {
  line-height: 2;
  text-align: justify;
}
.links {
  text-transform: capitalize;
  color: var(--black-color);
  font-weight: 500;
  font-size: 18px;
}
/* HEADER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background-color: var(--prim-color);
}

.page-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 100px;
}

.border-bottom-white {
  border-bottom: 1px solid var(--white-color);
}
.border_left {
  border-left: 1px solid var(--white-color);
}
.head-section {
  font-size: 48px;
  color: var(--white-color);
}
/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
}

.page-header.is-sticky img {
  max-width: 80%;
}

.page-header.is-sticky button {
  font-size: 14px;
  padding: 7px 10px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.video {
  height: 100vh;
}

.video {
  position: relative;
}

.bg_video::after {
  content: "";
  position: absolute;
  background-color: #00000082;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}
.hdp_video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.titles {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  text-transform: capitalize;
}
.hero-title {
  font-size: 120px;
  font-weight: 600;
  color: var(--white-color);
}

.hero-desc {
  font-size: 20px;
  font-weight: 400;
  width: 50%;
  text-align: center;
  margin: 0;
  color: var(--white-color);
}
.titles span {
  font-size: 40px;
  font-weight: 400;
}
.card-titles {
  background-color: aliceblue;
  width: 415px;
  height: 345px;
  justify-content: center;
  display: flex;
  padding: 30px;
  flex-direction: column;
}

.btn-prim {
  background-color: red;
  color: var(--white-color);
  border: none;
  padding: 10px;
  border-radius: 5px;
}
.footer {
  background-color: var(--prim-color);
}

.buttons-swipers {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
}
.form-label {
  color: var(--white-color);
}
.success {
  color: green;
}
.error {
  color: var(--prim-color);
}

.nav-link.active svg path {
  fill: var(--prim-color) !important;
}
.nav-link.active + .mission-title {
  color: var(--prim-color) !important;
}
@media screen and (max-width: 325px) {
  .links {
    font-size: 14px;
  }
  .hero-title {
    font-size: 30px;
  }
  iframe {
    width: 200px;
  }
  .fs-39 {
    font-size: 28px;
  }
  iframe {
    width: 320px !important;
  }
}

@media screen and (min-width: 325px) and (max-width: 768px) {
  .links {
    font-size: 16px;
  }
  .hero-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .logo {
    width: 70px;
  }

  .head-section {
    font-size: 32px;
  }
  .hero-desc {
    font-size: 16px;
    width: 100%;
  }
  .border_left {
    border-left: unset;
  }
  iframe {
    width: 260px !important;
  }
}
