@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

header {
  display: none;
}

nav {
  border-top: solid #94949c 2px;
}

.mobile-view {
  display: flex;
  justify-content: space-between;
  height: 100px;
}

.mobile-view img {
  height: 30px;
  margin: auto 15px;
}

.burger {
  display: block;
  margin: auto 20px;
}

.line {
  width: 30px;
  margin: 5px;
  height: 4px;
  background: #303b44;
}

.burger:hover .line {
  background: #207fbb;
}

.nav-links {
  position: absolute;
  background: #303b44;
  width: 100%;
  display: none;
  z-index: 1;
}


.nav-links.responsive {
  display: block;
}

.link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin: 0 0 0 45px;
  padding: 15px 45px 15px 0;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 17px;
}

.link:hover {
  color: #207fbb;
}

.active {
  color: #207fbb;
}

.dropdown1 {
  display: none;
  background-color: #303b44;
  width: 100%;
}

.dropdown1.showDrp {
  display: block;
}

.droplink {
  color: rgb(255, 255, 255);
  text-decoration: none;
  background: #303b44;
  margin: 0 0 0 70px;
  padding: 3px 125px 16px 0;
  position: relative;
  width: 100%;
  display: block;
  font-size: 15px;
}

.droplink:hover {
  color: #207fbb;
}

@media only screen and (min-width: 750px) {
  
  header {
    background: rgb(255, 255, 255);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 6px 9%;
  }
  
  header div {
    text-align: center;
    text-decoration: none;
    color: #94949c;
    justify-content: space-around;
    margin: auto;
  }
  header a {
    font-size: 17px;
    color: black;
    font-weight: 400;
    text-decoration: none;
  }

  header a img {
    margin: auto;
    justify-content: space-around;
    padding: 0;
    position: relative;
  }
  
  header a:hover {
    color: #207fbb;
    text-decoration: underline;
  }
  
  
  nav {
    display: flex;
  }

  .mobile-view {
    display: flex;
    width: 30%;
    margin: 0;
    height: 80px;
  }

  .mobile-view a img {
    margin: 35px 15px 0px 15px;
  }

  .burger {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    width: 70%;
    background: white;
    justify-content: space-between;
    margin: auto 0;
  }

  .nav-links a {
    margin: auto;
  }

  .nav-links a:hover {
    color: #207fbb;
  }



  .nav-links.responsive {
    display: flex;
  }

  .nav-links .link {
    margin: 30px 5px 0 5px;
    padding: 10px;
    color: #444444;
    font-size: 17px;
    font-weight: 500;
  }

  .nav-links .active {
    color: #207fbb;
  }
  
  .drpp {
    position: relative;
    display: inline-block;
  }

  .dropdown1 {
    float: left;
    position: absolute;
    z-index: 1;
    min-width: 180px;
    background-color: #303b44;
    margin-top: 3px;
    margin-left: 10px;
  }

  .dropdown1.showDrp {
    display: block;
  }

  .droplink {
    color: white;
    margin: 15px 0 15px 15px;
    padding: 6px;
    display: block;
    font-size: 18px;
  }
}

@media only screen and (min-width: 900px) {
  .mobile-view {
    width: 22%;
  }

  .nav-links {
    justify-content: unset;
    margin: auto 10px;
  }

  .nav-links a {
    margin: auto 15px;
  }
}
