* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bg-blur {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  /* background-color: rgba(2, 15, 58, 0.452); */
  background-color: #041845;
}

.video-bg {
  position: fixed;
  z-index: 1;
  width: 100vw;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 768px) {
  .container {
    width: 100vw;
    padding: 0 10vw;
    position: relative;
    z-index: 3;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }

  .logo-wrapper img {
    width: 80%;
    height: auto;
    margin-bottom: 50px;
  }

  .logo-wrapper span {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
    color: white;
  }

  .menu-wrapper {
    position: relative;
    background-color: rgba(41, 41, 41, 0.59);
    list-style: none;
    column-count: 2;
    width: 80vw;
  }

  .menu-wrapper > li {
    display: flex;
    margin: 0 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .menu-wrapper > li > a {
    text-decoration: none;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
  }

  .menu-wrapper li img {
    width: 15vw;
  }

  .menu-wrapper li span {
    color: white;
    /* font-weight: bold; */
  }
  .dropup .dropdown-menu {
    align-self: center;
    margin-top: 0;
    border-bottom: 3px solid green;
  }

  .dropup .dropdown-menu .dropdown-item {
    margin: 0;
    display: flex;
    align-items: flex-start;
  }

  .dropup .dropdown-menu .dropdown-item:hover {
    background-color: green;
    color: white;
  }

  .main-btn {
    margin: 15px 0;
    padding: 5px 10px;
    background-color: seagreen;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 11px;
    /* font-weight: bold; */
    text-decoration: none;
  }

  .main-btn:hover {
    text-decoration: none;
    color: white;
  }

  .footer {
    font-size: 10px;
    color: white;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    width: 100vw;
    padding: 0 10vw;
    position: fixed;
    z-index: 3;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }

  .logo-wrapper img {
    width: 80%;
    height: auto;
    margin-bottom: 50px;
  }

  .logo-wrapper span {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
    color: white;
  }

  .menu-wrapper {
    position: relative;
    background-color: rgba(41, 41, 41, 0.815);
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 100vw;
  }

  .menu-wrapper > li {
    display: flex;
    margin: 0 10px;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    width: 9vw;
  }

  .menu-wrapper > li > a {
    text-decoration: none;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .menu-wrapper li img {
    width: 6vw;
  }

  .menu-wrapper li span {
    color: white;
    font-weight: bold;
  }

  .dropup .dropdown-menu {
    align-self: center;
    border-bottom: 3px solid green;
  }

  .dropup .dropdown-menu .dropdown-item {
    margin: 0;
    display: flex;
    align-items: flex-start;
  }

  .dropup .dropdown-menu .dropdown-item:hover {
    background-color: green;
    color: white;
  }

  .main-btn {
    margin: 15px 0;
    padding: 5px 10px;
    background-color: seagreen;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    text-decoration: none;
  }

  .main-btn:hover {
    text-decoration: none;
    color: white;
  }

  .footer {
    position: absolute;
    bottom: 10px;
    z-index: 2;
    color: white;
  }
}
/* finisih line of window widht */
