:root {
    --colors--black-webprofits: #070808;
    --colors--black-webprofits-2: #010010;
    --colors--black-purple: #121120;
    --colors--black-purple-2: #1e1d2b;
    --colors--grey: #a2a2a2;
    --colors--grey2: #383b3d;
    --colors--grey3: #505152;
    --colors--grey4: #e0dedc;
    --colors--grey5: #d9d9d9;
    --colors--grey6: #666a6a;
    --colors--grey7: #d1d1d1;
    --colors--red-webprofits: #f54949;
    --colors--white: white;
    --colors--white2: #fbf8f5;
    --colors--white3: #f1f1f1;
    --colors--cream: #fefbf7;
    --colors--cream-2: #f2efeb;
    --transition-main: cubic-bezier(0.75, 0.25, 0.13, 0.92);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    color: var(--colors--black-webprofits-2);
    font-family: Gellix, Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--colors--black-webprofits-2);
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.5rem;
    font-size: clamp(2.5rem, 2.2rem + 2vw, 4rem);
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    max-width: 960px;
    margin: 0 auto 2rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.0625rem;
    font-size: clamp(2.0625rem, 1.875rem + 1vw, 3rem);
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
}

h3 {
    font-size: 1.875rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    line-height: 1;
    color: var(--colors--white);
    margin: 0;
}

h4 {
    font-size: 1.25rem;
    font-size: clamp(0.7812rem, 0.75rem + 0.25vw, 0.9375rem);
    margin: 0 0 1.2rem 0;
    font-weight: 600;
    line-height: 1.3;
}

h5 {
    font-size: 1.625rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    font-style: normal;
    line-height: 1.2;
}

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

p {
    margin: 0 0 1.5rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}

.center-block {
    text-align: center;
    margin: 0 auto 3rem;
}

.content {
    width: 80%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 5rem 0 0;
}

.top-red {
    font-size: 1rem;
    color: var(--colors--red-webprofits);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin: 0 0 2rem 0;
}

.universal-box {
    background: var(--colors--cream);
    border: 1px solid rgba(7, 8, 8, 0.1);
    border-radius: 1.25rem;
    padding: 2.5rem;
}

.cta-wr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta {
    display: inline-block;
    background-color: var(--colors--red-webprofits);
    color: var(--colors--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 1.5px solid var(--colors--red-webprofits);
    border-radius: 2.5rem;
    padding: 1rem 2.1875rem;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.cta.cta-ghost {
    background: transparent;
    color: var(--colors--black-webprofits-2);
    border-color: var(--colors--black-webprofits-2);
}

.cta::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 0.65rem;
    background: url(../images/cta-arrow-white.svg) no-repeat center / contain;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.cta.cta-ghost::after {
    background: url(../images/cta-arrow-black.svg) no-repeat center / contain;
}

.cta:hover {
    background-color: var(--colors--black-webprofits-2);
    color: var(--colors--white);
    border-color: var(--colors--white);
}

.cta:hover::after {
    transform: rotate(-45deg);
}

.cta.cta-ghost:hover {
    background-color: var(--colors--black-webprofits-2);
    color: var(--colors--white);
    border-color: var(--colors--black-webprofits-2);
}

.cta.cta-ghost:hover::after {
    filter: invert(1);
}

.under-cta {
    font-size: 0.9rem;
    text-align: center;
    margin: 1.5rem 0 0 0;
}

/* ---- HEADER ----- */

.content.header-c {
    padding: 1.5rem 0;
}

.logo {
    width: 220px;
}

.header-wr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.nav-list li a {
    font-size: 1rem;
    transition: color 0.3s var(--transition-main);
}

.nav-list li a:hover {
    color: var(--colors--red-webprofits);
}

/* ----- MAIN ----- */

main {
    text-align: center;
}

.content.main-c {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
}

#thanks-page {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    background: #ffffff;
}

#thanks-page .content.main-c {
    padding: 2rem 0 5rem;
}

#thanks-page main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

#thanks-page h1 {
    max-width: 880px;
    margin: 0 auto 1.5rem;
}

#thanks-page h3 {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--colors--black-webprofits-2);
}

#thanks-page main p {
    max-width: 720px;
    margin: 0 auto;
}

#thanks-page .calendly-inline-widget {
    background: #ffffff;
    margin-top: 2rem;
}

#book-page main p {
    max-width: 720px;
    margin: 0 auto;
}

#book-page .main-c {
    padding-bottom: 0;
}

.pill {
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: fit-content;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    margin: 0 auto;
}

.pill.header-pill {
    padding: 0.75rem 1.25rem;
    margin: 0 auto 2.125rem;
    gap: 0.5rem;
    font-weight: 400;
}

.pill.header-pill span {
    font-weight: 600;
}

.small-pill {
    display: inline-block;
    background: var(--colors--white);
    border: 1px solid rgba(7, 8, 8, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1;
}

.emoji-hand {
    font-size: 2rem;
    line-height: 1;
    position: relative;
}

.emoji-hand::after {
    content: '';
    display: block;
    width: 1px;
    height: 1.5rem;
    background-color: var(--colors--grey5);
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
}

.member-inner {
    position: relative;
}

.member-inner::before {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background-color: var(--colors--grey5);
    position: absolute;
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%) translateX(-50%);
}

