/* STYLES FOR CTA */
.cta {
  background: #4a667d;
  max-width: unset !important;
  width: 100%;
  padding: 68px 13.6% 75px 13.6%;
  margin: 0 !important;
  text-align: center;
}
.cta img {
  height: 38px;
  width: 38px;
  margin-bottom: 30px;
}
.cta .ctaTitle {
  position: relative;
  padding-bottom: 20px !important;
  margin: 0 auto 20px auto;
}
.cta .ctaTitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 100%;
  max-width: 256px;
  background: #fff;
}
.cta .bodyWhite {
  margin-bottom: 35px !important;
}
.cta a {
  font-family: 'Gotham A', 'Gotham B' !important;
  font-size: 15px !important;
  color: #ffffff !important;
  text-align: center;
  background: rgba(0, 0, 0, 0.1) !important;
  border: 2px solid #b2b2b2 !important;
  padding: 9.5px 18.4px !important;
  text-transform: uppercase;
  text-decoration: none;
}
#content .cta button:hover {
  background: rgba(0, 0, 0, 0.2) !important;
}
#content .cta button:hover a {
  color: #7bafd4 !important;
}
#content .cta button a:hover {
  border: unset !important;
  background: unset !important;
}
.ctaTwoCol {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ctaTwoCol button:nth-of-type(1) {
  justify-self: flex-end;
  margin-right: 17px;
}
.ctaTwoCol button:nth-of-type(2) {
  margin-left: 17px;
  justify-self: flex-start;
}
.cta_multiple_buttons {
  margin-top: 40px;
}
.cta_multiple_buttons .ctaMultipleButton {
  margin: 10px 5px;
  background: rgba(0, 0, 0, 0.1) !important;
  border: 2px solid #b2b2b2 !important;
  padding: 9.5px 18.4px !important;
}
.ctaMultipleButton a {
  background: transparent !important;
  border: unset !important;
  padding: unset !important;
}
@media only screen and (max-width: 1200px) {
  .cta {
    padding: 68px 15px 75px 15px;
  }
  .cta img {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 600px) {
  .ctaTwoCol {
    grid-template-columns: 1fr;
  }
  .ctaTwoCol button:nth-of-type(1) {
    justify-self: center;
    margin: 0;
  }
  .ctaTwoCol button:nth-of-type(2) {
    margin-left: 0px;
    margin-top: 19px;
    justify-self: center;
  }
}
