:root {
  --headingFamily: "Poppins", sans-serif;
  --bodyFontFamily: "Nunito Sans", sans-serif;
  --mainColor: #ED0000 /*#fb6b60*/;
  --headingColor: #18253e;
  --secondaryColor: #056409 /*#61a17f*/;
  --paragraphColor: #5d6678;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --transition: all ease 0.5s;
  --fontSize: 16px;
}

/***
Footer Area CSS
--------------------*/
.footer-area {
  background-image: url("https://saidnovaitalia.com.br/assets/images/topo/topo1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.footer-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  width: 100%;
  background-color: #18253e;
  opacity: 0.85;
  z-index: -1;
}
.footer-area.bg-2 {
  background-image: url("https://saidnovaitalia.com.br/assets/images/topo/topo1.jpg");
}
.footer-area.bg-3 {
  background-image: url("https://saidnovaitalia.com.br/assets/images/topo/topo1.jpg");
}
.footer-area .footer-weight {
  padding-bottom: 100px;
}
.footer-area .footer-weight .footer-logo {
  margin-bottom: 20px;
  max-width:250px !important;
  align-items:center;
}
.footer-area .footer-weight p {
  color: var(--whiteColor);
  margin-bottom: 12px;
}
.footer-area .footer-weight .footer-social {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.footer-area .footer-weight .footer-social li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
}
.footer-area .footer-weight .footer-social li i {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 18px;
  color: var(--mainColor);
}
.footer-area .footer-weight .footer-social li span {
  color: var(--whiteColor);
}
.footer-area .footer-weight .footer-social li a {
  color: var(--whiteColor);
}
.footer-area .footer-weight .footer-social li a:hover {
  color: var(--mainColor);
}
.footer-area .footer-weight .footer-social li:last-child {
  margin-bottom: 0;
}
.footer-area .footer-weight .footer-social li:hover i {
  animation: rotate-vertical 1.1s ease-out;
}
.footer-area .footer-weight h3 {
  font-size: 22px;
  color: var(--whiteColor);
  padding-bottom: 13px;
  margin-bottom: 34px;
  position: relative;
}
.footer-area .footer-weight h3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 130px;
  height: 2px;
  background-color: var(--whiteColor);
  opacity: 0.2;
}
.footer-area .footer-weight h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--mainColor);
}
.footer-area .footer-weight .quick {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.footer-area .footer-weight .quick li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.footer-area .footer-weight .quick li i {
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 20px;
  color: var(--whiteColor);
}
.footer-area .footer-weight .quick li a {
  color: var(--whiteColor);
}
.footer-area .footer-weight .quick li a:hover {
  color: var(--mainColor);
}
.footer-area .footer-weight .quick li:last-child {
  margin-bottom: 0;
}
.footer-area .footer-weight .latest-footer {
  position: relative;
  padding-left: 102px;
  margin-bottom: 25px;
}
.footer-area .footer-weight .latest-footer img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 86px;
  border-radius: 5px;
}
.footer-area .footer-weight .latest-footer .info {
  position: relative;
  top: 5px;
}
.footer-area .footer-weight .latest-footer .info span {
  display: block;
  font-size: 14px;
  margin-bottom: 9px;
  color: var(--whiteColor);
}
.footer-area .footer-weight .latest-footer .info h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--bodyFontFamily);
  line-height: 26px;
}
.footer-area .footer-weight .latest-footer .info h5 a {
  color: var(--whiteColor);
}
.footer-area .footer-weight .latest-footer .info h5 a:hover {
  color: var(--mainColor);
}
.footer-area .footer-weight .latest-footer:last-child {
  margin-bottom: 0;
}
.footer-area .footer-weight .footer-form {
  position: relative;
  max-width: 312px;
}
.footer-area .footer-weight .footer-form p {
  padding-right: 50px;
  margin-bottom: 18px;
}
.footer-area .footer-weight .footer-form .form-group {
  position: relative;
}
.footer-area .footer-weight .footer-form .form-group .form-control {
  border: 1px solid transparent;
  box-shadow: unset !important;
  background-color: var(--whiteColor);
  color: var(--blackColor);
  height: 55px;
  padding: 15px 60px 15px 15px;
  border-radius: 5px;
  transition: var(--transition);
}
.footer-area .footer-weight .footer-form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.footer-area .footer-weight .footer-form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.footer-area .footer-weight .footer-form .form-group .form-control:focus {
  border-color: var(--mainColor);
}
.footer-area .footer-weight .footer-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.footer-area .footer-weight .footer-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.footer-area .footer-weight .footer-form .form-group .footer-btn {
  position: absolute;
  top: 5.5px;
  right: 5px;
  border: none;
  padding: 10px 12px;
  background-color: var(--mainColor);
  border-radius: 5px;
}
.footer-area .footer-weight .footer-form .form-group .footer-btn img {
  position: relative;
  max-width: 22px;
  bottom: 1px;
}
.footer-area .footer-weight .footer-form .form-group .footer-btn:hover img {
  animation: rotate-vertical 1.1s ease-out;
}
.footer-area .footer-weight .footer-form .footer-shape-1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -90px;
  opacity: 0.32;
  margin: auto;
}
.footer-area .footer-weight .footer-form .footer-shape-1.footer-shape-2 {
  bottom: -125px;
}
.footer-area .footer-weight .footer-form .footer-shape-1.footer-shape-3 {
  bottom: -125px;
}
.footer-area .col-lg-3:nth-child(2) .footer-weight {
  position: relative;
  margin-left: 35px;
}
.footer-area .col-lg-3:nth-child(3) .footer-weight {
  position: relative;
  margin-left: -70px;
}

