 @font-face {
  font-family: "Digital-7";
  src: url("/recruiter/fonts/digital-7/digital-7.woff2") format("woff2"),
       url("/recruiter/fonts/digital-7/digital-7.woff") format("woff"),
       url("/recruiter/fonts/digital-7/digital-7.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.hero {
    color: var(--white);
    padding: 6rem 0;
    margin: 0;
    text-align: center;
    background: var(--black);
}
.hero__img {
    width: 100%;
}
.hero__heading {
    font-family: "Digital-7";
    color: red;
    font-size: clamp(4rem, 20vw, 21rem);
    line-height: clamp(4.5rem, 21vw, 18rem);
    margin: 1rem auto 0;
}
.hero__subheading {
    color: var(--white);
    margin: 0 auto 1rem;
    line-height: normal;
    font-size: 52px;
}
.hero__desc {
    color: var(--white);
    font-size: 30px;
}
.hero__countdown {
    font-size: 36px;
    color: red;
    font-weight: 600;
    font-style: italic;
    line-height: 50px;
    margin: 2rem 0;
}
.hero__countdown span {
    font-size: 50px;
}
.hero .btn {
    background: #ff0000;
    font-size: 30px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 0 18px #ff0000;
    border: 1px solid #fe6a67;
    margin: 0;
    white-space: normal;
}
.hero .btn:hover,
.hero .btn:active,
.hero .btn:focus {
    background: #c60303;
}
.terms {
    max-width: 70rem;
    margin: 6rem auto 0;
}
.terms__heading {
    color: var(--white);
    text-align: left;
    font-size: 16px;
}
.terms__list {
    list-style: auto;
    text-align: left;
    margin: 0 auto;
    line-height: 26px;
    font-size: 14px;
}
.testimonial {
    background: var(--grey-light);
    padding: 54px 16px;
    position: relative;
    text-align: center;
    margin: 48px 0 0;
    border-radius: 8px;
}
.testimonial--rating img {
    width: 50px;
}
.testimonial--heading {
    font-size: 36px;
    line-height: 1.3em;
}
.testimonial--subheading {
    font-size: 22px;
    margin: 20px 0 0;
}
.testimonial--link {
    margin: 24px 0 0;
    display: inline-block;
    font-size: 20px;
    text-decoration: underline;
}
.f3-logos-wrapper {
    margin: 1rem 0 3rem;
}
.f3-logo-panel {
    background: white;
    border-radius: 14px;
    border: 1px solid #17f013;
    box-shadow: 0 0 18px #4bf34b;
    display: inline-block;
    overflow: hidden;
    padding: 10px;
}
.outro-wrapper {
  margin: 90px 0 68px;
  text-align: center;
}
.outro-wrapper--heading {
  font-size: 42px;
  margin: 0;
}
.outro-wrapper .btn {
  margin: 40px 0 0;
  font-size: 26px;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 600;
}
@media(max-width: 767px) {
    .hero__heading {
        margin: 1rem auto 2rem;
    }
    .hero__subheading {
        font-size: 28px;
        max-width: 31rem;
    }
    .hero__desc {
        font-size: 24px;
    }
    .hero .btn {
        font-size: 24px;
    }
    .f3-logos-wrapper {
        margin: 0;
    }
    .f3-logos-wrapper .row {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .f3-logo-panel {
        max-width: 36rem;
        margin: auto;
    }
    .testimonial--heading {
        font-size: 24px;
    }
}