.member-inner p:first-of-type {
    font-size: 3rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.member-inner p:last-of-type {
    font-size: 0.9rem;
}

.hero-bullets {
    font-weight: 600;
    margin: 3.2rem 0;
    letter-spacing: 0.02em;
}

.hero-bullets span {
    margin: 0 1.2rem;
    color: var(--colors--grey3);
}

.check-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.check-list li {
    background: url(../images/check-icon.svg) no-repeat left top 4px;
    padding: 0 0 0 1.8rem;
    text-align: left;
    font-weight: 600;
    line-height: 1.3;
}

.check-list li img {
    margin: 0.8rem 0 0 0;
}

main p {
    margin: 0 0 2.9rem 0;
}

.partners-block {
    margin-top: 7rem;
    text-align: center;
}

.partners-block p {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--colors--grey);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.partners-wr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem 4rem;
    flex-wrap: wrap;
}

.proof-slider {
    max-width: 100%;
    width: 100%;
    overflow: visible;
}

.proof-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    width: 100%;
    height: auto !important;
    background: var(--colors--black-purple);
    border-radius: 1.25rem;
    padding: 2rem;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 4rem;
}

.proof-top {
    border-bottom: 1px solid #ffffff25;
    padding-bottom: 1.25rem;
    margin-bottom: 3rem;
}

.proof-middle p {
    color: var(--colors--grey);
}

.prof-btm {
    justify-self: flex-end;
}

.prof-btm p {
    font-size: 4rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}

.prof-btm span {
    display: inline-block;
    background: var(--colors--black-webprofits);
    border-radius: 40px;
    border: 1px solid #ffffff30;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--colors--white);
}

.proof-navigation {
    position: relative;
    margin: 5rem 0 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.swiper-navigation-icon {
    display: none;
}

.swiper-btn {
    width: 40px !important;
    height: 40px !important;
    background: var(--colors--white);
    border: 1px solid var(--colors--white);
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    z-index: 10;
    position: static !important;
    margin: 0 !important;
    transition: all 0.3s var(--transition-main);
}

.swiper-btn:hover {
    background: var(--colors--grey5);
}

.swiper-pagination {
    position: static !important;
    width: auto !important;
    transform: none !important;
}

.swiper-pagination-bullet {
    background: var(--colors--white) !important;
    margin: 0 5px !important;
    transition: all 0.3s var(--transition-main);
}

.swiper-pagination-bullet-active {
    background: var(--colors--white) !important;
}

/* ----- BRANDS ----- */

#brands .center-block {
    max-width: 600px;
}

.brands-wr-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 0 0 1.5rem 0;
}

.brands-wr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem 7rem;
    margin: 10rem 0;
}

.brands-wr img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 50px;
    object-fit: contain;
}

.brands-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 2.5rem;
}

.brands-top {
    display: flex;
    align-items: center;
    height: 2.75rem;
    padding: 0 0 1.25rem 0;
    margin: 0 0 1.25rem 0;
    border-bottom: 1px solid rgba(7, 8, 8, 0.15);
}

.brands-top img {
    max-height: 1.75rem;
    width: auto;
}

.brands-btm p:first-of-type {
    font-size: 3.125rem;
    font-size: clamp(3.125rem, 2.95rem + 1.4000000000000004vw, 4rem);
    line-height: 1;
    font-family: 'georgia';
}

.brand-boxes-btm {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.625rem;
}

.universal-box.brand-box-btm {
    padding: 1.375rem 1.25rem;
    text-align: center;
}

.brand-box-btm p:first-of-type {
    font-size: 2rem;
    font-size: clamp(2rem, 1.8rem + 1.5999999999999996vw, 3rem);
    color: var(--colors--red-webprofits);
    font-family: georgia;
    line-height: 1;
    letter-spacing: -1px;
    margin: 0 0 0.625rem 0;
}

/* ----- WHO ----- */

.group-wr {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.875rem 2.125rem;
}

.group-wr img {
    width: auto;
    max-width: 80px;
    object-fit: contain;
    max-height: 50px;
    height: auto;
}

#who .center-block {
    margin-bottom: 3rem;
}

/* ----- EDGE ----- */

#edge .center-block {
    max-width: 560px;
}

.edge-box {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
}

.edge-box div {
    padding: 0 0 1.5rem 0;
    /* margin: 0 0 2rem 0; */
    border-bottom: 1px solid rgba(7, 8, 8, 0.1);
}

.edge-box .small-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 600;
    gap: 0.5rem;
    margin: 0 0 1.875rem 0;
}

.edge-box h5 {
    margin: 0;
}

/* ----- COMPARE ----- */

#compare .center-block {
    max-width: 600px;
}