/* footer area responsive CSS */
@media only screen and (max-width: 767px) {
  .footer-area .footer-weight {
    padding-bottom: 30px;
  }
  .footer-area .footer-weight h3 {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .footer-area .footer-weight .footer-social li {
    padding-left: 24px;
    font-size: 14px;
  }
  .footer-area .footer-weight .footer-social li i {
    font-size: 16px;
  }
  .footer-area .footer-weight .quick li {
    font-size: 14px;
  }
  .footer-area .footer-weight .quick li i {
    font-size: 18px;
  }
  .footer-area .footer-weight .latest-footer .info h5 {
    font-size: 14px;
  }
  .footer-area .footer-weight .footer-form .form-group .form-control {
    font-size: 14px;
  }
  .footer-area .col-lg-3:nth-child(2) .footer-weight {
    margin-left: 0;
  }
  .footer-area .col-lg-3:nth-child(3) .footer-weight {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-weight {
    padding-bottom: 30px;
  }
  .footer-area .footer-weight h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .footer-area .footer-weight .footer-social li {
    font-size: 14px;
  }
  .footer-area .footer-weight .footer-social li i {
    top: 1px;
  }
  .footer-area .footer-weight .quick li {
    font-size: 14px;
  }
  .footer-area .footer-weight .quick li i {
    font-size: 18px;
  }
  .footer-area .footer-weight .footer-form .form-group .form-control {
    font-size: 14px;
  }
  .footer-area .footer-weight .footer-form .footer-shape-1 {
    bottom: -70px;
  }
  .footer-area .footer-weight .footer-form .footer-shape-1.footer-shape-2 {
    bottom: -95px;
  }
  .footer-area .col-lg-3:nth-child(3) .footer-weight {
    margin-left: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-weight {
    padding-bottom: 60px;
  }
  .footer-area .footer-weight .footer-social li {
    padding-left: 25px;
    font-size: 14px;
  }
  .footer-area .footer-weight h3 {
    font-size: 20px;
  }
  .footer-area .footer-weight .quick li {
    font-size: 14px;
    padding-left: 22px;
    margin-bottom: 10px;
  }
  .footer-area .footer-weight .quick li i {
    font-size: 18px;
  }
  .footer-area .footer-weight .latest-footer {
    padding-left: 88px;
  }
  .footer-area .footer-weight .latest-footer img {
    max-width: 70px;
  }
  .footer-area .footer-weight .latest-footer .info {
    top: 0;
  }
  .footer-area .footer-weight .latest-footer .info span {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .footer-area .footer-weight .latest-footer .info h5 {
    font-size: 14px;
    line-height: 24px;
  }
  .footer-area .footer-weight .footer-form .form-group .form-control {
    font-size: 14px;
  }
  .footer-area .footer-weight .footer-form .footer-shape-1 {
    bottom: -70px;
  }
  .footer-area .footer-weight .footer-form .footer-shape-1.footer-shape-2 {
    bottom: -115px;
  }
  .footer-area .col-lg-3:nth-child(2) .footer-weight {
    margin-left: 14px;
  }
  .footer-area .col-lg-3:nth-child(3) .footer-weight {
    margin-left: -60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area .footer-weight p {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .footer-area .footer-weight .footer-social li {
    padding-left: 25px;
    font-size: 14px;
  }
  .footer-area .footer-weight .footer-social li i {
    font-size: 17px;
  }
  .footer-area .footer-weight .quick li {
    padding-left: 22px;
    font-size: 14px;
  }
  .footer-area .footer-weight .quick li i {
    top: 1px;
    font-size: 18px;
  }
  .footer-area .footer-weight .latest-footer {
    padding-left: 95px;
    margin-bottom: 20px;
  }
  .footer-area .footer-weight .latest-footer img {
    max-width: 80px;
  }
  .footer-area .footer-weight .latest-footer .info {
    top: 1px;
  }
  .footer-area .footer-weight .latest-footer .info h5 {
    font-size: 15px;
  }
  .footer-area .footer-weight .footer-form .form-group .form-control {
    font-size: 14px;
  }
}/*# sourceMappingURL=footer.css.map */