@font-face {
  font-family: "Gotham";
  src: url("../../public/fonts/gotham_bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../public/fonts/gotham_black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../public/fonts/gotham_ultra.otf") format("opentype");
  font-weight: 1000;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../public/fonts/gotham_book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

/* ---------------------------------------------- */
/* |                Media Sizes                 | */
/* ---------------------------------------------- */
html {
  font-family: "Gotham";
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: "Gotham";
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gotham";
  font-weight: 900;
}

/* ---------------- Utility ---------------- */
.container {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  color: #022B42;
  font-weight: 1000;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}
.section-title strong {
  color: #3d8768;
}

/* ---------------- Buttons ---------------- */
.speak-to-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  color: #022B42;
  text-decoration: none;
  font-weight: 1000;
  font-size: 24.98px;
  line-height: 100%;
}
@media (max-width: 480px) {
  .speak-to-button {
    font-size: 16px;
    padding: 6px 16px;
  }
}
.speak-to-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.speak-to-button.dark {
  background: #022B42;
  color: #fff;
}

/* ---------------- Header ---------------- */
header {
  background: #fff;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .logo img {
  height: 70px;
}
@media (max-width: 992px) {
  header .container .logo img {
    height: 58px;
  }
}
header .container .menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  header .container .menu {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header .container .menu {
    position: fixed;
    background: #fff;
    right: 0;
    top: 57px;
    z-index: 1000;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding-top: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
  }
}
header .container .menu li a {
  color: #022B42;
  font-size: 16px;
  font-weight: 1000;
  text-decoration: none;
}
@media (max-width: 768px) {
  header .container .menu li a {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  header .container .menu li a {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  header .container .menu.open {
    opacity: 1;
    pointer-events: all;
  }
}
header .container .hamburger {
  display: none;
  cursor: pointer;
  outline: none;
  width: 45px;
  height: 45px;
  background: none;
  border: none;
  gap: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  header .container .hamburger {
    display: flex;
  }
}
header .container .hamburger span {
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: #022B42;
  transition: all ease 0.3s;
}
header .container .hamburger span:nth-child(1) {
  top: 10px;
}
header .container .hamburger span:nth-child(3) {
  bottom: 10px;
}
header .container .hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 20.5px;
}
header .container .hamburger.open span:nth-child(2) {
  opacity: 0;
}
header .container .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 20.5px;
}

/* ---------------- Spotlight ---------------- */
.spotlight {
  background: #022B42;
  padding: 40px 0 80px;
  position: relative;
}
.spotlight:before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: url("../../public/images/spotlight.jpeg") no-repeat 100%/cover;
  background-position: top;
}
@media (max-width: 1200px) {
  .spotlight:before {
    display: block;
  }
}
.spotlight:after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #022B42;
}
@media (max-width: 1200px) {
  .spotlight:after {
    display: block;
  }
}
.spotlight .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .spotlight .container {
    flex-direction: column;
  }
}
.spotlight .container .texts-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .spotlight .container .texts-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 480px) {
  .spotlight .container .texts-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 375px) {
  .spotlight .container .texts-wrapper {
    padding: 0;
  }
}
.spotlight .container .texts-wrapper .title {
  color: #fff;
  font-size: 64px;
}
@media (max-width: 992px) {
  .spotlight .container .texts-wrapper .title {
    font-size: 40px;
  }
}
.spotlight .container .texts-wrapper .title span {
  color: #43B476;
}
.spotlight .container .texts-wrapper .subtitle {
  color: #acdcd3;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  margin-top: 24px;
}
@media (max-width: 992px) {
  .spotlight .container .texts-wrapper .subtitle {
    font-size: 20px;
    margin-top: 12px;
  }
}
.spotlight .container .texts-wrapper .description {
  margin-top: 12px;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 992px) {
  .spotlight .container .texts-wrapper .description {
    font-size: 16px;
  }
}
.spotlight .container .texts-wrapper .speak-to-button {
  margin-top: 32px;
}
.spotlight .container .image-wrapper {
  position: relative;
}
@media (max-width: 1200px) {
  .spotlight .container .image-wrapper {
    display: none;
  }
}
.spotlight .container .image-wrapper img {
  max-width: 487px;
  border-radius: 28px;
}
@media (max-width: 576px) {
  .spotlight .container .image-wrapper img {
    max-width: 100%;
  }
}
.spotlight .container .image-wrapper .watch-film-wrapper {
  position: absolute;
  top: calc(100% - 80px);
  left: -4px;
  max-width: calc(100% - 24px);
}
.spotlight .container .image-wrapper .watch-film-wrapper .header {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 8px;
  background: #ec7d5b;
  padding: 8px 18px 16px;
  border-radius: 8px 8px 0 0;
  display: inline-flex;
}
.spotlight .container .image-wrapper .watch-film-wrapper .link {
  display: flex;
  background: #fff;
  margin-top: -14px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  padding: 12px 24px;
  gap: 12px;
  text-decoration: none;
  color: #000;
}
.spotlight .container .image-wrapper .watch-film-wrapper .link span {
  line-height: 20px;
  font-size: 15px;
  font-weight: 1000;
}

