:root {
    /* fonts styling */
    --color-primary: #1F99FF;
    --color-secondary: #092D4C;
    --color-highlight: #85BE05;
    --color-gray: #818D98;
    /* --color-p: #61696F; */
    --color-p: #818D98;
    --color-primary-40: #C8D1D8;
    --color-primary-10: #EDF1F5;
    --color-primary-5: #F4F7FA;
    --color-light-blue: #F0F8FF;

    --font-default: "Open Sans", sans-serif;
    --font-primary: "Montserrat", sans-serif;

    --font-size-smallest: 12px;
    --font-size-small: 14px;
    --font-size-default: 16px;
    --font-size-big: 18px;

    /* headings */
    --font-size-h1: 72px;
    --font-size-h2: 42px;
    --font-size-h3: 36px;
    --font-size-h4: 28px;
    --font-size-h5: 20px;
    --font-size-h6: 13px;

    /* properties */
    --gap-size: 10px;
    --roundness-default: 10px;
    --roundness-button: 6px;
    --roundness-pill: 20px;
    --main-container-max-width: 1150px;
    --medium-container-max-width: 950px;
    --small-container-max-width: 760px;
    
    --margin-default: 28px;
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;

    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

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

*:focus {
    outline: none;
}

/* --------------------------------------------------- */
/* Overriding padding of HubSpot container-fluid class */
/* --------------------------------------------------- */
html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container.container-main,
.container-main {
    padding-right: 0;
    padding-left: 0;
    max-width: calc(100% - 30px);
    max-width: calc(100% - 40px);
    width: var(--main-container-max-width);
    margin: 0 auto;
}

.container.container-medium,
.container-medium {
    padding-right: 0;
    padding-left: 0;
    max-width: calc(100% - 30px);
    max-width: calc(100% - 40px);
    width: var(--medium-container-max-width);
    margin: 0 auto;
}

.container.container-small,
.container-small {
    padding-right: 0;
    padding-left: 0;
    max-width: calc(100% - 30px);
    max-width: calc(100% - 40px);
    width: var(--small-container-max-width);
    margin: 0 auto;
}

/* Overriding work break for headings and blog post title */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1,
h2 {
    font-weight: 800;
}

h1,
h2,
h3,
h4,
h5,
h6,
.blog-post__title span,
.hs_cos_wrapper_type_text {
    word-break: normal !important;
    word-wrap: inherit;
    width: auto !important;
    color: var(--color-secondary);
}


h1 {
    font-size: var(--font-size-h1);
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--font-size-h2);
    line-height: 1.1;
    margin-bottom: 1rem;
}

h3 {
    font-size: var(--font-size-h3);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h4 {
    font-size: var(--font-size-h4);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h5 {
    font-size: var(--font-size-h5);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h6 {
    font-size: var(--font-size-h6);
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    font-family: 'Open Sans', sans-serif;
    width: auto !important;
    font-size: var(--font-size-default);
    color: var(--color-p);
    line-height: 1.7;
}

/* BUTTONS */
button,
.button-general {
    text-decoration: none;
    border: none;
}

.button-primary {
    position: relative;
    overflow: hidden;
    min-width: 170px;
    font-family: var(--font-primary);
    font-size: var(--font-size-smallest);
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: calc(var(--gap-size) * 1.7) calc(var(--gap-size) * 2);
    background-color: var(--color-primary);
    border-radius: var(--roundness-button);
    border: none;
    color: #ffffff;
    display: inline-block;
    line-height: 1;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: all 0.3s ease-out;
    outline: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.button-medium {
    padding: calc(var(--gap-size) * 1) calc(var(--gap-size) * 2);
}

.button-full-width {
    width: 100%;
    display: block;
}

.button-primary:hover {
    background: #0080EB;
}

/* HEADER */
#header {
    width: 100vw;
    height: 120px;
    /* padding: 0 50px; */
    box-sizing: border-box;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    transition: all .3s ease;
}

#header.hide {
    top: -120px;
}

#header.bg-white {
    background-color: #FFFFFF;
    box-shadow: 0 1px 25px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 20px 0 rgba(9, 45, 76, 0.09);
}

#header__menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header #logo img{
    width: 144px;
    height: 45px;
    -o-object-fit: contain;
       object-fit: contain;
}

