/*#region General */

:root {
  --primary-colour-dark: #12173A;
  --primary-colour-light: #399ACD;
  --primary-colour-alt: #176395;
  --achim-orange: #984806;
  --navbar-fg: #000;
  --navbar-fg-highlight: #fff;
  --navbar-bg: #fff;
  --navbar-bg-highlight: #BA6114;
  --navbar-height: 5rem;
}

.orange {
  color: var(--achim-orange);
}

.bg-orange {
  background-color: var(--achim-orange);
}

.border-orange, .border-orange td, .border-orange th {
  border: 1px solid #984806;
}

.text-white {
  color: #fff;
}

*:focus-visible {
  outline: none !important;
}

body {
  font-family: 'Montserrat', sans-serif;
}

.validation-message {
  color: red;
}

.input-validation-error {
  border: 1px solid red;
}

/*#endregion */

/*#region Blazor Error UI */

#blazor-error-ui {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.53);
  z-index: 1000000;
}

  #blazor-error-ui > div {
    padding: 1rem 1.75rem;
    position: fixed;
    min-width: 250px;
    max-width: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    color: #856404;
    background-color: #ebebeb;
    box-shadow: 0px 7px 6px 0px hsl(0deg 0% 0% / 20%);
    border-radius: .5rem;
    border: 1px solid #461d4d;
  }

  #blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    text-decoration: none;
  }

  #blazor-error-ui .reload {
    padding: .5rem;
    color: #212529;
    background-color: #ffc107;
    text-decoration: none;
    border-radius: .275rem;
  }

    #blazor-error-ui .reload:hover {
      background-color: #dda707;
    }

/*#endregion */

/*#region components-reconnect-modal */

#components-reconnect-modal {
  display: flex !important;
  opacity: 1 !important;
  background-color: rgb(255 255 255 / 80%) !important;
  z-index: 100050 !important;
}

  #components-reconnect-modal::before {
    content: '';
    width: 300px;
    height: 65px;
    background-image: linear-gradient( 90deg, #3d97c9 -10%, #111118 65%);
    border-radius: .5rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }

  #components-reconnect-modal h5 {
    margin-top: 50px !important;
    padding: .75rem 1.25rem;
    width: 300px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    color: #fff;
    background-image: linear-gradient( 90deg, #3d97c9 -10%, #111118 65%);
    border-radius: .5rem;
    box-shadow: 0px 10px 10px 0px hsl(0deg 0% 0% / 20%);
  }

  #components-reconnect-modal div {
    border: 0 !important;
    position: relative;
    animation: rotate 1s linear infinite;
    margin: auto;
    z-index: 1050;
  }

    #components-reconnect-modal div::before,
    #components-reconnect-modal div::after {
      content: "";
      box-sizing: border-box;
      position: absolute;
      inset: 0px;
      border-radius: 50%;
      border: 3px solid #fff;
      animation: prixClipFix 2s linear infinite;
    }

    #components-reconnect-modal div::after {
      border-color: #3682ad;
      animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
      inset: 6px;
    }

@keyframes rotate {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
  }

  25% {
    clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
  }

  50% {
    clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
  }

  75% {
    clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)
  }

  100% {
    clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)
  }
}

#components-reconnect-modal h5 a {
  color: #85bce3 !important;
}

  #components-reconnect-modal h5 a:hover {
    color: #c3d7e5 !important;
  }

#components-reconnect-modal button {
  margin: 5px auto;
  display: block;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  font-size: 1rem;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-image: initial;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  color: #ffffff;
  background-color: rgb(233 239 246 / 0%);
  border-color: rgb(199 204 210);
  transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

  #components-reconnect-modal button:hover {
    color: rgb(9 36 100);
    background-color: rgb(200 200 201);
    border-color: rgb(200 200 201);
  }

/*#endregion */

/*#region Common */

.header-background {
  background-image: url(../content/gradient.jpg);
  background-position: center top;
  background-size: cover;
}

