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

body {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: white;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  background-color: #E8EBF9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  color: black;
  flex-wrap: wrap;
}
.header_logo img {
  height: 30px;
}
.header_top_right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header_nav {
  display: flex;
  align-items: center;
}
.nav_links {
  display: flex;
  gap: 20px;
}
.nav_links a {
  color: black;
  text-decoration: none;
  font-size: 18px;
}
.burger_menu {
  display: none;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.nav_links{
  display: none !important;
}
.burger_menu {
  width: 43px;
  height: 43px;
  position: absolute;
  top: 16px;
  right: 3%;
  z-index: 999;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.burger_lines {
  width: 30px;
  height: 19px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.burger_lines span {
  height: 2.5px;
  background-color: black;
  border-radius: 3px;
  transition: 0.3s;
  transform-origin: center;
}
.burger_menu.open .burger_lines span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
  background-color: black;
}
.burger_menu.open .burger_lines span:nth-child(2) {
  transform: rotate(-45deg) translateY(-8px);
  background-color: black;
}
.burger_menu.open .burger_lines span:nth-child(3) {
  opacity: 0;
}
.nav_links.show {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  background: #E8EBF9;
  position: absolute;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  top: 75px;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 998;
}
.nav_links.show a {
  padding: 10px;
  font-size: 16px;
  color: black;
  text-decoration: none;
  text-align: center;
}}
/* HEADER */

/* LANDING VIDEO */
.landing_video_block {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  height: 100vh;
  overflow: hidden;
  padding: 20px;
}
.landing_video_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.landing_video_overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: white;
}
.landing_video_logo {
  position: absolute;
  top: 10%;
  left: 5%;
  display: flex;
  flex-direction: column;
}
.landing_video_logo img {
  max-width: 400px;
}
.landing_video_logo p {
  margin-top: 10px;
  font-size: 18px;
  color: #66aaff;
}
.landing_video_text {
  position: absolute;
  top: 42%;
  left: 5%;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.landing_video_text h1 {
  font-size: 32px;
  line-height: 1.3;
}
.button_text {
  max-width: 200px;
  margin: 60px auto 0 0;
  padding: 15px 60px;
  background: #66aaff;
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  display: block;
}
.landing_video_gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(3, 55, 223, 0.9), rgba(3, 55, 223, 0));
  z-index: 1;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.landing_video_block {
  background-color: black;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
}
.landing_video_bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.landing_video_overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: white;
}
.landing_video_logo {
  position: absolute;
  top: auto;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.landing_video_logo img {
  max-width: 150px;
}
.landing_video_logo p {
  margin-top: 10px;
  font-size: 16px;
  color: #66aaff;
}
.landing_video_text {
  display: none;
}
.landing_video_gradient {
  display: none;
}}
/* LANDING VIDEO */