.large-only {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.large-only tbody tr:nth-of-type(odd) {
    background: var(--colors--cream);
}

.large-only tbody tr td {
    border-top: 1px solid rgba(7, 8, 8, 0.15);
    border-right: 1px solid rgba(7, 8, 8, 0.15);
    font-size: 0.9375rem;
    padding: 1.25rem;
}

.large-only tbody tr td:nth-of-type(2) {
    border-right: 1px solid var(--colors--black-webprofits);
    border-left: 1px solid var(--colors--black-webprofits);
}

.large-only tbody tr:nth-of-type(even) td:nth-of-type(2) {
    background: #f2efeb;
}

.large-only tbody tr:first-of-type td {
    border-top-left-radius: 0.9375rem;
    border-top-right-radius: 0.9375rem;
    vertical-align: top;
}

.large-only tbody tr:first-of-type td img {
    vertical-align: top;
    margin: 0 0 1.25rem 0;
}

.large-only tbody tr:first-of-type td p {
    font-size: 0.875rem;
    color: var(--colors--grey2);
    margin: 0;
}

.large-only tbody tr:first-of-type td p span {
    font-size: 2rem;
    font-family: 'georgia';
    color: var(--colors--black-webprofits);
}

.large-only tbody tr:first-of-type td:nth-of-type(2) {
    border-top: 1px solid var(--colors--black-webprofits);
    background: #f2efeb;
}

.large-only tbody tr:first-of-type td:nth-of-type(2) img {
    margin: 0 0 0.3125rem 0;
}

.large-only tbody tr:first-of-type td:nth-of-type(2) img {
    width: 135px;
}

.large-only tbody tr:first-of-type td:first-of-type {
    border: none;
    background: var(--colors--white);
}

.large-only tbody tr td:first-of-type {
    border-left: 1px solid rgba(7, 8, 8, 0.15);
    font-weight: 600;
}

.large-only tbody tr:last-of-type {
    background: var(--colors--white);
}

.large-only tbody tr:last-of-type td {
    border-right: none;
    border-left: none;
    padding: 0.625rem;
}

.large-only tbody tr:last-of-type td:nth-of-type(2) {
    background: var(--colors--cream);
    border-right: 1px solid var(--colors--black-webprofits);
    border-left: 1px solid var(--colors--black-webprofits);
    border-bottom: 1px solid var(--colors--black-webprofits);
    border-bottom-left-radius: 0.9375rem;
    border-bottom-right-radius: 0.9375rem;
}

.under-table {
    font-size: 0.875rem;
    color: var(--colors--grey2);
    text-align: center;
    margin: 2rem 0 0;
}

/* ----- MID CTA ----- */

.mid-cta-simple {
    text-align: center;
    /* padding: 3rem 0; */
}

/* ----- COMPARE SCROLL & MOBILE ----- */

.compare-scroll-wrap {
    overflow-x: visible;
}

.compare-scroll-hint {
    display: none;
    text-align: center;
    font-size: 0.875rem;
    color: var(--colors--grey);
    margin: 1rem 0 0 0;
    font-style: italic;
}

.compare-mobile {
    display: none;
}

.compare-mobile .compare-card {
    border: 1px solid var(--colors--grey4);
    border-radius: 0.75rem;
    margin: 0 0 1.25rem 0;
    overflow: hidden;
}

.compare-mobile .compare-card-wp {
    border: 2px solid var(--colors--black-webprofits);
}

.compare-mobile .compare-card-header {
    padding: 1.5rem;
    text-align: center;
    background: var(--colors--cream);
}

.compare-mobile .compare-card-wp .compare-card-header {
    background: var(--colors--cream-2);
}

.compare-mobile .compare-card-header img {
    max-height: 1.5rem;
    margin: 0 0 0.75rem 0;
}

.compare-mobile .compare-card-price {
    font-size: 0.875rem;
    color: var(--colors--grey2);
}

.compare-mobile .compare-card-price span {
    font-size: 1.75rem;
    font-family: 'georgia', sans-serif;
}

.compare-mobile .compare-card-body {
    padding: 0;
}

.compare-mobile .compare-card-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--colors--grey4);
    gap: 1rem;
}

.compare-mobile .compare-card-row:nth-child(odd) {
    background: var(--colors--cream);
}

.compare-mobile .compare-card-wp .compare-card-row:nth-child(odd) {
    background: var(--colors--cream-2);
}

.compare-mobile .compare-card-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--colors--grey6);
    flex-shrink: 0;
    width: 40%;
}

.compare-mobile .compare-card-row p:last-child {
    font-size: 0.9375rem;
    color: var(--colors--black-webprofits-2);
    text-align: right;
}

/* ----- ABOUT ----- */

#about .center-block {
    max-width: 760px;
}

.about-wr {
    background: var(--colors--cream);
    padding: 2.5rem;
    border-radius: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-gap: 1.5rem;
    margin: 0;
}

.about-box {
    background: var(--colors--white);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.9375rem;
    padding: 1.5rem;
}

.about-box h6 {
    font-size: 1.25rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 1.5rem 0;
}

.about-top p {
    color: var(--colors--grey-2);
}

.about-btm p:first-of-type {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.1875rem 0;
}

.about-btm p:last-of-type {
    font-size: 0.875rem;
    color: var(--colors--grey3);
}