/* ---------------- Marquee ---------------- */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #005b86;
  white-space: nowrap;
  padding: 40px 0;
}

.marquee {
  --marquee-gap: 40px;
  position: relative;
  display: flex;
  user-select: none;
  gap: var(--marquee-gap);
  width: 100%;
  animation: scroll 10s linear infinite;
}
@media (max-width: 992px) {
  .marquee {
    animation-duration: 6s;
  }
}
@media (max-width: 576px) {
  .marquee {
    animation-duration: 3.5s;
  }
}
.marquee .marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--marquee-gap);
  min-width: 100%;
}
.marquee .marquee-content .marquee-item {
  display: inline-flex;
  gap: 14px;
  font-weight: 1000;
  color: #fff;
  font-size: 21.41px;
  line-height: 100%;
  letter-spacing: 0%;
}
@media (max-width: 992px) {
  .marquee .marquee-content .marquee-item {
    font-size: 16px;
  }
}

/* ---------------- Get In Touch ---------------- */
.get-in-touch {
  background: #fff;
  padding: 40px 0 64px;
}
.get-in-touch .container .title {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
}
.get-in-touch .container .get-in-touch-items-wrapper {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .get-in-touch .container .get-in-touch-items-wrapper {
    flex-flow: row wrap;
  }
}
@media (max-width: 992px) {
  .get-in-touch .container .get-in-touch-items-wrapper {
    gap: 40px;
  }
}
.get-in-touch .container .get-in-touch-items-wrapper .contact-item {
  background: #eff6f9;
  box-shadow: -3px 8px 10px 0px rgba(211, 211, 211, 0.7490196078);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 55px;
  border-radius: 26px;
}
@media (max-width: 576px) {
  .get-in-touch .container .get-in-touch-items-wrapper .contact-item {
    padding: 24px 40px;
  }
}
.get-in-touch .container .get-in-touch-items-wrapper .contact-item .icon-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.get-in-touch .container .get-in-touch-items-wrapper .contact-item .contact-item-title {
  font-weight: 1000;
  font-size: 24.98px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #022B42;
  margin-bottom: 4px;
}
@media (max-width: 576px) {
  .get-in-touch .container .get-in-touch-items-wrapper .contact-item .contact-item-title {
    font-size: 20px;
  }
}
.get-in-touch .container .get-in-touch-items-wrapper .contact-item .contact-item-text {
  width: 245px;
  text-align: center;
  font-weight: 400;
  font-size: 21px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #022B42;
}
@media (max-width: 576px) {
  .get-in-touch .container .get-in-touch-items-wrapper .contact-item .contact-item-text {
    font-size: 16px;
  }
}
.get-in-touch .container .get-in-touch-items-wrapper .contact-item .contact-item-text strong {
  font-weight: 700;
}
.get-in-touch .container .get-in-touch-items-wrapper .contact-item .contact-item-button {
  background: #005b86;
  border-radius: 12px;
  padding: 12px 24px;
  width: 185px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  margin-top: 16px;
}
@media (max-width: 576px) {
  .get-in-touch .container .get-in-touch-items-wrapper .contact-item .contact-item-button {
    font-size: 16px;
    margin-top: 8px;
  }
}
.get-in-touch .container .get-in-touch-items-wrapper .contact-item:nth-child(2) .contact-item-text strong {
  display: block;
}

