:root {
  --color-red: #a95539;
  --color-blue: #006487;
  --colo-black: #141414;
}

body {
  font-family: "Raleway";
  overflow-x: hidden;
  color: var(--color-black);
  font-size: 100%;
}

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway";
  font-weight: bold;
}

/* HEADER */
header {
  position: absolute;
  top: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
header img {
  max-width: 150px;
}

main .container-fluid {
  background: #F8F8F8;
  border-radius: 20px 20px 0 0;
  margin: 60px 60px 0;
  padding: 100px 60px 80px;
  width: auto;
}
main .container-fluid h1 {
  color: var(--color-red);
  font-size: 2em;
  margin-bottom: 20px;
}
main .container-fluid .row + .row > div {
  margin-top: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 0;
}

/* FOOTER */
footer {
  background: var(--color-blue);
  padding: 20px 0 0;
  text-align: center;
  color: #fff;
  position: relative;
  font-size: 0.9em;
}
footer:before {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  right: 0;
  height: 5px;
  background-image: url("../../assets/img/backgroundFooter.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  content: "";
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  main .container-fluid {
    margin-left: 30px;
    margin-right: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 992px) {
  header img {
    max-width: 135px;
  }

  main .container-fluid {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    padding-bottom: 0;
  }

  main .container-fluid .row + .row > div {
    border-radius: 20px 20px 0 0;
  }
}