* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: url("./imgs/bg.jpg");
  background-size: cover;
  background-attachment: fixed;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("./imgs/gradient.png");
  background-size: cover;
  z-index: -1;
}

p {
  color: white;
}

.text-justify {
  text-align: justify;
}

.mitsu-logo {
  max-width: 200px;
  display: block;
  margin: auto;
}

nav {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 45px;
}

nav > a {
  padding: 3px 15px;
  color: rgb(128, 128, 128) !important;
  opacity: 1 !important;
  border-left: 2px solid rgba(128, 128, 128, 1);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

nav > a.active {
  color: #ef1c25 !important;
  opacity: 1;
}

.contact h1 {
  color: white;
  font-size: 63px;
  line-height: 70px;
}

.contact h2 {
  font-size: 28px;
  line-height: 35px;
  color: #b7b7b7;
  margin-bottom: 15px;
}

.contact a {
  color: white;
  text-decoration: none;
  opacity: 0.5;
}

label {
  color: white;
  opacity: 0.5;
  margin-top: 15px;
}

input {
  padding: 3px 10px;
  width: 100%;
  border-radius: 5px;
}

textarea {
  width: 100%;
  padding: 3px 10px;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px !important;
}

button {
  padding: 5px 10px;
  border-radius: 5px;
}
.contact h3 {
  margin: 0;
  font-size: 22px;
  color: white;
  margin-top: 15px;
}

.contact h4 {
  font-size: 18px;
  color: white;
}

.wb label {
  opacity: 1;
  font-size: 14px;
}

.mb-100 {
  margin-bottom: 150px;
}

.max-width {
  max-width: 1200px !important;
}

@media (max-width: 576px) {
  .contact h1 {
    font-size: 40px;
  }

  .contact h2 {
    font-size: 22px;
  }

  .mb-100 {
    margin-bottom: 180px;
  }

  nav {
    padding: 12px;
  }

  img {
    width: 100%;
  }
}