#hero {
    width: 100vw;
    height: 70vh;
    max-height: 630px;
    background-color: #F0F8FF;
    background-image: url(../images/bg_curves.svg);
    background-size: 45vw 60vw;
    background-position: bottom right -15vw;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero__content {
    width: 770px;
    max-width: calc(100% - 80px);
    text-align: center;
}

#hero__content p {
    max-width: 500px;
    margin: 0 auto;
    font-size: var(--font-size-big);
}

.section-general {
    margin: 0;
    width: 100vw;
    padding: 130px 0;
    position: relative;
}

#lead {
    background: var(--color-primary);
    position: relative;
}

#lead::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 30%;
    background: var(--color-primary-10);
}

#lead__content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    min-height: 560px;
}

#lead___bg {
    width: 100%;
    height: 100%;
}

#lead___bg #advisor {
    width: 540px;
    height: 805px;
    position: absolute;
    bottom: -3px;
    right: -200px;
    z-index: 2;
}

#advisor__img {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#lead__desc {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    max-width: 520px;
}

#lead__desc__description {
    position: relative;
    font-size: 32px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 1.4;
    padding-left: 28px;
    font-size: 32px;
    margin-bottom: 52px;
}

#lead__desc__description::after {
    position: absolute;
    content: '';
    width: 4px;
    /* for cap size the line is higher than the text box */
    height: calc(100% - 1rem);
    top: 0.5rem;
    left: 0;
    z-index: 1;
    background-color: #fff;
}

#lead__desc__form {
    position: relative;
    overflow: visible;
}

#lead__desc__form__wrapper {
    border-radius: var(--roundness-pill);
    padding: 48px;
    background: #FFFFFF;
    box-shadow: 0 2px 20px 0 rgba(9, 45, 76, 0.09);
}

#lead__desc__form__wrapper h4 {
    line-height: 1;
    margin-bottom: .5rem;
}

#lead__desc__form__wrapper form {
    margin-top: var(--margin-default);
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #C8D1D8;
    border-radius: 5px;
    padding: 16px;
    margin-bottom: var(--margin-default);
    color: var(--color-p);
    font-size: 14px;
}

::-webkit-input-placeholder {
    color: #C8D1D8;
    font-size: 14px;
}

::-moz-placeholder {
    color: #C8D1D8;
    font-size: 14px;
}

:-ms-input-placeholder {
    color: #C8D1D8;
    font-size: 14px;
}

::-ms-input-placeholder {
    color: #C8D1D8;
    font-size: 14px;
}

::placeholder {
    color: #C8D1D8;
    font-size: 14px;
}

/* STATS */
#stats {
    margin-top: 140px;
}

#stats__content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row;
} 

#percent-wrapper{
    max-width: 330px;
}

#percent-number{
    width: 278px;
    height: 136px;
    margin-bottom: 10px;
    background-image: url(../images/94.svg);
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
}

#percent-subtitle {
    color: var(--color-secondary);
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

#percent__source{
    color: var(--color-p);
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

#stats-description{
    max-width: 490px;
}

/* LEVERAGE */
section#leverage{
    background-color: var(--color-primary-10);
    background-image: url(../images/bg_curves.svg);
    background-size: 45vw 60vw;
    background-position: center right -15vw;
    background-repeat: no-repeat;
}

#leverage__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row;
}

#leverage__content .sec__content__desc {
    width: auto;
}

#cards{
    width: 483px;
    height: 622px;
}

#cards img{
    width: auto;
    height: 100%;
}



/* HOW IT WORKS */
#how-it-works {
    margin-top: 140px;
    text-align: center;
}

.section_title {
    font-weight: 800;
    margin-bottom: 60px;
}

.cards {
    list-style: none;
    gap: 28px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.card {
    position: relative;
    overflow: hidden;
    padding: 44px;
    width: 350px;
    min-height: 100%;
    background-color: #FFFFFF;
    border-radius: var(--roundness-pill);
    border: 1px solid var(--color-primary-40);
}

.card__number {
    position: absolute;
    z-index: 0;
    top: 0rem;
    left: 2rem;
    font-family: var(--font-primary);
    font-size: 200px;
    line-height: 1;
    color: #F4F7FA;
    font-weight: 600;
}

.card__content {
    position: relative;
    z-index: 1;
}

.card_content__icon {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto 32px;
    background-repeat: no-repeat;
    background-size: contain;
}

#card_feedback .card_content__icon {
    background-image: url(../images/icon_feedback.svg);
}

