/* default values */
html,
body {
  height: 100%;
  width: 100%;
  padding: 0px;
  margin: 0px;
  background-color: white;
  overflow-x: hidden;
  color: #3D3D3D;
  font-family: "Inter", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
}
a,
a:hover {
  text-decoration: none !important;
}
*:focus {
  outline: none !important;
  box-shadow: none !important;
}
p {
  font-size: 12px !important;
  line-height: 18px;
  font-weight: 400;
}
/* menu custom */
.logo_ {
  max-width: 155px;
}
.top-tile {
  height: 5px;
  width: 100%;
  background: #8fb6e0;
  background: linear-gradient(90deg, #8fb6e0 21%, #9dd9c7 100%);
}
.menu-custom .menu-item {
  padding: 0 10px;
  color: #3D3D3D;
}
.menu-custom .menu-item a {
  color: #3D3D3D;
  font-weight: 400;
  font-size: 14px;
}
.menu-custom .current_page_item a {
  font-weight: 500;
  color: #6292C7;
}
.menu-custom .menu-item a:hover {
  font-weight: 500;
}
.estado {
  background-image: url("../img/img-alagoas-do-alto-web.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  min-height: 558px;
}
.drone {
  position: relative;
  margin-bottom: -180px;
  z-index: 99;
}
.shake-vertical {
  -webkit-animation: shake-vertical 1.8s linear 2s;
  animation: shake-vertical 1.8s linear 2s;
}
/**
 * ----------------------------------------
 * animation shake-vertical
 * ----------------------------------------
 */
@-webkit-keyframes shake-vertical {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
    transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
    transform: translateY(-6.4px);
  }
}
@keyframes shake-vertical {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
    transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
    transform: translateY(-6.4px);
  }
}
@media (max-width: 991.98px) {
  .estado {
    background-image: url("../img/img-alagoas-do-alto-mobile.webp");
    background-size: 100%;
    min-height: 320px;
  }
  .drone {
    margin-bottom: -40px;
  }
}
