/* There is a padding-left on .container that forces to move this to the left and prevents cover all the area. That is the reason for this adjustment */
/* Uncomment and set these variables to customize the grid. */
/*grid with 12 colm*/
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container {
  position: relative;
  max-width: 1176px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
.container--mt {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .container--mt {
    margin-top: 25px;
  }
}

.container-angular {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 60px;
  padding-top: 60px;
}
@media (min-width: 767px) {
  .container-angular {
    margin: 0 auto 80px;
    padding-top: 60px;
  }
}
.container-angular--padding {
  padding-left: 15px;
  padding-right: 15px;
}

.full-content, .hero-block__background:after, .hero-block__background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.col {
  max-width: 100%;
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding: 15px;
}
.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

/*col-xs-1 to col-xs-12*/
.col-xs-1 {
  -ms-flex-preferred-size: 8.3333333333%;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.6666666667%;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.3333333333%;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.6666666667%;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.3333333333%;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.6666666667%;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.3333333333%;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.6666666667%;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

/*col-xs-offset-1 to col-xs-offset-12*/
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.start {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.last {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

/*768px*/
@media (min-width: 768px) {
  /*col-sm-1 to col-sm-12*/
  .col-sm-1 {
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  /*col-sm-offset-1 to col-sm-offset-12*/
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
/*992px*/
@media (min-width: 992px) {
  /*col-md-1 to col-md-12*/
  .col-md-1 {
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  /*col-md-offset-1 to col-md-offset-12*/
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
/*1200*/
@media (min-width: 1200px) {
  /*col-lg-1 to col-lg-12*/
  .col-lg-1 {
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  /*col-lg-offset-1 to col-lg-offset-12*/
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* There is a padding-left on .container that forces to move this to the left and prevents cover all the area. That is the reason for this adjustment */
@layer drupal {
  .paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-h1_title__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-h1_title__field-title h1, .hero-block .paragraph-hero-banner__field-title h2,
.hero-block .paragraph-hero-banner-extended__field-title h2,
.hero-block .paragraph-hero-banner-h1-title__field-title h2,
.hero-block .node-country-full__field-title h2,
.hero-block .node-language-full__field-title h2,
.hero-block .node-city-full__field-title h2,
.hero-block .node-purpose-full__field-title h2,
.hero-block .node-course-type-full__field-title h2 {
    margin-bottom: 10px;
    color: #000;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.05px;
  }
  .paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-title h1 a,
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-h1_title__field-title h1 a,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-title h1 a,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-h1_title__field-title h1 a, .hero-block .paragraph-hero-banner__field-title h2 a,
.hero-block .paragraph-hero-banner-extended__field-title h2 a,
.hero-block .paragraph-hero-banner-h1-title__field-title h2 a,
.hero-block .node-country-full__field-title h2 a,
.hero-block .node-language-full__field-title h2 a,
.hero-block .node-city-full__field-title h2 a,
.hero-block .node-purpose-full__field-title h2 a,
.hero-block .node-course-type-full__field-title h2 a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
  }
  .paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-h1_title__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-h1_title__field-title h1, .hero-block .paragraph-hero-banner__field-title h2,
.hero-block .paragraph-hero-banner-extended__field-title h2,
.hero-block .paragraph-hero-banner-h1-title__field-title h2,
.hero-block .node-country-full__field-title h2,
.hero-block .node-language-full__field-title h2,
.hero-block .node-city-full__field-title h2,
.hero-block .node-purpose-full__field-title h2,
.hero-block .node-course-type-full__field-title h2 {
    font-size: 24px;
    letter-spacing: 0.02px;
  }
  @media (min-width: 768px) {
    .paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-h1_title__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-h1_title__field-title h1, .hero-block .paragraph-hero-banner__field-title h2,
.hero-block .paragraph-hero-banner-extended__field-title h2,
.hero-block .paragraph-hero-banner-h1-title__field-title h2,
.hero-block .node-country-full__field-title h2,
.hero-block .node-language-full__field-title h2,
.hero-block .node-city-full__field-title h2,
.hero-block .node-purpose-full__field-title h2,
.hero-block .node-course-type-full__field-title h2 {
      font-size: 28px;
    }
  }
  @media (min-width: 992px) {
    .paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-h1_title__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-h1_title__field-title h1, .hero-block .paragraph-hero-banner__field-title h2,
.hero-block .paragraph-hero-banner-extended__field-title h2,
.hero-block .paragraph-hero-banner-h1-title__field-title h2,
.hero-block .node-country-full__field-title h2,
.hero-block .node-language-full__field-title h2,
.hero-block .node-city-full__field-title h2,
.hero-block .node-purpose-full__field-title h2,
.hero-block .node-course-type-full__field-title h2 {
      font-size: 32px;
    }
  }
  @media (min-width: 1200px) {
    .paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-h1_title__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-h1_title__field-title h1, .hero-block .paragraph-hero-banner__field-title h2,
.hero-block .paragraph-hero-banner-extended__field-title h2,
.hero-block .paragraph-hero-banner-h1-title__field-title h2,
.hero-block .node-country-full__field-title h2,
.hero-block .node-language-full__field-title h2,
.hero-block .node-city-full__field-title h2,
.hero-block .node-purpose-full__field-title h2,
.hero-block .node-course-type-full__field-title h2 {
      font-size: 36px;
    }
  }
  .paragraph-hero-banner-extended,
.paragraph-hero-banner-h1-title {
    background-color: #000;
  }
}
/* There is a padding-left on .container that forces to move this to the left and prevents cover all the area. That is the reason for this adjustment */
@layer drupal {
  .hero-block .paragraph-hero-banner__field-ctas-item a, .hero-block .paragraph-hero-banner__field-two-ctas-item a, .hero-block .paragraph-hero-banner__field-three-ctas-item a, .hero-block .paragraph-hero-banner__field-double-cta-item a,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a,
.hero-block .node-country-full__field-ctas-item a,
.hero-block .node-country-full__field-two-ctas-item a,
.hero-block .node-country-full__field-three-ctas-item a,
.hero-block .node-country-full__field-double-cta-item a,
.hero-block .node-language-full__field-ctas-item a,
.hero-block .node-language-full__field-two-ctas-item a,
.hero-block .node-language-full__field-three-ctas-item a,
.hero-block .node-language-full__field-double-cta-item a,
.hero-block .node-city-full__field-ctas-item a,
.hero-block .node-city-full__field-two-ctas-item a,
.hero-block .node-city-full__field-three-ctas-item a,
.hero-block .node-city-full__field-double-cta-item a,
.hero-block .node-purpose-full__field-ctas-item a,
.hero-block .node-purpose-full__field-two-ctas-item a,
.hero-block .node-purpose-full__field-three-ctas-item a,
.hero-block .node-purpose-full__field-double-cta-item a,
.hero-block .node-course-type-full__field-ctas-item a,
.hero-block .node-course-type-full__field-two-ctas-item a,
.hero-block .node-course-type-full__field-three-ctas-item a,
.hero-block .node-course-type-full__field-double-cta-item a,
.hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a {
    display: inline-block;
    padding: 12px 24px;
    border: 0;
    border-radius: 30px;
    background-color: #0046b4;
    color: #fff;
    font-size: 14px;
    font-family: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
  }
  @media (min-width: 768px) {
    .hero-block .paragraph-hero-banner__field-ctas-item a + .btn, .hero-block .paragraph-hero-banner__field-two-ctas-item a + .btn, .hero-block .paragraph-hero-banner__field-three-ctas-item a + .btn, .hero-block .paragraph-hero-banner__field-double-cta-item a + .btn,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a + .btn,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a + .btn,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a + .btn,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a + .btn,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a + .btn,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a + .btn,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a + .btn,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a + .btn,
.hero-block .node-country-full__field-ctas-item a + .btn,
.hero-block .node-country-full__field-two-ctas-item a + .btn,
.hero-block .node-country-full__field-three-ctas-item a + .btn,
.hero-block .node-country-full__field-double-cta-item a + .btn,
.hero-block .node-language-full__field-ctas-item a + .btn,
.hero-block .node-language-full__field-two-ctas-item a + .btn,
.hero-block .node-language-full__field-three-ctas-item a + .btn,
.hero-block .node-language-full__field-double-cta-item a + .btn,
.hero-block .node-city-full__field-ctas-item a + .btn,
.hero-block .node-city-full__field-two-ctas-item a + .btn,
.hero-block .node-city-full__field-three-ctas-item a + .btn,
.hero-block .node-city-full__field-double-cta-item a + .btn,
.hero-block .node-purpose-full__field-ctas-item a + .btn,
.hero-block .node-purpose-full__field-two-ctas-item a + .btn,
.hero-block .node-purpose-full__field-three-ctas-item a + .btn,
.hero-block .node-purpose-full__field-double-cta-item a + .btn,
.hero-block .node-course-type-full__field-ctas-item a + .btn,
.hero-block .node-course-type-full__field-two-ctas-item a + .btn,
.hero-block .node-course-type-full__field-three-ctas-item a + .btn,
.hero-block .node-course-type-full__field-double-cta-item a + .btn,
.hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a + .btn,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a + .btn,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a + .btn,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a + .btn,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a + .btn,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a + .btn,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a + .btn {
      margin-top: 10px;
    }
  }
  .hero-block .paragraph-hero-banner__field-ctas-item a:focus, .hero-block .paragraph-hero-banner__field-two-ctas-item a:focus, .hero-block .paragraph-hero-banner__field-three-ctas-item a:focus, .hero-block .paragraph-hero-banner__field-double-cta-item a:focus,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a:focus,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a:focus,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a:focus,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a:focus,
.hero-block .node-country-full__field-ctas-item a:focus,
.hero-block .node-country-full__field-two-ctas-item a:focus,
.hero-block .node-country-full__field-three-ctas-item a:focus,
.hero-block .node-country-full__field-double-cta-item a:focus,
.hero-block .node-language-full__field-ctas-item a:focus,
.hero-block .node-language-full__field-two-ctas-item a:focus,
.hero-block .node-language-full__field-three-ctas-item a:focus,
.hero-block .node-language-full__field-double-cta-item a:focus,
.hero-block .node-city-full__field-ctas-item a:focus,
.hero-block .node-city-full__field-two-ctas-item a:focus,
.hero-block .node-city-full__field-three-ctas-item a:focus,
.hero-block .node-city-full__field-double-cta-item a:focus,
.hero-block .node-purpose-full__field-ctas-item a:focus,
.hero-block .node-purpose-full__field-two-ctas-item a:focus,
.hero-block .node-purpose-full__field-three-ctas-item a:focus,
.hero-block .node-purpose-full__field-double-cta-item a:focus,
.hero-block .node-course-type-full__field-ctas-item a:focus,
.hero-block .node-course-type-full__field-two-ctas-item a:focus,
.hero-block .node-course-type-full__field-three-ctas-item a:focus,
.hero-block .node-course-type-full__field-double-cta-item a:focus,
.hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a:focus {
    outline: none;
  }
  .hero-block .paragraph-hero-banner__field-ctas-item a:hover, .hero-block .paragraph-hero-banner__field-two-ctas-item a:hover, .hero-block .paragraph-hero-banner__field-three-ctas-item a:hover, .hero-block .paragraph-hero-banner__field-double-cta-item a:hover,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a:hover,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a:hover,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a:hover,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a:hover,
.hero-block .node-country-full__field-ctas-item a:hover,
.hero-block .node-country-full__field-two-ctas-item a:hover,
.hero-block .node-country-full__field-three-ctas-item a:hover,
.hero-block .node-country-full__field-double-cta-item a:hover,
.hero-block .node-language-full__field-ctas-item a:hover,
.hero-block .node-language-full__field-two-ctas-item a:hover,
.hero-block .node-language-full__field-three-ctas-item a:hover,
.hero-block .node-language-full__field-double-cta-item a:hover,
.hero-block .node-city-full__field-ctas-item a:hover,
.hero-block .node-city-full__field-two-ctas-item a:hover,
.hero-block .node-city-full__field-three-ctas-item a:hover,
.hero-block .node-city-full__field-double-cta-item a:hover,
.hero-block .node-purpose-full__field-ctas-item a:hover,
.hero-block .node-purpose-full__field-two-ctas-item a:hover,
.hero-block .node-purpose-full__field-three-ctas-item a:hover,
.hero-block .node-purpose-full__field-double-cta-item a:hover,
.hero-block .node-course-type-full__field-ctas-item a:hover,
.hero-block .node-course-type-full__field-two-ctas-item a:hover,
.hero-block .node-course-type-full__field-three-ctas-item a:hover,
.hero-block .node-course-type-full__field-double-cta-item a:hover,
.hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a:hover {
    color: #fff;
  }
  .hero-block .paragraph-hero-banner__field-ctas-item a:disabled, .hero-block .paragraph-hero-banner__field-two-ctas-item a:disabled, .hero-block .paragraph-hero-banner__field-three-ctas-item a:disabled, .hero-block .paragraph-hero-banner__field-double-cta-item a:disabled,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a:disabled,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a:disabled,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a:disabled,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a:disabled,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a:disabled,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a:disabled,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a:disabled,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a:disabled,
.hero-block .node-country-full__field-ctas-item a:disabled,
.hero-block .node-country-full__field-two-ctas-item a:disabled,
.hero-block .node-country-full__field-three-ctas-item a:disabled,
.hero-block .node-country-full__field-double-cta-item a:disabled,
.hero-block .node-language-full__field-ctas-item a:disabled,
.hero-block .node-language-full__field-two-ctas-item a:disabled,
.hero-block .node-language-full__field-three-ctas-item a:disabled,
.hero-block .node-language-full__field-double-cta-item a:disabled,
.hero-block .node-city-full__field-ctas-item a:disabled,
.hero-block .node-city-full__field-two-ctas-item a:disabled,
.hero-block .node-city-full__field-three-ctas-item a:disabled,
.hero-block .node-city-full__field-double-cta-item a:disabled,
.hero-block .node-purpose-full__field-ctas-item a:disabled,
.hero-block .node-purpose-full__field-two-ctas-item a:disabled,
.hero-block .node-purpose-full__field-three-ctas-item a:disabled,
.hero-block .node-purpose-full__field-double-cta-item a:disabled,
.hero-block .node-course-type-full__field-ctas-item a:disabled,
.hero-block .node-course-type-full__field-two-ctas-item a:disabled,
.hero-block .node-course-type-full__field-three-ctas-item a:disabled,
.hero-block .node-course-type-full__field-double-cta-item a:disabled,
.hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a:disabled,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a:disabled,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a:disabled,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a:disabled,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a:disabled,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a:disabled,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a:disabled, .hero-block .paragraph-hero-banner__field-ctas-item a.disabled, .hero-block .paragraph-hero-banner__field-two-ctas-item a.disabled, .hero-block .paragraph-hero-banner__field-three-ctas-item a.disabled, .hero-block .paragraph-hero-banner__field-double-cta-item a.disabled,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a.disabled,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a.disabled,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a.disabled,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a.disabled,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a.disabled,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a.disabled,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a.disabled,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a.disabled,
.hero-block .node-country-full__field-ctas-item a.disabled,
.hero-block .node-country-full__field-two-ctas-item a.disabled,
.hero-block .node-country-full__field-three-ctas-item a.disabled,
.hero-block .node-country-full__field-double-cta-item a.disabled,
.hero-block .node-language-full__field-ctas-item a.disabled,
.hero-block .node-language-full__field-two-ctas-item a.disabled,
.hero-block .node-language-full__field-three-ctas-item a.disabled,
.hero-block .node-language-full__field-double-cta-item a.disabled,
.hero-block .node-city-full__field-ctas-item a.disabled,
.hero-block .node-city-full__field-two-ctas-item a.disabled,
.hero-block .node-city-full__field-three-ctas-item a.disabled,
.hero-block .node-city-full__field-double-cta-item a.disabled,
.hero-block .node-purpose-full__field-ctas-item a.disabled,
.hero-block .node-purpose-full__field-two-ctas-item a.disabled,
.hero-block .node-purpose-full__field-three-ctas-item a.disabled,
.hero-block .node-purpose-full__field-double-cta-item a.disabled,
.hero-block .node-course-type-full__field-ctas-item a.disabled,
.hero-block .node-course-type-full__field-two-ctas-item a.disabled,
.hero-block .node-course-type-full__field-three-ctas-item a.disabled,
.hero-block .node-course-type-full__field-double-cta-item a.disabled,
.hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a.disabled,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a.disabled,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a.disabled,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a.disabled,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a.disabled,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a.disabled,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a.disabled, .hero-block .paragraph-hero-banner__field-ctas-item a[disabled], .hero-block .paragraph-hero-banner__field-two-ctas-item a[disabled], .hero-block .paragraph-hero-banner__field-three-ctas-item a[disabled], .hero-block .paragraph-hero-banner__field-double-cta-item a[disabled],
.hero-block .paragraph-hero-banner-extended__field-ctas-item a[disabled],
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a[disabled],
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a[disabled],
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a[disabled],
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a[disabled],
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a[disabled],
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a[disabled],
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a[disabled],
.hero-block .node-country-full__field-ctas-item a[disabled],
.hero-block .node-country-full__field-two-ctas-item a[disabled],
.hero-block .node-country-full__field-three-ctas-item a[disabled],
.hero-block .node-country-full__field-double-cta-item a[disabled],
.hero-block .node-language-full__field-ctas-item a[disabled],
.hero-block .node-language-full__field-two-ctas-item a[disabled],
.hero-block .node-language-full__field-three-ctas-item a[disabled],
.hero-block .node-language-full__field-double-cta-item a[disabled],
.hero-block .node-city-full__field-ctas-item a[disabled],
.hero-block .node-city-full__field-two-ctas-item a[disabled],
.hero-block .node-city-full__field-three-ctas-item a[disabled],
.hero-block .node-city-full__field-double-cta-item a[disabled],
.hero-block .node-purpose-full__field-ctas-item a[disabled],
.hero-block .node-purpose-full__field-two-ctas-item a[disabled],
.hero-block .node-purpose-full__field-three-ctas-item a[disabled],
.hero-block .node-purpose-full__field-double-cta-item a[disabled],
.hero-block .node-course-type-full__field-ctas-item a[disabled],
.hero-block .node-course-type-full__field-two-ctas-item a[disabled],
.hero-block .node-course-type-full__field-three-ctas-item a[disabled],
.hero-block .node-course-type-full__field-double-cta-item a[disabled],
.hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a[disabled],
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a[disabled],
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a[disabled],
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a[disabled],
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a[disabled],
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a[disabled],
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a[disabled] {
    opacity: 0.5;
    pointer-events: none;
  }
  .hero-block .paragraph-hero-banner__field-ctas-item a, .hero-block .paragraph-hero-banner__field-two-ctas-item a, .hero-block .paragraph-hero-banner__field-three-ctas-item a, .hero-block .paragraph-hero-banner__field-double-cta-item a,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a,
.hero-block .node-country-full__field-ctas-item a,
.hero-block .node-country-full__field-two-ctas-item a,
.hero-block .node-country-full__field-three-ctas-item a,
.hero-block .node-country-full__field-double-cta-item a,
.hero-block .node-language-full__field-ctas-item a,
.hero-block .node-language-full__field-two-ctas-item a,
.hero-block .node-language-full__field-three-ctas-item a,
.hero-block .node-language-full__field-double-cta-item a,
.hero-block .node-city-full__field-ctas-item a,
.hero-block .node-city-full__field-two-ctas-item a,
.hero-block .node-city-full__field-three-ctas-item a,
.hero-block .node-city-full__field-double-cta-item a,
.hero-block .node-purpose-full__field-ctas-item a,
.hero-block .node-purpose-full__field-two-ctas-item a,
.hero-block .node-purpose-full__field-three-ctas-item a,
.hero-block .node-purpose-full__field-double-cta-item a,
.hero-block .node-course-type-full__field-ctas-item a,
.hero-block .node-course-type-full__field-two-ctas-item a,
.hero-block .node-course-type-full__field-three-ctas-item a,
.hero-block .node-course-type-full__field-double-cta-item a,
.hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a {
    padding: 12px 24px;
    font-size: 16px;
  }
  .btn-close {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
  }
  .btn-close:after, .btn-close:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 2px;
    height: 33px;
    background: #808080;
  }
  .btn-close:after {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .btn-close:before {
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .hero-block .paragraph-hero-banner__field-ctas-item a, .hero-block .paragraph-hero-banner__field-two-ctas-item a, .hero-block .paragraph-hero-banner__field-three-ctas-item a, .hero-block .paragraph-hero-banner__field-double-cta-item a,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a,
.hero-block .node-country-full__field-ctas-item a,
.hero-block .node-country-full__field-two-ctas-item a,
.hero-block .node-country-full__field-three-ctas-item a,
.hero-block .node-country-full__field-double-cta-item a,
.hero-block .node-language-full__field-ctas-item a,
.hero-block .node-language-full__field-two-ctas-item a,
.hero-block .node-language-full__field-three-ctas-item a,
.hero-block .node-language-full__field-double-cta-item a,
.hero-block .node-city-full__field-ctas-item a,
.hero-block .node-city-full__field-two-ctas-item a,
.hero-block .node-city-full__field-three-ctas-item a,
.hero-block .node-city-full__field-double-cta-item a,
.hero-block .node-purpose-full__field-ctas-item a,
.hero-block .node-purpose-full__field-two-ctas-item a,
.hero-block .node-purpose-full__field-three-ctas-item a,
.hero-block .node-purpose-full__field-double-cta-item a,
.hero-block .node-course-type-full__field-ctas-item a,
.hero-block .node-course-type-full__field-two-ctas-item a,
.hero-block .node-course-type-full__field-three-ctas-item a,
.hero-block .node-course-type-full__field-double-cta-item a {
    background-color: #fff;
    color: #0046b4;
  }
  .hero-block .paragraph-hero-banner__field-ctas-item a:hover, .hero-block .paragraph-hero-banner__field-two-ctas-item a:hover, .hero-block .paragraph-hero-banner__field-three-ctas-item a:hover, .hero-block .paragraph-hero-banner__field-double-cta-item a:hover,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a:hover,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a:hover,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a:hover,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a:hover,
.hero-block .node-country-full__field-ctas-item a:hover,
.hero-block .node-country-full__field-two-ctas-item a:hover,
.hero-block .node-country-full__field-three-ctas-item a:hover,
.hero-block .node-country-full__field-double-cta-item a:hover,
.hero-block .node-language-full__field-ctas-item a:hover,
.hero-block .node-language-full__field-two-ctas-item a:hover,
.hero-block .node-language-full__field-three-ctas-item a:hover,
.hero-block .node-language-full__field-double-cta-item a:hover,
.hero-block .node-city-full__field-ctas-item a:hover,
.hero-block .node-city-full__field-two-ctas-item a:hover,
.hero-block .node-city-full__field-three-ctas-item a:hover,
.hero-block .node-city-full__field-double-cta-item a:hover,
.hero-block .node-purpose-full__field-ctas-item a:hover,
.hero-block .node-purpose-full__field-two-ctas-item a:hover,
.hero-block .node-purpose-full__field-three-ctas-item a:hover,
.hero-block .node-purpose-full__field-double-cta-item a:hover,
.hero-block .node-course-type-full__field-ctas-item a:hover,
.hero-block .node-course-type-full__field-two-ctas-item a:hover,
.hero-block .node-course-type-full__field-three-ctas-item a:hover,
.hero-block .node-course-type-full__field-double-cta-item a:hover, .hero-block .paragraph-hero-banner__field-ctas-item a:active, .hero-block .paragraph-hero-banner__field-two-ctas-item a:active, .hero-block .paragraph-hero-banner__field-three-ctas-item a:active, .hero-block .paragraph-hero-banner__field-double-cta-item a:active,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a:active,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a:active,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a:active,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a:active,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a:active,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a:active,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a:active,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a:active,
.hero-block .node-country-full__field-ctas-item a:active,
.hero-block .node-country-full__field-two-ctas-item a:active,
.hero-block .node-country-full__field-three-ctas-item a:active,
.hero-block .node-country-full__field-double-cta-item a:active,
.hero-block .node-language-full__field-ctas-item a:active,
.hero-block .node-language-full__field-two-ctas-item a:active,
.hero-block .node-language-full__field-three-ctas-item a:active,
.hero-block .node-language-full__field-double-cta-item a:active,
.hero-block .node-city-full__field-ctas-item a:active,
.hero-block .node-city-full__field-two-ctas-item a:active,
.hero-block .node-city-full__field-three-ctas-item a:active,
.hero-block .node-city-full__field-double-cta-item a:active,
.hero-block .node-purpose-full__field-ctas-item a:active,
.hero-block .node-purpose-full__field-two-ctas-item a:active,
.hero-block .node-purpose-full__field-three-ctas-item a:active,
.hero-block .node-purpose-full__field-double-cta-item a:active,
.hero-block .node-course-type-full__field-ctas-item a:active,
.hero-block .node-course-type-full__field-two-ctas-item a:active,
.hero-block .node-course-type-full__field-three-ctas-item a:active,
.hero-block .node-course-type-full__field-double-cta-item a:active, .hero-block .paragraph-hero-banner__field-ctas-item a:focus, .hero-block .paragraph-hero-banner__field-two-ctas-item a:focus, .hero-block .paragraph-hero-banner__field-three-ctas-item a:focus, .hero-block .paragraph-hero-banner__field-double-cta-item a:focus,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a:focus,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a:focus,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a:focus,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a:focus,
.hero-block .node-country-full__field-ctas-item a:focus,
.hero-block .node-country-full__field-two-ctas-item a:focus,
.hero-block .node-country-full__field-three-ctas-item a:focus,
.hero-block .node-country-full__field-double-cta-item a:focus,
.hero-block .node-language-full__field-ctas-item a:focus,
.hero-block .node-language-full__field-two-ctas-item a:focus,
.hero-block .node-language-full__field-three-ctas-item a:focus,
.hero-block .node-language-full__field-double-cta-item a:focus,
.hero-block .node-city-full__field-ctas-item a:focus,
.hero-block .node-city-full__field-two-ctas-item a:focus,
.hero-block .node-city-full__field-three-ctas-item a:focus,
.hero-block .node-city-full__field-double-cta-item a:focus,
.hero-block .node-purpose-full__field-ctas-item a:focus,
.hero-block .node-purpose-full__field-two-ctas-item a:focus,
.hero-block .node-purpose-full__field-three-ctas-item a:focus,
.hero-block .node-purpose-full__field-double-cta-item a:focus,
.hero-block .node-course-type-full__field-ctas-item a:focus,
.hero-block .node-course-type-full__field-two-ctas-item a:focus,
.hero-block .node-course-type-full__field-three-ctas-item a:focus,
.hero-block .node-course-type-full__field-double-cta-item a:focus {
    background-color: #F0F0F0;
    color: #0046b4;
  }
  .hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a, .hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a, .hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a, .hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a {
    box-shadow: inset 0 0 0 1px #fff;
    background-color: transparent;
    color: #fff;
  }
  .hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a:hover, .hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a:hover, .hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a:hover, .hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a:hover,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a:hover,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a:hover, .hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a:active, .hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a:active, .hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a:active, .hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a:active,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a:active,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a:active,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a:active,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a:active,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a:active,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a:active,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a:active,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a:active,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a:active,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a:active,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a:active,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a:active,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a:active,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a:active, .hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a:focus, .hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a:focus, .hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a:focus, .hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a:focus,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a:focus,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a:focus {
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #fff;
    color: #0046b4;
  }
}
/* There is a padding-left on .container that forces to move this to the left and prevents cover all the area. That is the reason for this adjustment */
.primary-link, .hero-block .paragraph-hero-banner__field-description a, .hero-block .paragraph-hero-banner__field-subtitle-textarea a,
.hero-block .paragraph-hero-banner-extended__field-description a,
.hero-block .paragraph-hero-banner-extended__field-subtitle-textarea a,
.hero-block .paragraph-hero-banner-h1-title__field-description a,
.hero-block .paragraph-hero-banner-h1-title__field-subtitle-textarea a,
.hero-block .node-country-full__field-description a,
.hero-block .node-country-full__field-subtitle-textarea a,
.hero-block .node-language-full__field-description a,
.hero-block .node-language-full__field-subtitle-textarea a,
.hero-block .node-city-full__field-description a,
.hero-block .node-city-full__field-subtitle-textarea a,
.hero-block .node-purpose-full__field-description a,
.hero-block .node-purpose-full__field-subtitle-textarea a,
.hero-block .node-course-type-full__field-description a,
.hero-block .node-course-type-full__field-subtitle-textarea a {
  font-weight: 700;
  color: #0046b4;
  text-decoration: none;
}
.primary-link:hover, .hero-block .paragraph-hero-banner__field-description a:hover, .hero-block .paragraph-hero-banner__field-subtitle-textarea a:hover,
.hero-block .paragraph-hero-banner-extended__field-description a:hover,
.hero-block .paragraph-hero-banner-extended__field-subtitle-textarea a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-description a:hover,
.hero-block .paragraph-hero-banner-h1-title__field-subtitle-textarea a:hover,
.hero-block .node-country-full__field-description a:hover,
.hero-block .node-country-full__field-subtitle-textarea a:hover,
.hero-block .node-language-full__field-description a:hover,
.hero-block .node-language-full__field-subtitle-textarea a:hover,
.hero-block .node-city-full__field-description a:hover,
.hero-block .node-city-full__field-subtitle-textarea a:hover,
.hero-block .node-purpose-full__field-description a:hover,
.hero-block .node-purpose-full__field-subtitle-textarea a:hover,
.hero-block .node-course-type-full__field-description a:hover,
.hero-block .node-course-type-full__field-subtitle-textarea a:hover {
  text-decoration: underline;
  color: #336bc3;
}

.hero-banner-component.hero-image-full-right .hero-component .container {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .hero-banner-component.hero-image-full-right .hero-component .container {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .hero-banner-component.hero-image-full-right .hero-component .container {
    padding-top: 0;
  }
}

.hero-block {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  height: 388px;
  overflow: hidden;
}
@media (min-width: 767px) {
  .hero-block {
    height: 446px;
  }
}
.hero-block .container {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 767px) {
  .hero-block .container {
    margin-bottom: 100px;
  }
}
.hero-block__background *:not(.contextual) {
  height: 100%;
  width: 100%;
}
.hero-block__background:after {
  content: "";
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0.1019607843) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%) 0% 0% no-repeat padding-box;
  opacity: 0.7;
}
.hero-block__background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-block__background .media-container {
  font-size: 0;
}
.hero-block__cta-block {
  margin-top: 30px;
}
@media (min-width: 767px) {
  .hero-block__cta-block {
    margin-top: 20px;
  }
}
.hero-block .paragraph-hero-banner__field-title h2,
.hero-block .paragraph-hero-banner-extended__field-title h2,
.hero-block .paragraph-hero-banner-h1-title__field-title h2,
.hero-block .node-country-full__field-title h2,
.hero-block .node-language-full__field-title h2,
.hero-block .node-city-full__field-title h2,
.hero-block .node-purpose-full__field-title h2,
.hero-block .node-course-type-full__field-title h2 {
  margin-bottom: 15px;
  color: #fff;
}
@media (min-width: 767px) {
  .hero-block .paragraph-hero-banner__field-title h2,
.hero-block .paragraph-hero-banner-extended__field-title h2,
.hero-block .paragraph-hero-banner-h1-title__field-title h2,
.hero-block .node-country-full__field-title h2,
.hero-block .node-language-full__field-title h2,
.hero-block .node-city-full__field-title h2,
.hero-block .node-purpose-full__field-title h2,
.hero-block .node-course-type-full__field-title h2 {
    margin-bottom: 20px;
  }
}
.hero-block .paragraph-hero-banner__field-subtitle,
.hero-block .paragraph-hero-banner-extended__field-subtitle,
.hero-block .paragraph-hero-banner-h1-title__field-subtitle,
.hero-block .node-country-full__field-subtitle,
.hero-block .node-language-full__field-subtitle,
.hero-block .node-city-full__field-subtitle,
.hero-block .node-purpose-full__field-subtitle,
.hero-block .node-course-type-full__field-subtitle {
  color: #fff;
  font-size: 16px;
}
@media (min-width: 767px) {
  .hero-block .paragraph-hero-banner__field-subtitle,
.hero-block .paragraph-hero-banner-extended__field-subtitle,
.hero-block .paragraph-hero-banner-h1-title__field-subtitle,
.hero-block .node-country-full__field-subtitle,
.hero-block .node-language-full__field-subtitle,
.hero-block .node-city-full__field-subtitle,
.hero-block .node-purpose-full__field-subtitle,
.hero-block .node-course-type-full__field-subtitle {
    font-size: 18px;
  }
}
.hero-block .paragraph-hero-banner__field-description p, .hero-block .paragraph-hero-banner__field-subtitle-textarea p,
.hero-block .paragraph-hero-banner-extended__field-description p,
.hero-block .paragraph-hero-banner-extended__field-subtitle-textarea p,
.hero-block .paragraph-hero-banner-h1-title__field-description p,
.hero-block .paragraph-hero-banner-h1-title__field-subtitle-textarea p,
.hero-block .node-country-full__field-description p,
.hero-block .node-country-full__field-subtitle-textarea p,
.hero-block .node-language-full__field-description p,
.hero-block .node-language-full__field-subtitle-textarea p,
.hero-block .node-city-full__field-description p,
.hero-block .node-city-full__field-subtitle-textarea p,
.hero-block .node-purpose-full__field-description p,
.hero-block .node-purpose-full__field-subtitle-textarea p,
.hero-block .node-course-type-full__field-description p,
.hero-block .node-course-type-full__field-subtitle-textarea p {
  color: #fff;
  font-size: 16px;
}
.hero-block .paragraph-hero-banner__field-description p:last-child, .hero-block .paragraph-hero-banner__field-subtitle-textarea p:last-child,
.hero-block .paragraph-hero-banner-extended__field-description p:last-child,
.hero-block .paragraph-hero-banner-extended__field-subtitle-textarea p:last-child,
.hero-block .paragraph-hero-banner-h1-title__field-description p:last-child,
.hero-block .paragraph-hero-banner-h1-title__field-subtitle-textarea p:last-child,
.hero-block .node-country-full__field-description p:last-child,
.hero-block .node-country-full__field-subtitle-textarea p:last-child,
.hero-block .node-language-full__field-description p:last-child,
.hero-block .node-language-full__field-subtitle-textarea p:last-child,
.hero-block .node-city-full__field-description p:last-child,
.hero-block .node-city-full__field-subtitle-textarea p:last-child,
.hero-block .node-purpose-full__field-description p:last-child,
.hero-block .node-purpose-full__field-subtitle-textarea p:last-child,
.hero-block .node-course-type-full__field-description p:last-child,
.hero-block .node-course-type-full__field-subtitle-textarea p:last-child {
  margin-bottom: 0;
}
@media (min-width: 767px) {
  .hero-block .paragraph-hero-banner__field-description p, .hero-block .paragraph-hero-banner__field-subtitle-textarea p,
.hero-block .paragraph-hero-banner-extended__field-description p,
.hero-block .paragraph-hero-banner-extended__field-subtitle-textarea p,
.hero-block .paragraph-hero-banner-h1-title__field-description p,
.hero-block .paragraph-hero-banner-h1-title__field-subtitle-textarea p,
.hero-block .node-country-full__field-description p,
.hero-block .node-country-full__field-subtitle-textarea p,
.hero-block .node-language-full__field-description p,
.hero-block .node-language-full__field-subtitle-textarea p,
.hero-block .node-city-full__field-description p,
.hero-block .node-city-full__field-subtitle-textarea p,
.hero-block .node-purpose-full__field-description p,
.hero-block .node-purpose-full__field-subtitle-textarea p,
.hero-block .node-course-type-full__field-description p,
.hero-block .node-course-type-full__field-subtitle-textarea p {
    font-size: 18px;
  }
}
.hero-block .paragraph-hero-banner__field-description a, .hero-block .paragraph-hero-banner__field-subtitle-textarea a,
.hero-block .paragraph-hero-banner-extended__field-description a,
.hero-block .paragraph-hero-banner-extended__field-subtitle-textarea a,
.hero-block .paragraph-hero-banner-h1-title__field-description a,
.hero-block .paragraph-hero-banner-h1-title__field-subtitle-textarea a,
.hero-block .node-country-full__field-description a,
.hero-block .node-country-full__field-subtitle-textarea a,
.hero-block .node-language-full__field-description a,
.hero-block .node-language-full__field-subtitle-textarea a,
.hero-block .node-city-full__field-description a,
.hero-block .node-city-full__field-subtitle-textarea a,
.hero-block .node-purpose-full__field-description a,
.hero-block .node-purpose-full__field-subtitle-textarea a,
.hero-block .node-course-type-full__field-description a,
.hero-block .node-course-type-full__field-subtitle-textarea a {
  font-size: 16px;
}
@media (min-width: 767px) {
  .hero-block .paragraph-hero-banner__field-description a, .hero-block .paragraph-hero-banner__field-subtitle-textarea a,
.hero-block .paragraph-hero-banner-extended__field-description a,
.hero-block .paragraph-hero-banner-extended__field-subtitle-textarea a,
.hero-block .paragraph-hero-banner-h1-title__field-description a,
.hero-block .paragraph-hero-banner-h1-title__field-subtitle-textarea a,
.hero-block .node-country-full__field-description a,
.hero-block .node-country-full__field-subtitle-textarea a,
.hero-block .node-language-full__field-description a,
.hero-block .node-language-full__field-subtitle-textarea a,
.hero-block .node-city-full__field-description a,
.hero-block .node-city-full__field-subtitle-textarea a,
.hero-block .node-purpose-full__field-description a,
.hero-block .node-purpose-full__field-subtitle-textarea a,
.hero-block .node-course-type-full__field-description a,
.hero-block .node-course-type-full__field-subtitle-textarea a {
    font-size: 18px;
  }
}
@media (min-width: 767px) {
  .hero-block .paragraph-hero-banner__field-ctas, .hero-block .paragraph-hero-banner__field-two-ctas, .hero-block .paragraph-hero-banner__field-three-ctas, .hero-block .paragraph-hero-banner__field-double-cta,
.hero-block .paragraph-hero-banner-extended__field-ctas,
.hero-block .paragraph-hero-banner-extended__field-two-ctas,
.hero-block .paragraph-hero-banner-extended__field-three-ctas,
.hero-block .paragraph-hero-banner-extended__field-double-cta,
.hero-block .paragraph-hero-banner-h1-title__field-ctas,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta,
.hero-block .node-country-full__field-ctas,
.hero-block .node-country-full__field-two-ctas,
.hero-block .node-country-full__field-three-ctas,
.hero-block .node-country-full__field-double-cta,
.hero-block .node-language-full__field-ctas,
.hero-block .node-language-full__field-two-ctas,
.hero-block .node-language-full__field-three-ctas,
.hero-block .node-language-full__field-double-cta,
.hero-block .node-city-full__field-ctas,
.hero-block .node-city-full__field-two-ctas,
.hero-block .node-city-full__field-three-ctas,
.hero-block .node-city-full__field-double-cta,
.hero-block .node-purpose-full__field-ctas,
.hero-block .node-purpose-full__field-two-ctas,
.hero-block .node-purpose-full__field-three-ctas,
.hero-block .node-purpose-full__field-double-cta,
.hero-block .node-course-type-full__field-ctas,
.hero-block .node-course-type-full__field-two-ctas,
.hero-block .node-course-type-full__field-three-ctas,
.hero-block .node-course-type-full__field-double-cta {
    display: flex;
  }
}
.hero-block .paragraph-hero-banner__field-ctas-item, .hero-block .paragraph-hero-banner__field-two-ctas-item, .hero-block .paragraph-hero-banner__field-three-ctas-item, .hero-block .paragraph-hero-banner__field-double-cta-item,
.hero-block .paragraph-hero-banner-extended__field-ctas-item,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item,
.hero-block .node-country-full__field-ctas-item,
.hero-block .node-country-full__field-two-ctas-item,
.hero-block .node-country-full__field-three-ctas-item,
.hero-block .node-country-full__field-double-cta-item,
.hero-block .node-language-full__field-ctas-item,
.hero-block .node-language-full__field-two-ctas-item,
.hero-block .node-language-full__field-three-ctas-item,
.hero-block .node-language-full__field-double-cta-item,
.hero-block .node-city-full__field-ctas-item,
.hero-block .node-city-full__field-two-ctas-item,
.hero-block .node-city-full__field-three-ctas-item,
.hero-block .node-city-full__field-double-cta-item,
.hero-block .node-purpose-full__field-ctas-item,
.hero-block .node-purpose-full__field-two-ctas-item,
.hero-block .node-purpose-full__field-three-ctas-item,
.hero-block .node-purpose-full__field-double-cta-item,
.hero-block .node-course-type-full__field-ctas-item,
.hero-block .node-course-type-full__field-two-ctas-item,
.hero-block .node-course-type-full__field-three-ctas-item,
.hero-block .node-course-type-full__field-double-cta-item {
  margin-bottom: 10px;
}
.hero-block .paragraph-hero-banner__field-ctas-item:last-child, .hero-block .paragraph-hero-banner__field-two-ctas-item:last-child, .hero-block .paragraph-hero-banner__field-three-ctas-item:last-child, .hero-block .paragraph-hero-banner__field-double-cta-item:last-child,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child,
.hero-block .node-country-full__field-ctas-item:last-child,
.hero-block .node-country-full__field-two-ctas-item:last-child,
.hero-block .node-country-full__field-three-ctas-item:last-child,
.hero-block .node-country-full__field-double-cta-item:last-child,
.hero-block .node-language-full__field-ctas-item:last-child,
.hero-block .node-language-full__field-two-ctas-item:last-child,
.hero-block .node-language-full__field-three-ctas-item:last-child,
.hero-block .node-language-full__field-double-cta-item:last-child,
.hero-block .node-city-full__field-ctas-item:last-child,
.hero-block .node-city-full__field-two-ctas-item:last-child,
.hero-block .node-city-full__field-three-ctas-item:last-child,
.hero-block .node-city-full__field-double-cta-item:last-child,
.hero-block .node-purpose-full__field-ctas-item:last-child,
.hero-block .node-purpose-full__field-two-ctas-item:last-child,
.hero-block .node-purpose-full__field-three-ctas-item:last-child,
.hero-block .node-purpose-full__field-double-cta-item:last-child,
.hero-block .node-course-type-full__field-ctas-item:last-child,
.hero-block .node-course-type-full__field-two-ctas-item:last-child,
.hero-block .node-course-type-full__field-three-ctas-item:last-child,
.hero-block .node-course-type-full__field-double-cta-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 767px) {
  .hero-block .paragraph-hero-banner__field-ctas-item, .hero-block .paragraph-hero-banner__field-two-ctas-item, .hero-block .paragraph-hero-banner__field-three-ctas-item, .hero-block .paragraph-hero-banner__field-double-cta-item,
.hero-block .paragraph-hero-banner-extended__field-ctas-item,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item,
.hero-block .node-country-full__field-ctas-item,
.hero-block .node-country-full__field-two-ctas-item,
.hero-block .node-country-full__field-three-ctas-item,
.hero-block .node-country-full__field-double-cta-item,
.hero-block .node-language-full__field-ctas-item,
.hero-block .node-language-full__field-two-ctas-item,
.hero-block .node-language-full__field-three-ctas-item,
.hero-block .node-language-full__field-double-cta-item,
.hero-block .node-city-full__field-ctas-item,
.hero-block .node-city-full__field-two-ctas-item,
.hero-block .node-city-full__field-three-ctas-item,
.hero-block .node-city-full__field-double-cta-item,
.hero-block .node-purpose-full__field-ctas-item,
.hero-block .node-purpose-full__field-two-ctas-item,
.hero-block .node-purpose-full__field-three-ctas-item,
.hero-block .node-purpose-full__field-double-cta-item,
.hero-block .node-course-type-full__field-ctas-item,
.hero-block .node-course-type-full__field-two-ctas-item,
.hero-block .node-course-type-full__field-three-ctas-item,
.hero-block .node-course-type-full__field-double-cta-item {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.hero-block .paragraph-hero-banner__field-ctas-item a, .hero-block .paragraph-hero-banner__field-two-ctas-item a, .hero-block .paragraph-hero-banner__field-three-ctas-item a, .hero-block .paragraph-hero-banner__field-double-cta-item a,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a,
.hero-block .node-country-full__field-ctas-item a,
.hero-block .node-country-full__field-two-ctas-item a,
.hero-block .node-country-full__field-three-ctas-item a,
.hero-block .node-country-full__field-double-cta-item a,
.hero-block .node-language-full__field-ctas-item a,
.hero-block .node-language-full__field-two-ctas-item a,
.hero-block .node-language-full__field-three-ctas-item a,
.hero-block .node-language-full__field-double-cta-item a,
.hero-block .node-city-full__field-ctas-item a,
.hero-block .node-city-full__field-two-ctas-item a,
.hero-block .node-city-full__field-three-ctas-item a,
.hero-block .node-city-full__field-double-cta-item a,
.hero-block .node-purpose-full__field-ctas-item a,
.hero-block .node-purpose-full__field-two-ctas-item a,
.hero-block .node-purpose-full__field-three-ctas-item a,
.hero-block .node-purpose-full__field-double-cta-item a,
.hero-block .node-course-type-full__field-ctas-item a,
.hero-block .node-course-type-full__field-two-ctas-item a,
.hero-block .node-course-type-full__field-three-ctas-item a,
.hero-block .node-course-type-full__field-double-cta-item a {
  display: block;
}
@media (min-width: 767px) {
  .hero-block .paragraph-hero-banner__field-ctas-item a, .hero-block .paragraph-hero-banner__field-two-ctas-item a, .hero-block .paragraph-hero-banner__field-three-ctas-item a, .hero-block .paragraph-hero-banner__field-double-cta-item a,
.hero-block .paragraph-hero-banner-extended__field-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item a,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item a,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item a,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item a,
.hero-block .node-country-full__field-ctas-item a,
.hero-block .node-country-full__field-two-ctas-item a,
.hero-block .node-country-full__field-three-ctas-item a,
.hero-block .node-country-full__field-double-cta-item a,
.hero-block .node-language-full__field-ctas-item a,
.hero-block .node-language-full__field-two-ctas-item a,
.hero-block .node-language-full__field-three-ctas-item a,
.hero-block .node-language-full__field-double-cta-item a,
.hero-block .node-city-full__field-ctas-item a,
.hero-block .node-city-full__field-two-ctas-item a,
.hero-block .node-city-full__field-three-ctas-item a,
.hero-block .node-city-full__field-double-cta-item a,
.hero-block .node-purpose-full__field-ctas-item a,
.hero-block .node-purpose-full__field-two-ctas-item a,
.hero-block .node-purpose-full__field-three-ctas-item a,
.hero-block .node-purpose-full__field-double-cta-item a,
.hero-block .node-course-type-full__field-ctas-item a,
.hero-block .node-course-type-full__field-two-ctas-item a,
.hero-block .node-course-type-full__field-three-ctas-item a,
.hero-block .node-course-type-full__field-double-cta-item a {
    display: inline-flex;
  }
}
.hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a, .hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a, .hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a, .hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a {
  display: block;
}
@media (min-width: 767px) {
  .hero-block .paragraph-hero-banner__field-ctas-item:last-child:not(:first-child) a, .hero-block .paragraph-hero-banner__field-two-ctas-item:last-child:not(:first-child) a, .hero-block .paragraph-hero-banner__field-three-ctas-item:last-child:not(:first-child) a, .hero-block .paragraph-hero-banner__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-extended__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .paragraph-hero-banner-h1-title__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-country-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-language-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-city-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-purpose-full__field-double-cta-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-two-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-three-ctas-item:last-child:not(:first-child) a,
.hero-block .node-course-type-full__field-double-cta-item:last-child:not(:first-child) a {
    display: inline-flex;
  }
}
.hero-block .node-purpose-full__field-title h3.tit-block {
  color: #fff;
}

.paragraph-hero-banner-extended {
  margin-bottom: 140px;
}

.paragraph-hero-banner-extended .hero-block,
.paragraph-hero-banner-h1-title .hero-block {
  overflow: initial;
  height: 460px;
}
.paragraph-hero-banner-extended .hero-block .container,
.paragraph-hero-banner-h1-title .hero-block .container {
  top: 140px;
}
@media (min-width: 767px) {
  .paragraph-hero-banner-extended .hero-block .container,
.paragraph-hero-banner-h1-title .hero-block .container {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .paragraph-hero-banner-extended .hero-block .container,
.paragraph-hero-banner-h1-title .hero-block .container {
    top: 0;
    margin-bottom: 130px;
  }
}
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-h1_title__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-h1_title__field-title h1 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 28px;
}
@media (min-width: 767px) {
  .paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-h1_title__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-title h1,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-h1_title__field-title h1 {
    margin-bottom: 10px;
    font-size: 36px;
  }
}
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-description,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-description {
  margin-bottom: 30px;
}
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-description p,
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-description h3,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-description p,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-description h3 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.35px;
  color: #fff;
}
@media (min-width: 767px) {
  .paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-description p,
.paragraph-hero-banner-extended .hero-block .container .paragraph-hero-banner-extended__field-description h3,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-description p,
.paragraph-hero-banner-h1-title .hero-block .container .paragraph-hero-banner-extended__field-description h3 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
}

.paragraph-hero-banner.hero-image-with-overlay, .paragraph-hero-banner.hero-image-full-right {
  background-color: #fff;
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block, .paragraph-hero-banner.hero-image-full-right .hero-block {
  align-items: center;
  flex-direction: column-reverse;
  gap: 30px;
  max-width: 1146px;
  height: auto;
  padding: 15px;
  margin: 0 auto;
  overflow: visible;
}
@media (min-width: 1200px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block, .paragraph-hero-banner.hero-image-full-right .hero-block {
    min-height: 446px;
    height: 100%;
    padding: 0;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title h1,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title h2,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title h3, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title h3 {
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  color: #0046b4;
}
@media (min-width: 992px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title h1,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title h2,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title h3, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title h3 {
    text-align: left;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-small h1,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-small h2,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-small h3, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-small h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-small h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-small h3 {
  font-size: 24px;
  line-height: 140%;
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-small h1,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-small h2,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-small h3, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-small h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-small h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-small h3 {
    font-size: 38px;
    line-height: 130%;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-medium h1,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-medium h2,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-medium h3, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-medium h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-medium h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-medium h3 {
  font-size: 36px;
  line-height: 130%;
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-medium h1,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-medium h2,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-medium h3, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-medium h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-medium h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-medium h3 {
    font-size: 46px;
    line-height: 125%;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-large h1,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-large h2,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-large h3, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-large h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-large h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-large h3 {
  font-size: 44px;
  line-height: 125%;
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-large h1,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-large h2,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-large h3, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-large h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-large h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-large h3 {
    font-size: 68px;
    line-height: 115%;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h1,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h2,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h3, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h3 {
  font-size: 56px;
  line-height: 115%;
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h1,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h2,
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h3, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title.font-size-extra-large h3 {
    font-size: 82px;
    line-height: 110%;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-description, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-description {
  text-align: center;
}
@media (min-width: 992px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-description, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-description {
    text-align: left;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-description p, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-description p {
  font-size: 16px;
  color: #1f1f1f;
}
@media (min-width: 992px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block .paragraph-hero-banner__field-description p, .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-description p {
    font-size: 18px;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container, .paragraph-hero-banner.hero-image-full-right .hero-block .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block .container, .paragraph-hero-banner.hero-image-full-right .hero-block .container {
    flex: 1 1 50%;
    align-items: flex-start;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container .paragraph-hero-banner__field-description p, .paragraph-hero-banner.hero-image-full-right .hero-block .container .paragraph-hero-banner__field-description p {
  color: inherit;
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block {
  display: flex;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block {
    margin-top: 45px;
    width: auto;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta {
    flex-direction: row;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item {
  margin: 0;
  text-align: center;
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item:nth-of-type(2) a, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item:nth-of-type(2) a {
  background-color: var(--cta-bg, #fff);
  color: var(--cta-text, #0046b4);
  border: 1px solid var(--cta-text, #0046b4);
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item:nth-of-type(2) a:hover, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item:nth-of-type(2) a:hover {
  background-color: var(--cta-text, #0046b4);
  color: var(--cta-bg, #fff);
  border: 1px solid var(--cta-text, #0046b4);
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item:nth-of-type(2) a:active, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item:nth-of-type(2) a:active {
  background-color: var(--cta-bg, #fff);
  color: var(--cta-text, #0046b4);
  border: 1px solid var(--cta-text, #0046b4);
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item a, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 30px;
  box-shadow: none;
  font-size: 14px;
  background-color: var(--cta-bg, #0046b4);
  border: 1px solid var(--cta-bg, #0046b4);
  color: var(--cta-text, #fff);
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item a:hover, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item a:hover {
  background-color: var(--cta-text, #fff);
  color: var(--cta-bg, #0046b4);
  border: 1px solid var(--cta-bg, #0046b4);
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item a:active, .paragraph-hero-banner.hero-image-full-right .hero-block .container .hero-block__cta-block .paragraph-hero-banner__field-double-cta-item a:active {
  background-color: var(--cta-bg, #0046b4);
  border: 1px solid var(--cta-bg, #0046b4);
  color: var(--cta-text, #fff);
}
@media (min-width: 992px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block {
    flex-direction: row-reverse;
  }
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block__image {
  position: relative;
  flex: 1 1 50%;
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block__image::after {
  position: absolute;
  content: "";
  top: 25px;
  right: -37px;
  display: block;
  width: 75px;
  height: 70px;
  background: url("../../../images/icons/logo-element.svg") center no-repeat;
}
.paragraph-hero-banner.hero-image-with-overlay .hero-block__image img {
  object-fit: cover;
  height: 280px;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .paragraph-hero-banner.hero-image-with-overlay .hero-block__image img {
    width: 542px;
    height: 363px;
  }
}
.paragraph-hero-banner.hero-image-full-right {
  position: relative;
}
.paragraph-hero-banner.hero-image-full-right .hero-block {
  position: initial;
  padding: 0;
  gap: 15px;
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-full-right .hero-block {
    flex-direction: row;
    min-height: 330px;
    height: auto;
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  .paragraph-hero-banner.hero-image-full-right .hero-block {
    height: 446px;
    padding: 0;
  }
}
.paragraph-hero-banner.hero-image-full-right .hero-block .container {
  padding: 60px 15px 0;
  margin: 0;
  flex: 1 1 50%;
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-full-right .hero-block .container {
    align-items: flex-start;
    max-width: 50%;
    padding: 0 25px 0 0;
  }
}
@media (min-width: 992px) {
  .paragraph-hero-banner.hero-image-full-right .hero-block .container {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title h1,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title h2,
.paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-title h3 {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-full-right .hero-block .paragraph-hero-banner__field-description {
    text-align: left;
  }
}
.paragraph-hero-banner.hero-image-full-right .hero-block__image {
  width: 100%;
  height: 285px;
}
@media (min-width: 768px) {
  .paragraph-hero-banner.hero-image-full-right .hero-block__image {
    flex: 1 1 50%;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 50%;
  }
}
.paragraph-hero-banner.hero-image-full-right .hero-block__image * {
  width: 100%;
  height: 100%;
}
.paragraph-hero-banner.hero-image-full-right .hero-block__image img {
  display: block;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .paragraph-hero-banner.hero-image-full-right .hero-block__image img {
    max-width: 900px;
  }
}

.page-node-type-campaign-page .hero-block {
  height: 330px;
}
.page-node-type-campaign-page .hero-block .container {
  text-align: center;
}
.page-node-type-campaign-page .hero-block .paragraph-hero-banner__field-title h2 {
  font-size: 46px;
}
@media (max-width: 1200px) {
  .page-node-type-campaign-page .hero-block .paragraph-hero-banner__field-title h2 {
    font-size: 28px;
  }
}
.page-node-type-campaign-page .hero-block .paragraph-hero-banner__field-double-cta {
  justify-content: center;
}

.course-finder-container {
  min-height: 246px;
}
@media (min-width: 992px) {
  .course-finder-container {
    min-height: 83px;
  }
}

/*# sourceMappingURL=hero-block.css.map */
