@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
/********************************
* Base Styles 
*********************************/
/* reset by boostrap */
body, html {
  font-family: "Montserrat", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  line-height: 1.5;
}

html {
  font-size: 55%;
}

@media (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  min-height: 100vh;
  margin: 0;
  position: relative;
  padding-bottom: 220px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 200px;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  transition: all 0.4s ease;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3 {
  font-family: "Montserrat", Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  h1, h2, h3 {
    line-height: 1.33;
  }
}

h1, .large-title {
  font-size: 3.8rem;
  font-weight: 900;
}

@media (min-width: 992px) {
  h1, .large-title {
    font-size: 5rem;
  }
}

h2 {
  font-size: 3rem;
}

@media (min-width: 992px) {
  h2 {
    font-size: 4.5rem;
  }
}

h3 {
  font-size: 2rem;
}

p, ul li {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  font-size: 1.8rem;
  position: relative;
  padding-left: 3rem;
}

ul li::before {
  content: "\f34c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #1E2E41;
  position: absolute;
  left: 0;
}

.no-styling-list {
  padding: 0;
}

.no-styling-list li {
  margin-bottom: 0;
}

.no-styling-list li:before {
  display: none;
}

@media (min-width: 992px) {
  .container-md {
    max-width: 1000px;
  }
}

.green-button {
  font-family: "Montserrat", Helvetica, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background-color: #33B772;
  border: 1px solid #707070;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.29);
  border-radius: 12px;
  padding: 1.3rem 4rem;
  position: relative;
  display: inline-block;
  max-width: 100%;
  text-align: center;
  line-height: 1;
  transition: 0.4s ease all;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
  transition: 0.4s ease all;
}

@media (min-width: 992px) {
  .green-button {
    padding: 2rem 5rem;
    font-size: 3.8rem;
  }
}

.green-button:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.28);
  color: #fff;
  background-color: #2da366;
}

.green-button-plain {
  background-color: #33B673;
  font-size: 2.3rem;
  font-weight: 700;
  border-radius: 5px;
  border: 0;
  color: white;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: 0.4s ease all;
}

.green-button-plain:hover {
  background-color: #2da266;
}

.green-button-white-border {
  border-color: #fff;
}

.green-button.v2 {
  border-radius: 8px;
  text-shadow: none;
  width: 500px;
  max-width: 100%;
  padding: 1.3rem 2rem;
  margin-top: 0;
  margin-bottom: 3rem;
}

.green-button.v2 span {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 9px 9px 6px;
  text-shadow: none;
  font-size: 1.6rem;
  position: relative;
  top: -2px;
  display: inline-block;
}

@media (min-width: 768px) {
  .green-button.v2 span {
    font-size: 2rem;
  }
}

.orange-button-rounded {
  font-size: 3.4rem;
  font-family: "Montserrat", Helvetica, sans-serif;
  font-weight: 700;
  background-color: #EB9463;
  border: 1px solid #EB9463;
  border-radius: 5px;
  width: 400px;
  max-width: 100%;
  color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
  padding: 1rem;
  transition: 0.4s ease all;
}

.orange-button-rounded:hover {
  background-color: #e8844c;
}

.white-line-btn, .orange-btn {
  font-size: 2rem;
  font-weight: 500;
  color: white;
  background-color: transparent;
  border: 4px solid white;
  padding: 8px 30px;
  text-transform: uppercase;
  transition: 0.4s ease all;
}

@media (min-width: 768px) {
  .white-line-btn, .orange-btn {
    font-size: 3rem;
  }
}

.white-line-btn:hover, .orange-btn:hover {
  background-color: white;
  color: #EB9463;
}

.orange-btn {
  background-color: #EB9463;
  border-color: #EB9463;
  color: #fff;
}

.orange-btn:hover {
  background-color: #e57536;
  border-color: #e57536;
  color: #fff;
}

.clear-button {
  background-color: transparent;
  border: 0 none;
}

.yellow-text {
  color: #FFCE00;
}

.modal-dialog {
  margin: 4rem 0.5rem;
}

@media (min-width: 480px) {
  .modal-dialog {
    margin: 4rem auto;
    max-width: 500px;
  }
}

.modal-content {
  color: #38395E;
  border-radius: 8px;
  padding: 10px;
}

@media (min-width: 768px) {
  .modal-content {
    padding: 15px 40px;
  }
}

.modal-content label {
  margin-bottom: 5px;
}

.modal-content input.form-control {
  color: #000;
  background-color: transparent;
  padding: 26px 16px;
  font-size: 1.6rem;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 5px;
  border: 0;
  border: 1px solid #EAE9F2;
}

.modal-content p {
  font-size: 1.4rem;
  line-height: 1.4;
}

.modal-title {
  color: #000;
  font-family: "Montserrat", Helvetica, sans-serif;
  font-size: 2.3rem;
  line-height: 1.3;
}

