* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
}
html {
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {font-size: inherit;font-weight: inherit;}
ul {list-style: none;margin:0;padding:0;}
a {color: inherit;text-decoration: none;}
img {max-width: 100%;height: auto;}

body {
  background-color: #fafafa;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

.w-full {width: 100%;}
/* $sm: 575.98px;
$md: 767.98px;
$mdMin: 768px;
$lg: 991.98px;
$xl: 1199.98px;
$xxl: 1399.98px; */
@media(min-width: 768px) {
  .mobile-only {display: none !important;} 
}
@media(min-width: 991.98px) {
  .tablet-and-mobile {display: none !important;} 
}
@media(max-width: 767.98px) {
  .desktop-only {display: none !important;} 
}

.container {
  width: 100%;
  max-width: 1320px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
@media(max-width: 1399.98px) {
  .container {max-width: 1180px;}
}
@media(max-width: 1199.98px) {
  .container {max-width: 1140px;}
}

.btn-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 296px;
  height: 40px;
  padding: 8px 16px;
  border-radius: 200px;
  background-color: #FFB612;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: rgba(1, 1, 20, 0.88);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-cta:hover {
  background-color: #eca300;
}
.link-skip {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration-line: underline;
}
.link-redirect {
  cursor: pointer;
}

.coachlp-toast {
  display: none;
  position: fixed;
  z-index: 20;
  top: 40px;
  left: 50%;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0px 0px 16px 2px rgba(160, 160, 167, 0.24);
  transform: translate(-50%, 0);
  color: rgba(1, 1, 20, 0.88);
  font-size: 14px;
}
.coachlp-toast p {
  margin: 0 0 0 8px;
}
.coachlp-toast--open {
  display: flex;
}
.coachlp-toast--error {
  border: 0px solid #C92C3F;
  background: #FBEEF0;
}
@media(max-width: 575.98px) {
  .coachlp-toast {
    left: 16px;
    right: 16px;
    transform: translate(0, 0);
  }
}

.coachlp-price {
  display: flex;
  align-items: flex-end;
  font-size: 68px;
  font-weight: 900;
  color: #FFC33D;
}
.coachlp-price__currency {
  font-size: 34px;
  font-weight: 900;
  padding-bottom: 8px;
}
.coachlp-price__month {
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 12px;
}

.coachlp-price__old {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.coachlp-price__old span {
  text-decoration: line-through;
}
@media(max-width: 575.98px) {
  .coachlp-price {
    font-size: 58px;
  }
  .coachlp-price__currency {
    font-size: 29px;
    padding-bottom: 8px;
  }
  .coachlp-price__month {
    font-size: 20px;
    padding-bottom: 12px;
  }
  
  .coachlp-price__old {
    font-size: 17px;
  }
}


/*
** HEADER
*/
.coachlp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 0;
}
.coachlp-header h1 {
  margin: 40px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: rgba(1, 1, 20, 0.88);
}
.coachlp-steps {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.coachlp-steps::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 56px;
  right: 62px;
  top: 16px;
  height: 1px;
  background-color: #000;
}
.coachlp-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.coachlp-step__point {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: rgba(1, 1, 20, 0.88);
  font-size: 14px;
  font-weight: 900;
}
.coachlp-step--current .coachlp-step__point{
  width: 32px;
  height: 32px;
  background-color: #FFB612;
  font-size: 16px;
}
.coachlp-step--done .coachlp-step__point{
  background-color: #3B3B40;
  color: #fff;
}
.coachlp-step--next .coachlp-step__point{
  background-color: #CACACE;
}
.coachlp-step__legend {
  font-size: 14px;
  font-weight: 400;
}
.coachlp-step--current .coachlp-step__legend{
  font-weight: 900;
}
@media(max-width: 575.98px) {
  .coachlp-header h1 {
    font-size: 16px;
  }
  .coachlp-steps::before {
    left: 46px;
    right: 52px;
  }
  .coachlp-step {
    width: 80px;
  }
  .coachlp-step__legend {
    font-size: 12px;
    text-align: center;
  }
}

/*
** HERO
*/
.coachlp-hero {
  width: 100%;
  min-height: 430px;
  padding: 68px 0 45px 0;
  background-color: #000;
  background-image: url(https://smartsite-production.s3.amazonaws.com/coach-resume-lp/assets/img/section-1.jpeg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}
.coachlp-hero__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.coachlp-hero__brand {
  height: 100%;
}
.coachlp-hero__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  padding-bottom: 23px;
  color: #fff;
}
.coachlp-hero__info h2 {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}
.coachlp-hero__info h2 span {
  color: #FFC33D;
}
.coachlp-hero__info .coachlp-price {
  margin-bottom: 16px;
}
.coachlp-hero__info .link-skip {
  margin-top: 16px;
}
@media(max-width: 575.98px) {
  .coachlp-hero {
    position: relative;
    min-height: auto;
    padding: 28px 0;
    background-size: cover;
    background-position: -350px 0px;
  }
  .coachlp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.55);
  }
  .coachlp-hero__content {
    position: relative;
    z-index: 3;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
  }
  .coachlp-hero__info h2 {
    margin-right: 32px;
    font-size: 24px;
  }
}

/*
** TESTIOMONIALS
*/
.coachlp-testimonials {
  width: 100%;
  padding: 56px 0;
  background-color: #FFC33D;
}
.coachlp-testimonials h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  color: rgba(1, 1, 20, 0.88);
}
.coachlp-testimonials h2 b {
  font-weight: 900;
}
.coachlp-testimonials-carousel {
  width: 100%;
}
.coachlp-testimonials-carousel__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  margin: 0 16px;
  border-radius: 0px 24px;
  background: #FAFAFA;
  box-shadow: 0px 4px 16px 2px rgba(160, 160, 167, 0.24);
}
.coachlp-testimonials-carousel__item p {
  margin-top: 16px;
  margin-bottom: 40px;
  height: 76px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(1, 1, 20, 0.88);
}
.coachlp-testimonials-carousel__item p b {
  font-weight: 700;
}
.coachlp-testimonials-carousel__item h4 {
  font-size: 14px;
  font-weight: 900;
}
.slick-dots {
  margin: 40px auto 0 auto;
  width: 43px;
}
.slick-dots li {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 2px 3px;
  text-indent: -9999px;
  font-size: 1px;
  border-radius: 50%;
  background-color: #F4F4F5;
}
.slick-dots li.slick-active {
  background-color: #000;
}