#card_profile .card_content__icon {
    background-image: url(../images/icon_star.svg);
}

#card_referrals .card_content__icon {
    background-image: url(../images/icon_referrals.svg);
}

.card_content__title {
    line-height: 1.3;
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
}

/* SEC */
#sec {
    background-color: var(--color-primary-10);
    background-image: url(../images/bg_curves.svg);
    background-size: 45vw 60vw;
    background-position: center right -15vw;
    background-repeat: no-repeat;
}

#sec__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    gap: 60px;
}

.sec__content__video {
    position: relative;
    width: 620px;
    overflow: hidden;
    /* height: 390px; */
    height: auto;
    padding: 6px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.06);
    background: #FFFFFF;
}

.sec__content__video__placeholder {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
    background: #FFFFFF;
}

#sec__content__video__placeholder__img,
#sec__content__video__placeholder__vid{
    width: 100%;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    /* remove white space below image */
    vertical-align: bottom
}

#sec__content__video__placeholder__img{
    position: relative;
    cursor: pointer;
    border: 0 !important;
    z-index: 2;
}

#sec__content__video__placeholder__vid{
    position: relative;
    border: 2px solid transparent;
    left: 0;
    top: 0;
    /* display: none; */
    min-height: 100%;
    z-index: 1;
}

.play-icon {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url(../images/icon_play.svg);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 100%;
    transition: all .3s ease-out;
}
.sec__content__video__placeholder:hover .play-icon {
    background-color: rgba(0, 0, 0, 0.7);
}

.sec__content__desc {
    width: 360px;
    flex: 1;
}

.sec__content__desc p {
    margin-bottom: var(--margin-default);
}


/* SECTION RATING HELP */
#rating {}

#rating::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 33%;
    z-index: 1;
    background-color: var(--color-primary-5);
}

#rating__content {
    position: relative;
    z-index: 2;
}

#rating__content__help {
    margin-bottom: 60px;
}

.rating__content__help__stars {
    width: 186px;
    height: 24px;
    display: block;
    margin-bottom: var(--margin-default);
    background: url(../images/stars_together.svg) center left no-repeat transparent;
    background-size: contain;
}

.rating__content__rating_box {
    width: 100%;
    height: 230px;
    display: block;
    background: url(../images/rating_box.svg) center center no-repeat #FFFFFF;
    background-size: contain;
    border: 1px solid #D7E2EC;
    box-shadow: 0 2px 20px 0 rgba(3, 3, 3, 0.06);
    border-radius: 20px;
}



/* FOOTER */
#footer_landing {
    background-color: var(--color-secondary);
}

#footer_landing_content{
    /* padding: 0 50px; */
}

#footer_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3B5973;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

#footer_logo {
    width: 189px;
    height: 58px;
    background: url(../images/indyfin_logo_white.svg) center left no-repeat;
    background-size: contain;
}

#footer_social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer__social_icon {
    width: 50px;
    height: 50px;
    border: 1px solid #3B5973;
    border-radius: 25px;
    display: inline-block;
    background-position: center;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    transition: border .3s ease-in-out;
}

.footer__social_icon:hover {
    border: 1px solid #FFFFFF;
}

#footer_social #linkedin {
    background-image: url(../images/linkedin.svg);
}

#footer_social #twitter {
    background-image: url(../images/twitter.svg);
}

#footer-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
}

#about-links-wrapper{
    max-width: 650px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    flex: 1;
}

#footer-about {
    /* width: 35%; */
    max-width: 370px;
}

#footer-about p {
    margin-bottom: var(--margin-default);
    color: #A4AEB8;
}

#footer-about .contact-link {
    margin-bottom: 12px;
}

#footer-about .contact-link a {
    color: #FFFFFF;
    text-decoration: none;
}

#footer-about .contact-link a:hover {
    text-decoration: underline;
}

#footer_links ul {
    list-style: none;
    min-width: 150px;
}

#footer_links ul li {
    margin-bottom: 20px;
}