/* ----- BUILT ----- */

#built .center-block {
    max-width: 600px;
}

.built-wr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.built-box h5 {
    margin: 0 0 2.5rem 0;
}

.built-box ul li {
    padding: 0 0 1.25rem 1.875rem;
    margin: 0 0 1.25rem 0;
    border-bottom: 1px solid rgba(7, 8, 8, 0.15);
}

.built-box:first-of-type ul li {
    background: url(../images/check-icon-green.svg) no-repeat left top 5px;
}

.built-box ul li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.built-box:last-of-type ul li {
    background: url(../images/check-icon-red.svg) no-repeat left top 5px;
}

/* ----- LOCK ----- */

.section-lock {
    background: var(--colors--white);
}

.lock-top {
    background: var(--colors--cream-2);
    color: var(--colors--black-webprofits-2);
    padding: 1rem;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.lock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--colors--grey4);
    border-top: none;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

.lock-left {
    padding: 2.5rem;
    border-right: 1px solid var(--colors--grey4);
}

.lock-heading {
    font-size: clamp(1.625rem, 1.375rem + 1vw, 2rem);
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    color: var(--colors--black-webprofits-2);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.lock-desc {
    color: var(--colors--grey6);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.lock-price-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--colors--grey4);
    border-radius: 0.5rem;
    margin: 0 0 1.5rem 0;
    overflow: hidden;
}

.lock-price-label {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--colors--black-webprofits-2);
    white-space: nowrap;
}

.lock-price-value {
    padding: 0.875rem 1.25rem;
    font-size: 1.75rem;
    font-family: 'georgia', sans-serif;
    color: var(--colors--black-webprofits-2);
    border-left: 1px solid var(--colors--grey4);
    white-space: nowrap;
}

.lock-price-value span {
    font-size: 1.125rem;
}

.lock-highlights {
    margin: 0 0 1.5rem 0;
}

.lock-highlights li {
    background: url(../images/check-icon-red-2.svg) no-repeat left top 4px;
    padding: 0 0 0.75rem 1.75rem;
    color: var(--colors--grey3);
    font-size: 1rem;
}

.lock-highlights li:last-of-type {
    padding-bottom: 0;
}

.lock-left .cta {
    width: 100%;
    margin: 0 0 0.75rem 0;
}

.lock-subtext {
    text-align: center;
    color: var(--colors--grey);
    font-size: 0.875rem;
    margin: 0 0 1.5rem 0;
}

.lock-trust {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.lock-trust div {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--colors--grey6);
}

.lock-trust span {
    font-weight: 600;
}

.lock-trust img {
    width: 1rem;
    height: 1rem;
    opacity: 0.4;
}

.lock-right {
    padding: 2.5rem 2.5rem 3rem;
}

.lock-right-heading {
    font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem);
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    color: var(--colors--black-webprofits-2);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.list-black-check {
    margin: 0;
}

.list-black-check li {
    background: url(../images/check-icon-5.svg) no-repeat left top 2px;
    padding: 0 0 0.875rem 1.75rem;
    margin: 0 0 0.875rem 0;
    border-bottom: 1px solid var(--colors--grey4);
    color: var(--colors--grey3);
    font-size: 1rem;
}

.list-black-check li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.list-red-check {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-weight: 600;
    margin: 1.875rem 0 0 0;
}

.list-red-check li {
    background: url(../images/check-icon-red-2.svg) no-repeat left top 5px;
    padding: 0 0 0 1.875rem;
}

/* ----- PROBLEM ----- */

#problem .center-block {
    max-width: 500px;
}

#problem h5 {
    margin: 2rem 0 1rem;
}

.problem-wr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 0 1.5rem 0;
}

.problem-wr:last-child {
    margin: 0;
}

/* ----- SCALE ----- */

#scale .center-block {
    max-width: 600px;
}

.scale-wr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.scale-box .top-red {
    font-family: 'georgia';
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
}

.scale-box ul li {
    background: url(../images/check-icon-5.svg) no-repeat left top 5px;
    padding: 0 0 1.25rem 1.875rem;
    margin: 0 0 1.25rem 0;
    border-bottom: 1px solid rgba(7, 8, 8, 0.15);
}

.scale-box ul li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* ----- FAQ ----- */

.content.faq-c {
    padding-bottom: 7.5rem;
}

/*---- Start FAQ Dropdown -----*/

.faq_question {
    font-size: 1.375rem;
    font-size: clamp(1.375rem, 1.275rem + 0.7999999999999998vw, 1.875rem);
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    position: relative;
    padding: 0 2.5rem 1.875rem 0;
    margin: 0;
}

.faq_question p {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.speaker-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 15px;
    margin: 15px 0 0;
}

.speaker-info img {
    width: 50px;
}

.speaker-info p {
    margin: 0;
}