.common-header {
  background-image: url(../content/learning.jpg);
  background-position: center top;
  background-size: cover;
  min-height: 300px;
  color: #fff;
  padding: 3rem;
  display: grid;
  place-content: center;
}

  .common-header .overlay {
    inset: 0;
    background-image: linear-gradient(45deg, #3897cfd1, #13131ed1);
  }

section.main {
  padding: 2rem;
  min-height: calc(100vh - 668px);
}

  section.main form {
    max-width: 700px;
    margin: auto;
  }

    section.main form fieldset {
      border: 1px solid #11173b;
      border-radius: 20px;
      padding: 5px 15px 10px 15px;
      margin-bottom: 20px;
    }

      section.main form fieldset legend {
        all: revert;
        width: auto;
        padding: 0 10px;
        color: #11173b;
        font-size: 1.5rem;
      }

.message-options {
  border-radius: 10px;
  color: #BA6114;
  border: 2px solid #BA6114;
  background: #E9ECEF;
  padding: 5px 10px 0 10px;
}

@media (max-width: 843px) {
  .common-header {
    padding: 25px;
    height: auto;
  }
}

@media (max-width:467px) {
  section.main form fieldset legend {
    font-size: 1.2rem;
  }
}

/*#endregion */

/*#region Carousel */

.carousel-container {
  max-width: 900px;
  margin: 30px auto;
}

  .carousel-container .carousel.slide {
    max-width: calc(100vw - 115px);
    margin: auto;
  }

.carousel-item {
  height: 121px;
}

  .carousel-item .col-md-3 {
    width: 188px;
    -moz-text-decoration-line: none;
    text-decoration-line: none;
  }

    .carousel-item .col-md-3 .card {
      border: none;
    }

      .carousel-item .col-md-3 .card .card-img {
        height: 121px;
        display: flex;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
      }

        .carousel-item .col-md-3 .card .card-img > div {
          flex: 1 1 auto;
          display: grid;
          place-content: center;
        }

          .carousel-item .col-md-3 .card .card-img > div img {
            max-height: 80px;
          }

      .carousel-item .col-md-3 .card span {
        width: 100%;
        display: inline-block;
        margin-top: 18px;
        font-size: 15px;
        text-transform: capitalize;
      }

        .carousel-item .col-md-3 .card span.platinum {
          color: #D9D7D2;
        }

        .carousel-item .col-md-3 .card span.gold {
          color: #F9D036;
        }

        .carousel-item .col-md-3 .card span.silver {
          color: #AFB1AC;
        }

        .carousel-item .col-md-3 .card span.bronze {
          color: #cd874f;
        }

.carousel-control-next,
.carousel-control-prev {
  display: flex;
  width: auto;
}

.carousel-control-prev {
  left: -48px;
}

.carousel-control-next {
  right: -48px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 4rem;
  height: 4rem;
  background-image: none;
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
}

@media (max-width: 874px) {
  .carousel-inner .carousel-item,
  .carousel-inner .carousel-item.active {
    -webkit-justify-content: center;
    justify-content: center;
  }

    .carousel-inner .carousel-item > .col-md-3 {
      display: none;
    }

      .carousel-inner .carousel-item > .col-md-3:first-child {
        display: block;
      }

  .carousel-item.active.carousel-item-start {
    transform: translate(-100%);
  }

  .carousel-item.active.carousel-item-end {
    transform: translate(100%);
  }
}

/* medium and up screens */
@media (min-width: 875px) {

  .carousel-inner .carousel-item-end.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }

  .carousel-inner .carousel-item-start.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
  transform: translateX(0);
}

@media (max-width: 499px), (min-width: 875px) and (max-width: 1080px) {
  .some-size {
    display: none;
  }
}

@media /*(min-width: 500px) and (max-width: 874px), */ (min-width: 1081px) {
  .some-size {
    display: block;
  }

  .carousel-container .carousel.slide {
    max-width: calc(100vw - 230px);
  }

  .carousel-control-prev {
    left: -105px;
  }

  .carousel-control-next {
    right: -105px;
  }
}

/*#endregion */

/*#region Nav */

