@import url("../../fonts/quicksand.css");
@import url("https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
footer {
  font-family: "Quicksand", sans-serif;
  width: 100%;
  height: 400px;
  background-image: linear-gradient(#008cff, #004581);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
footer .row1 {
  width: 95%;
  height: 300px;
  border-bottom: 1px solid white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer .row1 .col1 {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .row1 .col1 a {
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .row1 .col1 a img {
  width: 50%;
}
footer .row1 .col2 {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
footer .row1 .col2 .col h1 {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
footer .row1 .col2 .col ul li {
  margin-bottom: 0.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.1s;
}
footer .row1 .col2 .col ul li:hover {
  font-weight: bold;
  scale: 1.05;
}
footer .row1 .col2 .col ul li svg {
  margin-right: 0.5rem;
}
footer .row2 {
  width: 95%;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
footer .row2 .col1 {
  display: flex;
  flex-direction: row;
}
footer .row2 .col1 h6 {
  margin-right: 50px;
}
footer .row2 .col2 {
  width: 10%;
  display: flex;
  justify-content: space-evenly;
  margin-right: 4rem;
}
footer .row2 .col2 a svg {
  width: 25px;
}
footer .row2 .col2 a:link svg {
  fill: white;
}
footer .row2 .col2 a:visited svg {
  fill: white;
}

@media screen and (max-width: 768px) {
  footer {
    height: auto;
  }
  footer .row1 {
    flex-direction: column;
    height: auto;
    margin-top: 3rem;
  }
  footer .row1 .col1 {
    width: 50%;
  }
  footer .row1 .col2 {
    width: 100%;
    margin: 3rem 0;
  }
  footer .row1 .col2 h1 {
    font-size: 20px !important;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  footer .row1 .col2 ul li {
    justify-content: center;
  }
  footer .row2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
  footer .row2 .col1 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }
  footer .row2 .col1 h6 {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  footer .row2 .col2 {
    width: 30%;
    margin-right: 0;
  }
}
@media screen and (max-width: 576px) {
  footer {
    height: auto;
    text-align: center;
  }
  footer .row1 .col2 {
    flex-direction: column;
  }
  footer .row1 .col2 h1 {
    margin-bottom: 1rem !important;
    margin-top: 1.5rem;
  }
  footer .row1 .col2 ul li {
    justify-content: center;
  }
  footer .row2 .col1 {
    font-size: 13px;
  }
  footer .row2 .col2 {
    align-items: center;
    margin-top: 20px;
  }
  footer .row2 .col2 a {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=footer.css.map */