footer {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  background: #000;
  line-height: 30px;
}
footer .content {
  max-width: 1350px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .content p,
a {
  color: #fff;
}
footer .content .box {
  width: 33%;
  transition: all 0.4s ease;
}
footer .content .topic {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
footer .content p {
  text-align: justify;
}
footer .content .lower .topic {
  margin: 24px 0 5px 0;
}
footer .content .lower i {
  padding-right: 16px;
}
footer .content .middle {
  padding-left: 80px;
}
footer .content .middle a {
  line-height: 32px;
}
footer .content .right input[type="text"] {
  height: 45px;
  width: 100%;
  outline: none;
  color: #d9d9d9;
  background: #000;
  border-radius: 5px;
  padding-left: 10px;
  border: 2px solid #222222;
  font-size: 18px;
}
footer .content .right input[type="submit"] {
  height: 55px;
  width: 100%;
  font-size: 18px;
  color: white;
  background: #16778c;
  outline: none;
  border-radius: 5px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 15px;
  border: 2px solid #16778c;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}

.content .right input[type="submit"]:hover {
  background: none;
  color: white;
  border: 2px solid white;
}
footer .content .media-icons a {
  font-size: 20px;
  height: 45px;
  width: 45px;
  display: inline-block;
  text-align: center;
  line-height: 43px;
  border-radius: 5px;
  border: 2px solid #222222;
  margin: 30px 5px 0 0;
  transition: all 0.3s ease;
}
.content .media-icons a:hover {
  border-color: white;
}
footer .bottom {
  width: 100%;
  text-align: right;
  color: #d9d9d9;
  padding: 0 40px 5px 0;
  /* font-weight: bold; */
}
footer .bottom a {
  color: cyan;
  text-decoration: none;
  font-weight: bold;
}
footer a {
  transition: all 0.3s ease;
  font-size: 18px;
}

.contact a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.contact a:hover {
  color: cyan;
}

/* MEDIA QUERIES */
@media (max-width: 1100px) {
  footer .content .middle {
    padding-left: 50px;
  }
}
@media (max-width: 950px) {
  footer .content .box {
    width: 50%;
  }
  .content .right {
    margin-top: 40px;
  }
}
@media (max-width: 560px) {
  footer {
    position: relative;
  }
  footer .content .box {
    width: 100%;
    margin-top: 30px;
  }
  footer .content .middle {
    padding-left: 0;
  }
}
