.headline {
  font-size: 35px;
}

.cta {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none !important;
}
.cta.cta-text {
  color: #F0B64F;
}

.go__back {
  position: relative;
  padding-left: 50px;
  display: flex;
  align-items: center;
  transition: all 0.25s;
  font-weight: 600;
}
.go__back:hover {
  transform: translateX(-5px);
}
.go__back::before {
  content: "";
  position: absolute;
  left: 0;
  width: 40px;
  height: 30px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDkiIGhlaWdodD0iMzciIHZpZXdCb3g9IjAgMCA0OSAzNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQ4LjUgMjUuMjY3M0wyNS43NSAyNS4yNjczTDI1Ljc1IDM0LjMwOEMyNS43NSAzNC40NzEzIDI1LjU2NDggMzQuNTY1OCAyNS40MzI1IDM0LjQ2OThMMyAxOC4xOTI3TDI1LjQzMjUgMS45MTU1QzI1LjU2NDggMS44MTk1NiAyNS43NSAxLjkxNDAyIDI1Ljc1IDIuMDc3MzdMMjUuNzUgMTEuMTE4TDQ4LjUgMTEuMTE4IiBzdHJva2U9IiNGMEI2NEYiIHN0cm9rZS13aWR0aD0iMyIvPgo8L3N2Zz4K) center/100% no-repeat;
}

.footer__logo {
  display: flex;
  justify-content: center;
  position: relative;
}
.footer__logo .brand {
  background-color: #F0B64F;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 75px;
  border-radius: 15px 15px 0 0;
}

@font-face {
  font-family: "adineuePROCyrBoldWeb";
  src: url(../fonts/adineuePROCyr-BoldWeb.ttf);
}
@font-face {
  font-family: "Avenir Next Regular";
  src: url(../fonts/avenir_next/Metropolis-Regular.otf);
}
@font-face {
  font-family: "Avenir Next Bold";
  src: url(../fonts/avenir_next/Metropolis-Bold.otf);
}
@font-face {
  font-family: "Avenir Next Thin";
  src: url("/assets/fonts/avenir_next/Metropolis-Thin.otf");
  src: url(../fonts/avenir_next/Metropolis-Thin.otf);
}
* {
  font-family: "Avenir Next Regular", sans-serif;
}

body * {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, .btn {
  font-family: "adineuePROCyrBoldWeb", sans-serif;
}

.btn-lg {
  padding: 1rem 1rem;
}
.btn-lg#getInTouch {
  min-width: 25vw;
}

.bg-primary {
  background-color: #c01f59 !important;
}

p {
  line-height: 1.5;
}

img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation: fadeBlur 0.5s ease-in-out;
}
img.lazy {
  opacity: 0;
}

.fade-img {
  transition: opacity 0.15s ease-out;
}

.fade-blur {
  animation: fadeBlur 2s ease-in-out;
}