#footer_links ul li a {
    color: #FFFFFF;
    margin-bottom: 20px;
    text-decoration: none;
}

#footer_links ul li a:hover {
    text-decoration: underline;
}

#footer_form {
    width: 364px;
    height: 188px;
    border: 1px solid #3B5973;
    padding: 20px;
    border-radius: 20px;
}

#footer_form h5,
#footer_form h6 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

#footer_form input {
    margin-bottom: 20px;
    height: 40px;
}

#footer_form input:last-child {
    margin-bottom: 0;
}


/* MEDIA QUERIES */
@media (min-width: 300px) {
    /* STATS */
    #stats {
        margin-top: 0px;
    }

    #stats__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: column;
        gap: 40px;
    }

    #percent-wrapper {
        max-width: 100%;
    }

    #percent-number {
        width: 218px;
        height: 106px;
        margin-bottom: 1rem;
    }

    #percent-subtitle {
        font-size: 16px;
        margin-bottom: 1rem;
    }

    #percent__source {
        font-size: 12px;
        margin-bottom: 1rem;
    }

    #stats-description {
        max-width: 490px;
    }

    /* LEVERAGE */
    section#leverage {
        background-size: 45vw 60vw;
        background-position: center right -15vw;
    }

    #leverage__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: column;
        gap: 40px;
    }

    #cards {
        width: 260px;
        height: 330px;
    }
    
    #header #logo img {
        width: 104px;
        height: 34px;
        -o-object-fit: contain;
        object-fit: contain;
    }

    #hero {
        height: 70vh;
    }

    .section-general {
        padding: 80px 0;
    }

    .container {
        padding-right: 15px;
        padding-left: 15px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .container.container-main {
        max-width: calc(100% - 40px);
    }

    .container.container-medium {
        max-width: calc(100% - 40px);
    }

    .container.container-small {
        max-width: calc(100% - 40px);
    }

    :root {
        --font-size-smallest: 11px;
        --font-size-small: 11px;
        --font-size-default: 14px;
        --font-size-big: 16px;

        /* headings */
        --font-size-h1: 42px;
        --font-size-h2: 30px;
        --font-size-h3: 26px;
        --font-size-h4: 22px;
        --font-size-h5: 14px;
        --font-size-h6: 11px;

        --margin-default: 20px;
    }

    .rating__content__help__stars {
        width: 180px;
        height: 20px;
    }

    .rating__content__rating_box {
        width: 270px;
        min-width: calc(100% - 40px);
        margin: 0 auto;
        height: 228px;
        background: url(../images/rating_box_mobile.svg) center center no-repeat #FFFFFF;
        background-size: contain;
    }

    #header {
        height: 80px;
    }

    #header.hide {
        top: -80px;
    }

    #lead {
        padding-bottom: 0;
        overflow-y: hidden;
    }

    #how-it-works {
        margin-top: 0px;
    }

    #lead__content {
        flex-direction: column;
        min-height: 560px;
    }

    #lead___bg {
        width: 100%;
        height: 100%;
    }

    #lead___bg #advisor {
        width: 284px;
        height: 422px;
        position: relative;
        bottom: -20px;
        right: 0;
        margin: 0 auto;
    }

    #lead::after {
        height: 50%;
    }

    #lead__desc {
        position: relative;
        z-index: 5;
        max-width: 520px;
    }

    #footer_logo {
        width: 120px;
        height: 40px;
    }

    #lead__desc__description {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 42px;
        padding-left: 0;
    }

    #lead__desc__description::after {
        display: none;
    }

    #lead__desc__form__wrapper {
        padding: 32px;
    }

    .section_title,
    #rating__content__help {
        margin-bottom: 40px;
    }

    #sec__content {
        gap: 40px;
    }

    .card {
        padding: 36px;
        width: 320px;
    }
}