.modal-header {
  border-bottom: 0;
}

.sticky-block {
  color: #000;
  background-color: #fff;
}

.sticky-block .site-logo img {
  width: 170px;
}

@media (min-width: 480px) {
  .sticky-block .site-logo img {
    width: 354px;
  }
}

.sticky-block .countdown {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .sticky-block .countdown {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    margin-bottom: 0;
  }
}

.sticky-block .countdown p {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0.6rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}

@media (min-width: 480px) {
  .sticky-block .countdown p {
    font-size: 1.8rem;
    text-align: left;
    width: auto;
    margin-left: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .sticky-block .countdown p {
    width: 100%;
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 992px) {
  .sticky-block .countdown p {
    width: auto;
    margin-left: 0;
    margin-bottom: 0;
  }
}

.sticky-block .countdown .timer div {
  font-size: 1.2rem;
}

@media (min-width: 480px) {
  .sticky-block .countdown .timer div {
    font-size: 1.4rem;
  }
}

.sticky-block .countdown .timer div span:first-child {
  font-weight: 600;
  font-size: 2.2rem;
}

@media (min-width: 480px) {
  .sticky-block .countdown .timer div span:first-child {
    font-size: 2.8rem;
  }
}

.sticky-block .green-button {
  margin-top: 0;
  width: auto;
  border-radius: 0;
  padding: 10px 3rem;
  max-width: unset;
  display: inline-block;
  font-size: 1.8rem;
}

@media (min-width: 480px) {
  .sticky-block .green-button {
    font-size: 2.2rem;
  }
}

.sticky-block .green-button-plain {
  border-radius: 12px;
  font-size: 25px;
  font-family: "Lato", Helvetica, sans-serif;
  font-weight: 700;
  text-transform: none;
  width: 250px;
  padding: 5px;
}

.signup-section {
  background-color: #131A23;
  color: #fff;
}

.session-section {
  padding-top: 6rem;
}

.session-section .session {
  margin-bottom: 5rem;
}

.session-section .session__copy {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.session-section .session__copy-image {
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 80px;
  margin-right: 1rem;
  /*img {
                    @media (max-width: $sm - 1) {
                        display: none;
                    }
                }*/
}

@media (min-width: 480px) {
  .session-section .session__copy-image {
    width: 110px;
    margin-right: 2rem;
  }
}

.session-section .session__copy-image > div {
  background-color: #1E2E41;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 0.7rem 1.2rem;
  font-size: 0.8rem;
  margin: 0 5px;
  font-weight: 500;
}

@media (min-width: 480px) {
  .session-section .session__copy-image > div {
    font-size: 1.2rem;
  }
}

.session-section .session__copy-text {
  -webkit-flex: 1;
          flex: 1;
}

.session-section .session__copy-text h3 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .session-section .session__copy-text h3 {
    font-size: 3.5rem;
  }
}

.session-section .session__quotes-card {
  background-color: #F1F1F1;
  border-radius: 4px;
  color: #707070;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 2.3rem;
  padding: 1.5rem;
}

@media (min-width: 992px) {
  .session-section .session__quotes-card {
    padding: 2rem;
  }
}

.session-section .session__quotes-card .quote {
  font-family: "Lato", Helvetica, sans-serif;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

@media (min-width: 992px) {
  .session-section .session__quotes-card .quote {
    font-size: 1.7rem;
  }
}

.session-section .session__quotes-card .author {
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .session-section .session__quotes-card .author {
    font-size: 1.2rem;
  }
}

.moneyback-section {
  margin-bottom: 5rem;
}

.moneyback-section .mbg-card {
  background-color: #FAFAFA;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 4rem 2rem;
}

@media (min-width: 768px) {
  .moneyback-section .mbg-card {
    padding: 4rem 4rem 4rem 2rem;
  }
}

.moneyback-section .mbg-card h2 {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .moneyback-section .mbg-card h2 {
    font-size: 3.8rem;
  }
}

.moneyback-section .mbg-card p {
  font-family: "Lato", Helvetica, sans-serif;
}

.moneyback-section .mbg-card p a {
  color: #000;
  text-decoration: underline;
}

.moneyback-section .mbg-card img {
  width: 330px;
  height: auto;
}

.video-container {
  border-radius: 14px;
  border: 4px solid #000000;
  background-color: #1E1E30;
}

.video-container.home__video-container {
  min-height: 380px;
  background-position: center;
  background-size: cover;
  position: relative;
}

@media (min-width: 768px) {
  .video-container.home__video-container {
    min-height: 540px;
  }
}

.video-container.home__video-container:before {
  content: "";
  position: absolute;
  background-color: black;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
}

.video-container.home__video-container .clear-button {
  width: 130px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  outline: none;
}

@media (min-width: 768px) {
  .video-container.home__video-container .clear-button {
    width: 147px;
  }
}

.countdown {
  display: -webkit-flex;
  display: flex;
  font-family: "Montserrat", Helvetica, sans-serif;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.countdown p {
  font-weight: 300;
  margin: 0;
  font-weight: 700;
  font-size: 2.6rem;
}

@media (min-width: 768px) {
  .countdown p {
    font-size: 3.3rem;
  }
}

.countdown .timer {
  display: -webkit-flex;
  display: flex;
  text-align: center;
}

.countdown .timer div {
  font-size: 1.4rem;
  margin: 0 1rem;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 300;
}

@media (min-width: 768px) {
  .countdown .timer div {
    font-size: 1.8rem;
  }
}

.countdown .timer div span:first-child {
  display: block;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .countdown .timer div span:first-child {
    font-size: 3.8rem;
  }
}

.countdown-horizontal {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
          align-items: center;
}

.countdown-horizontal p {
  margin-right: 1rem;
}

.countdown-vertical p {
  margin-bottom: .5rem;
  width: 100%;
}

.site-footer {
  padding-top: 5rem;
  padding-bottom: 3rem;
  clear: both;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #000;
  height: 220px;
}

@media (min-width: 768px) {
  .site-footer {
    height: 200px;
  }
}

.site-footer a {
  color: #000;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
}

.site-footer .svg-inline--fa, .site-footer .fas {
  margin-right: 2px;
}

.site-footer svg + svg, .site-footer .fas + .fas {
  margin-left: 10px;
}

.page-webinar {
  color: #fff;
}

.dark-main-content {
  background-color: #242F3F;
  background-image: url("../images/black-bg.png");
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.dark-main-content h1 {
  font-weight: 800;
}

@media (min-width: 992px) {
  .dark-main-content h1 {
    font-size: 6rem;
  }
}

@media (min-width: 992px) {
  .dark-main-content h2 {
    font-size: 3.3rem;
  }
}

.dark-main-content .date-countdown {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0 0 3px 3px;
}

@media (min-width: 768px) {
  .dark-main-content .date-countdown {
    border-radius: 3px 0 0 3px;
  }
}

.dark-main-content .date-countdown .white-block {
  background-color: #fff;
  color: #3A3A3A;
  border-radius: 3px;
  padding: 1rem;
}

@media (min-width: 992px) {
  .dark-main-content .date-countdown .white-block {
    padding: 1.3rem;
  }
}

.dark-main-content .date-countdown .white-block .title {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .dark-main-content .date-countdown .white-block .title {
    font-size: 2.7rem;
  }
}

.dark-main-content .date-countdown .white-block .date {
  margin-bottom: 0;
  color: #FA2D5D;
  font-size: 1.2rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .dark-main-content .date-countdown .white-block .date {
    font-size: 1.6rem;
  }
}

.dark-main-content .date-countdown .white-block .date .far {
  margin-right: 7px;
}

.dark-main-content .date-countdown .white-block .date .time {
  color: #999;
  font-weight: 400;
}

.dark-main-content .date-countdown .countdown-webinar .timer {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.dark-main-content .date-countdown .countdown-webinar .timer div {
  -webkit-flex: 1;
          flex: 1;
  position: relative;
}

@media (min-width: 480px) {
  .dark-main-content .date-countdown .countdown-webinar .timer div {
    font-size: 2rem;
  }
}

.dark-main-content .date-countdown .countdown-webinar .timer div:not(:last-child):after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  right: -1rem;
  top: 0;
  display: block;
  background-color: rgba(255, 255, 255, 0.49);
}

@media (min-width: 480px) {
  .dark-main-content .date-countdown .countdown-webinar .timer div span {
    font-size: 3rem;
  }
}

.dark-main-content .white-copy h3 {
  color: #FECE2F;
}

@media (min-width: 768px) {
  .dark-main-content .white-copy h3 {
    font-size: 3.3rem;
  }
}

@media (min-width: 768px) {
  .dark-main-content .white-copy p {
    font-size: 2.2rem;
  }
}

.dark-main-content .white-card {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  background-color: white;
  color: #000;
  padding: 3rem;
  margin-bottom: 3rem;
}

.dark-main-content .white-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.dark-main-content .white-card h3 {
  text-align: center;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .dark-main-content .white-card h3 {
    font-size: 2.4rem;
  }
}

.dark-main-content .white-card .sub-label {
  width: 166px;
  text-align: center;
  background-color: #FECE2F;
  color: #605F5F;
  font-weight: 600;
  margin: 0 auto 2.4rem;
  display: block;
  font-size: 1.2rem;
  border-radius: 18px;
  padding: 0.6rem;
}

.dark-main-content .white-card p {
  font-size: 1.4rem;
  margin: 0;
}

.dark-main-content ~ .site-footer {
  background-color: #060607;
  color: #999;
}

.dark-main-content ~ .site-footer a {
  color: #999;
}