.speaker-info span {
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

.faq_section_row {
    text-align: left;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.faq_answer {
    padding: 0 40px 40px 0;
    display: none;
}

.faq_answer p {
    color: var(--colors--grey-4);
    margin: 0 0 15px 0;
}

.faq_answer p:last-child {
    margin: 0;
}

.faq_answer a {
    color: inherit;
}

.faq_answer a:hover {
    text-decoration: none;
}

.faq_answer ol li {
    margin: 0 0 10px 0;
}

.faq_answer ul li:last-of-type {
    margin: 0;
}

.faq_row {
    cursor: pointer;
    border-bottom: 1px solid var(--colors--grey2);
    transition: all 0.5s ease;
    margin: 0 0 40px 0;
}

.faq_row:last-of-type {
    margin: 0;
}

.faq_row:hover {
    border-bottom-color: var(--colors--red-webprofits);
}

.faq_title {
    transition: all 0.5s ease;
}

.faq_row:hover .faq_title {
    color: var(--colors--red-webprofits);
}

.faq_question::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--colors--black-webprofits);
    position: absolute;
    right: 9px;
    top: 15px;
    transition: all 0.5s ease;
}

.faq_question::before {
    content: '';
    display: block;
    width: 2px;
    height: 20px;
    background: var(--colors--black-webprofits);
    position: absolute;
    right: 18px;
    top: 5px;
    transition: all 0.5s ease;
}

.faq_row.faq_active {
    border-bottom-color: var(--colors--red-webprofits);
}

.faq_row.faq_active .faq_title {
    color: var(--colors--red-webprofits);
}

.faq_row.faq_active .faq_question::before {
    transform: rotate(90deg);
}

/*---- End FAQ Dropdown -----*/

/* ----- CONTACT ----- */

#contact .center-block {
    max-width: 660px;
    margin-bottom: 2rem;
}

.content.contact-c {
    padding-bottom: 7.5rem;
}

.section-contact {
    background: var(--colors--cream);
}

.section-contact p {
    color: #9c9c9c;
    text-align: center;
}

.founding-member-pricing {
    font-size: 0.875rem;
    margin: 0.625rem 0 0;
}

.form-holder {
    background: var(--colors--white);
    border-radius: 1.25rem;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

.form-title {
    background: var(--colors--black-webprofits-2);
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
    padding: 1.25rem;
    text-align: center;
}

form {
    padding: 1.5rem 2rem;
}

.input-wr {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
}

.form-holder .form-heading a {
    color: inherit;
}

.form-holder label {
    font-size: 1rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--colors--grey3);
    display: inline-block;
    margin: 0 0 0.5rem 0;
}

.hero-top {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom: 1px solid #ffffff50;
    padding: 24px;
    text-align: center;
    color: var(--colors--white);
}

.hero-top h3 {
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--colors--white);
    margin: 0;
}

.hero-center {
    padding: 24px 32px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* ----- Start Form ----- */

form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.name-fields {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
}

form ul li {
    width: 100%;
    margin: 0 0 1rem 0;
}

form ul li.buttons {
    margin: 0;
}

.hs-form {
    display: flex;
    flex-direction: column;
}

.hs-form-field {
    margin-bottom: 15px;
}

.input {
    width: 65%;
    margin-right: 0 !important;
}

fieldset {
    max-width: 100% !important;
    display: flex;
    grid-gap: 0 20px;
    margin: 0;
}

.form-columns-1 {
    display: block !important;
}

.inputs-list {
    list-style: none;
    padding: 0;
}

.inputs-list label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 10px;
    margin: 15px 0;
}

