/* EXAMPLE USAGE
@media (max-width: @screen-xs) { display: none; }
*/
@media (min-width: 601px) {
  display: none;
}
/* ==========================================================================
Course Details Header
========================================================================== */

.course-details-header {
  padding: 0 0 40px;
}
.course-details-header__row {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 801px) {
  .course-details-header__row {
    flex-direction: row;
    gap: 30px;
    margin: 0 0 30px;
  }
}
@media (min-width: 1521px) {
  .course-details-header__row {
    gap: 40px;
    margin: 0 0 40px;
  }
}
.course-details-header__row:last-child .course-details-header__col:first-child {
  order: 2;
}
@media (min-width: 801px) {
  .course-details-header__row:last-child .course-details-header__col:first-child {
    order: 1;
  }
}
.course-details-header__row:last-child .course-details-header__col:last-child {
  order: 1;
}
@media (min-width: 801px) {
  .course-details-header__row:last-child .course-details-header__col:last-child {
    order: 2;
  }
}
.course-details-header__col {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 801px) {
  .course-details-header__col {
    width: 50%;
  }
}
.course-details-header ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  column-count: 1;
  column-gap: 0;
}
@media (min-width: 601px) {
  .course-details-header ul {
    column-count: 2;
    column-gap: 40px;
  }
}
.course-details-header li {
  margin: 0 0 8px;
  line-height: 1.4;
  position: relative;
  padding: 0 0 0 14px;
  font-size: 14px;
}
@media (min-width: 1025px) {
  .course-details-header li {
    font-size: 16px;
  }
}
@media (min-width: 1521px) {
  .course-details-header li {
    font-size: 20px;
  }
}
.course-details-header li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}
.course-details-header li p {
  margin: 0;
}
.course-details-header__buttons {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 601px) {
  .course-details-header__buttons {
    flex-direction: row;
  }
}
.course-details-header__video-link {
  display: block;
  color: var(--white);
  text-decoration: none;
}
.course-details-header__video-link:hover .course-details-header__img img {
  transform: scale(1.1);
}
.course-details-header__img {
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin: 0;
}
.course-details-header__img:after {
  content: "";
  display: block;
  background: url(../img/icon-play.svg) no-repeat;
  background-size: cover;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1025px) {
  .course-details-header__img:after {
    width: 64px;
    height: 64px;
  }
}
@media (min-width: 1521px) {
  .course-details-header__img:after {
    width: 80px;
    height: 80px;
  }
}
.course-details-header__img img {
  transition: all 0.5s;
  display: block;
}
.course-details-header__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1025px) {
  .course-details-header__contact {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
}
.course-details-header__talk-to-us {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--blue);
  font-weight: bold;
  justify-self: start;
}
.course-details-header__talk-to-us__icon {
  font-size: 50px;
}
.course-details-header__talk-to-us a {
  color: var(--orange);
  text-decoration: none;
  transition: all 0.3s;
}
.course-details-header__talk-to-us a:hover {
  color: var(--blueLight);
}
.course-details-header__feefo {
  justify-self: center;
}
.course-details-header__buttons {
  margin: 40px 0;
}
.course-details-header__in-house-solutions {
  margin: 0;
  flex: 1;
}
.course-details-header__in-house-solutions a {
  display: block;
  height: 100%;
  background: url(../img/bg-tailored-skills.webp) no-repeat center center;
  background-size: cover;
  padding: 24px;
  border-radius: 10px;
  color: var(--white);
  text-decoration: none;
}
.course-details-header__in-house-solutions a:hover .course-details-header__btn span {
  background: var(--blueLighter3);
  border-color: var(--white);
}
@media (min-width: 801px) {
  .course-details-header__in-house-solutions {
    margin: 0;
  }
}
@media (min-width: 1521px) {
  .course-details-header__in-house-solutions {
    margin: 0;
  }
}
.course-details-header__in-house-solutions h2 {
  margin: 12px 0 6px;
  color: var(--white);
}
.course-details-header__in-house-solutions p {
  margin: 0;
  color: var(--white);
}
.course-details-header__in-house-solutions .course-details-header__btn span {
  font-size: 14px;
  padding: 8px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--white);
  transition: all 0.3s;
}
@media (min-width: 1025px) {
  .course-details-header__in-house-solutions .course-details-header__btn span {
    font-size: 16px;
    padding: 10px;
    border-radius: 10px;
  }
}
.course-details-header__option {
  flex: 1;
}
.course-details-header__option a {
  display: block;
  height: 100%;
  background: var(--greyLightest1);
  padding: 24px;
  border-radius: 10px;
  color: var(--blue);
  text-decoration: none;
  margin: 0 0 20px;
}
.course-details-header__option a:hover .course-details-header__btn span {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
@media (min-width: 801px) {
  .course-details-header__option a {
    margin: 0;
  }
}
@media (min-width: 1521px) {
  .course-details-header__option a {
    margin: 0;
  }
}
.course-details-header__option h2 {
  margin: 0 0 12px;
}
.course-details-header__option p {
  margin: 0 0 12px;
}
.course-details-header__option .course-details-header__btn span {
  font-size: 14px;
  padding: 8px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  color: var(--blue);
  border: 1px solid var(--blue);
  transition: all 0.3s;
}
@media (min-width: 1025px) {
  .course-details-header__option .course-details-header__btn span {
    font-size: 16px;
    padding: 10px;
    border-radius: 10px;
  }
}
.course-details-header__intro-content {
  font-weight: 300;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 1025px) {
  .course-details-header__intro-content {
    font-size: 20px;
  }
}
@media (min-width: 1521px) {
  .course-details-header__intro-content {
    font-size: 26px;
  }
}
.course-details-header__trust-factors {
  margin: 40px 0 0;
}
.course-details-header__trust-factors ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}
.course-details-header__trust-factors li {
  padding: 0;
  margin: 0;
}
.course-details-header__trust-factors li:before {
  display: none;
}
.course-details-header__trust-factors img {
  display: block;
}
/* ====================
Course Details Header
======================= */