@media(max-width: 575.98px) {
  .coachlp-testimonials .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .coachlp-testimonials h2 {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 24px;
  }
  .coachlp-testimonials-carousel__item {
    width: 300px !important;
    padding: 24px;
    margin: 0 8px;
  }
}

/*
** ABOUT
*/
.coachlp-about {
  width: 100%;
  background-color: #141415;
  padding: 56px 0;
}
.coachlp-about h2 {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
}
.coachlp-about h2 b {
  color: #EBA200;
  font-weight: 900;
}
.coachlp-about__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
}
.coachlp-about__image {
  display: flex;
  flex-shrink: 0;
  width: 100%;
  max-width: 636px;
}
.coachlp-features {
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 40px;
}
.coachlp-features__item {
  display: flex;
  gap: 16px;
}
.coachlp-features__item h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}
.coachlp-features__item p {
  font-size: 14px;
  line-height: 24px;
}
.coachlp-features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 50%;
  background-color: #FFC33D;
  color: #000;
}
@media(max-width: 575.98px) {
  .coachlp-about__content {
    flex-direction: column-reverse;
  }
  .coachlp-features__item h3 {
    font-size: 16px;
  }
  .coachlp-features__item p {
    font-size: 14px;
  }

  .coachlp-about .btn-cta {
    width: 100%;
  }
}
/*
** HOW IT WORKS
*/
.coachlp-how-works {
  padding-top: 56px;
  padding-bottom: 56px;
}
.coachlp-how-works h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: rgba(1, 1, 20, 0.88);
}
.coachlp-how-works h2 b {
  color: #EBA200;
}
.coachlp-how-works__list {
  display: flex;
  align-items: flex-start;
  gap: 42px;
  width: 100%;
}
.coachlp-how-works__card {
  display: flex;
  flex-direction: column;
  width: 33%;
  height: 420px;
  border-radius: 16px;
  border: 1px solid #CACACE;
  background: #FAFAFA;
  box-shadow: 0px 0px 16px 0px rgba(160, 160, 167, 0.25);
  overflow: hidden;
}
.coachlp-how-works__card img {
  height: 180px;
  object-fit: cover;
}
.coachlp-how-works__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 16px;
}
.coachlp-how-works__content h3 {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(1, 1, 20, 0.88);
  text-transform: uppercase;
}
.coachlp-how-works__content h3 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  color: rgba(1, 1, 20, 0.88);
  text-transform: uppercase;
  background-color: #FAE7B8;
}
.coachlp-how-works__content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(1, 1, 20, 0.88);
}

