body{
  margin: 0;
  font-family: Verdana, Geneva, sans-serif;
  background: rgba(18, 22, 46, 1);
  color: #f0f0f0;
  text-align: center;
  }

.grid1{
  display: grid;
  grid: auto auto;
}

.grid2{
  display: grid;
  grid: auto auto;
}

#navbar{
  position: fixed;
  top: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 60px;
  max-height: 10%;
  background: rgba(0, 0, 0, 0.7);
}

#navbar ul{
  display: inline-flex;
  list-style: none;
  width: 100%;
  justify-content: center;
}

#navbar ul li{
  margin: 0 1em;
  padding: 0;
}

#navbar ul li a{
  text-decoration: none;
  text-transform: uppercase;
  font-size: 90%;
  color: #f4f4f4;
}

#navbar ul li a:hover{
  color: skyblue;
}

#home{
  min-height: 100vh;
  height: auto;
  color: #fff;
  text-align: center;
}

#home h1, h3{
  font-weight: bold;
}

#home h1{
  font-size: 5vh;
}

#home h2, h3{
  font-size: 3vh;
}

#home .bg-img-world{
  position: absolute;
  background: #333 url('world.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 100vw;
  min-height: 100vh;
  z-index: -1;
  opacity: 1;
  filter: blur(0.1px);
  -webkit-filter: blur(1.5px);
}

#home .content-wrap{
  padding: 0 1.5em;
}

#home .logo{
  margin-top: 60px;
  width: 45%;
  height: auto;
  fill: #f4f4f4;
}

#services{
  height: 100vh;
  color: #fff;
  text-align: center;
  grid-template-columns: 1fr 1fr;
}

#services .bg-img-dc3{
  position: absolute;
  background: #333 url('dc3.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 100vw;
  min-height: 100vh;
  z-index: -1;
  opacity: 0.4;
  filter: blur(1.5px);
  -webkit-filter: blur(1.5px);
}

.card{
  background: #dad8e6;
  opacity: 0.6;
  margin: 11vh 1vw 6vh 1vw;
}

.card-content{
  color: black;
  font-size: 2vh;
  line-height: 140%;
  padding: 6%;
}

.card-title{
  font-weight: bold;
  font-size: 85%;
}

.card-subtitle{
  font-weight: bold;
}

#about{
  height: 100vh;
  color: #fff;
  padding-top: 60px;
  grid-template-columns: 1fr;
}

#about .logo{
  width: 40%;
  height: auto;
  max-height: 20vh;
  fill: #293166;
}

#about ul{
  list-style: none;
}

#contact{
  min-height: 50vh;
  background: #f7f7ed;
  color: #293166;
  padding-bottom: 20px;
  font-size: 2.5vh;
}

#disclaimer{
  background: #293166;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  padding: 20px;
  min-height: 35vh;
  text-align: left;
}

#disclaimer p, h2{
  font-size: 1vh;
}

#disclaimer h1, h2{
  font-weight: bold
}

#disclaimer h1{
  font-size: 1.5vh;
}

.blue{
  color: #293166;
}

#footer{
  position: fixed;
  bottom: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 4vh;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  color: #f0f0f0;
  font-size: 1vh;
}

@media (max-width: 900px) {

  .card-content{
    font-size: 15px;
  }

  .grid1{
    display: inline;
  }

}

@media (max-height: 568px) {
  #contact{
    font-size: 15px;
  }
  #disclaimer p, h2{
    font-size: 5px;
  }
  #disclaimer h1{
    font-size: 10px;
  }
}
