@charset "utf-8";
/* CSS Document */

#call-to-action3 {
  position: relative;
	display: flex;
	align-items: center;
	height: 500px;
	background-image: url(../images/banner/call-to-action.webp);
  background-size: cover;
  background-position: center center;
  color: white;
  /*z-index: 5;*/
}

#call-to-action3:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .15);
  z-index: -1;
}

#call-to-action3 h2 {
  font-size: 40px;
  font-weight: 800;
  padding: 0 15px;
  font-family: 'Poppins', sans-serif;
}

#call-to-action3 h3 {
  margin: 25px 0 45px;
  font-family: 'Poppins', sans-serif;
}

#call-to-action3 a {
  transition: filter .3s ease-in-out;
}

#call-to-action3 a:hover {
  filter: saturate(170%);
}

#call-to-action3 a:nth-child(4) {
  margin: 0 15px;
}