nav {
  color: #fff;
  min-height: var(--navbar-height);
}

  nav .navbar-home-link {
    padding: 6px 0;
  }

    nav .navbar-home-link:hover {
      background-color: transparent !important;
    }

    nav .navbar-home-link img {
      width: 210px;
    }

  nav .navbar-toggler:focus {
    box-shadow: none;
  }

  nav .navbar-collapse a {
    color: #fff;
    cursor: pointer;
  }

    nav .navbar-collapse a:hover {
      color: #ffffffbd;
    }

  nav .navbar-collapse .nav-text-align {
    text-align: right;
  }

  nav .navbar-nav .login-links {
    position: relative;
  }

    nav .navbar-nav .login-links .overlay {
      display: none;
      position: fixed;
      inset: 0;
    }

      nav .navbar-nav .login-links .overlay.show {
        display: block;
      }

    nav .navbar-nav .login-links .ll-dropdown {
      display: none;
      position: absolute;
      right: 0;
      z-index: 1;
      border-radius: .5rem;
      padding: 7px;
      background-image: linear-gradient(135deg, #3897cf8a, #13131ed1);
      -moz-box-shadow: 2px 3px 7px 0 #3897cf;
      -webkit-box-shadow: 2px 3px 7px 0 #3897cf;
      box-shadow: 2px 3px 7px 0 #3897cf;
    }

      nav .navbar-nav .login-links .ll-dropdown.show {
        display: block;
      }

      nav .navbar-nav .login-links .ll-dropdown a {
        border-radius: .5rem;
        white-space: nowrap;
      }

        nav .navbar-nav .login-links .ll-dropdown a:hover {
          background: #ffffff45;
        }

@media (max-width: 991px) {
  .home nav .navbar-collapse {
    border-bottom: 1px solid #dee2e6;
  }

  nav .navbar-collapse {
    border-top: 1px solid #dee2e6;
    padding-top: .5rem;
  }

    nav .navbar-collapse .nav-text-align {
      text-align: center;
    }

  nav .navbar-nav .login-links .name {
    display: none;
  }

  nav .navbar-nav .login-links .ll-dropdown {
    display: block;
    position: relative;
    background: unset;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border-top: 2px solid #ffffff26;
    border-radius: 0;
  }

    nav .navbar-nav .login-links .ll-dropdown a:hover {
      background: none;
    }
}

@media (min-width: 1281px) {
  nav.navbar {
    padding-top: 1rem !important;
  }

  nav .navbar-home-link img {
    width: 369px;
  }

  nav .navbar-nav {
    gap: 1rem;
  }

  nav .nav-text-align {
    font-size: 1.5rem;
  }
}

/*#endregion */

/*#region Section 1 */

.section-1 {
  display: grid;
  place-content: center;
  min-height: calc(100vh - 80px);
  font-size: 3rem;
  line-height: 1.1;
}

  .section-1 .header-title {
    font-weight: 700;
    margin: auto;
  }

    .section-1 .header-title .header .alt-colour {
      color: #70a6c7;
    }

    .section-1 .header-title div.small {
      font-size: 1rem;
      line-height: 1;
      font-weight: normal;
      text-align: center;
    }

.blink-span {
  border-right: .05em solid;
  animation: caret 1s steps(1) infinite;
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}

@media (min-width: 1171px) {
  .section-1 {
    min-height: calc(100vh - 130px);
    font-size: 4rem;
  }

    .section-1 .header-title div.small {
      font-size: 1.5vw;
    }
}

/*#endregion */

/*#region Section 2 */

.section-2 {
  /*height: 150px;*/
}

  .section-2 h1 {
    color: #00569e;
    text-align: center;
    font-weight: 700;
  }

/*#endregion */

/*#region Section 3 */

.section-3 {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  color: #fff;
}

  .section-3 .text-gradient {
    background-image: url(../content/back-gradient.svg);
    background-position: center top;
    background-size: cover;
    min-height: 600px;
    max-width: 70%;
    padding: 30px;
    line-height: 1.1;
  }

    .section-3 .text-gradient h4 {
      font-weight: 700;
    }

  .section-3 .side-image {
    background-image: url(../content/man-on-phone.jpg);
    background-position: center top;
    background-size: cover;
  }

  .section-3 .quote {
    bottom: 45px;
    background: #00569e;
    max-width: 500px;
    left: 40%;
    padding: 30px;
    font-size: 14px;
  }

    .section-3 .quote i.right {
      top: -60px;
      right: -55px;
    }

    .section-3 .quote i.left {
      bottom: -60px;
      left: -55px;
    }

@media (max-width: 953px) {
  .section-3 .quote {
    left: 25%;
  }
}

@media (max-width: 767px) {
  .section-3 {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

    .section-3 h4 {
      font-weight: 600;
    }

    .section-3 .text-gradient {
      max-width: 100%;
      min-height: unset;
    }

      .section-3 .text-gradient > div {
        max-width: 500px;
        padding: 40px;
      }

    .section-3 .side-image {
      min-height: 500px;
      max-width: 100%;
    }

    .section-3 .quote {
      left: 50%;
      width: calc(100% - 70px);
      transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
  .section-3 {
    min-height: 100vh;
  }

    .section-3 .text-gradient {
      font-size: 1.5rem;
    }

      .section-3 .text-gradient > div {
        max-width: 700px;
        margin: auto;
      }

      .section-3 .text-gradient h4 {
        font-size: 2rem;
      }
}

@media (min-width: 1440px) {
  .section-3 .text-gradient {
    font-size: 1.2vw;
    line-height: 1.5;
  }

    .section-3 .text-gradient > div {
      max-width: 60vw;
      margin: 10vw;
    }

    .section-3 .text-gradient h4 {
      font-size: 2.5vw;
      max-width: 50vw;
    }

  .section-3 .quote {
    bottom: 4rem;
    max-width: 40vw;
    font-size: 1.2rem;
  }

    .section-3 .quote i.right {
      top: -75px;
      right: -55px;
    }

    .section-3 .quote i.left {
      bottom: -75px;
      left: -55px;
    }
}

@media (min-width: 1800px) {
  .section-3 .quote {
    font-size: 1.5rem;
  }

    .section-3 .quote i.right {
      top: -90px;
      right: -100px;
    }

    .section-3 .quote i.left {
      bottom: -90px;
      left: -100px;
    }
}

/*#endregion */

/*#region Section 4 & 5 */

.section-4,
.section-5 {
  background-position: center top;
  background-size: cover;
}

.section-4 {
  /*background-image: url(../content/gemora.jpg);*/
  color: #00569e;
}

.section-5 {
  background-image: url(../content/back-gradient.svg);
  color: #fff;
}

  .section-4 > div,
  .section-5 > div {
    max-width: 758px;
    margin: auto;
  }

@media (min-width: 1024px) {
  .section-4,
  .section-5 {
    display: grid;
    min-height: 100vh;
    font-size: 1.25vw;
  }

    .section-4 > div,
    .section-5 > div {
      max-width: 72vw;
    }

    .section-4 h2,
    .section-5 h2 {
      font-size: 3.5vw;
    }

    .section-4 h3 {
      font-size: 2.3vw;
    }
}

/*#endregion */

/*#region Section 6 */

.section-6 {
  background-image: url(../content/learning.jpg);
  background-position: center top;
  background-size: cover;
  height: 545px;
  color: #fff;
  padding: 3rem;
}

  .section-6 .overlay {
    inset: 0;
    background-image: linear-gradient(45deg, #3897cfd1, #13131ed1);
  }

  .section-6 .circles-container {
    max-width: 758px;
    margin: auto;
    position: relative;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .section-6 .circle {
    display: grid;
    grid-template-columns: 1fr;
    width: 175px;
  }

    .section-6 .circle .line {
      grid-row-start: 1;
      grid-column-start: 1;
      margin-top: -48px !important;
      width: 4px;
      background-color: #fff;
      height: 200px;
    }

      .section-6 .circle .line i {
        position: absolute;
        top: 188px;
        left: -5px;
      }

    .section-6 .circle .circle-image {
      grid-row-start: 1;
      grid-column-start: 1;
      background-image: url(../content/ball.png);
      background-position: center top;
      background-size: cover;
      width: 120px;
      height: 120px;
      display: grid;
      place-content: center;
      margin: 0 auto;
    }

      .section-6 .circle .circle-image .image {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 30px;
        height: 25px;
        margin: 0 auto 10px;
      }

    .section-6 .circle:nth-child(1) .circle-image .image {
      background-image: url(../content/hands.png);
    }

    .section-6 .circle:nth-child(2) .circle-image .image {
      background-image: url(../content/card.png);
    }

    .section-6 .circle:nth-child(3) .circle-image .image {
      background-image: url(../content/book.png);
    }

    .section-6 .circle:nth-child(4) .circle-image .image {
      background-image: url(../content/calendar.png);
      height: 34px;
    }

    .section-6 .circle .circle-image .text {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .section-6 .circle .circle-image .main-text {
      line-height: 16px;
      font-weight: 700;
    }

  .section-6 .quote-container {
    width: calc(100% - 150px);
    max-width: 500px;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-6 .quote {
    background-color: #fff;
    color: #00569e;
    padding: 30px;
    font-size: 14px;
    border: 5px solid;
  }

    .section-6 .quote i.right {
      top: -75px;
      right: -90px;
      color: #fff;
    }

    .section-6 .quote i.left {
      bottom: -75px;
      left: -90px;
      color: #fff;
    }

@media (max-width: 843px) {
  .section-6 {
    padding-top: 25px;
    height: auto;
  }

    .section-6 .circles-container {
      max-width: 550px;
      gap: 1rem;
      -webkit-justify-content: space-around;
      justify-content: space-around;
      margin-bottom: 200px;
    }

    .section-6 .circle .line {
      margin-top: -25px !important;
      height: 175px;
    }

      .section-6 .circle .line i {
        top: 163px;
      }

    .section-6 .main-text {
      margin-top: 1rem;
      margin-bottom: 3rem;
    }

    .section-6 .circle:not(:last-child) .main-text {
    }
}

@media (max-width: 425px) {
  .section-6 .quote {
    padding: 15px;
  }

    .section-6 .quote i.right {
      top: -60px;
      right: -75px;
    }

    .section-6 .quote i.left {
      bottom: -60px;
      left: -75px;
    }
}

@media (max-width: 378px) {
  .section-6 .circles-container {
    margin-bottom: 250px;
  }

  .section-6 .quote {
    width: calc(100% - 100px);
  }

    .section-6 .quote i.right {
      top: -45px;
      right: -60px;
      font-size: 3rem;
    }

    .section-6 .quote i.left {
      bottom: -45px;
      left: -60px;
      font-size: 3rem;
    }
}

@media (min-width: 1440px) {
  .section-6 {
    min-height: 100vh;
  }

    .section-6 .circles-container {
      max-width: 72vw;
    }

    .section-6 .circle {
      width: 200px;
    }

      .section-6 .circle .line {
        height: 20vw;
      }

        .section-6 .circle .line i {
          top: 19.3vw;
        }

      .section-6 .circle .circle-image {
        width: 15vw;
        height: 15vw;
      }

        .section-6 .circle .circle-image .image {
          width: 4vw;
          height: 3vw;
        }

      .section-6 .circle:nth-child(4) .circle-image .image {
        height: 4.5vw;
      }

      .section-6 .circle .circle-image .text {
        font-size: 3rem;
      }

      .section-6 .circle .main-text {
        margin-top: 1.5rem;
        font-size: 1.5rem;
      }

    .section-6 .quote {
      bottom: 3.5rem;
      max-width: 40vw;
      font-size: 1.2rem;
      border: 10px solid;
    }

      .section-6 .quote i.right {
        top: -80px;
        right: -80px;
        font-size: 4rem;
      }

      .section-6 .quote i.left {
        bottom: -80px;
        left: -80px;
        font-size: 4rem;
      }
}

/*#endregion */

/*#region Section 7 */

.section-7 h3 {
  color: #00569e;
}

.section-7 .btn-group {
  max-width: 500px;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
}

  .section-7 .btn-group a {
    -webkit-text-decoration: none;
    text-decoration: none;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }

    .section-7 .btn-group a:hover {
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }

  .section-7 .btn-group .main {
    background: #131d44;
    color: #fff;
    padding: 5px 25px 5px 17px;
    clip-path: polygon(100% 0%, 94% 50%, 100% 100%, 0 100%, 0 0);
    position: relative;
    border: 0;
    -webkit-text-decoration: none;
    text-decoration: none;
  }

  .section-7 .btn-group .ball {
    width: 34px;
    height: 34px;
    background: #131d44;
    margin-left: -2px;
    border-radius: 50%;
  }

  .section-7 .btn-group a:hover .ball {
    -moz-transform: translate(10px, 10px);
    -ms-transform: translate(10px, 10px);
    -o-transform: translate(10px, 10px);
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }

@media (max-width: 332px) {
  .section-7 .btn-group button {
    padding: 5px 20px 5px 15px;
  }
}

@media (min-width: 1800px) {
  .section-7 {
    font-size: 1.75vw;
  }

    .section-7 h3 {
      font-size: 2.5vw;
    }

    .section-7 .btn-group {
      max-width: 60vw;
    }

      .section-7 .btn-group .main {
        padding: 5px 3vw 5px 2vw;
      }

      .section-7 .btn-group .ball {
        width: 3.2vw;
        height: 3.2vw;
      }
}

/*#endregion */

/*#region Section 8 */

.section-8 {
  background-image: url(../content/back-gradient.svg);
  background-position: center top;
  background-size: cover;
  color: #fff;
}

  .section-8 .text {
    max-width: 1000px;
    margin: auto;
  }

    .section-8 .text h1 {
      font-size: 3rem;
      font-weight: 700;
    }

  .section-8 .quote {
    background-color: #fff;
    color: #00569e;
    max-width: 600px;
    padding: 15px 30px;
    font-size: 12px;
    border: 5px solid;
    line-height: 1;
    margin: 3rem auto;
  }

    .section-8 .quote i.right {
      top: -60px;
      right: -75px;
      color: #fff;
    }

    .section-8 .quote i.left {
      bottom: -60px;
      left: -75px;
      color: #fff;
    }

@media (min-width: 1440px) {
  .section-8 {
    min-height: 100vh;
    font-size: 1.75vw;
    line-height: 1.5;
  }

    .section-8 .text {
      max-width: 60vw;
    }

      .section-8 .text h1 {
        font-size: 4vw;
      }

    .section-8 .quote {
      max-width: 40vw;
      font-size: 1rem;
      border: 10px solid;
    }

      .section-8 .quote i.right {
        top: -75px;
        right: -55px;
      }

      .section-8 .quote i.left {
        bottom: -75px;
        left: -55px;
      }
}

@media (min-width: 1800px) {
  .section-8 .text {
    margin: 0;
  }

  .section-8 .quote {
    max-width: 40vw;
    font-size: 1.2rem;
    border: 10px solid;
    margin-right: 5vw;
  }

    .section-8 .quote i.right {
      top: -85px;
      right: -100px;
    }

    .section-8 .quote i.left {
      bottom: -85px;
      left: -100px;
    }
}

/*#endregion */

/*#region Section 9 */

.section-9 {
  background-image: url(../content/light-waves.jpg);
  background-position: center top;
  background-size: cover;
  color: #00569e;
}

  .section-9 h1 {
    font-weight: 700;
  }

  .section-9 .package-container {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 1100px;
    margin: 3rem auto;
    gap: 1.5rem;
    row-gap: 3rem;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .section-9 .package {
    width: 250px;
    cursor: default;
  }

    .section-9 .package:hover {
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      filter: drop-shadow(1px 0px 0px #196296) drop-shadow(-1px 0px 0px #196296) drop-shadow(0px 1px 0px #196296) drop-shadow(0px -1px 0px #196296) drop-shadow(1px 1px 0px #196296) drop-shadow(-1px -1px 0px #196296) drop-shadow(-1px 1px 0px #196296) drop-shadow(1px -1px 0px #196296);
    }

    .section-9 .package .title {
      background-color: #196296;
      color: #fff;
      padding: 10px;
      font-size: 20px;
      font-weight: 600;
    }

    .section-9 .package:hover .title {
      font-size: 24px;
    }

    .section-9 .package .most-popular {
      background: linear-gradient(90deg, #771521 0, #e72027 15px, #b10508 50px, #c20101 100px, #c20101 100px, #b10508 150px, #dc1f26 185px, #771521 200px);
      color: #fff;
    }

    .section-9 .package .body {
      position: relative;
      background-color: #d9d9d9;
      min-height: 390px;
      line-height: 1;
      margin-bottom: -0.6px;
      padding: 10px;
      font-weight: 600;
    }

    .section-9 .package .most-popular ~ .body {
      min-height: 366px;
    }

      .section-9 .package .most-popular ~ .body .amount {
        margin-bottom: 1.5rem;
      }

    .section-9 .package .body .amount {
      margin-bottom: 2.5rem;
      font-weight: 700;
      font-size: 18px;
    }

    .section-9 .package .body a {
      position: absolute;
      bottom: 5px;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      background-color: #196296;
      border: 1px solid #196296;
      line-height: 1;
    }

    .section-9 .package .clip {
      background-color: #d9d9d9;
      height: 40px;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
    }

@media (max-width: 1167px) {
  .section-9 .package-container {
    max-width: 900px;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }

  .section-9 .package {
    width: 200px;
  }

    .section-9 .package .body {
      min-height: 425px;
      padding: 5px;
    }

    .section-9 .package .most-popular ~ .body {
      min-height: 401px;
    }
}

@media (max-width: 967px) {
  .section-9 .package-container {
    max-width: 640px;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }

  .section-9 .package {
    width: 250px;
  }

    .section-9 .package .body {
      min-height: 390px;
      padding: 10px;
    }

    .section-9 .package .most-popular ~ .body {
      min-height: 366px;
    }
}

@media (min-width: 1800px) {
  .section-9 {
    min-height: 100vh;
    font-size: 1.75vw;
  }

    .section-9 h1 {
      font-size: 3vw;
    }

    .section-9 .package-container {
      max-width: 70vw;
    }

    .section-9 .package {
      width: 16vw;
      font-size: 1vw;
    }

      .section-9 .package .title {
        font-size: 1.75vw;
      }

      .section-9 .package .body {
        min-height: 25vw;
      }

        .section-9 .package .body .small,
        .section-9 .package .body small {
          font-size: 1vw;
        }

        .section-9 .package .body .amount {
          font-size: 1.5vw;
        }

        .section-9 .package .body a {
          font-size: 1.3vw;
        }

      .section-9 .package .most-popular ~ .body {
        min-height: calc(25vw - 1.75vw);
      }
}

@media (min-width: 1920px) {
  .section-9 .package {
    width: 16vw;
    font-size: 1.2vw;
  }
}

/*#endregion */

/*#region Section 10 */

.section-10 {
  background-image: url(../content/gradient-flip.jpg);
  background-position: center top;
  background-size: cover;
  color: #fff;
  padding: 3rem;
  text-align: center;
  min-height: 100vh;
}

  .section-10 .line-center {
    width: 2px;
    background: #fff;
    height: 30px;
    margin: auto;
  }

  .section-10 .steps-container {
    max-width: 900px;
    margin: 4.5rem auto;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .section-10 .step {
    position: relative;
    border: 1px solid #266da0;
    background: #131d44;
    line-height: 1;
    padding: 35px 20px;
    max-width: 200px;
  }

    .section-10 .step .circle {
      display: grid;
      place-content: center;
      background-image: url(../content/ball.png);
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      position: absolute;
      top: -53px;
      left: 50%;
      transform: translateX(-50%);
      width: 75px;
      height: 75px;
    }

      .section-10 .step .circle .circle-image {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
      }

    .section-10 .step:nth-child(1) .circle .circle-image {
      background-image: url(../content/speech-bubbles.png);
      height: 30px;
      width: 45px;
    }

    .section-10 .step:nth-child(2) .circle .circle-image {
      background-image: url(../content/hands-alt.png);
      height: 39px;
      width: 59px;
    }

    .section-10 .step:nth-child(3) .circle .circle-image {
      background-image: url(../content/signing.png);
      height: 50px;
      width: 55px;
    }

    .section-10 .step:nth-child(4) .circle .circle-image {
      background-image: url(../content/hand-heart.png);
      height: 45px;
      width: 45px;
    }

    .section-10 .step .number {
      color: #196296;
    }

    .section-10 .step .link {
      background-image: url(../content/link.png);
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      height: 45px;
      width: 61px;
      position: absolute;
      top: 50%;
      right: -48px;
      transform: translateY(-50%);
      z-index: 1;
    }

@media (max-width: 1023px) {
  .section-10 .steps-container {
    -webkit-justify-content: space-around;
    justify-content: space-around;
    max-width: 432px;
    row-gap: 5rem;
  }

  .section-10 .step:nth-child(2) .link {
    display: none;
  }
}

@media (max-width: 527px) {
  .section-10 .step .link {
    display: none;
  }
}

@media (min-width: 1800px) {
  .section-10 {
    display: grid;
    place-content: center;
    font-size: 1.5vw;
  }

    .section-10 h2 {
      font-size: 4vw;
    }

    .section-10 .steps-container {
      font-size: initial;
      max-width: 1100px;
    }

    .section-10 .step {
      line-height: 1.5;
      max-width: 250px;
    }
}

/*#endregion */

/*#region Section 11 */

.section-11 {
  background-image: url(../content/learning.jpg);
  background-position: center top;
  background-size: cover;
  position: relative;
  padding: 0 20px;
}

  .section-11 .overlay {
    position: absolute;
    inset: 0;
    background-color: #ffffffcc;
    backdrop-filter: blur(2px);
  }

  .section-11 .title {
    position: relative;
    color: #143a6d;
    text-align: center;
    max-width: 800px;
    margin: auto;
    padding: 35px 0;
    font-weight: 700;
  }

  .section-11 .video-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 50px;
    max-width: 500px;
    margin: auto;
  }

    .section-11 .video-container .video-image {
      grid-row-start: 1;
      grid-column-start: 1;
      place-content: center;
      background-image: url(../content/video-pc-image.png);
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      width: calc(100% - 40px);
      aspect-ratio: 1.18666 / 1;
      margin: auto;
    }

    .section-11 .video-container video {
      grid-row-start: 1;
      grid-column-start: 1;
      margin: calc(100% - 98%) auto 0;
      max-width: calc(100% - 54px);
      cursor: pointer;
    }

@media (min-width: 1800px) {
  .section-11 {
    min-height: 80vh;
    display: grid;
    place-content: center;
  }

    .section-11 .title {
      max-width: 1100px;
      font-size: 2vw;
    }
}

/*#endregion */

/*#region Section 12 */

.section-12 {
  background-image: url(../content/gradient-flip.jpg);
  background-position: center top;
  background-size: cover;
  color: #fff;
  padding: 3rem;
  text-align: center;
}

  .section-12 .title {
    font-weight: 700;
    font-size: 4rem;
  }

  .section-12 .line-center {
    width: 2px;
    background: #fff;
    height: 30px;
    margin: auto;
  }

  .section-12 .expander {
    margin: 50px auto;
    max-width: 950px;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 0 1rem;
  }

    .section-12 .expander .expand-it.show {
      border: 1px solid;
      border-radius: .75rem;
      padding: 15px;
      margin: 15px 0;
      background: #00569e;
    }

    .section-12 .expander .expand-header {
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      font-weight: bold;
      font-size: 18px;
      margin: 0 0 15px;
      cursor: pointer;
    }

      .section-12 .expander .expand-header span {
        text-align: left;
        padding-right: 10px;
      }

      .section-12 .expander .expand-header i {
        font-size: 32px;
        font-weight: 400;
      }

    .section-12 .expander .expand-body {
      text-align: left;
    }

      .section-12 .expander .expand-body a {
        overflow-wrap: break-word;
      }

      .section-12 .expander .expand-body .bold {
        font-weight: bold;
      }


@media (min-width: 1800px) {
  .section-12 .title {
    font-size: 6vw;
  }
}

/*#endregion */

/*#region Section 13 */

.section-13 {
  padding: 3rem;
}

  .section-13 .title {
    color: #143a6d;
    font-weight: 700;
  }

    .section-13 .title ~ p {
      color: #00569e;
    }

  .section-13 .btn-group {
    -webkit-text-decoration: none;
    text-decoration: none;
    color: #fff;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }

    .section-13 .btn-group:hover {
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }

    .section-13 .btn-group .main {
      background: #131d44;
      color: #fff;
      padding: 8px 35px 5px 27px;
      clip-path: polygon(100% 0%, 94% 50%, 100% 100%, 0 100%, 0 0);
      position: relative;
      border: 0;
      line-height: .75;
      width: 200px;
      font-weight: 600;
    }

      .section-13 .btn-group .main small {
        font-size: 9px;
      }

    .section-13 .btn-group .ball {
      width: 37px;
      height: 37px;
      background: #131d44;
      margin-left: -2px;
      border-radius: 50%;
    }

    .section-13 .btn-group:hover .ball {
      -moz-transform: translate(10px, 10px);
      -ms-transform: translate(10px, 10px);
      -o-transform: translate(10px, 10px);
      -webkit-transform: translate(10px, 10px);
      transform: translate(10px, 10px);
      -moz-transition: 0.4s ease-in-out;
      -o-transition: 0.4s ease-in-out;
      -webkit-transition: 0.4s ease-in-out;
      transition: 0.4s ease-in-out;
    }

@media (min-width: 1800px) {
  .section-13 {
    font-size: 1.75vw;
  }

    .section-13 .btn-group .main {
      width: 20vw;
    }

      .section-13 .btn-group .main small {
        font-size: 1vw;
      }

    .section-13 .btn-group .ball {
      width: 60px;
      height: 60px;
    }
}

/*#endregion */

/*#region Footer */

footer {
  background-image: url(../content/gradient-reverse.jpg);
  background-position: center top;
  background-size: cover;
  color: #fff;
  padding: 3rem;
  position: relative;
}

  footer .main-footer {
    text-align: left;
    gap: 1rem;
  }

  footer a {
    color: #fff;
    -webkit-text-decoration: none;
    text-decoration: none;
  }

    footer a:hover {
      color: #ffffff4d;
      -webkit-text-decoration: none;
      text-decoration: none;
    }

  footer .links {
    max-width: 950px;
    margin: auto;
    -moz-column-gap: 1.5rem;
    -ms-column-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }

  footer .accredits p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    background: #121421;
  }

@media (max-width: 553px) {
  footer .main-footer {
    max-width: 300px;
    row-gap: 1.5rem;
  }
}

@media (max-width: 332px) {
  footer {
    padding: 2rem;
  }
}

@media (min-width: 1800px) {
  footer {
    font-size: 1.1vw;
  }
}

/*#endregion */

/*#region Contact */

.contact .main .contact-icons {
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  margin: auto;
  max-width: 1200px;
}

  .contact .main .contact-icons > div {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

    .contact .main .contact-icons > div > div {
      width: 200px;
    }

.contact .main svg {
  max-width: 60px
}

.contact .main .contact-form {
  max-width: 900px;
  margin: auto;
}

@media (max-width: 1215px) {
  .contact .main .contact-icons {
    max-width: 600px;
    gap: 2rem;
  }
}

/*#endregion */

/*#region Form Names */

form .names-box {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  gap: 1rem;
}

  form .names-box > div {
    width: 50%;
  }

@media (max-width:467px) {
  form .names-box {
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }

    form .names-box > div {
      width: 100%;
    }
}

/*#endregion */

/*#region Log In */



/*#endregion */

/*#region Statement */

#statement {
  background: #fff;
  color: #000;
  box-shadow: 5px 5px 10px #333;
  padding: 10px 20px;
  margin: 20px auto 40px auto;
  max-width: 850px;
}

  #statement #bsd {
    font-size: 10px;
    margin-bottom: 3px;
  }

  #statement #header {
    border: 1px solid #000;
    border-width: 1px 1px 0 1px;
    height: 160px;
    background: #fff url(/images/LogoTall.png) center center no-repeat;
  }

  #statement #noStatementMessage {
    border: 1px solid #000;
  }

#statementLogo {
  border: 1px solid #000;
  border-width: 1px 1px 0 1px;
}

#statement #statementTitle {
  border: 1px solid #000;
  border-width: 1px 0 1px 1px;
  padding-top: 3px;
  color: var(--achim-orange);
  font-weight: bold;
  font-size: 26px;
}

#statement #statementPeriod {
  border: 1px solid #000;
  padding-top: 3px;
  font-size: smaller;
}

#statement #investmentDetails {
  margin-top: 15px;
}

  #statement #investmentDetails p span {
    font-weight: bold;
  }

#statement #statementReport {
  margin-top: 10px;
}

#statement table {
  margin-top: 15px;
  border-collapse: collapse;
  border: 1px solid #11173b;
}

  #statement table th, #statement table td {
    border: 1px solid var(--achim-orange);
    padding: 5px 10px;
  }

  #statement table th {
    color: #fff;
    background-color: var(--achim-orange);
    height: 1em;
  }

/*#endregion */

/*#region Admin */

.nav-link span {
  margin-right: 5px;
}

/*#endregion */

/*#region Fade In */

.quote {
  transition: all 0.8s;
  opacity: 0;
  transform: translateY(60px);
}

  .quote.inview {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
  }

/*#endregion */