[type='checkbox'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

[type='checkbox'] {
    max-width: 21px !important;
    width: 100%;
    height: 20px;
    border: solid 1px var(--colors--grey-2);
    position: relative;
}

[type='checkbox']:checked::before {
    content: '';
    width: 15px;
    height: 14px;
    background-color: var(--colors--red-webprofits);
    position: absolute;
    top: 2px;
    left: 2px;
}

.hs-richtext {
    font-size: 0.9rem;
}

.legal-consent-container {
    margin: 0 0 15px 0;
}

input,
select,
textarea {
    margin: 0;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(7, 8, 8, 0.1);
    height: 48px;
    box-sizing: border-box;
    width: 100% !important;
    padding-left: 20px;
    font-size: 16px;
    font-family: Gellix, Arial, sans-serif;
    color: var(--colors--grey3);
    font-weight: 400;
    transition: all 0.3s ease;
}

input:focus,
select:focus {
    outline: 0 none;
    border-color: var(--colors--grey6);
}

input,
select,
textarea {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

select {
    color: var(--colors--grey);
    background: url(../images/arrow-down-2.svg) no-repeat center right 24px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #505152;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #505152;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #505152;
}

.input {
    margin-right: 0 !important;
    width: 100% !important;
}

textarea {
    height: 110px;
    width: 100% !important;
    padding: 16px 19px;
    line-height: 26px;
    resize: none !important;
}

.cta.cta-submit {
    width: 100%;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
}

.cta.cta-submit:hover {
    background: var(--colors--black-webprofits-2);
}

ul.hs-error-msgs {
    display: none !important;
}

.was-validated select:invalid,
.was-validated input:invalid,
.was-validated textarea:invalid {
    border-color: red;
}

.field.hs_recaptcha {
    order: 100;
    margin-bottom: 0;
    margin-top: 25px;
}

.hs_recaptcha {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: stretch;
}

.hs-button {
    display: block;
    width: 100% !important;
    height: 56px;
    box-sizing: border-box;
    font-size: 1.125rem;
    color: #fff;
    font-weight: 600;
    text-transform: none !important;
    justify-content: center;
    align-items: center;
    background-color: var(--colors--red-webprofits);
    border-radius: 30px;
    padding: 0 40px !important;
    cursor: pointer;
    transition: all 0.5s ease;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hs-button::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 0.65rem;
    background: url(../images/cta-arrow-white.svg) no-repeat center / contain;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hs-button:hover {
    background: var(--colors--white);
    color: var(--colors--black-webprofits-2);
}

.hide {
    display: none;
}

/* ----- End Form ----- */

/* ----- FOOTER ----- */

.footer {
    background: var(--colors--black-webprofits);
    color: var(--colors--grey6);
    font-size: 1rem;
}

.content.footer-c {
    padding: 5rem 0;
}

.footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid #666a6a50;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.footer-top-left p {
    font-size: 1.25rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0.8rem 0 0;
}

.footer-top-right {
    text-align: right;
}

.footer-top-right p {
    margin: 0 0 0.8rem 0;
}

.footer-top-right a {
    color: inherit;
    text-decoration: none;
    font-size: 2rem;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer-top-right a::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 23px;
    margin-right: 0.5rem;
    background: url('../images/icon-phone.svg') no-repeat center/contain;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer-top-right a:hover {
    color: var(--colors--white);
}

.footer-top-right a:hover::before {
    filter: invert(1);
}

.footer-btm {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-btm p {
    margin: 0;
}

.footer-btm a {
    color: var(--colors--grey-4);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer-btm a:hover {
    color: var(--colors--white);
}

/* ----- RESPONSIVE ----- */

@media screen and (max-width: 1440px) {
    .content {
        padding: 3.75rem 0 0;
    }

    .content.header-c {
        padding: 1.5rem 1.25rem;
        max-width: 1800px;
        width: 100%;
    }

    .center-block {
        margin: 0 auto 2.5rem;
    }

    .top-red {
        margin: 0 0 1.25rem 0;
    }

    .content.faq-c {
        padding-bottom: 3.75rem;
    }

    .content.contact-c {
        padding-bottom: 3.75rem;
    }

    .partners-block {
        margin-top: 5rem;
    }

    .proof-navigation {
        margin: 3rem 0 0 0;
    }

    .brands-wr {
        gap: 1.5rem 4rem;
        margin: 3rem 0;
    }

    .faq_section_row {
        margin: 0 auto;
    }

    .who-block {
        margin: 0 auto 3rem;
    }
}

@media screen and (max-width: 1366px) {
    .universal-box {
        border-radius: 0.75rem;
        padding: 1.25rem;
    }

    .logo {
        width: 180px;
    }

    .nav-list {
        gap: 2rem;
    }

    .main-c {
        padding-top: 2rem;
    }

    .universal-box.brand-box-btm {
        padding: 1.25rem 0.625rem;
    }

    .check-list {
        margin: 1.5rem 0;
    }

    main p {
        margin: 0 0 1.5rem 0;
    }

    .list-white {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin: 2rem 0 0 0;
    }
}

@media screen and (max-width: 1180px) {
    .prof-btm p {
        font-size: 3rem;
    }
}

@media screen and (max-width: 1024px) {
    .header-wr {
        grid-template-columns: 1fr auto;
    }

    .nav-list {
        display: none;
    }

    .brand-boxes-btm {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-wr {
        padding: 1.25rem;
    }
}

@media screen and (max-width: 960px) {
    .problem-wr {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }

    .scale-wr {
        grid-template-columns: repeat(1, 1fr);
    }

    .brands-wr-boxes {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-wr {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .stacktable,
    .stacktable.small-only,
    .stacktable.large-only {
        display: none !important;
    }

    #compare .content.content-c {
        overflow: hidden;
    }

    .compare-scroll-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1.25rem;
        padding: 0 1.25rem;
    }

    .compare-scroll-wrap .large-only {
        min-width: 680px;
        border-collapse: separate;
        border-spacing: 0;
    }

    .compare-scroll-wrap .large-only tbody tr td {
        font-size: 0.8125rem;
        padding: 0.75rem 0.875rem;
        white-space: nowrap;
    }

    .compare-scroll-wrap .large-only tbody tr td:first-of-type {
        position: sticky;
        left: 0;
        background: var(--colors--white);
        z-index: 2;
        min-width: 120px;
        white-space: normal;
        font-size: 0.75rem;
    }

    .compare-scroll-wrap .large-only tbody tr:nth-of-type(odd) td:first-of-type {
        background: var(--colors--cream);
    }

    .compare-scroll-wrap .large-only tbody tr:first-of-type td:first-of-type {
        background: var(--colors--white);
        border-radius: 0;
    }

    .compare-scroll-wrap .large-only tbody tr:last-of-type td:first-of-type {
        background: var(--colors--white);
    }

    .compare-scroll-wrap .large-only tbody tr:first-of-type td {
        padding: 1rem 0.875rem;
        vertical-align: top;
    }

    .compare-scroll-wrap .large-only tbody tr:first-of-type td img {
        margin: 0 0 0.5rem 0;
        max-height: 28px;
        width: auto;
    }

    .compare-scroll-wrap .large-only tbody tr:first-of-type td:nth-of-type(2) img {
        max-height: 22px;
    }

    .compare-scroll-wrap .large-only tbody tr:first-of-type td p {
        font-size: 0.75rem;
    }

    .compare-scroll-wrap .large-only tbody tr:first-of-type td p span {
        font-size: 1.375rem;
    }

    .compare-scroll-hint {
        display: block;
    }

    .tier-body {
        max-width: 100%;
        width: auto;
        padding: 0.5rem;
    }
}

@media screen and (max-width: 932px) {
    br {
        display: none;
    }

    #book-page main p {
        margin: 0 auto 2rem;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .partners-block {
        margin-top: 3rem;
    }

    .footer-top {
        flex-flow: column;
        text-align: center;
        padding-bottom: 2rem;
    }

    .footer-top-right {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .content {
        width: 90%;
        padding: 3rem 0 0;
    }

    .content.header-c {
        padding: 1rem;
    }

    h1 {
        margin: 0 auto 1.5rem;
    }

    h2 {
        margin: 0 0 1rem 0;
    }

    h5 {
        font-size: 1.375rem;
        margin: 0 0 1rem 0;
    }

    .center-block {
        margin: 0 auto 2rem;
    }

    .logo {
        width: 160px;
    }

    .header-wr {
        grid-template-columns: 1fr auto;
    }

    .header-wr .cta {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
    }

    .check-list {
        gap: 1.25rem;
    }

    .check-list:not(.hero-bullets) li {
        font-size: 0.875rem;
    }

    .cta-wr {
        flex-direction: column;
        align-items: stretch;
    }

    .cta {
        white-space: normal;
    }

    .partners-wr {
        gap: 1rem 2rem;
    }

    .partners-wr img {
        height: 20px;
        width: auto;
    }

    .partners-block {
        margin-top: 2.5rem;
    }

    .brands-wr {
        gap: 1.25rem 2.5rem;
        margin: 2rem 0;
    }

    .brand-boxes-btm {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .brand-box-btm p:first-of-type {
        margin: 0 0 0.25rem 0;
    }

    .universal-box.brand-box-btm p:last-child {
        font-size: 0.8125rem;
    }

    .group-wr {
        gap: 0.875rem 1.5rem;
    }

    .about-wr {
        grid-template-columns: repeat(1, 1fr);
        padding: 1rem;
        gap: 1rem;
    }

    .built-wr {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }

    .built-box h5 {
        margin: 0 0 1.25rem 0;
    }

    .lock-grid {
        grid-template-columns: 1fr;
    }

    .lock-left {
        padding: 2rem;
        border-right: none;
        border-bottom: 1px solid var(--colors--grey4);
    }

    .lock-right {
        padding: 2rem;
    }

    .lock-trust {
        flex-wrap: wrap;
        gap: 0.625rem;
    }

    .compare-mobile .compare-card-row {
        padding: 0.75rem 1rem;
    }

    .faq_row {
        margin: 0 0 30px 0;
    }

    .faq_answer {
        padding: 0 1.875rem 1.25rem 0;
    }

    .content.faq-c {
        padding-bottom: 3rem;
    }

    .content.contact-c {
        padding-bottom: 3rem;
    }

    form {
        padding: 1.25rem;
    }

    .footer-top {
        flex-flow: column;
        text-align: center;
        padding-bottom: 2rem;
    }

    .footer-top-right {
        text-align: center;
    }

    .footer-btm {
        flex-flow: column;
        text-align: center;
        gap: 0.5rem;
    }

    .content.footer-c {
        padding: 2.5rem 0;
    }
}

@media screen and (max-width: 479px) {
    .content {
        width: 92%;
    }

    h3 {
        font-size: 1.625rem;
    }

    #thanks-page .content.main-c {
        padding: 1.25rem 0 2.5rem;
    }

    .cta-wr {
        flex-direction: column;
        align-items: stretch;
    }

    .cta {
        font-size: 0.9375rem;
        padding: 1rem 1.5rem;
    }

    .cta::after {
        display: none;
    }

    .top-red {
        font-size: 0.875rem;
        letter-spacing: 2px;
        margin: 0 0 0.9375rem 0;
    }

    .main-c {
        padding-top: 1rem;
    }

    .content.main-c {
        padding-top: 1rem;
        padding-bottom: 1.875rem;
    }

    .hero-bullets {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .header-wr {
        grid-template-columns: auto;
        justify-content: center;
    }

    .header-wr .cta {
        display: none;
    }

    .pill.header-pill {
        padding: 0.75rem 1rem;
        flex-direction: row;
    }

    .pill.header-pill p {
        font-size: 0.9rem;
    }

    .pill.header-pill img {
        max-width: 50px;
    }

    .brand-boxes-btm {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }

    .universal-box.brand-box-btm {
        padding: 1rem 0.625rem;
    }

    .universal-box.brand-box-btm p:last-child {
        font-size: 0.75rem;
    }

    .brands-wr {
        gap: 1rem 1.5rem;
    }

    .brands-wr img {
        max-height: 25px;
    }

    .pill {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .pill.header-pill span {
        display: block;
    }

    .problem-wr {
        margin: 0 0 1.25rem 0;
    }

    .section-problem .pill {
        flex-direction: row;
        text-align: left;
    }

    .pill.member-box {
        gap: 1rem;
    }

    .pill.brands-box h3 {
        padding: 0 0 0.8rem 0;
    }

    .pill.brands-box h3::after {
        width: 100%;
        height: 1px;
        right: 0;
        top: unset;
        transform: none;
        bottom: 0;
    }

    .edge-box .small-pill {
        margin: 0 0 1.25rem 0;
    }

    .group-wr {
        gap: 0.875rem 1.25rem;
    }

    .lock-top {
        font-size: 0.6875rem;
        letter-spacing: 1px;
        padding: 0.75rem;
    }

    .lock-left {
        padding: 1.5rem 1rem;
    }

    .lock-left .cta {
        padding: 1rem 0.75rem;
    }

    .lock-right {
        padding: 1.5rem;
    }

    .lock-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .lock-price-label,
    .lock-price-value {
        padding: 0.875rem 0.5rem;
    }

    .compare-mobile .compare-card-row {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.625rem 1rem;
    }

    .compare-mobile .compare-card-label {
        width: 100%;
        font-size: 0.75rem;
    }

    .compare-mobile .compare-card-row p:last-child {
        text-align: left;
        font-size: 0.875rem;
    }

    .compare-mobile .compare-card-header {
        padding: 1.25rem;
    }

    .list-red-check {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9375rem;
    }

    .member-inner::before {
        width: 100%;
        height: 1px;
        top: 0;
        left: 0;
        transform: none;
    }

    .proof-navigation {
        justify-content: space-between;
        gap: 2rem;
        margin: 2rem 0 0 0;
    }

    .proof-top {
        margin-bottom: 1.25rem;
    }

    .swiper-slide {
        gap: 2rem;
    }

    .check-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .faq_question {
        padding: 0 1.875rem 1.25rem 0;
    }

    .faq_answer {
        padding: 0 1.25rem 1.25rem 0;
    }

    .hero-center {
        padding: 20px;
    }

    form {
        padding: 0.9375rem;
    }

    .cta.cta-submit {
        font-size: 1.0625rem;
        padding: 1rem 0.625rem;
    }

    .name-fields {
        flex-direction: column;
        gap: 0;
    }

    .input-wr {
        flex-direction: column;
        gap: 0;
    }

    .partners-wr {
        gap: 0.75rem 1.5rem;
    }

    .partners-wr img {
        height: 16px;
    }

    .footer-top-right a {
        font-size: 1.5rem;
    }

    .emoji-hand::after {
        margin-right: 10px;
    }
}

/* ----- FONTS ----- */

@font-face {
    font-family: 'Gellix';
    src:
        url('../fonts/Gellix-Bold.woff2') format('woff2'),
        url('../fonts/Gellix-Bold.eot') format('embedded-opentype'),
        url('../fonts/Gellix-Bold.woff') format('woff'),
        url('../fonts/Gellix-Bold.ttf') format('truetype'),
        url('../fonts/Gellix-Bold.svg') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gellix';
    src:
        url('../fonts/Gellix-Light.woff2') format('woff2'),
        url('../fonts/Gellix-Light.eot') format('embedded-opentype'),
        url('../fonts/Gellix-Light.woff') format('woff'),
        url('../fonts/Gellix-Light.woff') format('woff'),
        url('../fonts/Gellix-Light.ttf') format('truetype'),
        url('../fonts/Gellix-Light.svg') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gellix';
    src:
        url('../fonts/Gellix-SemiBold.woff2') format('woff2'),
        url('../fonts/Gellix-SemiBold.woff2') format('woff2'),
        url('../fonts/Gellix-SemiBold.eot') format('embedded-opentype'),
        url('../fonts/Gellix-SemiBold.woff') format('woff'),
        url('../fonts/Gellix-SemiBold.ttf') format('truetype'),
        url('../fonts/Gellix-SemiBold.svg') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gellix';
    src:
        url('../fonts/Gellix-Regular.woff2') format('woff2'),
        url('../fonts/Gellix-Regular.eot') format('embedded-opentype'),
        url('../fonts/Gellix-Regular.woff') format('woff'),
        url('../fonts/Gellix-Regular.svg') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gellix';
    src:
        url('../fonts/Gellix-Medium.woff2') format('woff2'),
        url('../fonts/Gellix-Medium.eot') format('embedded-opentype'),
        url('../fonts/Gellix-Medium.woff') format('woff'),
        url('../fonts/Gellix-Medium.woff') format('woff'),
        url('../fonts/Gellix-Medium.ttf') format('truetype'),
        url('../fonts/Gellix-Medium.svg') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