@keyframes fadeBlur {
  from {
    filter: blur(10px);
  }
  to {
    filter: blur(0);
  }
}
@keyframes scale {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.website-design-loader {
  z-index: 1001;
  background: rgba(255, 255, 255, 0.7);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.website-design-loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.waiting-loader-scaler {
  transform: scale(0);
  opacity: 0;
  animation: scale 0.4s ease forwards 0.5s, fadein 0.4s ease forwards 0.5s;
}

.waiting-loader-spinner, .waiting-loader-spinner:after {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.waiting-loader-spinner {
  position: relative;
  display: block;
  margin: 0 auto;
  border: 6px solid #263183;
  border-left: 6px solid #a2a6aa;
  animation: spin 1s infinite linear forwards;
  transform-origin: center center;
  transform: translateZ(0);
  transition: all 0.1s;
}

.waiting-loader-circle {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #263183;
  transform: scale(0);
}

.waiting-loader-spinner {
  position: relative;
  display: block;
  margin: 0 auto;
  border: 6px solid #3441a3;
  border-left: 6px solid #fff;
  animation: spin 1s infinite linear forwards;
  transform-origin: center center;
  transform: translateZ(0);
  transition: all 0.1s;
}

.font-weight-bold {
  font-family: "Avenir Next Bold";
}

.btn {
  border-radius: 0.5rem;
}

.btn-primary {
  background-color: #c01f59 !important;
  border-color: #c01f59 !important;
  color: #fdb447 !important;
  transition: all 0.25s;
}
.btn-primary:hover {
  opacity: 0.8;
}
.btn-secondary {
  background-color: #fdb447 !important;
  border-color: #fdb447 !important;
  color: #263183 !important;
  transition: all 0.25s;
}
.btn-secondary:hover {
  opacity: 0.8;
}
.btn-secondary:focus {
  box-shadow: initial;
}

.text-secondary {
  color: #fdb447 !important;
}

body {
  background-color: #263183;
}

main {
  position: relative;
}

section {
  position: relative;
}
section h1.tagline {
  line-height: 1;
}
section h3.tagline {
  letter-spacing: 1.4px;
}
section.banner-section {
  background-color: #3441a3;
}
section.learning-section {
  background-color: #263183;
}
section.learning-section .mr- {
  margin-right: -7vw;
}
section.video-section {
  background-color: #263183;
}
section.video-section .list li {
  list-style: none;
  display: flex;
  position: relative;
}
section.video-section .list li:before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #BF2F58;
  border-radius: 50%;
  top: 0.5rem;
}
section.video-section .list li span {
  color: #fff;
  font-size: 1rem;
}
section.video-section .video-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section.video-section .video-wrapper .paper-bag {
  position: absolute;
  right: -20%;
  bottom: -35%;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3));
  z-index: 1;
}
section.video-section .video-wrapper .video-js {
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 1.2rem;
  overflow: hidden;
}
section.video-section .video-wrapper .box .box-body {
  border-radius: 1rem;
  position: relative;
}
section.video-section .video-wrapper .box .box-body:before {
  content: "";
  position: absolute;
  width: 104%;
  height: 106%;
  border: 10px solid #E4448B;
  border-radius: 1.5rem;
  top: -2.8%;
  left: -2.1%;
  z-index: 2;
  box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.4);
}
section.video-section .video-wrapper .box .box-body:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 104%;
  border-right: 10px solid #E4448B;
  border-radius: 1.65rem;
  top: -2%;
  left: 3.5%;
  z-index: 1;
}
section.video-section .video-wrapper .box .box-feet {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 8px;
}
section.video-section .video-wrapper .box .box-feet .f-wrapper {
  width: 100px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
section.video-section .video-wrapper .box .box-feet .f-wrapper div {
  height: 40px;
  width: 25px;
  background-color: #E4448B;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 -2px 0px 0px #E4448B;
}
section.speakers-section {
  background-color: #263183;
}
section.speakers-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  top: 60%;
  z-index: 0;
  background-color: #3441a3;
}
section.speakers-section .card {
  background-color: transparent;
  border: 0;
}
section.speakers-section .card .card-img-top {
  border-radius: 2rem !important;
  overflow: hidden;
  max-width: 200px;
}
section.speakers-section .card .card-body {
  padding: 1rem 0.25rem;
}
section.speakers-section .card .card-body p:nth-child(2) {
  font-size: 0.8rem;
}
section.clients-section {
  background-color: #3441a3;
}
section.clients-section .clients-list {
  background-color: #BF2F58;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  place-items: center;
  place-content: start;
  grid-gap: 0.35rem;
  border-radius: 2rem;
  box-shadow: 0 0px 10px -3px #000;
}
section.clients-section .clients-list .logo-wrapper img {
  max-width: 12vw;
  max-height: 80px;
}
section.contact-section {
  background-color: #263183;
}
section.contact-section .mr- {
  margin-left: -7vw;
}
#contactModal .modal-content {
  background-color: #BF1F58;
  border-radius: 1rem;
}
#contactModal .modal-content .close {
  cursor: pointer;
  transition: all 0.25s;
}
#contactModal form .invalid-tooltip {
  font-size: x-small;
  top: -0.65rem;
  left: -1rem;
  opacity: 0.8;
}
#contactModal form input {
  border-radius: 1rem;
  border-color: transparent !important;
  box-shadow: 0 0 0 1px rgba(253, 180, 71, 0.9058823529) !important;
  text-align: center;
}
#contactModal form button[type=submit] {
  min-width: 150px;
  border-radius: 0.5rem;
}

#subscribeModal .title {
  letter-spacing: 1px;
}
#subscribeModal .checkbox {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1.1;
}
#subscribeModal .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#subscribeModal .checkbox input:checked ~ .checkmark {
  background-color: transparent;
  border: 2px solid #ccc !important;
}
#subscribeModal .checkbox input:checked ~ .checkmark:after {
  display: block;
}
#subscribeModal .checkbox:hover input ~ .checkmark {
  background-color: rgba(255, 255, 255, 0.25);
}
#subscribeModal .checkbox .checkmark:after {
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
#subscribeModal .checkbox .agreement-text {
  padding-left: 2rem;
}
#subscribeModal .checkmark {
  position: absolute;
  top: 0;
  height: 20px;
  width: 19px;
  border: 2px solid #ccc;
  border-radius: 0;
  transition: all 0.25s ease;
}
#subscribeModal .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}
#subscribeModal .checkmark-invalid {
  position: absolute;
  top: 0;
  left: -10px;
  font-size: 1.5rem;
  line-height: 0.5;
}

