.bg-primary {
  background-color: #7d4199;
}

.bg-secondary {
  background-color: #00b9ff;
}

.bg-lightblue {
  background-color: #e9f1fc;
}

.bg-lightgrey {
  background-color: #efefef;
}

.gradient-hr {
  background-image: linear-gradient(to right, #00b9ff, #7d4199);
  border: 0;
  height: 5px;
}

.gradient-hr__navbar {
  background-image: linear-gradient(to right, #7d4199, #7d4199, #00b9ff);
  border: 0;
  height: 5px;
  margin-top: 0;
  margin-bottom: 0;
}

.full-width-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.full-width-container > div,
.full-width-container > ul {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .full-width-container > div,
.full-width-container > ul {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .full-width-container > div,
.full-width-container > ul {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .full-width-container > div,
.full-width-container > ul {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .full-width-container > div,
.full-width-container > ul {
    max-width: 1140px;
  }
}

@media (min-width: 992px) {
  .layout__two_columns > div {
    width: 50%;
    float: left;
  }
}

.layout__two_columns:after {
  content: "";
  display: table;
  clear: both;
}

.top-banner__parent_container {
  background-image: linear-gradient(to right, #00b9ff, #7d4199);
  padding-bottom: 10px;
  border-radius: 10px 10px 120px 10px;
}

.top-banner {
  border-bottom-right-radius: 150px;
}
@media (max-width: 480px) {
  .top-banner {
    background: #7d4199 !important;
    padding: 2em;
  }
}
@media (min-width: 481px) {
  .top-banner {
    height: 340px;
    background-size: cover;
    background-position: center right;
  }
}

.top-banner__overlay {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, #7d4199, transparent);
}

.top-banner__text {
  line-height: 1.5;
  color: white;
}
@media (min-width: 481px) {
  .top-banner__text {
    width: 60%;
    padding: 2em;
  }
}

.main-buttons__container {
  list-style: none;
  padding-left: 0;
  background: #e9f1fc;
  padding: 1em;
  padding-top: 3em;
  padding-bottom: 3em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 4rem;
}

.main-buttons__link {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 10px 10px 40px 0;
}
.main-buttons__link:hover, .main-buttons__link:focus {
  background-color: #00b9ff;
  color: black;
}

.main-buttons__item {
  background-image: linear-gradient(to right, #00b9ff, #7d4199);
  padding-bottom: 10px;
  border-radius: 10px 10px 40px 10px;
}

.main-buttons__text {
  padding: 1em;
}

.main-buttons__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.is_IE .main-buttons__container:after {
  content: "";
  display: table;
  clear: both;
}

.is_IE .main-buttons__item {
  background-image: url("../assets/img/main-button-gradient-bg.png");
  background-position: bottom right;
  background-size: 100% auto;
  background-repeat: repeat-y;
  padding-bottom: 10px;
  border-bottom-right-radius: 10px;
}

.is_IE .main-buttons__item {
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .is_IE .main-buttons__item {
    width: calc(33.333% - 2em);
    float: left;
    margin: 1em;
  }
  .is_IE .main-buttons__item:first-child {
    margin-left: 0;
  }
  .is_IE .main-buttons__item:last-child {
    margin-right: 0;
  }
}

.is_IE .main-buttons__image {
  min-height: 1px;
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  .is_IE .main-buttons__image {
    height: 200px;
    width: 100%;
    overflow: hidden;
  }
}

.bg-primary {
  background-color: #7d4199;
}

.bg-secondary {
  background-color: #00b9ff;
}

.bg-lightblue {
  background-color: #e9f1fc;
}

.bg-lightgrey {
  background-color: #efefef;
}

.ctas__container {
  background: #7d4199;
  padding: 1em;
  padding-top: 2em;
  padding-bottom: 2em;
}

.ctas__heading {
  color: white;
  text-align: center;
  padding-bottom: 1em;
}

.ctas__list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1em;
}

.ctas__list__item__icon {
  margin-right: 1em;
}

.ctas__list__item__link {
  background-color: white;
  font-weight: bold;
  padding: 1em;
  display: block;
  text-align: center;
  border-radius: 10px;
}
.ctas__list__item__link:hover, .ctas__list__item__link:focus {
  background: #00b9ff;
  color: black;
  text-decoration: none;
}

.ctas__list__item__text {
  display: inline-block;
  min-width: 120px;
}

.is_IE .ctas__container:after {
  content: "";
  display: table;
  clear: both;
}

.is_IE .ctas__list__item {
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .is_IE .ctas__list__item {
    width: 25%;
    float: left;
    padding: 1em;
  }
  .is_IE .ctas__list__item:first-child {
    padding-left: 0;
  }
  .is_IE .ctas__list__item:last-child {
    padding-right: 0;
  }
}

.testimonials__container {
  list-style: none;
  padding-left: 0;
  padding-top: 2em;
  padding-bottom: 2em;
}

.testimonials__item {
  width: 100%;
  padding: 1em;
}

.testimonials__item__image {
  border-radius: 10px 10px 40px 10px;
}
@media (min-width: 992px) {
  .testimonials__item__image {
    width: 33%;
    height: auto;
    float: left;
    margin: 2em;
  }
}

@media (min-width: 992px) {
  .testimonials__item {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

/* no circle */
.flickity-button {
  background: white;
}
.flickity-button:hover, .flickity-button:focus {
  background: #00b9ff;
}
.flickity-button:hover .flickity-button-icon, .flickity-button:focus .flickity-button-icon {
  fill: black;
}

/* big previous & next buttons */
.flickity-prev-next-button {
  width: 80px;
  height: 80px;
}

/* icon color */
.flickity-button-icon {
  fill: #7d4199;
}

/* hide disabled button */
.flickity-button:disabled {
  display: none;
}

.flickity-page-dots {
  bottom: 15px;
}

.flickity-page-dots .dot {
  background: #7d4199;
}

.advocacy-section__container {
  margin-bottom: 2em;
  margin-top: 2em;
}
@media (min-width: 768px) {
  .advocacy-section__container {
    padding: 0 2em;
  }
}

.advocacy-section__image {
  display: block;
  width: 200px !important;
  height: 200px !important;
  object-fit: cover;
  flex-basis: 200px;
  max-width: 200px;
  margin-right: 1em;
  margin-bottom: 1em;
  flex-grow: 0;
  height: auto;
  border-radius: 10px 10px 40px 10px;
}

.advocacy-section__text {
  flex-basis: 200px;
  flex-grow: 1;
}

.advocacy-section__body {
  display: flex;
  flex-wrap: wrap;
}

.latest-news__container {
  margin-top: 2em;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .latest-news__container {
    padding: 0 2em;
  }
}

.latest-news__item__image {
  display: block;
  width: 200px !important;
  height: 200px !important;
  object-fit: cover;
  height: auto;
  border-radius: 10px 10px 40px 10px;
}
@media (min-width: 768px) {
  .latest-news__item__image {
    float: left;
    margin-right: 1em;
  }
}

.latest-news__item__heading {
  margin-top: 0;
}

.latest-news__item__text {
  margin-right: 1em;
}

.latest-news__read-more-link {
  margin-top: 2em;
}

/*# sourceMappingURL=home.css.map */