@media (min-width: 390px) {
    .rating__content__rating_box {
        width: 335px;
        min-width: 335px;
        margin: 0 auto;
        height: 283px;
        background: url(../images/rating_box_mobile.svg) center center no-repeat #FFFFFF;
    }

    .section-general {
        padding: 100px 0;
    }

    #hero {
        height: 60vh;
    }

    /* STATS */
    #stats {
        margin-top: 0px;
    }

    #stats__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: column;
        gap: 40px;
    }

    #percent-wrapper {
        max-width: 100%;
    }

    #percent-number {
        width: 218px;
        height: 106px;
        margin-bottom: 1rem;
    }

    #percent-subtitle {
        font-size: 18px;
        margin-bottom: 1rem;
    }

    #percent__source {
        font-size: 12px;
        margin-bottom: 1rem;
    }

    #stats-description {
        max-width: 490px;
    }

    /* LEVERAGE */
    section#leverage {
        background-size: 45vw 60vw;
        background-position: center right -15vw;
    }

    #leverage__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: column;
        gap: 40px;
    }

    #cards {
        width: 260px;
        height: 330px;
    }

}

@media (min-width: 575px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }

    .container.container-main,
    .container.container-medium,
    .container.container-small {
        max-width: calc(100% - 40px);
    }

    :root {
        --font-size-smallest: 11px;
        --font-size-small: 13px;
        --font-size-default: 15px;
        --font-size-big: 17px;

        /* headings */
        --font-size-h1: 56px;
        --font-size-h2: 34px;
        --font-size-h3: 26px;
        --font-size-h4: 22px;
        --font-size-h5: 16px;
        --font-size-h6: 11px;

        --margin-default: 24px;
    }

    .rating__content__rating_box {
        width: 100%;
        height: 230px;
        background: url(../images/rating_box.svg) center center no-repeat #FFFFFF;
        background-size: contain;
    }

    #footer-content {
        flex-direction: column;
        gap: 40px;
    }

    #about-links-wrapper {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        gap: 40px;
        flex-wrap: wrap;
    }

    #footer-about {
        width: auto;
        max-width: 370px;
    }

}

@media (min-width: 768px) {
    /* STATS */
    #stats {
        margin-top: 140px;
    }

    #stats__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row;
        gap: 40px;
    }

    #percent-wrapper {
        max-width: 260px;
    }

    #percent-number {
        width: 218px;
        height: 106px;
        margin-bottom: 1rem;
    }

    #percent-subtitle {
        font-size: 20px;
        margin-bottom: 1rem;
    }

    #percent__source {
        font-size: 12px;
        margin-bottom: 1rem;
    }

    #stats-description {
        max-width: 490px;
    }

    /* LEVERAGE */
    section#leverage {
        background-size: 45vw 60vw;
        background-position: center right -15vw;
    }

    #leverage__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row;
        gap: 40px;
    }

    #cards {
        width: 387px;
        height: 499px;
    }

    #lead__content {
        flex-direction: row;
        min-height: 560px;
    }

    #lead___bg {
        width: 100%;
        height: 100%;
    }

    #lead___bg #advisor {
        width: 540px;
        height: 805px;
        position: absolute;
        bottom: -3px;
        bottom: 0;
        right: -200px;
    }

    #how-it-works {
        margin-top: 140px;
    }

    #lead::after {
        height: 30%;
    }

    #lead__desc {
        position: absolute;
        z-index: 5;
        max-width: 520px;
    }

    #hero {
        height: 70vh;
    }

    .section-general {
        padding: 130px 0;
    }

    #lead {
        /* padding-bottom: 130px; */
        overflow-y: visible;
    }

    #header #logo img {
        width: 144px;
        height: 45px;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .container {
        padding-right: 30px;
        padding-left: 30px;
    }

    .container-fluid {
        padding-right: 30px;
        padding-left: 30px;
    }

    .container.container-main,
    .container.container-medium,
    .container.container-small {
        max-width: calc(100% - 60px);
    }

    .container.container-small {
        max-width: 620px;
    }

    :root {
        --font-size-smallest: 12px;
        --font-size-small: 14px;
        --font-size-default: 16px;
        --font-size-big: 18px;

        /* headings */
        --font-size-h1: 64px;
        --font-size-h2: 36px;
        --font-size-h3: 30px;
        --font-size-h4: 26px;
        --font-size-h5: 18px;
        --font-size-h6: 12px;

        --margin-default: 28px;
    }

    .rating__content__help__stars {
        width: 186px;
        height: 24px;
    }

    .rating__content__rating_box {
        width: 100%;
        height: 230px;
        background: url(../images/rating_box.svg) center center no-repeat #FFFFFF;
        background-size: contain;
    }

    #sec__content {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 40px;
        max-width: 620px;
    }

    .sec__content__video {
        width: 620px;
        width: 100%;
    }

    .sec__content__desc {
        width: 100%;
        flex: 1;
    }

    #footer-content {
        flex-direction: row;
        gap: 40px;
    }

    #footer_logo {
        width: 189px;
        height: 58px;
    }

    #about-links-wrapper {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        gap: 40px;
        flex-wrap: wrap;
    }

    #footer-about {
        width: auto;
        max-width: 370px;
    }

    #header {
        height: 100px;
    }

    #header.hide {
        top: -100px;
    }

    #lead__desc__description {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 48px;
        padding-left: 28px;
    }

    #lead__desc__description::after {
        display: block;
    }

    #lead__desc__form__wrapper {
        padding: 48px;
    }

    .section_title,
    #rating__content__help {
        margin-bottom: 60px;
    }

    #sec__content {
        gap: 60px;
    }

    .card {
        padding: 44px;
        width: 350px;
    }
}

