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

:root {
    /*var global*/
    --main-bg-color: #F8F8F8;
    --primary-color: #625F6E;
    --accent-color: #F16B3E;
    --secondary-color: #eea849;
    /*var card*/
    --card-box-shadow: 0 4px 24px 0 rgba(34, 41, 47, .1);
    /*var sidebar(menu)*/
    --sidebar-bg-color: #FFF;
    --sidebar-width: 260px;
    --sidebar-box-shadow: 0 0 15px 0 rgba(34, 41, 47, .05);
}

body {
    background-color: var(--main-bg-color);
    -webkit-font-smoothing: antialiased;
    font-family: "Roboto", "Montserrat", Sans-serif;

}

body, main, header, footer {
    margin: 0;
    padding: 0;
    background-color: #ebe9e7;

}

.full-container {
    display: flex;
}


.topBar{
    display: flex;
    width: 100%;
    align-items: center;
    padding: 1.1rem 6%;
    background: #1c1c1c;
    font-family: "Montserrat", "Roboto", Sans-serif;
}
.topBar .logo{
    max-width: 200px;
    height: 60px;
    object-fit: contain;
}

.topBar .contactLink{
    color:white;
    margin-left: auto;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.topBar .loginLink{
    background-color: var(--accent-color);
    font-weight: bold;
    border-radius: 20px;
    letter-spacing: 1.3px;
    color: white;
    fill: white;
    text-transform: uppercase;
    padding:0.8rem 1.5rem;
    text-decoration: none;
    line-height: 1;
    font-size: 15px;
    text-align: center;
    margin-left: 4rem;
}

.topfloat{
    background-size: cover;
    background-attachment: fixed;
    height: 570px;
}

.topfloat .mainTitle{
    color:#f9f9f9;
    margin-top: 6rem;
    font-family: "Oswald", Sans-serif;
}

.topfloat .mainTitle h1{
    font-family: "Oswald", Sans-serif;
    font-weight: 900;
    font-size: 2.45rem;
    text-transform: uppercase;
    line-height: 1;
}

.topfloat .mainTitle h2{
    font-family: "Oswald", Sans-serif;
    font-weight: 900;
    font-size: 1.79rem;
    line-height: 0.5;
    text-transform: uppercase;

}


.sectionContent{
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.sectionContent .article{
    margin: 0 2rem;
}

.bottomfloat{
    color: #363636;
    padding: 3.6rem;
}

.bottomfloat h3{
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

.bottomfloat h5{
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

.ebookIncentives{
    display: flex;
    flex-direction: row;
    margin-top: 8.2rem;
    padding: 1.618rem;
    background-color: rgb(48 54 58);
    border-radius: 27px;
    -webkit-box-shadow: 1px 3px 12px 1px rgb(48 54 58);
    box-shadow: 1px 3px 12px 1px rgb(48 54 58);

}
.ebookIncentives .ebookAdvantages  h3{
    font-family: "Roboto", "Oswald", Sans-serif;
    font-weight: 450;
    font-size: 1.3rem;
    line-height: 0.5;
    text-transform: uppercase;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.ebookIncentives .ebookAdvantages ul{
    list-style-type: none;
    margin-bottom: 0;
    margin-top: 1.8rem;
    padding-left: 2rem;
}

.ebookIncentives .ebookAdvantages ul li{
    align-items: center;
    margin-bottom: .61rem;
}

.ebookIncentives .ebookAdvantages ul li .listDot svg{
    height: 24px;
    width: 24px;
    vertical-align: middle;
}

.ebookIncentives .ebookAdvantages ul li .listText {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.6px;
    padding-left: 0.6rem;
    vertical-align: middle;
    font-family: roboto;
}


.downloadForm{
    margin-left: auto;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    min-width: 400px;
}

.downloadForm input{
    border: 0;
    border-radius: 50px;
    padding:0.5rem 1rem;
    font-size: 14px;
    letter-spacing: 1.3px;
    font-weight: bold;
    color: #484848;
    min-height: 40px;
    margin-bottom: 18px;
    font-family: 'Roboto';
}
.downloadForm button{
    background-color: #eb501c;
    font-weight: bold;
    border-radius: 50px;
    letter-spacing: 1.3px;
    color: white;
    fill: white;
    text-transform: uppercase;
    padding:0.8rem 1.5rem;
    text-decoration: none;
    line-height: 1;
    font-size: 15px;
    text-align: center;
    border: 0;
    min-height: 40px;
    max-height: 40px;
    cursor: pointer;
    font-family: "Montserrat", "Roboto", Sans-serif;

}

.downloadForm button:active{
    background-color: #e1410a;
}

.bottomfloat .downloadForm{
    margin-right: auto;
    padding: 1.618rem;
}
.bottomfloat .downloadForm input{
border: 1px solid var(--accent-color);
}

.footer{
    display: flex;
}
.footer span{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}


.thankYouModal{
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1000;
}

.thankYouModal .thankYouModalBackground{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
}
.thankYouModal .thankYouModalBody{
    margin: auto auto;
    max-width: 700px;
    background-color: whitesmoke;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 2px 11px 2px rgb(0 0 0 / 26%);
    position: relative;
    transition: all ease .1s;
    opacity: 0;
}

.thankYouModal .thankYouModalBody .thankYouMessage{
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.thankYouMessage .thankYouTitle{
    text-align: center;
}
.thankYouMessage .thankYouText{
    text-align: center;
}

.thankYouModal .thankYouModalBody .returnLink{
    text-align: center;
    margin-top: 2rem;
}

.thankYouModal .thankYouModalBody .returnLink a{
    font-weight: bold;
    letter-spacing: 1.3px;
    color:  #eb501c;
    text-decoration: none;
    line-height: 1;
    font-size: 15px;
    text-align: center;
    border: 0;
    min-height: 40px;
    max-height: 40px;
    cursor: pointer;
}



.success-animation {
    margin: 2rem auto auto;
}

.checkmark {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position:relative;
    top: 5px;
    right: 5px;
    margin: 0 auto;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;

}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 10px #4bb71b;
    }
}



@media screen and (max-width: 1500px) {
    .sectionContent {
        max-width: 800px;
    }

    .ebookIncentives {
        margin-top: 3.4rem;
    }

    .ebookIncentives .ebookAdvantages h3 {
        line-height: unset;
        position: absolute;
        margin-top: 0;
        margin-left: 1rem;
    }
    .ebookIncentives .ebookAdvantages ul{
        margin-top: 4.2rem;
    }

    .ebookIncentives .ebookAdvantages ul.tabletNoPaddingLeft{
        padding-left: 0;
    }

    .downloadForm {
        min-width: 300px;
        margin-top: 3.2rem;
    }

    .downloadForm input{
        margin-bottom: 12px;
    }

}

@media screen and (max-width: 1024px) {
    .mainTitle.sectionContent{
        margin-top: 2rem;
    }
    .sectionContent{
        max-width: 600px;
    }
    .topfloat .mainTitle h1{
        background-color: rgba(0,0,0,0.33);
        padding: 0.8rem;
        line-height: 1.1;

    }
    .topfloat .mainTitle h2{
        line-height: 1;
        background-color: rgba(0,0,0,0.33);
        padding: 0.6rem;
    }


    .ebookIncentives {
        margin-top: 1.4rem;
        flex-direction: column;
    }

    .ebookIncentives .ebookAdvantages h3 {
        line-height: unset;
        position: absolute;
        margin-top: 0;
        margin-left: 1rem;
    }
    .ebookIncentives .ebookAdvantages ul{
        margin-top: 3.2rem;
        margin-left: auto;
        margin-right: auto;
    }
    .downloadForm {
        min-width: 100%;
        margin-top: 1.2rem;
        margin-left: unset;
    }
    .downloadForm input{
        margin-bottom: 18px;
    }
    .bottomfloat .sectionContent{
        margin-top: 7rem;
    }
    .bottomfloat .downloadForm {
        min-width: 0;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

}

@media screen and (max-width: 700px) {

    .topBar .loginLink{
        display: none;
    }
    .topBar .contactLink{
        font-size: 13px;
    }

    .topfloat .mainTitle{
        padding-top: 0.5rem ;
        padding-left: 0 ;
        margin-top: 0;
    }
    .topfloat .mainTitle h1{
        background-color: rgba(0,0,0,0.33);
        padding: 0.8rem;
        padding-left: 1rem;
        margin: 1rem 0.5rem;
        line-height: 1.1;
    }
    .topfloat .mainTitle h2{
        line-height: 1;
        background-color: rgba(0,0,0,0.33);
        padding: 0.6rem;
        padding-left: 1rem;
        margin: 1rem 0.5rem;
    }
    .ebookIncentives {
        border-radius: 0;
    }
    .ebookIncentives .ebookAdvantages h3{
        margin-left: 0;
    }

    .bottomfloat .sectionContent{
        margin-top: 12rem;
    }

    .sectionContent .article{
        margin: 0;
    }
    .thankYouModal {
        background-color: rgba(255, 255, 255, 0.95);
    }

    .thankYouModal .thankYouModalBody{
        margin: auto auto;
        max-width: unset;
        width: 95%;
        height: 90vh;
        background-color: whitesmoke;
        border-radius: 20px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        box-shadow: 0px 2px 11px 2px rgb(0 0 0 / 26%);
        position: absolute;
        top: 0.6rem;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .thankYouModal .thankYouModalBody .thankYouImage{
        margin-top: 15vh;
    }

    .thankYouModal .thankYouModalBody .thankYouMessage{
        margin-top: 11vh;
    }


    .thankYouModal .thankYouModalBody .returnLink{
        position: absolute;
        left: 50%;
        bottom: 4rem;
        transform: translate(-50%, 0);
        width: 83%;
        border-top: 3px solid var(--accent-color);
        text-align: center;
        margin-top: 2rem;
        padding-top: 2.61rem;
    }
}

@media screen and (max-width: 500px) {
    .ebookIncentives .ebookAdvantages ul{
        margin-top: 5rem;
        padding-left: 0;
    }
    .ebookIncentives .ebookAdvantages ul li{
        display: flex;
    }
    .bottomfloat{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .bottomfloat .sectionContent{
        margin-top: 14rem;
    }
}
@media screen and (max-width: 460px) {
    .bottomfloat .sectionContent{
        margin-top: 16rem;
    }
}
@media screen and (max-width: 430px) {
    .bottomfloat .sectionContent{
        margin-top: 18rem;
    }
}
@media screen and (max-width: 420px) {
    .bottomfloat .sectionContent{
        margin-top: 20rem;
    }
}
@media screen and (max-width: 400px) {
    .topBar .contactLink{
        display: none;
    }
    .bottomfloat .sectionContent{
        margin-top: 22rem;
    }
    .bottomfloat .downloadForm{
        padding-left: 0;
        padding-right: 0;
    }
}
@media screen and (max-width: 350px) {
    .topBar .contactLink{
        display: none;
    }
    .bottomfloat .sectionContent{
        margin-top: 25rem;
    }
}
@media screen and (max-width: 300px) {

    .bottomfloat .sectionContent{
        margin-top: 32rem;
    }
}