/* ---------------- Career Change ---------------- */
.career-change {
  background: #f5fff3;
  padding: 40px 0;
}
.career-change .container .section-title {
  margin: 0 auto;
  max-width: 100%;
  line-height: 130%;
}
@media (max-width: 992px) {
  .career-change .container .section-title {
    width: 413px;
  }
}
@media (max-width: 992px) {
  .career-change .container .section-title strong {
    width: 413px;
    max-width: 100%;
    display: block;
  }
}
@media (max-width: 480px) {
  .career-change .container .section-title strong {
    display: inline;
  }
}
.career-change .container .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 72px;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .career-change .container .content-wrapper {
    margin: 60px auto 0;
    max-width: 413px;
  }
}
@media (max-width: 992px) {
  .career-change .container .content-wrapper .image-wrapper {
    display: none;
  }
}
.career-change .container .content-wrapper .image-wrapper img {
  max-width: 354px;
}
.career-change .container .content-wrapper .texts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 992px) {
  .career-change .container .content-wrapper .texts-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }
}
.career-change .container .content-wrapper .texts-wrapper .career-item .title {
  font-weight: 1000;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
}
@media (max-width: 992px) {
  .career-change .container .content-wrapper .texts-wrapper .career-item .title {
    font-size: 30px;
  }
}
.career-change .container .content-wrapper .texts-wrapper .career-item .title:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  margin-right: 8px;
  vertical-align: middle;
  display: none;
}
@media (max-width: 992px) {
  .career-change .container .content-wrapper .texts-wrapper .career-item .title:before {
    display: inline-block;
  }
}
.career-change .container .content-wrapper .texts-wrapper .career-item .description {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .career-change .container .content-wrapper .texts-wrapper .career-item .description {
    display: none;
  }
}
.career-change .container .content-wrapper .texts-wrapper .career-item .description p + p {
  margin-top: 12px;
}
.career-change .container .content-wrapper .texts-wrapper .career-item .description p strong {
  color: #005b86;
  font-weight: 1000;
}
.career-change .container .content-wrapper .texts-wrapper .speak-to-button {
  display: inline-flex;
  justify-self: center;
  grid-column: span 2;
}
@media (max-width: 992px) {
  .career-change .container .content-wrapper .texts-wrapper .speak-to-button {
    grid-column: span 1;
    margin: auto;
    justify-self: center;
    margin-top: 24px;
  }
}

/* ---------------- Watch The Film Mobile ---------------- */
.watch-the-film-mobile {
  padding: 32px 0;
  background: #022B42;
  display: none;
}
@media (max-width: 1200px) {
  .watch-the-film-mobile {
    display: block;
  }
}
.watch-the-film-mobile .watch-film-wrapper {
  position: relative;
  width: 464px;
  margin: auto;
  max-width: 100%;
}
.watch-the-film-mobile .watch-film-wrapper .header {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 8px;
  background: #ec7d5b;
  padding: 8px 18px 16px;
  border-radius: 8px 8px 0 0;
  display: inline-flex;
}
.watch-the-film-mobile .watch-film-wrapper .link {
  display: flex;
  background: #fff;
  margin-top: -14px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  padding: 12px 24px;
  gap: 12px;
  text-decoration: none;
  color: #000;
}
.watch-the-film-mobile .watch-film-wrapper .link span {
  line-height: 20px;
  font-size: 15px;
  font-weight: 1000;
}

