body {
  background-color: #474747;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}
.navbar {
  position: absolute;
  width: 100%;
  background-color: transparent;
  box-shadow: inset 0 7px 20px -7px rgba(0, 0, 0, 0.4);
  z-index: 99;
}
.navbar .navbar-brand img {
  width: 100%;
  max-width: 181px;
}
.navbar .navbar-nav .nav-item > a {
  color: white;
}
.navbar .navbar-nav .nav-item > a:hover {
  text-decoration: underline;
}
.navbar .navbar-nav .nav-item.active {
  border-bottom: 1px solid white;
}
.navbar .navbar-nav .menu-prod:hover > .dropdown-menu {
  display: block;
}
.navbar .navbar-nav .dropdown-menu {
  border-radius: 0px!important;
  border-top: 2px solid #243e6b;
  margin: 0;
  margin-top: -10px;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item {
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem 1rem 1rem;
  color: #a4a4a4;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  color: #243e6b;
  font-weight: bold;
}
footer {
  background-color: #2c2c2d;
  padding: 35px;
  color: white;
}
footer img {
  width: 100%;
  max-width: 215px;
}
footer a {
  color: white;
}
footer a:hover {
  color: white;
}
#top {
  position: relative;
}
#top img {
  width: 100%;
}
#top .top-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: white;
}
#top .top-hero h1,
#top .top-hero h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 100px;
}
#top .top-hero h1 {
  font-size: 10rem;
}
#top .top-hero h2 {
  font-size: 5rem;
}
.inp {
  position: relative;
  margin: auto;
  width: 100%;
}
.inp .label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 16px;
  color: #9098a9;
  font-weight: 500;
  transform-origin: 0 0;
  transition: all 0.2s ease;
}
.inp .border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #363636;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: all 0.15s ease;
}
.inp input {
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 12px 0;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid #c8ccd4;
  background: none;
  border-radius: 0;
  color: #223254;
  transition: all 0.15s ease;
}
.inp input:hover {
  background: rgba(34, 50, 84, 0.03);
}
.inp input:not(:placeholder-shown) + span {
  color: #5a667f;
  transform: translateY(-26px) scale(0.75);
}
.inp input:focus {
  background: none;
  outline: none;
}
.inp input:focus + span {
  color: #363636;
  transform: translateY(-26px) scale(0.75);
}
.inp input:focus + span + .border {
  transform: scaleX(1);
}
@media (max-width: 991px) {
  .navbar {
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  .navbar .navbar-nav {
    width: 60%;
    margin: 0 auto !important;
  }
}
