body {
  min-height: 1500px;
}
.jumbotron {
  background-color: #cee2f7;
}
#Projects {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("img/bg-wave-2.svg");
  background-size: cover; /* <------ */
  background-repeat: no-repeat;
  background-position: center center;
}
.card {
  transition: all 0.2s ease;
  cursor: pointer;
  width: 24rem;
}
.card:hover {
  box-shadow: 5px 6px 6px 2px #e9ecef;
  transform: scale(1.1);
}

#Contact {
  padding-top: 7rem;
  background-image: url("img/bg-wave-3.svg");
  background-size: cover; /* <------ */
  background-repeat: no-repeat;
  background-position: top center;
}
footer {
  /* background-color: #1357a8; */
  padding-bottom: 1rem;
  background-color: #1357a8;
}
section {
  padding-top: 7rem;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  svg {
    visibility: hidden;
    clear: both;
    float: left;
    margin: 10px auto 5px 20px;
    width: 28%;
    display: none;
  }
  #Contact {
    margin-bottom: 10rem;
    padding-bottom: 2rem;
  }
}