.course-details__title {
  padding: 50px 0 0;
}
.course-details__title h1 {
  font-size: 42px;
  font-family: var(--sans-serif);
  color: var(--blue);
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 10px;
  position: relative;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid var(--greyLighter);
}
@media (max-width: 1520px) {
  .course-details__title h1 {
    font-size: 34px;
  }
}
@media (max-width: 1024px) {
  .course-details__title h1 {
    font-size: 29px;
    line-height: 1.2;
  }
}
@media (max-width: 600px) {
  .course-details__title h1 {
    font-size: 21px;
  }
}
.elite-course-details-header h1 {
  font-size: 42px;
  font-family: var(--sans-serif);
  color: var(--blue);
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 10px;
  position: relative;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid var(--greyLighter);
}
@media (max-width: 1520px) {
  .elite-course-details-header h1 {
    font-size: 34px;
  }
}
@media (max-width: 1024px) {
  .elite-course-details-header h1 {
    font-size: 29px;
    line-height: 1.2;
  }
}
@media (max-width: 600px) {
  .elite-course-details-header h1 {
    font-size: 21px;
  }
}
.elite-course-details-header__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0 10px;
  border-bottom: 1px solid var(--greyLighter);
}
.elite-course-details-header__tags li {
  background: var(--blueLighter);
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
  padding: 8px;
  margin: 0 12px 2px 0;
}
.elite-course-details-header .custom-intro {
  font-weight: 300;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  line-height: 1.4;
  margin: 24px 0;
}
@media (max-width: 1520px) {
  .elite-course-details-header .custom-intro {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .elite-course-details-header .custom-intro {
    font-size: 22px;
  }
}
.elite-course-details-header__feature {
  display: flex;
  gap: 20px;
  margin: 0 0 20px;
  flex-direction: column;
}
@media (min-width: 601px) {
  .elite-course-details-header__feature {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 601px) {
  .elite-course-details-header__col {
    width: 50%;
  }
}
.elite-course-details-header__video-link {
  display: block;
  color: var(--white);
  text-decoration: none;
}
.elite-course-details-header__video-link:hover .course-details-header__img img {
  transform: scale(1.1);
}
.elite-course-details-header__img {
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin: 0 0 20px;
}
.elite-course-details-header__img:after {
  content: "";
  display: block;
  background: url(../img/icon-play.svg) no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1520px) {
  .elite-course-details-header__img:after {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 1024px) {
  .elite-course-details-header__img:after {
    width: 56px;
    height: 56px;
  }
}
.elite-course-details-header__img img {
  transition: all 0.5s;
  display: block;
}
.elite-course-details-header__buttons {
  margin: 20px 0;
}
.elite-course-details-header__contact {
  margin: 0;
}
.elite-course-details-header__contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 12px;
}
.elite-course-details-header__contact-img {
  width: 65px;
}
.elite-course-details-header__contact-img img {
  display: block;
}
.elite-course-details-header__contact h2 {
  font-size: 24px;
  font-family: var(--sans-serif);
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.4;
}
@media (max-width: 1520px) {
  .elite-course-details-header__contact h2 {
    font-size: 19px;
  }
}
@media (max-width: 1024px) {
  .elite-course-details-header__contact h2 {
    font-size: 17px;
  }
}
.elite-course-details-header__contact dl {
  margin: 0;
  padding: 0;
  display: flex;
}
.elite-course-details-header__contact dt {
  padding: 0 8px 0 0;
  margin: 0;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
}
.elite-course-details-header__contact dd {
  padding: 0;
  margin: 0;
  font-weight: 600;
}
.elite-course-details-header__contact dd a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s;
}
.elite-course-details-header__contact dd a:hover {
  color: var(--orange);
}
.elite-course-details-header__contact p {
  line-height: 1.4;
  color: var(--black);
  margin: 0;
}
.elite-course-details-header__contact p:last-child {
  margin: 0;
}
.elite-course-details-header__intro {
  border-bottom: 1px solid var(--greyLighter);
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.elite-course-details-header__intro h2 {
  color: var(--blue);
  font-family: var(--sans-serif);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 20px;
}
@media (max-width: 1520px) {
  .elite-course-details-header__intro h2 {
    font-size: 21px;
    margin: 0 0 16px;
  }
}
@media (max-width: 1024px) {
  .elite-course-details-header__intro h2 {
    font-size: 18px;
  }
}
.elite-course-details-header__intro h2:has(+ .course-details-header__intro__content) {
  margin: 0;
}
.elite-course-details-header__intro__content {
  color: var(--orange);
  font-family: var(--serif);
  margin: 0 0 20px;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1520px) {
  .elite-course-details-header__intro__content {
    font-size: 19px;
  }
}
@media (max-width: 1024px) {
  .elite-course-details-header__intro__content {
    font-size: 17px;
  }
}
.elite-course-details-header__intro ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  column-count: 2;
  column-gap: 40px;
}
@media (max-width: 1024px) {
  .elite-course-details-header__intro ul {
    column-count: 1;
    column-gap: 0;
  }
}
.elite-course-details-header__intro li {
  margin: 0 0 8px;
  line-height: 1.4;
  position: relative;
  padding: 0 0 0 14px;
}
.elite-course-details-header__intro li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}
.elite-course-details-header__intro li p {
  margin: 0;
}
.elite-course-details-header__intro--single ul {
  column-count: 1;
  column-gap: 0;
}
.elite-course-details-header__option {
  background: var(--greyLightest1);
  padding: 30px;
  border-radius: 10px;
}
@media (min-width: 601px) {
  .elite-course-details-header__option {
    margin: 40px 0 0;
  }
}
.elite-course-details-header__option h2 {
  font-size: 24px;
  font-family: var(--sans-serif);
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.4;
}
@media (max-width: 1520px) {
  .elite-course-details-header__option h2 {
    font-size: 19px;
  }
}
@media (max-width: 1024px) {
  .elite-course-details-header__option h2 {
    font-size: 17px;
  }
}
.elite-course-details-header__option p {
  line-height: 1.4;
}
.elite-course-details-header__extras {
  display: none;
}
@media (min-width: 601px) {
  .elite-course-details-header__extras {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--greyLighter);
    padding: 40px 0 0;
    margin: 40px -20px;
  }
}
.elite-course-details-header__extras ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .elite-course-details-header__extras ul {
    flex-direction: column;
    width: 100%;
  }
}
.elite-course-details-header__extras li {
  padding: 0 10px 0 0;
}
#open-course-brochure-popup iframe {
  display: block;
  aspect-ratio: 12/8 !important;
  width: 100%;
}