/* ---------------- Courses ---------------- */
.courses {
  background: #fff5de;
  padding: 50px 0;
}
@media (max-width: 992px) {
  .courses {
    padding: 40px 0;
  }
}
.courses .container .section-title {
  text-align: left;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .courses .container .section-title {
    text-align: center;
  }
}
.courses .container .section-description {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
}
@media (max-width: 768px) {
  .courses .container .section-description {
    text-align: center;
    width: 365px;
    max-width: 100%;
    margin: auto;
  }
}
.courses .container .section-description strong {
  color: #022B42;
  font-weight: 1000;
}
.courses .container .courses-wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .courses .container .courses-wrapper {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .courses .container .courses-wrapper {
    grid-template-columns: 100%;
    margin-top: 32px;
  }
}
.courses .container .courses-wrapper .course-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-decoration: none;
}
@media (max-width: 768px) {
  .courses .container .courses-wrapper .course-item {
    height: 220px;
    width: 350px;
    max-width: 100%;
    margin: auto;
  }
}
.courses .container .courses-wrapper .course-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.courses .container .courses-wrapper .course-item .image-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.courses .container .courses-wrapper .course-item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.3s ease-in-out;
}
.courses .container .courses-wrapper .course-item .texts-wrapper {
  position: relative;
  z-index: 3;
  padding: 18px 24px;
}
@media (max-width: 768px) {
  .courses .container .courses-wrapper .course-item .texts-wrapper {
    padding: 12px 16px;
  }
}
.courses .container .courses-wrapper .course-item .texts-wrapper .title span {
  display: block;
  font-weight: 1000;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
@media (max-width: 992px) {
  .courses .container .courses-wrapper .course-item .texts-wrapper .title span {
    font-size: 20px;
  }
}
.courses .container .courses-wrapper .course-item .texts-wrapper .title strong {
  display: block;
  font-weight: 1000;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #43b476;
}
@media (max-width: 992px) {
  .courses .container .courses-wrapper .course-item .texts-wrapper .title strong {
    font-size: 30px;
  }
}
.courses .container .courses-wrapper .course-item:hover .image-wrapper img {
  transform: scale(1.1);
}
.courses .container .courses-wrapper .course-item:nth-child(2) .texts-wrapper .title strong {
  color: #fdbe10;
}
.courses .container .courses-wrapper .course-item:nth-child(3) .texts-wrapper .title strong {
  color: #ec7d5b;
}

/* ---------------- Training ---------------- */
.training {
  padding-top: 100px;
}
@media (max-width: 992px) {
  .training {
    padding-top: 80px;
  }
}
@media (max-width: 576px) {
  .training {
    padding-top: 40px;
  }
}
.training .container .section-description {
  width: 782px;
  max-width: 100%;
  margin: 24px auto 0;
  font-weight: 400;
  font-size: 28px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
}
@media (max-width: 992px) {
  .training .container .section-description {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .training .container .section-description {
    font-size: 20px;
  }
}
.training .training-steps-wrapper {
  margin-top: 70px;
}
@media (max-width: 576px) {
  .training .training-steps-wrapper {
    margin-top: 40px;
  }
}
.training .training-steps-wrapper .training-step {
  padding: 24px 0;
}
.training .training-steps-wrapper .training-step .wrapper {
  width: 885px;
  display: flex;
  margin: auto;
  max-width: calc(100% - 30px);
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  min-height: 265px;
  position: relative;
}
@media (max-width: 375px) {
  .training .training-steps-wrapper .training-step .wrapper {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
.training .training-steps-wrapper .training-step .wrapper .step-number {
  font-weight: 1000;
  font-size: 64px;
  rotate: -90deg;
  white-space: nowrap;
  color: #fff;
  position: absolute;
  left: -60px;
  top: 50%;
  translate: 0 -50%;
}
@media (max-width: 576px) {
  .training .training-steps-wrapper .training-step .wrapper .step-number {
    font-size: 40px;
    left: -40px;
  }
}
@media (max-width: 375px) {
  .training .training-steps-wrapper .training-step .wrapper .step-number {
    position: relative;
    left: auto;
    top: auto;
    translate: none;
    rotate: none;
    font-size: 24px;
  }
}
.training .training-steps-wrapper .training-step .wrapper .step-content {
  padding-left: 130px;
}
@media (max-width: 576px) {
  .training .training-steps-wrapper .training-step .wrapper .step-content {
    padding-left: 60px;
  }
}
@media (max-width: 375px) {
  .training .training-steps-wrapper .training-step .wrapper .step-content {
    padding-left: 0px;
  }
}
.training .training-steps-wrapper .training-step .wrapper .step-content .step-title {
  font-weight: 1000;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 12px;
}
.training .training-steps-wrapper .training-step .wrapper .step-content .step-description {
  color: #fff;
  font-weight: 400;
  font-size: 23.1px;
  line-height: 120%;
  letter-spacing: 0%;
}
@media (max-width: 576px) {
  .training .training-steps-wrapper .training-step .wrapper .step-content .step-description {
    font-size: 18px;
  }
}
.training .training-steps-wrapper .training-step:nth-child(1) {
  background: #45b575;
}
.training .training-steps-wrapper .training-step:nth-child(2) {
  background: #005c87;
}
.training .training-steps-wrapper .training-step:nth-child(3) {
  background: #eb823a;
}

/* ---------------- Reviews ---------------- */
.reviews {
  background: #005b86;
  padding: 40px 0;
}
.reviews .container .section-title {
  color: #fff;
}
.reviews .container .trustpilot-wrapper-desktop {
  padding: 80px 0 40px;
}
@media (max-width: 992px) {
  .reviews .container .trustpilot-wrapper-desktop {
    display: none;
  }
}
.reviews .container .trustpilot-wrapper-mobile {
  display: none;
  margin-top: 24px;
}
@media (max-width: 992px) {
  .reviews .container .trustpilot-wrapper-mobile {
    display: block;
  }
}

/* ---------------- Videos ---------------- */
.videos {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .videos {
    padding: 40px 0;
  }
}
.videos .section-title {
  margin-bottom: 40px;
  font-size: 22px;
}
.videos .videos-wrapper .swiper {
  padding-bottom: 50px;
  --swiper-theme-color: #f9b121;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-pagination-bottom: 5px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: #005b86;
}
.videos .videos-wrapper .swiper .swiper-wrapper .swiper-slide {
  width: 540px;
  height: 283px;
  position: relative;
  max-width: calc(100% - 30px);
  cursor: pointer;
}
.videos .videos-wrapper .swiper .swiper-wrapper .swiper-slide .poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videos .videos-wrapper .swiper .swiper-wrapper .swiper-slide .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  opacity: 0.9;
  transition: all ease 0.3s;
}
.videos .videos-wrapper .swiper .swiper-wrapper .swiper-slide:hover .play-icon {
  opacity: 1;
  width: 107px;
  height: 107px;
}

.video-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transition: all ease 0.4s;
}
.video-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.video-modal .video-modal-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-modal .video-modal-content {
  position: relative;
  z-index: 2;
  width: 1000px;
}
.video-modal .video-modal-content .video-wrapper {
  padding-bottom: 56.25%;
  position: relative;
}
.video-modal .video-modal-content .video-wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* ---------------- Footer ---------------- */
footer {
  background: #022B42;
  padding: 40px 0 24px;
}
footer .container .section-title {
  color: #fff;
  text-align: left;
}
@media (max-width: 768px) {
  footer .container .section-title {
    font-size: 30px;
  }
}
footer .container .top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  footer .container .top {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
footer .container .top .locations {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}
footer .container .top .locations ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 40px;
}
@media (max-width: 1200px) {
  footer .container .top .locations ul {
    width: 100%;
  }
}
@media (max-width: 576px) {
  footer .container .top .locations ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  footer .container .top .locations ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
footer .container .top .locations ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
footer .container .top .contact .get-in-touch-items-wrapper {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 1200px) {
  footer .container .top .contact .get-in-touch-items-wrapper {
    flex-flow: row wrap;
  }
}
footer .container .top .contact .get-in-touch-items-wrapper .contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  border-radius: 26px;
  text-decoration: none;
}
footer .container .top .contact .get-in-touch-items-wrapper .contact-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
footer .container .top .contact .get-in-touch-items-wrapper .contact-item span {
  color: #fff;
}
footer .container .bottom {
  margin-top: 40px;
  display: grid;
  gap: 60px;
}
@media (max-width: 1200px) {
  footer .container .bottom {
    gap: 32px;
    margin-top: 60px;
  }
}
footer .container .bottom .links {
  display: flex;
  gap: 4px;
}
@media (max-width: 576px) {
  footer .container .bottom .links {
    flex-flow: row wrap;
    gap: 8px;
  }
}
footer .container .bottom .links .link {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}
footer .container .bottom .links .link:not(:last-child) {
  border-right: 1px solid #fff;
  padding-right: 4px;
}
@media (max-width: 576px) {
  footer .container .bottom .links .link:not(:last-child) {
    padding-right: 8px;
  }
}
footer .container .bottom .copyright {
  grid-column: span 2;
  text-align: center;
  font-size: 10px;
  color: #fff;
  max-width: calc(100% - 30px);
}
@media (max-width: 1200px) {
  footer .container .bottom .copyright {
    text-align: left;
    line-height: 129%;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 40px));
  }
}

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