@media screen and (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}
#home {
  width: 100vw;
  height: 500px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  background-color: #2196f3;
  color: white;
}
.home {
  display: inline-block;
}
.footer {
  padding-top: 12px;
  height: 50px;
  color: white;
  background: #007bff;
}
.description {
  font-size: 15px;
  width: 100%;
  border-left: #007bff solid 5px;
  padding-left: 5px;
  margin-bottom: 8px;
}
#information .card {
  border: 1px solid #d3d3d3;
  box-shadow: 0 5px 10px #d3d3d3;
  padding-bottom: 20px;
}
#information .card:hover {
  box-shadow: 0 10px 20px #d3d3d3;
}

#information {
  padding-bottom: 50px;
}
.card {
  border: 1px solid #d3d3d3;
  box-shadow: 0 5px 10px #d3d3d3;
  margin-bottom: 10px;
}
.card:hover {
  box-shadow: 0 10px 20px #d3d3d3;
}
.fas,
.fa,
.far {
  color: #2196f3;
}
section {
  padding-top: 100px;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  background: white;
  color: #666666;
}
a {
  color: #fff;
}
a:hover,
a:active,
a:focus {
  color: #2dca98;
  outline: none;
  text-decoration: none;
}
#header {
  padding: 20px 0;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

#header.header-fixed {
  background: rgba(52, 59, 64, 0.9);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 10px 0 0 0;
}
/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li > a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .menu-active > a:before {
  visibility: visible;
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #fff;
  color: #fff;
}
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300 !important;
}
h1 {
  font-weight: 400 !important;
}
.blink {
  animation: 0.8s linear infinite condemned_blink_effect;
}

@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
