@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');


:root {
  --black: rgb(0, 0, 0);
  --white: rgb(255, 255, 255);
  --background: rgb(0, 0, 0,0.9);
  
}



html, body {
  height: 100%;
  scroll-behavior: smooth;
  background-color:rgb(255, 255, 255)

}

#container {
  min-height: 100%;
}

#main {
  padding: 0px;
  background-color:var(--black) ;
}

.navigation {
  height: 110px;
  background-color:var(--background) ;
}



/*Establishing Images and Navigation Content*/
.brand {
  position: absolute;
  float: left;
  line-height: 100px;
  text-transform: uppercase;
  font-size: 1.4em;
  padding-left: 10%;
}

.brand a,
.brand a:visited {
  color: #ffffff;
  text-decoration: none;
}

.logo1 {
  display: block;
  width: 108px;
  -webkit-transition: .3s;
  transition: .3s;
}


.nav-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

nav {
  float: right;
  padding-right: 10%;
}

nav ul {
  list-style: none;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: left;
  position: relative;
}

nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 30px;
  line-height: 103px;
  color: var(--white);
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

nav ul li a:hover,
nav ul li a:visited:hover {
  color: rgb(106, 126, 150);
  text-decoration: none;
}

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}

nav ul li ul li {
  min-width: 100%;
}

nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
  -webkit-transition: .3s;
  transition: .3s;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 13px;
}

.nav-dropdown {
  position: absolute;
  display: none;
  background: var(--background) ;
  z-index: 1;

  z-index: 500;
}


/*STICKY BAR!*/

.nav-container.black {
  position: fixed;
  background: var(--background) ;
  height: 85px;
  z-index: 500;
}

nav.black ul li a {
  color: var(--white);
  line-height: 85px;
  -webkit-transition: .3s;
  transition: .3s;
}

nav.black ul li a:hover {
  color: rgb(106, 126, 150);
}

nav.black ul li ul li a {
  padding: 15px;
  line-height: 20px;
  -webkit-transition: .3s;
  transition: .3s;
}

.nav-dropdown.black {
  background: var(--background) ;
  -webkit-transition: .3s;
  transition: .3s;
}



/* MOBILE VIEWPORT */
/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 3px;
  right: 0;
  height: 80px;
  width: 100px;
  background-color:var(--background);
  -webkit-transition: .3s;
  transition: .3s;
}

.nav-mobile.black {
  height: 80px;
  background-color: transparent;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (max-width: 1100px) {

  #main {
      overflow: auto;
  }

  .navigation {
    height: 110px;
  }

  .nav-list li:hover::after {
      width: 0%;
  }

  .nav-mobile {
      display: block;
  }

  nav {
      width: 100%;
      padding: 100px 0 0px;
      -webkit-transition: .3s;
      transition: .3s;
  }

  nav ul {
      display: none;
  }

  nav ul li {
      float: none;
  }

  nav ul li a {
      padding: 15px;
      line-height: 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
      align-content: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-transition: .3s;
      transition: .3s;
  }

  .nav-dropdown {
      position: static;
  }

  nav.black {
      padding: 80px 0 0px;
      -webkit-transition: .3s;
      transition: .3s;
  }

  nav.black ul li a {
    background: var(--background)  ;
      line-height: 30px;
      -webkit-transition: .3s;
      transition: .3s;
  }

  .nav-dropdown.black {
      background: var(--background) ;
      -webkit-transition: .3s;
      transition: .3s;
  }
}

@media screen and (min-width: 1100px) {
  .nav-list {
      display: block !important;
  }
}


#nav-toggle {
  position: absolute;
  left: 25px;
  top: 22px;
  cursor: pointer;
  padding: 10px 25px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 25px;
  background: var(--white);
  position: absolute;
  display: block;
  content: '';
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -8px;
}

#nav-toggle span:after {
  bottom: -8px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-toggle.black span,
#nav-toggle.black span:before,
#nav-toggle.black span:after {
  background: var(--white);
}


#nav-toggle.black.active span {
  background-color: transparent;
}

@media screen and (max-width: 520px) {
  .logo1 {
      display: block;
      width: 108px;
  }

  nav.black {
      padding: 70px 0;
      -webkit-transition: .3s;
      transition: .3s;
  }

  .nav-container.black {
      height:80px;
  }
}

@media screen and (max-width: 370px) {

  nav.black {
      padding: 70px 0 0px;
      -webkit-transition: .3s;
      transition: .3s;
  }

}


/* Footer */
footer {
  margin: 0;
  padding: 0;
  position: relative;
  clear: both;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  background-color:rgb(255, 255, 255);
  font-size: 12px;
  color: rgb(0, 0, 0);
}

.footer1 {
  padding-top: 10px;
  text-align: center;
}

.footer1 a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.footer1 i {
  padding: 5px;
  padding-right: 2px;
}

.footer2 {
  margin: 0;
  padding: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}





@media screen and (max-width: 500px) {
  footer {
    font-size: 10px;
  }

  .footer1 i {
    padding: 3px;
  }
  .footer2 {
    margin: 0;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
