:root {
  --color-primary: #0073ff;
  --color-white: #e9e9e9;
  --color-black: #141d28;
  --color-black-1: #212b38;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
 
}

.logo {
  color: var(--color-white);
  font-size: 30px;
}

.logo span {
  color: var(--color-primary);
}

.menu-bar {
  background-color: #007BC4;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 9%;
  z-index: 2;
  position: relative;
  clear: both;
}

.menu-bar ul {
  list-style: none;
  display: flex;
  z-index: 2;
}

.menu-bar ul li {
  /* width: 100px; */
  padding: 10px 25px;
  /* text-align: center; */
  position: relative;
}

.menu-bar ul li a {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
  background-color: #007BC4;
  position: center;
}

.menu-bar ul li a:hover {
  color: #BFE7FF;
}

.fas {
  float: right;
  margin-left: 12px;
  margin-left: 8px;
  padding-top: 1px;
}

/* dropdown menu style */
.dropdown-menu {
  display: none;
  position: center;
}

.menu-bar ul li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #007BC4;
}

.menu-bar ul li:hover .dropdown-menu ul {
  display: block;
  margin: 10px;
  background-color: #007BC4;
}

.menu-bar ul li:hover .dropdown-menu ul li {
  width: 150px;
  padding: 10px;
  background-color: #007BC4;
}

.dropdown-menu-1 {
  display: none;
}

.dropdown-menu ul li:hover .dropdown-menu-1 {
  display: block;
  position: absolute;
  left: 150px;
  top: 0;
  background-color: #007BC4;
}
#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  opacity: 1;
}

h1, h2 {
  color: white;
  font-family: Trebuchet MS;
  font-weight: bold;
  text-align: center;
}

h1 {
  font-size: 6rem;
  margin-top: 30vh;
}

h2 { font-size: 3rem; }

.brand img{
	width: 50px;
	height: 60px;
	padding-right; 1rem;
    position: static;	
}