@media(max-width: 575.98px) {
  .coachlp-how-works h2 {
    font-size: 24px;
  }
  .coachlp-how-works__list {
    flex-direction: column;
    padding: 0 8px;
  }
  .coachlp-how-works__card {
    width: 100%;
    height: 420px;
  }
}
/*
** PURCHASE
*/
.coachlp-purchase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 56px 16px;
  background: #141415;
}
.coachlp-purchase__disclaimer {
  margin-top: 40px;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.coachlp-purchase__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 600px;
  padding: 48px 24px;
  border-radius: 32px;
  background: #000;
  box-shadow: 0px 4px 16px 2px rgba(160, 160, 167, 0.24);
}
.coachlp-purchase__card h2 {
  width: 90%;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}
.coachlp-purchase__card h2 span {
  color: #FFC33D;
}
.coachlp-purchase__card ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 90%;
  list-style: disc !important;
  color: #fff;
}
.coachlp-purchase__card ul li p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.coachlp-purchase__price {
  text-align: center;
}
@media(max-width: 575.98px) {
  .coachlp-purchase__card ul {
    max-width: 210px;
  }
  .coachlp-purchase .link-skip {
    text-align: center;
  }
}
/*
** FAQ
*/
.coachlp-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 56px 0 80px 0;
  background: #141415;
}
.coachlp-faq h2 {
  margin: 40px 0;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.coachlp-faq__collapse {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
.coachlp-collapse__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 18px;
  border-radius: 5px;
  border: 2px solid #404040;
  color: #fff;
  overflow: hidden;
}
.coachlp-collapse__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.coachlp-collapse__header p {
  font-size: 20px;
  font-weight: 900;
}
.coachlp-collapse__arrow { 
  transform: rotate(0deg);
  transition: all 0.25s ease;
}
.coachlp-collapse__content {
  opacity: 0;
  height: 0;
  margin-top: 0;
  transition: height 0.85s;
  transition: opacity 0.15s;
}
.coachlp-collapse__item--open .coachlp-collapse__content {
  opacity: 1;
  height: auto;
  margin-top: 16px;
}
.coachlp-collapse__item--open .coachlp-collapse__arrow {
  transform: rotate(180deg);
}
.st0{fill:none; stroke:#ffffff; stroke-width:2; stroke-miterlimit:10;}

@media(max-width: 575.98px) {
  .coachlp-collapse__header p {
    font-size: 16px;
  }
}
/*
** MODAL PURCHASE
*/
.coachlp-purchase-modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 24px;
}
#coachlp-purchase-modal img {
  width: 144px;
}
#coachlp-purchase-modal h2 {
  margin: 10px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  color: #1C1F20;
  text-align: center;
}
#coachlp-purchase-modal p {
  font-size: 14px;
  color: #2E4050;
  text-align: center;
}