@media (min-width: 991px) {
    
    #sec__content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 50px;
        max-width: calc(100% - 60px);
    }

    .sec__content__video {
        width: 620px;
        max-width: 60%;
    }

    .sec__content__desc {
        width: 360px;
        max-width: 40%;
        flex: 1;
    }

    #lead__desc__form__wrapper {
        padding: 48px;
    }
}

@media (min-width: 1024px) {
    /* STATS */
    #stats {
        margin-top: 140px;
    }

    #stats__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row;
        gap: 60px;
    }

    #percent-wrapper {
        max-width: 330px;
    }

    #percent-number {
        width: 278px;
        height: 136px;
        margin-bottom: 1rem;
    }

    #percent-subtitle {
        font-size: 20px;
        margin-bottom: 1rem;
    }

    #percent__source {
        font-size: 12px;
        margin-bottom: 1rem;
    }

    #stats-description {
        max-width: 490px;
    }

    /* LEVERAGE */
    section#leverage {
        background-size: 45vw 60vw;
        background-position: center right -15vw;
    }

    #leverage__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row;
        gap: 60px;
    }

    #cards {
        width: 483px;
        height: 622px;
    }
    
    .container {
        padding-right: 40px;
        padding-left: 40px;
    }

    .container-fluid {
        padding-right: 40px;
        padding-left: 40px;
    }

    .container.container-main,
    .container.container-medium,
    .container.container-small {
        max-width: calc(100% - 80px);
    }

    :root {
        --font-size-smallest: 12px;
        --font-size-small: 14px;
        --font-size-default: 16px;
        --font-size-big: 18px;

        /* headings */
        --font-size-h1: 70px;
        --font-size-h2: 40px;
        --font-size-h3: 34px;
        --font-size-h4: 28px;
        --font-size-h5: 20px;
        --font-size-h6: 13px;

        /* properties */
        --gap-size: 10px;
        --roundness-default: 10px;
        --roundness-button: 6px;
        --roundness-pill: 20px;

        --margin-default: 28px;
    }

    p {
        line-height: 1.7;
    }

    #header {
        height: 100px;
    }

    #header.hide {
        top: -100px;
    }

    #hero {
        height: 70vh;
        max-height: 630px;
        background-size: 45vw 60vw;
        background-position: bottom right -15vw;
    }

    #hero__content {
        max-width: 770px;
        text-align: center;
    }

    #hero__content p {
        max-width: 500px;
    }

    .section-general {
        padding: 100px 0;
    }

    #sec__content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 50px;
        max-width: calc(100% - 80px);
    }

    .sec__content__video {
        width: 620px;
        max-width: 60%;
    }

    .sec__content__desc {
        width: 360px;
        max-width: 40%;
        flex: 1;
    }

    #lead__desc__description {
        font-size: 30px;
        line-height: 1.4;
        margin-bottom: 50px;
    }

}

