/*---------------------------------------------

# Table of contents
- [ Grid ]
- [ Generic CSS ]
- [ Header ]
- [ Section ]
- [ Home ]
- [ Persona ]
- [ Persona - Student ]
- [ Persona - Career Switcher ]
- [ Persona - PMET ]
- [ Persona - Employer ]
- [ Persona - SME ]
- [ Hackathon Finals ]
- [ Footer ]
- [ Popup ]
- [ Custom Plugin CSS ]
- [ Media Queries ]
- [ Persona Media Queries ]

/*--------------------------------------------- */
/* [ Grid ]
----------------------------------------------- */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.row-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.row-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.row-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

.row-column-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.col,
[class*=col-] {
  padding: 0 12px;
}

.col {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  -moz-flex-basis: 0;
  -ms-flex-basis: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-auto {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
}

.col-fill {
  -webkit-flex-grow: 1 !important;
  -moz-flex-grow: 1 !important;
  -ms-flex-grow: 1 !important;
  flex-grow: 1 !important;
  max-width: none !important;
}

.col-1 {
  -webkit-box-flex: 0 0 8.3333333333%;
  -moz-box-flex: 0 0 8.3333333333%;
  -webkit-flex: 0 0 8.3333333333%;
  -ms-flex: 0 0 8.3333333333%;
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0 0 16.6666666667%;
  -moz-box-flex: 0 0 16.6666666667%;
  -webkit-flex: 0 0 16.6666666667%;
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0 0 25%;
  -moz-box-flex: 0 0 25%;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0 0 33.3333333333%;
  -moz-box-flex: 0 0 33.3333333333%;
  -webkit-flex: 0 0 33.3333333333%;
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0 0 41.6666666667%;
  -moz-box-flex: 0 0 41.6666666667%;
  -webkit-flex: 0 0 41.6666666667%;
  -ms-flex: 0 0 41.6666666667%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0 0 50%;
  -moz-box-flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0 0 58.3333333333%;
  -moz-box-flex: 0 0 58.3333333333%;
  -webkit-flex: 0 0 58.3333333333%;
  -ms-flex: 0 0 58.3333333333%;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0 0 66.6666666667%;
  -moz-box-flex: 0 0 66.6666666667%;
  -webkit-flex: 0 0 66.6666666667%;
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0 0 75%;
  -moz-box-flex: 0 0 75%;
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0 0 83.3333333333%;
  -moz-box-flex: 0 0 83.3333333333%;
  -webkit-flex: 0 0 83.3333333333%;
  -ms-flex: 0 0 83.3333333333%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0 0 91.6666666667%;
  -moz-box-flex: 0 0 91.6666666667%;
  -webkit-flex: 0 0 91.6666666667%;
  -ms-flex: 0 0 91.6666666667%;
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0 0 100%;
  -moz-box-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0 0 8.3333333333%;
    -moz-box-flex: 0 0 8.3333333333%;
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0 0 16.6666666667%;
    -moz-box-flex: 0 0 16.6666666667%;
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0 0 25%;
    -moz-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0 0 33.3333333333%;
    -moz-box-flex: 0 0 33.3333333333%;
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0 0 41.6666666667%;
    -moz-box-flex: 0 0 41.6666666667%;
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0 0 50%;
    -moz-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0 0 58.3333333333%;
    -moz-box-flex: 0 0 58.3333333333%;
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0 0 66.6666666667%;
    -moz-box-flex: 0 0 66.6666666667%;
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0 0 75%;
    -moz-box-flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0 0 83.3333333333%;
    -moz-box-flex: 0 0 83.3333333333%;
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0 0 91.6666666667%;
    -moz-box-flex: 0 0 91.6666666667%;
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0 0 8.3333333333%;
    -moz-box-flex: 0 0 8.3333333333%;
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0 0 16.6666666667%;
    -moz-box-flex: 0 0 16.6666666667%;
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0 0 25%;
    -moz-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0 0 33.3333333333%;
    -moz-box-flex: 0 0 33.3333333333%;
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0 0 41.6666666667%;
    -moz-box-flex: 0 0 41.6666666667%;
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0 0 50%;
    -moz-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0 0 58.3333333333%;
    -moz-box-flex: 0 0 58.3333333333%;
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0 0 66.6666666667%;
    -moz-box-flex: 0 0 66.6666666667%;
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0 0 75%;
    -moz-box-flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0 0 83.3333333333%;
    -moz-box-flex: 0 0 83.3333333333%;
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0 0 91.6666666667%;
    -moz-box-flex: 0 0 91.6666666667%;
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0 0 8.3333333333%;
    -moz-box-flex: 0 0 8.3333333333%;
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0 0 16.6666666667%;
    -moz-box-flex: 0 0 16.6666666667%;
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0 0 25%;
    -moz-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0 0 33.3333333333%;
    -moz-box-flex: 0 0 33.3333333333%;
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0 0 41.6666666667%;
    -moz-box-flex: 0 0 41.6666666667%;
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0 0 50%;
    -moz-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0 0 58.3333333333%;
    -moz-box-flex: 0 0 58.3333333333%;
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0 0 66.6666666667%;
    -moz-box-flex: 0 0 66.6666666667%;
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0 0 75%;
    -moz-box-flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0 0 83.3333333333%;
    -moz-box-flex: 0 0 83.3333333333%;
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0 0 91.6666666667%;
    -moz-box-flex: 0 0 91.6666666667%;
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    -webkit-box-flex: 0 0 8.3333333333%;
    -moz-box-flex: 0 0 8.3333333333%;
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0 0 16.6666666667%;
    -moz-box-flex: 0 0 16.6666666667%;
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0 0 25%;
    -moz-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0 0 33.3333333333%;
    -moz-box-flex: 0 0 33.3333333333%;
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0 0 41.6666666667%;
    -moz-box-flex: 0 0 41.6666666667%;
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0 0 50%;
    -moz-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0 0 58.3333333333%;
    -moz-box-flex: 0 0 58.3333333333%;
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0 0 66.6666666667%;
    -moz-box-flex: 0 0 66.6666666667%;
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0 0 75%;
    -moz-box-flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0 0 83.3333333333%;
    -moz-box-flex: 0 0 83.3333333333%;
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0 0 91.6666666667%;
    -moz-box-flex: 0 0 91.6666666667%;
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/*--------------------------------------------- */
/* [ Generic css ]
----------------------------------------------- */
body {
  -webkit-overflow-scrolling: touch;
  min-width: 320px;
}

.page__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  min-width: 0;
  padding-top: 72px;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.container,
.container-block {
  padding: 0 30px;
}

.container-block {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

a {
  -webkit-transition: color 0.25s;
  -moz-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s;
  color: #11142D;
}

a:not(.btn):hover {
  color: #4d91ff;
}

.prev-icon,
.next-icon,
.play-icon {
  display: block;
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.prev-icon {
  background-image: url("../img/arrow-left.png");
}

.next-icon {
  background-image: url("../img/arrow-right.png");
}

.play-icon {
  background-image: url("../img/play.png");
}

p {
  margin-bottom: 6px;
  color: #808191;
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

html:not(.mobile) ::-webkit-scrollbar {
  width: 8px;
}

html:not(.mobile) ::-webkit-scrollbar {
  background-color: #ffffff;
  width: 16px;
}

html:not(.mobile) ::-webkit-scrollbar-track {
  background-color: #ffffff;
}

html:not(.mobile) ::-webkit-scrollbar-track:hover {
  background-color: #f4f4f4;
}

html:not(.mobile) ::-webkit-scrollbar-thumb {
  background-color: #babac0;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  border: 5px solid #ffffff;
}

html:not(.mobile) ::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a5;
  border: 4px solid #f4f4f4;
}

.regular-text {
  font-weight: 400;
}

.btn--underline {
  text-decoration: underline;
  color: #7D7D7D;
}

.btn--block,
.btn[href].btn--block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.btn--blue {
  background-color: #49A7DB;
  color: #ffffff;
}

.btn--secondary {
  background-color: #ECEBEB !important;
  border-color: #ECEBEB !important;
  color: #23172A !important;
}

.btn--black {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.btn--black:hover,
.btn--secondary:hover {
  background-color: #ffffff !important;
  border-color: #000000 !important;
  color: #000000 !important;
}

.btn--outline {
  width: 280px;
  height: 64px;
  background-color: #ffffff !important;
  border-width: 3px;
  border-style: solid;
}

.btn--square,
.btn--rectangle {
  position: relative;
  width: 180px;
  height: 0;
  padding-bottom: 180px;
  min-width: 0;
}

.btn--rectangle {
  width: 280px;
  border: 1px solid transparent;
}

.btn--square .btn__text,
.btn--rectangle .btn__text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.4em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.card {
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.event__card-timetable {
  margin-right: 24px;
}

.card::before {
  -webkit-filter: blur(24px);
  filter: blur(24px);
}

.card__pic-holder {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background-color: #f0efef;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  border-radius: 20px 20px 0 0;
}

.card__pic-holder.square {
  padding-bottom: 100%;
}

.card__pic-holder .card__pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  border-radius: inherit;
}

.card__title.h4 {
  margin-bottom: 0.24em;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.card__subtitle {
  margin: 0 0 10px;
}

.card__details {
  padding: 24px;
}

.card__details .date {
  font-size: 13px;
  margin-bottom: 4px;
}

.card__details .btn__list {
  margin-top: 20px;
}

.card__list.view .card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  cursor: auto;
  margin-bottom: 40px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.card__list:not(.view) .card--large {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 360px;
}

.card__list.view .card::before {
  content: none;
}

.card__list.view .card__preview {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  width: 215px;
}

.card__list.view .card__preview .btn {
  min-width: 0;
  margin-top: 16px;
  padding: 0 12px;
}

.card__list.view .card__pic-holder {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.card__list.view .card__details {
  padding: 0 0 0 24px;
}

.card__descriptions {
  margin-top: 20px;
  font-size: 16px;
}

.description__list li {
  margin: 3px 0;
}

.card__details-bottom {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #e4e4e4;
}

.card__details-bottom .card__descriptions {
  margin-top: 0;
}

.description__title {
  margin-bottom: 10px;
}

.info p {
  color: inherit;
}

.info + .description__title {
  margin-top: 24px;
}

.card--plain {
  padding: 24px;
  background-color: #efeff1;
  cursor: auto;
  text-align: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.card--plain::before {
  content: none;
}

.card--plain .card__preview {
  margin-bottom: 20px;
  font-size: 48px;
  color: #6c5dd3;
}

.card--plain .card__title.h4 {
  font-size: 18px;
}

.card--plain .card__title.h4,
.card--plain p {
  margin-bottom: 16px;
}

.card--plain .card__details {
  padding: 0;
}

.card__foot {
  border: none;
}

.card__foot .img-holder {
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.card__foot .img-holder img {
  max-height: 46px;
}

.card__foot .favorite {
  -webkit-box-flex: 0 0 auto;
  -moz-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/*--------------------------------------------- */
/* [ Header ]
----------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 72px;
  padding: 0 64px;
  background: #ffffff;
  -webkit-box-shadow: inset 0 -1px 0 0 #e4e4e4;
  -moz-box-shadow: inset 0 -1px 0 0 #e4e4e4;
  box-shadow: inset 0 -1px 0 0 #e4e4e4;
  -webkit-transition: left 0.25s;
  -moz-transition: left 0.25s;
  -o-transition: left 0.25s;
  transition: left 0.25s;
}

.header h1 {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 35px;
}

.header__logo {
  display: block;
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  font-size: 16px;
}

.header__nav .dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: #f9f9f9;
  min-width: 160px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.nav__btn {
  position: relative;
  display: block;
  padding: 14px 16px;
  font-size: inherit;
  text-align: left;
  color: #11142D;
}

.nav__btn:hover {
  color: inherit !important;
}

.nav__btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  pointer-events: none;
  background-color: #4d91ff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: width 0.25s;
  -moz-transition: width 0.25s;
  -o-transition: width 0.25s;
  transition: width 0.25s;
}

.nav__btn.active::before,
.nav__btn:hover::before {
  width: 100%;
}

.header__nav .dropdown-content a:hover {
  color: #4d91ff;
}

.header__item_profile .header__head {
  display: block;
  width: 36px;
  height: 36px;
}

.header__item_profile .header__body {
  width: 185px;
  padding: 12px;
}

.header__item_profile .header__body:before {
  right: 39px;
}

.header__link {
  height: 46px;
}

.header__img {
  width: 48px;
}

.header__img .icon {
  font-size: 16px;
}

/*--------------------------------------------- */
/* [ Section ]
----------------------------------------------- */
.hide-on-mobile {
  display: block;
}

.show-on-mobile {
  display: none;
}

.page__content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 0;
}

.section__wrapper,
.section,
.footer {
  -webkit-box-flex: 0 0 auto;
  -moz-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 0;
  width: 100%;
}

.section-target__wrapper {
  border-top: 1px solid #000000;
}

.section-target {
  padding: 30px 0;
  border-bottom: 1px solid #000000;
}

.section-target:last-child {
  border-bottom: 0;
}

.section-target .card__list {
  padding-top: 10px;
}

.section-target .card__list > [class*=col-] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.section-target .card {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}

[data-expand].lazyload,
[data-expand].lazyloading {
  opacity: 0;
}

[data-expand].lazyloaded {
  opacity: 1;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 9;
}

.overlay.active {
  display: block;
}

/*--------------------------------------------- */
/* [ Home ]
----------------------------------------------- */
.banner-slider__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 43.3%;
  overflow: hidden;
  background-color: #f0efef;
}

.banner-slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-slider {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}

.banner-slider__items {
  position: relative;
  font-size: 1.25vw;
  overflow: hidden;
}

.banner-slider__items img.lazyload,
.banner-slider__items img.lazyloading {
  opacity: 0;
}

.banner-slider__items img.lazyloaded {
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.persona-banner__items .i-link__wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8.5% 4.4% 5.5% 3.6%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
}

.persona-banner__items .i-link__wrapper .i-link {
  position: relative;
  width: 17.4%;
}

.i-link__wrapper .i-link:hover .i-link__bg {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: drop-shadow(0 0 16px rgba(254, 255, 221, 0.5));
  filter: drop-shadow(0 0 16px rgba(254, 255, 221, 0.5));
}

.banner-slider__items .i-link {
  position: absolute;
  z-index: 1;
}

.i-link-spotlight {
  width: 19.61%;
  top: 15.69%;
  left: 0;
}

.i-link-events {
  width: 9.99%;
  top: 46.4%;
  left: 21.93%;
}

.i-link-training-programmes {
  width: 10.8%;
  top: 47.7%;
  left: 35.5%;
}

.i-link-higher-educations {
  width: 10.1%;
  top: 52.8%;
  left: 61.1%;
}

.i-link-financial-jobs {
  width: 10.63%;
  top: 25.9%;
  left: 83.08%;
}

.i-link-startup-jobs {
  width: 10.45%;
  top: 69.72%;
  left: 81.65%;
}

.i-link-visitors {
  width: 14.8%;
  bottom: 1.7vw;
  left: 1.1vw;
}

.persona-banner__items .i-link-students,
.persona-banner__items .i-link-pmets,
.persona-banner__items .i-link-sme {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
  align-self: flex-end;
}

.persona-banner__items .i-link__wrapper .i-link-pmets {
  bottom: -2vw;
}

.persona-banner__items .i-link__wrapper .i-link-employers {
  top: -0.8vw;
}

.persona-banner__items .i-link__wrapper .i-link-sme {
  width: 20.8%;
  bottom: -1vw;
}

.i-link__info {
  position: relative;
  display: block;
  margin: 0;
}

.i-link__bg,
.i-link__title {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.key-visual-banner__items .i-link__bg {
  opacity: 0;
}

.key-visual-banner__items .i-link:hover .i-link__bg {
  opacity: 0.8;
  -webkit-filter: drop-shadow(0 0 16px rgba(254, 255, 221, 0.5));
  filter: drop-shadow(0 0 16px rgba(254, 255, 221, 0.5));
}

.i-link:hover .i-link__title {
  color: #ffffff;
}

.i-link__title,
.i-link-spotlight .spotlight-slider {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1vw;
  text-align: center;
  line-height: 1.3;
}

.i-link-spotlight .spotlight-slider {
  padding: 0;
}

.spotlight-slider .i-link__title {
  position: static;
  padding: 5% 15%;
  text-align: left;
}

.i-link-events .i-link__title {
  padding: 1vw 0.9vw;
  margin-top: 0.3vw;
  -webkit-transform: skew(0, 10deg) rotateY(-3deg);
  -moz-transform: skew(0, 10deg) rotateY(-3deg);
  -ms-transform: skew(0, 10deg) rotateY(-3deg);
  -o-transform: skew(0, 10deg) rotateY(-3deg);
  transform: skew(0, 10deg) rotateY(-3deg);
}

.i-link-financial-jobs .i-link__title {
  margin-top: 1vw;
  -webkit-transform: skew(0, 12deg);
  -moz-transform: skew(0, 12deg);
  -ms-transform: skew(0, 12deg);
  -o-transform: skew(0, 12deg);
  transform: skew(0, 12deg);
}

.i-link-startup-jobs .i-link__title {
  margin-top: 0.8vw;
  -webkit-transform: skew(0, -10deg);
  -moz-transform: skew(0, -10deg);
  -ms-transform: skew(0, -10deg);
  -o-transform: skew(0, -10deg);
  transform: skew(0, -10deg);
}

.i-link-visitors .i-link__title {
  position: static;
  color: #ffffff;
}

.org-area__list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.org-area {
  position: absolute;
  z-index: 1;
  font-size: 0.834vw;
  cursor: pointer;
}

.org-area__info {
  visibility: hidden;
  pointer-events: none;
}

.org-area__info {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.75em;
  width: 23.625em;
}

.org-area.active {
  z-index: 1000;
}

.org-area.active .org-area__info {
  visibility: visible;
  pointer-events: initial;
}

.org-area__info .card {
  padding: 1.5em;
  margin: 0;
  cursor: auto;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.org-area__info .card::before {
  content: none;
}

.org-area__info .card__preview {
  font-size: 1em;
  margin-bottom: 1em;
}

.org-area__info .card__preview img {
  width: auto !important;
  max-height: 2.5em;
}

.org-area__info .card__details {
  padding: 0;
}

.org-area__info .card__title.h4 {
  font-size: 1.75em;
  margin-bottom: 0.4285714286em;
}

.org-area__info .card__details p {
  color: #000000;
  font-weight: 400;
  max-height: 12.5em;
  overflow-x: hidden;
  overflow-y: auto;
}

.org-area .card__foot {
  display: block;
  padding: 0;
  margin-top: 1em;
}

.org-area .card__foot .row {
  margin: 0 -0.4em;
}

.org-area .card__foot [class*=col-] {
  padding: 0 0.4em;
}

.org-area .card__foot .btn {
  min-width: 0;
  height: 2.5em;
  padding: 0 0.5em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
}

.logo-slider__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 24px;
}

.logo-slider__item {
  margin: 0 12px;
}

.logo-slider__item figure {
  position: relative;
  height: 0;
  padding-bottom: 25%;
}

.logo-slider__item figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*--------------------------------------------- */
/* [ Persona ]
----------------------------------------------- */
.persona-section__wrapper {
  font-size: 24px;
}

.persona-section__wrapper .container-block {
  max-width: 62.5em;
}

.section__wrapper > .section {
  padding: 3.3333333333em 0;
}

.main-section__content {
  position: relative;
}

.main-section__content::before {
  content: "";
  position: absolute;
  top: 2.6666666667em;
  left: 50%;
  z-index: -1;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.section__title,
.sub-section__subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.section__title {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.section__title .h2,
.sub-section__title .h3,
.sub-section__subtitle .h4,
.related-section .section__title .h4 {
  letter-spacing: normal;
}

.section__title .h2 {
  padding: 0.3333333333em 0.6666666667em;
  margin-bottom: 1.1458333333em;
  background-color: #23172a;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 2em;
  color: #ffffff;
  line-height: 1.1875em;
  text-align: center;
  text-transform: uppercase;
}

.sub-section {
  position: relative;
}

.sub-section .row {
  margin: -0.3333333333em;
}

.sub-section .row + .row {
  margin-top: 0.3333333333em;
}

.sub-section [class*=col-] {
  padding: 0.3333333333em;
}

.sub-section .small-row-gap {
  margin: -0.1666666667em;
}

.sub-section .small-row-gap [class*=col-] {
  padding: 0.1666666667em;
}

.sub-section__img {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  max-width: 100%;
}

.sub-section__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.sub-section__title .h3 {
  margin-bottom: 0.9090909091em;
  font-size: 1.8333333333em;
  line-height: 1.1818181818em;
}

.sub-section__title-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sub-section__title-inner .h3 {
  margin-bottom: 0.4090909091em;
}

.sub-section__title-inner p {
  font-family: "Poppins", sans-serif;
  font-size: 0.8333333333em;
  font-weight: 500;
  font-style: italic;
  line-height: 1.3em;
  color: #686668;
}

.sub-section__details > .row {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.sub-section__details .right-col {
  margin-left: auto;
}

.sub-section__subtitle .h4,
.related-section .section__title .h4 {
  font-weight: 600;
  font-size: 1em;
  line-height: 1.2;
}

.sub-section__subtitle .h4 {
  padding: 0.375em 1em;
  margin-bottom: 1em;
  background-color: #d8f0fb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-transform: uppercase;
}

.sub-section__subtitle .h5 {
  margin-bottom: 0.6em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.8333333333em;
  color: #909090;
  line-height: 1.5em;
}

.sub-section-completed {
  padding: 3.5em 0 1.6666666667em;
}

.sub-section-completed .sub-section__title .h3 {
  text-align: center;
  line-height: 1.42;
}

.sub-section__title.align-right,
.detail__content.align-right .sub-section__subtitle,
.detail__content.align-right .detail__buttons {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  text-align: right;
}

.detail__content + .detail__content {
  margin-top: 2.25em;
}

.detail__content-img {
  max-width: 100%;
  margin-bottom: 1.4583333333em;
}

.detail__button .btn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.8333333333em;
  line-height: 1.5em;
  text-align: center;
}

.detail__button .btn b,
.detail__button .btn strong {
  font-weight: 700;
}

.detail__button .btn--outline {
  width: 14em;
  height: 3.2em;
}

.detail__button .btn--square,
.detail__button .btn--rectangle {
  width: 9em;
  padding-bottom: 9em;
}

.detail__button .btn--outline {
  border-width: 0.15em;
}

.detail__button .btn--rectangle {
  width: 14em;
}

.detail__button .btn--rectangle.btn--small {
  padding-bottom: 7em;
}

.detail__button .btn--rectangle.btn--smaller {
  width: 10.6em;
  padding-bottom: 7em;
}

.detail__button .btn--rectangle.btn--medium {
  width: 17.4em;
  padding-bottom: 7.5em;
}

.detail__button .btn--rectangle.btn--large {
  width: 18.8em;
  padding-bottom: 9.8em;
}

.detail__button .btn .regular-text {
  margin-top: 0.5em;
  font-size: 0.8em;
  line-height: 1.5em;
}

.btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-overlay .btn__text {
  padding: 0.4em;
  color: #ABE0F9;
}

.detail__button .btn--primary:hover .btn-overlay,
.detail__button .btn--square:hover .btn-overlay,
.detail__button .btn--rectangle:hover .btn-overlay {
  opacity: 1;
}

.detail__button .btn--primary > .btn__text,
.detail__button .btn--square > .btn__text,
.detail__button .btn--rectangle:not(.btn--secondary):not(.btn--black) > .btn__text {
  -webkit-transition: all 0.3s linear 0.1s;
  -moz-transition: all 0.3s linear 0.1s;
  -o-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  opacity: 1;
}

.detail__button .btn--primary:hover > .btn__text,
.detail__button .btn--square:hover > .btn__text,
.detail__button .btn--rectangle:not(.btn--secondary):not(.btn--black):hover > .btn__text {
  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -o-transition: all 0s linear;
  transition: all 0s linear;
  opacity: 0;
}

.video__iframe-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
}

.video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video__poster,
.video__poster::before,
.video__poster::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.video__poster {
  background-color: #f0efef;
  opacity: 1;
  pointer-events: initial;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

.video__poster::before,
.video__poster::after {
  content: "";
}

.video__poster::before {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.video__poster::after {
  top: 0.4166666667em;
  background: url("../img/play.png") no-repeat center;
  background-size: 4em;
}

.video__poster:hover::before {
  opacity: 1;
}

.video__iframe-wrapper.active .video__poster {
  opacity: 0;
  pointer-events: none;
}

.related-section {
  background: url("../img/banner/persona-bg-02.png") no-repeat center;
  background-size: cover;
}

.related-section .container-block {
  max-width: 52.5em;
}

.related-section .section__title .h4 {
  margin-bottom: 1.5em;
  color: #7B7A88;
  text-align: center;
}

.related-section .i-link__wrapper {
  margin: 0 -0.3333333333em;
}

.related-section .i-link__wrapper .col-auto {
  padding: 0 0.3333333333em;
  width: 23.88%;
}

.related-section .i-link__wrapper .col-link-sme {
  width: 28.36%;
}

/*--------------------------------------------- */
/* [ Persona - Student ]
----------------------------------------------- */
.student-persona .main-section__content::before {
  margin-left: -10.9em;
  width: 22.1666666667em;
  background-image: url("../img/personas/students/student-foreground.png");
}

.student-persona .btn--primary {
  background-color: #7368EF;
  color: #ffffff;
}

.student-persona .btn--outline {
  color: #7368EF;
}

.student-persona .sub-section-1 {
  margin-bottom: 4.3333333333em;
}

.student-persona .sub-section-1 .sub-section__title .h3 {
  position: relative;
  left: 1.7em;
  margin-bottom: 1.4772727273em;
}

.student-persona .sub-section-1 .sub-section__img {
  width: 41.0833333333em;
  margin-left: -19.3em;
  top: 3em;
}

.student-persona .sub-section-1 .sub-section__details {
  margin-bottom: 2.6666666667em;
}

.student-persona .sub-section-1 .sub-section__details .right-col {
  margin-top: 5.8333333333em;
}

.student-persona .sub-section-2 {
  margin-bottom: 1.875em;
}

.student-persona .sub-section-2 .sub-section__title .h3 {
  margin-bottom: 1.6818181818em;
}

.student-persona .sub-section-2 .sub-section__img {
  width: 43.6666666667em;
  margin-left: -16.8em;
  top: 4.5416666667em;
}

.student-persona .sub-section-2 .sub-section__details .right-col {
  position: relative;
  top: -5.625em;
}

.student-persona .sub-section-3 {
  margin-bottom: 6.25em;
}

.student-persona .sub-section-3 .sub-section__title .h3 {
  margin-bottom: 0.9545454545em;
}

.student-persona .sub-section-3 .sub-section__img {
  width: 32.6666666667em;
  margin-left: -19.1em;
  top: 6.75em;
}

.student-persona .sub-section-3 .sub-section__details .left-col .detail__content + .detail__content {
  margin-top: 1em;
}

.student-persona .sub-section-3 .sub-section__details .right-col {
  margin-top: 3em;
}

.student-persona .sub-section-3 .sub-section__details .right-col .detail__content + .detail__content {
  margin-top: 3.3333333333em;
}

.student-persona .sub-section-4 {
  margin-bottom: 9.5833333333em;
}

.student-persona .sub-section-4 .sub-section__title .h3 {
  position: relative;
  left: 8.6em;
  max-width: 15.6363636364em;
  margin-bottom: 2.9545454545em;
}

.student-persona .sub-section-4 .sub-section__img {
  width: 58.3333333333em;
  margin-left: -29.2em;
  top: 2.0833333333em;
}

.student-persona .sub-section-4 .sub-section__details.hide-on-mobile .detail__buttons {
  padding: 0 3.4791666667em;
}

.student-persona .sub-section-4 .sub-section__details.hide-on-mobile .detail__buttons .detail__button {
  position: relative;
  left: 50%;
}

.student-persona .sub-section-4 .sub-section__details.hide-on-mobile .detail__buttons:first-child .detail__button:nth-child(1) {
  margin-top: 1.75em;
  margin-left: -27.1em;
}

.student-persona .sub-section-4 .sub-section__details.hide-on-mobile .detail__buttons:first-child .detail__button:nth-child(2) {
  margin-top: 0.75em;
  margin-left: 11em;
}

.student-persona .sub-section-4 .sub-section__details.hide-on-mobile .detail__buttons:first-child .detail__button:nth-child(3) {
  margin-left: 13.6em;
}

.student-persona .sub-section-4 .sub-section__details.hide-on-mobile .detail__buttons:last-child .detail__button:nth-child(1) {
  margin-top: 1.0833333333em;
  margin-left: 2em;
}

/*--------------------------------------------- */
/* [ Persona - Career Switcher ]
----------------------------------------------- */
.career-switcher-persona .main-section__content::before {
  margin-left: -14.3em;
  width: 24.75em;
  background-image: url("../img/personas/career-switchers/career-switcher-foreground.png");
}

.career-switcher-persona .btn--primary {
  background-color: #A067F1;
  color: #ffffff;
}

.career-switcher-persona .section__title .h2 {
  position: relative;
  left: -2em;
}

.career-switcher-persona .sub-section-1 {
  margin-bottom: 11.125em;
}

.career-switcher-persona .sub-section-1 .sub-section__title .h3 {
  position: relative;
  left: -1.2em;
  margin-bottom: 2.4090909091em;
}

.career-switcher-persona .sub-section-1 .sub-section__img {
  width: 50em;
  margin-left: -26.8em;
  top: 1.8333333333em;
}

.career-switcher-persona .sub-section-1 .sub-section__details {
  margin-bottom: 5.625em;
}

.career-switcher-persona .sub-section-1 .sub-section__details .detail__buttons:nth-child(1) {
  margin-bottom: 3.4583333333em;
  margin-right: 3.9em;
}

.career-switcher-persona .sub-section-1 .sub-section__details .detail__buttons:nth-child(2) {
  margin-bottom: 6.6666666667em;
  margin-right: 0.8em;
}

.career-switcher-persona .sub-section-1 .detail__content-videos {
  width: 39.3333333333em;
  margin: 0 auto;
}

.career-switcher-persona .sub-section-2 {
  margin-bottom: 1.25em;
}

.career-switcher-persona .sub-section-2 .sub-section__title-inner {
  max-width: 26.8333333333em;
  margin-bottom: 1.5em;
}

.career-switcher-persona .sub-section-2 .sub-section__title-inner .h3 {
  margin-bottom: 0.2727272727em;
}

.career-switcher-persona .sub-section-2 .sub-section__img-1 {
  width: 21.5em;
  margin-left: 7.6em;
  top: -8.1em;
}

.career-switcher-persona .sub-section-2 .sub-section__img-2 {
  width: 53.7083333333em;
  margin-left: -29.2em;
  top: 71.7em;
}

.career-switcher-persona .sub-section-2 .sub-section__details > .detail__content:nth-child(1) {
  margin-bottom: 7.7083333333em;
}

.career-switcher-persona .sub-section-2 .sub-section__details > .detail__content:nth-child(2) {
  margin-bottom: 6.9166666667em;
}

.career-switcher-persona .sub-section-2 .sub-section__details .detail__content:nth-child(2) .separation-row .left-col,
.career-switcher-persona .sub-section-2 .sub-section__details .detail__content:nth-child(2) .separation-row .right-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 24.6666666667em;
  position: relative;
}

.career-switcher-persona .sub-section-2 .sub-section__details .detail__content:nth-child(2) .separation-row .left-col {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  left: 1.8em;
}

.career-switcher-persona .sub-section-2 .sub-section__details .detail__content:nth-child(2) .separation-row .right-col {
  left: 4.3em;
  width: 32.6666666667em;
}

.career-switcher-persona .sub-section-2 .sub-section__details .detail__content:nth-child(3) .left-col .detail__button:last-child {
  margin-left: 11.6666666667em;
  margin-top: 0.8333333333em;
}

.career-switcher-persona .sub-section-2 .sub-section__details .detail__content:nth-child(3) .right-col {
  margin-top: 5.8333333333em;
}

.career-switcher-persona .sub-section-2 .detail__content-img {
  width: 39.4583333333em;
}

/*--------------------------------------------- */
/* [ Persona - PMET ]
----------------------------------------------- */
.pmet-persona .main-section__content::before {
  margin-left: -24.4em;
  width: 24.7083333333em;
  background-image: url("../img/personas/pmets/pmet-foreground.png");
}

.pmet-persona .btn--primary {
  background-color: #CC68F0;
  color: #ffffff;
}

.pmet-persona .section__title .h2 {
  position: relative;
  left: -3.4em;
}

.pmet-persona .sub-section-1 {
  margin-bottom: 5em;
}

.pmet-persona .sub-section-1 .sub-section__title .h3 {
  position: relative;
  left: 1.7em;
  margin-bottom: 0.5909090909em;
}

.pmet-persona .sub-section-1 .sub-section__img {
  width: 44.75em;
  margin-left: -22.2em;
  top: 5.1em;
}

.pmet-persona .sub-section-1 .sub-section__details.hide-on-mobile {
  margin-bottom: 8.5em;
}

.pmet-persona .sub-section-1 .sub-section__details .left-col .detail__buttons + .detail__buttons {
  margin-top: 5.0416666667em;
}

.pmet-persona .sub-section-1 .sub-section__details .right-col .detail__buttons + .detail__buttons {
  margin-top: 9.0833333333em;
}

.pmet-persona .sub-section-1 .detail__content-videos {
  width: 39.3333333333em;
  margin: 0 auto;
}

.pmet-persona .sub-section-2 {
  margin-bottom: 10.5833333333em;
}

.pmet-persona .sub-section-2 .sub-section__title-inner {
  max-width: 26.6666666667em;
  margin-bottom: 2em;
  position: relative;
  left: 7.9em;
}

.pmet-persona .sub-section-2 .sub-section__img {
  width: 37.5416666667em;
  margin-left: -29.4em;
  top: 2.7916666667em;
}

.pmet-persona .sub-section-3 {
  margin-bottom: 9.0416666667em;
}

.pmet-persona .sub-section-3 .sub-section__title .h3 {
  position: relative;
  left: 5em;
  margin-bottom: 0.7727272727em;
}

.pmet-persona .sub-section-3 .sub-section__details .detail__content:first-child .detail__buttons {
  position: relative;
  left: -3em;
}

.pmet-persona .sub-section-3 .sub-section__details .separation-row .left-col,
.pmet-persona .sub-section-3 .sub-section__details .separation-row .right-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 24.6666666667em;
  position: relative;
}

.pmet-persona .sub-section-3 .sub-section__details .separation-row .left-col {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  left: -2.1em;
}

.pmet-persona .sub-section-3 .sub-section__details .separation-row .right-col {
  left: 0.36em;
}

.pmet-persona .sub-section-3 .sub-section__details .detail__content:last-child > .detail__buttons {
  position: relative;
  left: -4.3em;
}

.pmet-persona .sub-section-4 {
  padding: 0 0 0 10.4166666667em;
  margin-bottom: 40.8333333333em;
}

.pmet-persona .sub-section-4 .sub-section__img {
  width: 55.2916666667em;
  margin-left: -28em;
  top: 15.7083333333em;
}

.pmet-persona .sub-section-4 .sub-section__details > .row {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

.pmet-persona .sub-section-4 .sub-section__details .left-col {
  margin-left: 1.8em;
}

.pmet-persona .sub-section-4 .sub-section__details .left-col .sub-section__subtitle .h4 {
  position: relative;
  left: 2.1em;
}

.pmet-persona .sub-section-4 .sub-section__details .right-col {
  margin-left: 1.6em;
}

/*--------------------------------------------- */
/* [ Persona - Employer ]
----------------------------------------------- */
.employer-persona .main-section__content::before {
  margin-left: -19.8em;
  width: 38.7083333333em;
  background-image: url("../img/personas/employers/employer-foreground.png");
}

.employer-persona .btn--primary {
  background-color: #EE68B2;
  color: #ffffff;
}

.employer-persona .section__title .h2 {
  position: relative;
  left: 2.1em;
}

.employer-persona .sub-section-1 {
  margin-bottom: 9.25em;
}

.employer-persona .sub-section-1 .sub-section__title .h3 {
  position: relative;
  top: 0.2272727273em;
  left: 2.3em;
  margin-bottom: 1.4772727273em;
}

.employer-persona .sub-section-1 .sub-section__img {
  width: 56.2916666667em;
  margin-left: -27.5em;
  top: 2.7916666667em;
}

.employer-persona .sub-section-1 .sub-section__details {
  padding: 0 7.5em 0 12.4em;
}

.employer-persona .sub-section-1 .sub-section__details .left-col {
  margin-top: 1em;
}

.employer-persona .sub-section-1 .sub-section__details .right-col {
  margin-top: 11.9em;
}

.employer-persona .sub-section-2 {
  margin-bottom: 7.75em;
}

.employer-persona .sub-section-2 .sub-section__title .h3 {
  position: relative;
  left: 2.4em;
  margin-bottom: 0.8181818182em;
}

.employer-persona .sub-section-2 .sub-section__img-1 {
  width: 21.5833333333em;
  margin-left: -27.8em;
  top: -3em;
}

.employer-persona .sub-section-2 .sub-section__img-2 {
  width: 21.6666666667em;
  margin-left: 7.3em;
  top: 4.9em;
}

.employer-persona .sub-section-2 .sub-section__img-3 {
  width: 23.7083333333em;
  margin-left: -29.2em;
  top: 55.6em;
}

.employer-persona .sub-section-2 .sub-section__details > div:nth-child(1) {
  position: relative;
  left: 2.7em;
  margin-bottom: 11.25em;
}

.employer-persona .sub-section-2 .sub-section__details > div:nth-child(2) {
  margin-bottom: 0;
}

.employer-persona .sub-section-2 .sub-section__details > .row + .row {
  margin-top: -0.25em;
}

.employer-persona .sub-section-3 {
  margin-bottom: 11.25em;
}

.employer-persona .sub-section-3 .sub-section__title-inner {
  position: relative;
  left: 8.2em;
}

.employer-persona .sub-section-3 .sub-section__title-inner .col-auto:first-child {
  max-width: 18.9166666667em;
  margin-right: 1em;
}

.employer-persona .sub-section-3 .sub-section__title-inner .col-auto:last-child {
  margin-top: 1em;
}

.employer-persona .sub-section-3 .sub-section__title-inner .h3 {
  padding-right: 0.4545454545em;
}

.employer-persona .sub-section-3 .sub-section__img {
  width: 32.2916666667em;
  margin-left: -29em;
  top: -3.3em;
}

/*--------------------------------------------- */
/* [ Persona - SME ]
----------------------------------------------- */
.sme-persona .main-section__content::before {
  margin-left: -13.4em;
  width: 29.6666666667em;
  background-image: url("../img/personas/sme/sme-foreground.png");
}

.sme-persona .btn--primary {
  background-color: #F27378;
  color: #ffffff;
}

.sme-persona .section__title .h2 {
  position: relative;
  left: 0.8em;
}

.sme-persona .sub-section-1 {
  margin-bottom: 12.3333333333em;
}

.sme-persona .sub-section-1 .sub-section__title .h3 {
  position: relative;
  left: 4.2em;
  margin-bottom: 1.9090909091em;
}

.sme-persona .sub-section-1 .sub-section__img {
  width: 58.4166666667em;
  margin-left: -29.6em;
  top: 0.5em;
}

.sme-persona .sub-section-1 .sub-section__details {
  padding-left: 22.2em;
}

.sme-persona .sub-section-1 .sub-section__details .detail__buttons + .detail__buttons {
  margin-top: 6.25em;
}

.sme-persona .sub-section-2 {
  padding-left: 24.5em;
  margin-bottom: 3.5em;
}

.sme-persona .sub-section-2 .sub-section__title .h3 {
  position: relative;
  left: 1.3em;
  margin-bottom: 0.5454545455em;
}

.sme-persona .sub-section-2 .sub-section__img {
  width: 29em;
  margin-left: -30em;
  top: 3.8em;
}

.sme-persona .sub-section-2 .sub-section__details {
  padding-left: 7em;
}

.sme-persona .sub-section-3 {
  padding-left: 24em;
  margin-bottom: 5.125em;
}

.sme-persona .sub-section-3 .sub-section__title .h3 {
  position: relative;
  left: 0.8em;
  margin-bottom: 0.5454545455em;
}

.sme-persona .sub-section-3 .sub-section__img {
  width: 22.875em;
  margin-left: 7em;
  top: -8em;
}

.sme-persona .sub-section-4 {
  padding-left: 17em;
  margin-bottom: 1.6666666667em;
}

/*--------------------------------------------- */
/* [ Hackathon Finals ]
----------------------------------------------- */
.main__title.h2,
.hackathon__main-title.h2 {
  font-size: 32px;
  font-weight: 500;
}

.hackathon__title {
  margin-bottom: 24px;
}

.hackathon__title.h3 {
  font-size: 26px;
  font-weight: 500;
}

.hackathon__subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.orgs__wrapper {
  padding: 24px 0;
}

.orgs__box {
  margin-bottom: 60px;
  text-align: center;
}

.orgs__title.h4 {
  font-size: 24px;
  margin-bottom: 1em;
}

.orgs__list {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 800px;
  margin: auto;
}

.org__img {
  margin: 0 0 20px;
}

/*--------------------------------------------- */
/* [ Footer ]
----------------------------------------------- */
.footer {
  padding: 16px 0;
  margin-top: auto;
  border-top: 1px solid #e4e4e4;
  font-size: 12px;
}

.footer__inner,
.footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__inner,
.footer__links {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__inner p {
  margin-bottom: 0;
  color: #686668;
}

.footer__links {
  margin-left: 12px;
}

.footer__link {
  margin: 3px 6px;
}

/*--------------------------------------------- */
/* [ Popup ]
----------------------------------------------- */
#welcome-popup {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background-color: transparent;
  text-align: center;
}

#welcome-popup .card {
  margin: 0;
  padding: 1.7142857143em;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-family: "Poppins", sans-serif;
  color: #000000;
  cursor: auto;
}

#welcome-popup .card::before {
  content: none;
}

#welcome-popup .card__details {
  padding: 0.7142857143em 1.4285714286em 0.7142857143em;
}

#welcome-popup .card__details h2 {
  margin-bottom: 0.5em;
  font-family: "Inter", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

#welcome-popup .card__details p {
  color: inherit;
  margin-bottom: 1.1428571429em;
}

#welcome-popup .btn__item + .btn__item {
  margin-top: 1em;
}

#welcome-popup .btn__item .btn {
  height: 40px;
}

#welcome-popup .card__foot {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  padding: 1.1666666667em 1.6666666667em 0;
  margin-top: 1.1666666667em;
  border-top: 1px solid #bcbcbc;
  font-size: 0.8571428571em;
  font-weight: 600;
}

#welcome-popup .card__foot ul li {
  margin: 0.3333333333em 0;
}

.popup__wrap,
.popup__wrap::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup__wrap {
  z-index: 10;
  visibility: hidden;
}

.popup__wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.popup__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.popup__content {
  padding: 1.7142857143em;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #ffffff;
  -webkit-border-radius: 1.1428571429em 1.1428571429em 0 0;
  -moz-border-radius: 1.1428571429em 1.1428571429em 0 0;
  border-radius: 1.1428571429em 1.1428571429em 0 0;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  pointer-events: auto;
}

.popup__content .h3 {
  margin-bottom: 0.8em;
  font-size: 1.4285714286em;
  line-height: 1.2;
}

.popup__content .row {
  margin: -0.1428571429em;
}

.popup__content [class*=col-] {
  padding: 0.1428571429em;
}

.popup__content .btn {
  border: 1px solid transparent;
}

.popup__wrap.active {
  visibility: visible;
}

.popup__wrap.active::before {
  opacity: 1;
}

.popup__wrap.active .popup__content {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*--------------------------------------------- */
/* [ Custom Plugin CSS ]
----------------------------------------------- */
.banner-slider .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: absolute;
  bottom: 8px;
  width: 100%;
  pointer-events: none;
}

.banner-slider .slick-dots li {
  margin: 5px 7px;
}

.banner-slider .slick-dots li button {
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: transparent;
  pointer-events: initial;
}

.banner-slider .slick-dots li.slick-active button,
.banner-slider .slick-dots li button:hover {
  background-color: #ffffff;
}

.spotlight-slider.owl-carousel .owl-stage-outer,
.spotlight-slider.owl-carousel .owl-stage,
.spotlight-slider.owl-carousel .owl-item {
  height: 100%;
}

.banner-slider .slick-arrow,
.logo-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
}

.banner-slider .slick-prev {
  left: 0;
}

.banner-slider .slick-next {
  right: 0;
}

.logo-slider .slick-prev,
.logo-slider .slick-next {
  padding: 6px;
  font-size: 21px;
}

.logo-slider .slick-prev {
  left: -16px;
}

.logo-slider .slick-next {
  right: -16px;
}

/*--------------------------------------------- */
/* [ Media Queries ]
----------------------------------------------- */
@media screen and (max-width: 1600px) {
  .header h1 {
    margin-right: 24px;
  }

  .header__nav {
    font-size: 15px;
  }

  .prev-icon,
.next-icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1400px) {
  .prev-icon,
.next-icon {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 0 40px;
  }

  .header h1 {
    margin-right: 18px;
  }

  .nav__btn {
    padding: 14px 12px;
  }
}
@media screen and (max-width: 1100px) {
  .header__burger {
    display: block;
  }

  .header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background-color: inherit;
  }

  .header > *:not(.header__nav) {
    position: relative;
    z-index: 3;
  }

  .header__nav {
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    z-index: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(0, -100%);
    -moz-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    transform: translate(0, -100%);
    background-color: #ffffff;
  }

  .header__nav.responsive {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .header__nav.responsive .dropdown-content {
    position: relative;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .header__nav.responsive .dropdown.hover .nav__btn {
    background-color: #555555;
    color: #ffffff !important;
  }

  .header__nav.responsive .nav__btn:hover {
    color: #4d91ff !important;
  }

  .header__nav.responsive .dropdown.hover .nav__btn i {
    color: #ffffff;
  }

  .header__burger.active::before {
    -webkit-transform: translateY(4px) rotate(45deg);
    -moz-transform: translateY(4px) rotate(45deg);
    -ms-transform: translateY(4px) rotate(45deg);
    -o-transform: translateY(4px) rotate(45deg);
    transform: translateY(4px) rotate(45deg);
  }

  .header__burger.active::after {
    -webkit-transform: translateY(-4px) rotate(-45deg);
    -moz-transform: translateY(-4px) rotate(-45deg);
    -ms-transform: translateY(-4px) rotate(-45deg);
    -o-transform: translateY(-4px) rotate(-45deg);
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav__btn {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav__btn::before {
    background: transparent;
  }

  .header__nav .dropdown-content a {
    padding-left: 50px;
    padding-right: 50px;
  }

  .prev-icon,
.next-icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 980px) {
  .banner-slider .slick-dots li button {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 24px;
  }

  .header__burger {
    margin-right: 24px;
  }

  .nav__btn {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header__nav .dropdown-content a {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__links {
    margin-top: 10px;
    margin-left: 0;
  }

  .container,
.container-block {
    padding: 0 24px;
  }

  .footer {
    padding: 12px 0;
  }

  .org__img img {
    max-width: 180px;
    margin: 0 auto;
  }

  .logo-slider .slick-prev,
.logo-slider .slick-next {
    font-size: 16px;
  }
}
@media screen and (max-width: 720px) {
  .banner-slider .slick-dots {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .prev-icon,
.next-icon {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 575px) {
  .header {
    height: 64px;
  }

  .page__wrapper {
    padding-top: 64px;
  }

  .header__nav {
    top: 63px;
  }

  .header__logo .header__pic {
    width: auto;
    height: 54px;
  }

  .container,
.container-block {
    padding: 0 16px;
  }

  .org__img img {
    max-width: 140px;
  }

  .main__title.h2 {
    font-size: 26px;
  }
}
/*--------------------------------------------- */
/* [ Persona Media Queries ]
----------------------------------------------- */
@media screen and (max-width: 1780px) {
  .persona-section__wrapper {
    font-size: 22px;
  }
}
@media screen and (max-width: 1640px) {
  .persona-section__wrapper {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .persona-section__wrapper {
    font-size: 18px;
  }
}
@media screen and (max-width: 1320px) {
  .persona-section__wrapper {
    font-size: 16px;
  }
}
@media screen and (max-width: 1140px) {
  .persona-section__wrapper {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .persona-section__wrapper {
    font-size: 12px;
  }
}
@media screen and (max-width: 860px) {
  .persona-section__wrapper {
    font-size: 10px;
  }
}
@media screen and (max-width: 720px) {
  .persona-section__wrapper {
    font-size: 9px;
  }
}
@media screen and (max-width: 620px) {
  .hide-on-mobile {
    display: none;
  }

  .show-on-mobile {
    display: block;
  }

  .cover-card .sub-section__subtitle {
    display: block;
  }

  .cover-card .h3,
.cover-card .h4 {
    position: static !important;
    padding: 0.25em 1em 0.5em;
    margin: 0 -1em !important;
    background-color: transparent;
  }

  .cover-card {
    margin: -0.5714285714em -1.1428571429em;
  }

  .cover-card__inner {
    padding: 0.5714285714em 1.1428571429em !important;
    background-color: #ffffff;
  }

  .cover-card__inner .sub-section__title-inner p {
    margin-bottom: 0;
  }

  .cover-card__inner > .detail__content + .detail__content {
    margin-top: 1.1428571429em;
  }

  .cover-card__inner > .detail__content .detail__buttons + .detail__buttons {
    margin-top: 0.8571428571em;
  }

  .detail__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .detail__button .btn--primary:hover > .btn__text {
    opacity: 1;
  }

  .persona-section__wrapper {
    font-size: 14px;
  }

  .section__wrapper > .section {
    padding: 1.4285714286em 0;
  }

  .main-section__content::before {
    top: 1.8em;
  }

  .section__title {
    display: block;
    margin: 0 -16px;
  }

  .section__title .h2 {
    position: static !important;
    padding: 0.5625em 1.125em;
    margin-bottom: 2.5em;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 1.1428571429em;
  }

  .sub-section .row {
    margin: -0.1428571429em;
  }

  .sub-section .row + .row {
    margin-top: 0.1428571429em;
  }

  .sub-section [class*=col-] {
    padding: 0.1428571429em;
  }

  .sub-section__title .h3 {
    font-size: 1.1428571429em;
  }

  .sub-section__title-inner p {
    font-style: normal;
    font-weight: 400;
  }

  .sub-section__subtitle .h5 {
    font-weight: 400;
  }

  .persona-section__wrapper .container-block {
    max-width: 320px;
    padding: 0 1.1428571429em;
  }

  .sub-section-1 .detail__content-videos {
    width: 100% !important;
  }

  .sub-section-1 .detail__videos {
    font-size: 0.6em;
  }

  .sub-section-1 .detail__content-videos .sub-section__subtitle {
    text-align: center;
  }

  .sub-section-1 .sub-section__title .h3,
.sub-section-completed .sub-section__title .h3,
.student-persona .sub-section-2 .sub-section__title .h3,
.student-persona .sub-section-3 .sub-section__title .h3,
.student-persona .sub-section-4 .sub-section__title .h3,
.career-switcher-persona .sub-section-2 .sub-section__title .h3,
.pmet-persona .sub-section-2 .sub-section__title .h3,
.pmet-persona .sub-section-4 .sub-section__title .h3,
.employer-persona .sub-section-2 .sub-section__title .h3,
.employer-persona .sub-section-3 .sub-section__title .h3 {
    font-size: 1.4285714286em;
  }

  .detail__button .btn {
    min-width: 0;
    height: auto;
    padding: 0.5714285714em;
    font-size: 1em;
    line-height: 1.2142857143em;
  }

  .detail__buttons-group .btn {
    min-height: 3.5714285714em;
  }

  .detail__button .btn.btn--underline {
    padding: 0;
    margin: 3px 0;
  }

  .detail__button .btn.btn--medium {
    padding: 0.8571428571em;
    line-height: 1.3;
  }

  .detail__button .btn__text i {
    margin-left: 0.1428571429em;
    font-weight: 600;
    font-size: 0.7em;
    position: relative;
    top: -1px;
  }

  .sub-section-completed {
    padding: 1.7142857143em 0;
  }

  .sub-section-1 .sub-section__img,
.student-persona .sub-section-2 .sub-section__img,
.student-persona .sub-section-3 .sub-section__img,
.student-persona .sub-section-4 .sub-section__img,
.career-switcher-persona .sub-section-2 .sub-section__img-2,
.pmet-persona .sub-section-2 .sub-section__img,
.pmet-persona .sub-section-4 .sub-section__img {
    position: static !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 1.7142857143em !important;
  }

  .student-persona .main-section__content::before {
    width: 11.7142857143em;
    margin-left: -5.8em;
    top: 1em;
    background-image: url("../img/personas/students/student-mobile-foreground.png");
  }

  .student-persona .sub-section-1 {
    margin-bottom: 5.3571428571em;
  }

  .student-persona .sub-section-1 .sub-section__title .h3 {
    left: -0.5em;
    width: 50%;
    margin-bottom: 1em;
  }

  .student-persona .sub-section-2 .sub-section__title + .sub-section__details.show-on-mobile,
.student-persona .sub-section-3 .sub-section__title + .sub-section__details.show-on-mobile,
.student-persona .sub-section-4 .sub-section__title + .sub-section__details.show-on-mobile {
    position: absolute;
    left: 0;
    width: 100%;
  }

  .student-persona .sub-section-2 {
    margin-bottom: 5.3571428571em;
  }

  .student-persona .sub-section-2 .sub-section__title + .sub-section__details.show-on-mobile {
    top: 2.5em;
  }

  .student-persona .sub-section-2 .sub-section__img img {
    position: relative;
    left: 3.6em;
  }

  .student-persona .sub-section-3 {
    margin-bottom: 6.4285714286em;
  }

  .student-persona .sub-section-3 .sub-section__title + .sub-section__details.show-on-mobile {
    top: -2.4em;
    padding-left: 0.8571428571em;
  }

  .student-persona .sub-section-3 .sub-section__img img {
    position: relative;
    left: 1.6em;
  }

  .student-persona .sub-section-4 {
    margin-bottom: 1.4285714286em;
  }

  .student-persona .sub-section-4 .sub-section__title + .sub-section__details.show-on-mobile {
    top: -4.8571428571em;
  }

  .student-persona .sub-section-4 .sub-section__title .h3 {
    position: static;
    max-width: none;
  }

  .student-persona .sub-section-4 .sub-section__img img {
    max-width: 22.8571428571em;
    position: relative;
    left: -1.9em;
  }

  .career-switcher-persona .main-section__content::before {
    width: 10.3571428571em;
    margin-left: -5.6em;
    top: 1.8em;
    background-image: url("../img/personas/career-switchers/career-switcher-mobile-foreground.png");
  }

  .career-switcher-persona .sub-section-1 {
    margin-bottom: 10.7142857143em;
  }

  .career-switcher-persona .sub-section-1 .sub-section__title {
    position: absolute;
    top: -1.2em;
    left: 0;
    width: 100%;
  }

  .career-switcher-persona .sub-section-1 .sub-section__title .h3 {
    left: 1.2em;
    width: 50%;
    margin-bottom: 0;
  }

  .career-switcher-persona .sub-section-1 .sub-section__details .detail__buttons:nth-child(1) {
    margin-right: 0;
    margin-bottom: 0;
  }

  .career-switcher-persona .sub-section-2 .sub-section__title {
    max-width: 55%;
  }

  .career-switcher-persona .sub-section-2 .sub-section__title p {
    max-width: 90%;
  }

  .career-switcher-persona .sub-section-2 .sub-section__img-1 {
    width: 11.0714285714em;
    margin-left: 1.6em;
    top: -7.7em;
  }

  .career-switcher-persona .sub-section-2 .sub-section__img-2 {
    margin: 2.1428571429em 0;
  }

  .career-switcher-persona .sub-section-2 .sub-section__img-2 img {
    max-width: 23.2857142857em;
    position: relative;
    left: -2.4em;
  }

  .career-switcher-persona .sub-section-2 .detail__content-img {
    margin: 1.4285714286em 0;
  }

  .pmet-persona .main-section__content::before {
    margin-left: -5.1em;
    width: 10.4285714286em;
    top: 0.4em;
    background-image: url("../img/personas/pmets/pmet-mobile-foreground.png");
  }

  .pmet-persona .sub-section-1 .sub-section__title .h3 {
    left: 3.1em;
    width: 50%;
    margin-bottom: 0.8em;
  }

  .pmet-persona .sub-section-2 {
    margin-bottom: 8.1428571429em;
  }

  .pmet-persona .sub-section-2 .sub-section__title-inner {
    max-width: none;
    margin-bottom: 1.1428571429em;
    position: static;
  }

  .pmet-persona .sub-section-2 .sub-section__title + .sub-section__details.show-on-mobile {
    position: absolute;
    top: 0.4285714286em;
    left: 0;
    width: 100%;
  }

  .pmet-persona .sub-section-4 {
    padding-left: 0;
    margin-bottom: 2.1428571429em;
  }

  .pmet-persona .sub-section-4 .sub-section__title {
    max-width: 58%;
    padding-left: 0.8571428571em;
  }

  .pmet-persona .sub-section-4 .sub-section__title .h3 {
    margin-bottom: 0.5em;
  }

  .employer-persona .main-section__content::before {
    width: 14.7857142857em;
    margin-left: -8.6em;
    top: 0.8em;
    background-image: url("../img/personas/employers/employer-mobile-foreground.png");
  }

  .employer-persona .section__title .h2 {
    margin-bottom: 2.25em;
  }

  .employer-persona .sub-section-1 {
    margin-bottom: 3.2142857143em;
  }

  .employer-persona .sub-section-1 .sub-section__details {
    padding: 0;
  }

  .employer-persona .sub-section-1 .sub-section__title .h3 {
    left: 2.1em;
    width: 50%;
    margin-bottom: 1.6em;
  }

  .employer-persona .sub-section-2 {
    margin-bottom: 2.1428571429em;
  }

  .employer-persona .sub-section-2 .sub-section__title .h3 {
    position: static;
    margin-bottom: 1em;
  }

  .employer-persona .sub-section-2 .sub-section__details > div:nth-child(1) {
    position: static;
    margin-bottom: 0;
  }

  .employer-persona .sub-section-2 .sub-section__details > .row:nth-child(2) {
    margin-bottom: 9.2857142857em;
  }

  .employer-persona .sub-section-2 .sub-section__details > .row:nth-child(3) {
    margin-bottom: 5em;
  }

  .employer-persona .sub-section-2 .sub-section__img-1 {
    width: 10.1428571429em;
    margin-left: -12.7em;
    top: 6.2em;
  }

  .employer-persona .sub-section-2 .sub-section__img-2 {
    width: 12em;
    margin-left: 0em;
    top: 19.4em;
  }

  .employer-persona .sub-section-2 .sub-section__img-3 {
    width: 10.2857142857em;
    margin-left: -12.6em;
    top: 43em;
  }

  .employer-persona .sub-section-3 {
    margin-bottom: 1.1428571429em;
  }

  .employer-persona .sub-section-3 .sub-section__title-inner {
    position: static;
  }

  .employer-persona .sub-section-3 .sub-section__title-inner .h3 {
    padding-right: 0.3em;
  }

  .employer-persona .sub-section-3 .sub-section__title-inner p {
    max-width: 90%;
  }

  .employer-persona .sub-section-3 .sub-section__img {
    width: 14em;
    margin-left: -12.8em;
    top: -1.2em;
  }

  .employer-persona .sub-section-3 .sub-section__details .row:first-child .col-8 {
    -webkit-box-flex: 0 0 68%;
    -moz-box-flex: 0 0 68%;
    -webkit-flex: 0 0 68%;
    -ms-flex: 0 0 68%;
    flex: 0 0 68%;
    max-width: 68%;
  }

  .employer-persona .sub-section-3 .sub-section__details .row + .row {
    margin-top: 1em;
  }

  .sme-persona .main-section__content::before {
    width: 14.9285714286em;
    margin-left: -8.18em;
    top: 2.1em;
    background-image: url("../img/personas/sme/sme-mobile-foreground.png");
  }

  .sme-persona .sub-section-1 {
    margin-bottom: 3.5em;
  }

  .sme-persona .sub-section-1 .sub-section__title .h3 {
    left: 1.8em;
    width: 59%;
    margin-bottom: 0.4em;
    text-align: right;
  }

  .sme-persona .sub-section-1 .sub-section__details,
.sme-persona .sub-section-2 .sub-section__details,
.sme-persona .sub-section-3,
.sme-persona .sub-section-4 {
    padding-left: 0;
  }

  .sme-persona .sub-section-2 {
    padding-left: 0;
    margin-bottom: 5.4285714286em;
  }

  .sme-persona .sub-section-2 .sub-section__img {
    width: 12.9285714286em;
    margin-left: -13em;
    top: -1.3em;
    z-index: 1;
  }

  .sme-persona .sub-section-3 {
    margin-bottom: 4.7857142857em;
  }

  .sme-persona .sub-section-3 .sub-section__img {
    width: 9.9285714286em;
    margin-left: 2em;
    top: -1.3em;
    z-index: 1;
  }

  .sub-section-completed {
    padding-bottom: 0;
  }

  .sub-section-completed .sub-section__title .h3 {
    margin-bottom: 0.6em;
    line-height: 1.2;
  }

  .sub-section-completed .sub-section__details .detail__content .row + .row {
    margin-top: 0.8571428571em;
  }

  .sub-section-completed .sub-section__details .detail__content .detail__button .btn {
    border: 1px solid transparent;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
  }

  .related-section {
    background: none;
    padding: 0.8571428571em 0 2.1428571429em !important;
  }

  .related-section .container-block {
    padding: 0 1.7142857143em;
  }

  .related-section .i-link__wrapper {
    margin: 0 -0.1428571429em;
  }

  .related-section .i-link__wrapper .col-auto {
    padding: 0 0.1428571429em;
  }

  .related-section .section__title .h4 {
    margin-bottom: 0.8571428571em;
  }
}
/*--------------------------------------------- */

/*# sourceMappingURL=main.css.map */