#calendlyModal .close {
  position: absolute;
  left: 1rem;
  top: 1rem;
}

.course__title {
  font-weight: 900;
  font-size: 12px;
}

.course__img {
  border: 2px solid #F0B64F;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}

.course {
  text-decoration: none !important;
  transition: all 0.25s;
}
.course:hover {
  transform: translateY(-10px);
}

.active__player {
  background-color: rgb(6, 13, 68);
  border-radius: 15px;
  overflow: hidden;
}
.active__player.onLoad {
  outline: 2px solid #fdb447;
}

.to-load {
  opacity: 0;
  transition: 0.25s;
}
.to-load.onLoad {
  opacity: 1;
}

.watch__later {
  padding: 20px 5px 30px 15px;
  background-color: rgba(21, 34, 125, 0.75);
  border-radius: 15px;
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.course__modules {
  padding: 10px 20px 0 0px;
  margin-bottom: 0;
  overflow: scroll;
  max-height: calc(100% - 38.59px);
}
.course__modules li {
  display: flex;
  gap: 10px;
  padding: 0.735rem;
  transition: all 0.25s;
  border-radius: 10px;
  position: relative;
}
.course__modules li:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.15);
}
.course__modules li:hover, .course__modules li.active {
  background-color: rgb(6, 13, 68);
}
.course__modules li:hover::after, .course__modules li.active::after {
  display: none;
}
.course__modules li a:hover {
  text-decoration: none;
}
.course__modules li .thumbnail-wrapper {
  width: 140px;
  outline: 1px solid #fdb447;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .course__modules {
    overflow: scroll;
  }
  .watch__later {
    max-height: 500px;
  }
}
@media (max-width: 767px) {
  .watch__later {
    height: auto !important;
  }
  .watch__later .course__title {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  section h1.tagline {
    font-size: 3.7vw;
  }
  section h3.tagline {
    font-size: 2.7vw;
  }
  section.banner-section {
    height: 100vh;
  }
  section.clients-section .clients-list {
    min-height: 425px;
  }
  section.video-section .video-wrapper .box .box-body {
    width: 35vw;
    height: 20vw;
  }
  section.speakers-section .card {
    height: 506px;
  }
  section.contact-section .mr- {
    max-width: 800px;
  }
  #contactModal .modal-lg {
    max-width: 650px;
  }
}
@media (max-width: 991px) {
  main {
    scroll-snap-type: initial;
  }
  section {
    height: auto;
  }
  section.learning-section [class*=col-]:nth-child(1) {
    order: 2;
  }
  section.learning-section .mr- {
    margin-right: 0;
  }
  section.contact-section [class*=col-]:nth-child(1) {
    order: 2;
  }
  section.contact-section .mr- {
    margin-left: 0;
  }
  section.contact-section .mr-- {
    margin-left: 0;
  }
  section.speakers-section .card-group p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  section .tagline {
    font-size: 2rem;
  }
  section.speakers-section:before {
    content: initial;
  }
  section.speakers-section .card-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  section.speakers-section .card {
    height: 385px;
  }
  section.speakers-section .card .card-img-top {
    border-radius: 1rem !important;
  }
  section.speakers-section .card .card-body p:nth-child(2) {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}
@media (min-width: 576px) {
  #subscribeModal .modal-dialog {
    max-width: 550px;
  }
}
@media (max-width: 575px) {
  section.video-section .video-wrapper video {
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.video-section .video-wrapper .paper-bag {
    right: -20%;
    bottom: -35%;
  }
  section.video-section .video-wrapper .box .box-body {
    width: 375px;
    height: 220px;
  }
  section.video-section .video-wrapper .box .box-feet {
    margin-bottom: 6px;
  }
  section.video-section .video-wrapper .box .box-feet .f-wrapper div {
    width: 20px;
  }
  section.clients-section .clients-list .logo-wrapper img {
    max-width: 15vw !important;
    max-height: 80px !important;
  }
}
@media (max-width: 425px) {
  section.video-section .video-wrapper .box .box-body {
    width: 300px;
    height: 192px;
  }
}/*# sourceMappingURL=ss.style.css.map */