@media (min-width: 1180px) {
    /* STATS */
    #stats {
        margin-top: 140px;
    }

    #stats__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row;
    }

    #percent-wrapper {
        max-width: 330px;
    }

    #percent-number {
        width: 278px;
        height: 136px;
        margin-bottom: 1rem;
    }

    #percent-subtitle {
        font-size: 20px;
        margin-bottom: 1rem;
    }

    #percent__source {
        font-size: 12px;
        margin-bottom: 1rem;
    }

    #stats-description {
        max-width: 490px;
    }

    /* LEVERAGE */
    section#leverage {
        background-size: 45vw 60vw;
        background-position: center right -15vw;
    }

    #leverage__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row;
    }

    #cards {
        width: 483px;
        height: 622px;
    }

    .container {
        padding-right: 50px;
        padding-left: 50px;
    }

    .container-fluid {
        padding-right: 50px;
        padding-left: 50px;
    }

    .container.container-main,
    .container.container-medium,
    .container.container-small {
        max-width: calc(100% - 100px);
    }

    :root {
        --font-size-smallest: 12px;
        --font-size-small: 14px;
        --font-size-default: 16px;
        --font-size-big: 18px;

        /* headings */
        --font-size-h1: 72px;
        --font-size-h2: 42px;
        --font-size-h3: 36px;
        --font-size-h4: 28px;
        --font-size-h5: 20px;
        --font-size-h6: 13px;

        /* properties */
        --gap-size: 10px;
        --roundness-default: 10px;
        --roundness-button: 6px;
        --roundness-pill: 20px;
        --main-container-max-width: 1150px;
        --medium-container-max-width: 950px;
        --small-container-max-width: 760px;

        --margin-default: 28px;
    }

    p {
        line-height: 1.7;
    }

    /* HEADER */
    #header {
        height: 120px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #header.hide {
        top: -120px;
    }

    #header__menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #hero {
        height: 70vh;
        max-height: 630px;
        background-size: 45vw 60vw;
        background-position: bottom right -15vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #hero__content {
        max-width: 770px;
    }

    #hero__content p {
        max-width: 500px;
        margin: 0 auto;
    }

    .section-general {
        padding: 130px 0;
    }

    #lead::after {
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 100vw;
        height: 30%;
    }

    #lead__content {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        min-height: 560px;
    }

    #lead___bg #advisor {
        width: 540px;
        height: 805px;
        position: absolute;
        bottom: -3px;
        right: -200px;
    }

    #advisor__img {
        width: auto;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    #lead__desc {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 520px;
    }

    #lead__desc__description {
        font-size: 32px;
        line-height: 1.4;
        margin-bottom: 52px;
    }

    #lead__desc__form__wrapper {
        padding: 48px;
    }

    #lead__desc__form__wrapper h4 {
        margin-bottom: .5rem;
    }


    /* HOW IT WORKS */
    #how-it-works {
        margin-top: 140px;
    }

    .section_title {
        margin-bottom: 60px;
    }

    .cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }

    .card {
        padding: 44px;
        width: 350px;
        min-height: 100%;
    }

    .card__number {
        top: 0rem;
        left: 2rem;
        font-size: 200px;
    }

    .card_content__icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 32px;
    }

    .card_content__title {
        line-height: 1.3;
        max-width: 230px;
    }

    /* SEC */
    #sec {
        background-size: 45vw 60vw;
        background-position: center right -15vw;
    }

    #sec__content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 60px;
    }

    .sec__content__video {
        width: 620px;
        height: auto;
    }

    .play-icon {
        width: 80px;
        height: 80px;
    }

    .sec__content__desc {
        width: 360px;
        flex: 1;
    }

    /* SECTION RATING HELP */
    #rating::after {
        width: 100vw;
        height: 33%;
    }

    #rating__content {
        position: relative;
        z-index: 2;
    }

    #rating__content__help {
        margin-bottom: 60px;
    }

    .rating__content__help__stars {
        width: 186px;
        height: 24px;
        margin-bottom: var(--margin-default);
    }

    .rating__content__rating_box {
        width: 100%;
        height: 230px;
        border-radius: 20px;
    }

    /* FOOTER */
    #footer_header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    #footer_logo {
        width: 189px;
        height: 58px;
    }

    #footer_social {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .footer__social_icon {
        width: 50px;
        height: 50px;
    }

    #footer-content {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
    }

    #footer_links ul {
        min-width: 150px;
    }

    #footer_form {
        width: 364px;
        height: 188px;
        border-radius: 20px;
    }
}

#sec__content__video__placeholder__vid{
    min-height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none;
    border: 6px solid transparent;
}
