@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700;800&display=swap');

/* ---- Reset Css ----*/

html,
body,
button,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

* {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
    color: #414141;
    font-weight: 300;
    max-width: 100%;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 ,h6 {
     font-family: "Raleway", sans-serif;
     font-weight: 700;
     color: var(--black, #272727);
}

.mb-10 {
    margin-bottom: 10px;
}

.bg-yellow-light {
    /* background-color: var(--bg-yellow-light, #fff6e2); */
    background-color: #fffbf2;
}

.bg-gray {
    background-color: var(--bg-gray, #fafafa);
}

.bg-black {
    background-color: #000;
}

.bg-yellow {
    background-color: var(--bg-yellow-light);
}

.color-primary {
    color: var(--primary, #ffb302);
}

.separator {
    height: 20px;
    background-color: var(--primary);
    border: none;
    margin: 5vh 0px;
}

section {
    width: 100%;
    padding: 5vh 20px;
}

.container {
    max-width: 960px;
}


/* -----Nav ----*/

.nav {
    font-family: "Raleway", sans-serif;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 100;
}

.nav__container {
    width: 960px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    width: 50px;
    height: auto;
    padding-left: 15px;
}

.nav__item {
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
    text-align: left;
    font-weight: 800;
    text-transform: uppercase;
}

.nav__link {
    text-decoration: none;
    color: var(--black, #272727);
    border-bottom: solid 3px transparent;
    transition: 0.3s;
}

.nav__link:hover {
    border-bottom: solid 3px var(--primary, #ffb302);
    transition: 0.3s;
}

.nav__link--active {
    border-bottom: 3px solid var(--primary, #ffb302);
}

.cover {
    height: 100vh;
    max-width: 100%;
    padding: 15vh 20px;
    padding-top: 125px;
    display: flex;
    justify-content: center;
}

.cover__info {
    max-width: 100%;
}

.cover__title {
    display: inline-block;
    font-size: 40px;
    text-align: left;
    font-weight: 800;
}

.cover__tagline {
    color: #bababa;
    display: none;
}

.cover__list {
    margin-top: 40px;
}

.cover__list-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.cover__list-icon {
    margin-right: 7px;
}

.cover__img {
    width: 315px;
    height: 250px;
    margin-top: -10vh;
    float: right;
    margin-right: -200px;
}

.cover__btn-container {
    bottom: 30px;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    width: 80%;
    z-index: 99;
}

.cover__btn--primary {
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 29px;
    min-width: 120px;
    padding: 17px 50px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    transition: 0.2s;
    background-color: var(--primary, #ffb302);
}

.cover__btn--primary:hover {
    background-color: var(--primary-hover, #e2a10a);
    transition: 0.3s;
}

.cover__btn-icon {
    margin-right: 8px;
}

.cover__btn--secondary {
    border: solid 3px black;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 29px;
    min-width: 120px;
    padding: 17px 50px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    transition: 0.2s;
    background: white;
    transition: 0.2s;
    box-sizing: border-box;
}

.cover__btn--secondary:hover {
    background-color: var(--primary-hover, #e2a10a);
    border: solid 3px var(--primary-hover, #e2a10a);
    transition: 0.3s;
}

.steps__container {
    width: 100vw;
    padding: 10vh 15px;
}

.steps__title {
    font-size: 27px;
    padding: 0 10px;
    color: var(--black, #272727);
    font-weight: 800;
    text-align: center;
    margin-bottom: 74px;
}

.steps__content {
    width: 100%;
}

.steps__step-item {
    display: flex;
    margin-bottom: 38px;
}

.steps__img {
    margin-right: 25px;
    height: auto;
    width: 43px;
}

.steps__img--bigger {
    height: auto;
    width: 63px;
}

.steps__step-number {
    color: var(--primary, #ffb302);
    font-size: 21px;
    display: inline;
    margin-right: 4px;
}

.steps__step-title {
    font-size: 18px;
    font-weight: 800;
    display: inline;
}

.steps_step-title--primary {
    color: var(--primary, #ffb302);
    font-size: 20px;
    font-weight: 700;
}

.steps__step-description {
    font-weight: 300;
    margin-top: 5px;
    font-size: 16px;
    padding-left: 23px;
}

.steps__listo {
    margin-top: 5px;
    font-size: 16px;
    color:#272727;
    font-weight: bold;
}

.steps__link {
    font-weight: 700;
    text-decoration: underline;
    color: var(--black, #272727);
}

.steps--only-mobile {
    display: flex;
}

.cta {
    width: 100%;
    height: 120px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta__container {
    max-width: 960px;
    padding: 11px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta__copy {
    color: white;
    font-size: 16px;
    line-height: 19px;
    padding-right: 10px;
}

.cta__icon {
    width: 13px;
    margin-right: 5px;
    vertical-align: middle;
}

.cta-mobile {
    width: 100%;
    min-height: 110px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index:1000;
    bottom:0;
    box-shadow:0px -3px 2px 0px rgb(202 202 202 / 15%);
    transition: .3s; 
}

.cta-mobile__container {
    max-width: 960px;
    padding: 11px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-mobile__copy {
    color:#272727 ;
    font-size: 18px;
    line-height: 21px;
    padding-right: 10px;
    margin-bottom: 5px;
}
.cta-mobile__sub-copy {
 color:#8B8B8B;
 font-size: 13px;
}
.cta-mobile__btn-container {
    margin-left: 20px;
}
.cta-mobile__tag {
    display: inline-block;
    margin-bottom: 2px;
    padding: 4px 6px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 10px;
    background:#EFFFE0;
    color:#6FAA1F;
}
.cta-mobile__btn {
    text-decoration: none;
    border: none;
    height: 48px;
    font-family: inherit;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    display: inline-block;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 16px 32px;
    text-transform: uppercase;
    color: #FFF;
    background-color: #ED4F49;
    transition: 0.2s;
}

.cta-mobile__btn:hover {
    background-color: #ce322d;
    transition: 0.3s;
}
.cta--transition {
    opacity:0;
    transition: .3s; 
}

.services__container {
    width: 100%;
    padding: 5vh 20px;
}

.services__title {
    font-size: 27px;
    padding: 0 20px;
    color: var(--black, #272727);
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.services__description {
    font-size: 16px;
    line-height: 1.2;
}

.services__items-row {
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
}

.services__item {
    max-width: 28%;
    text-align: center;
    display: block;
}

.services__item-icon {
    width: 58px;
    height: auto;
}

.services__item-title {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
}

.brands__container {
    max-width: 100%;
    padding: 5vh 6vw;
}

.brands__title {
    text-align: left;
    font-size: 27px;
    padding: 0 20px;
    color: var(--black, #272727);
    font-weight: 800;
    margin-bottom: 45px;
}

.brands__list {
    font-size: 16px;
    margin-bottom: 10vh;
}

.brands__list-item {
    margin-bottom: 18px;
}

.brands__list-item::before {
    content: url(../img/icons/ok.svg);
    margin-right: 8px;
}

.brands__img-container {
    margin-top: 56px;
    display: flex;
    justify-content: space-around;
}

.brands__img {
    max-width: 70px;
    height: auto;
}

.contact__container {
    width: 100vw;
    max-width: 100vw;
    padding: 5vh 20px;
}

.contact__title {
    text-align: left;
    font-size: 27px;
    color: var(--black, #272727);
    font-weight: 800;
    margin-bottom: 5px;
}

.contact__subtitle {
    font-size: 18px;
    font-weight: bold;
}

.contact__p {
    margin-top: 20px;
    font-size: 1em;
    line-height: 1.3;
    color: #696969;
}

.contact__list {
    margin-bottom: 40px;
    margin-top: 40px;
}

.contact__list-item {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact__list-icon {
    margin-right: 10px;
    vertical-align: middle;
}

.contact__link {
    text-decoration: none;
    color: var(--black, #272727);
}

.contact__map {
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.contact__btn--primary {
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 29px;
    min-width: 120px;
    padding: 17px 50px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    transition: 0.2s;
    background-color: var(--primary, #ffb302);
    z-index: 100;
}

.contact__btn--primary:hover {
    background-color: var(--primary-hover, #e2a10a);
    transition: 0.3s;
}

.contact__btn-icon {
    margin-right: 8px;
}

.contact__btn--secondary {
    border: solid 3px black;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 29px;
    min-width: 120px;
    padding: 17px 50px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    transition: 0.2s;
    background: transparent;
    transition: 0.2s;
    box-sizing: border-box;
    z-index: 120;
}

.contact__btn--secondary:hover {
    background-color: var(--primary-hover, #e2a10a);
    border: solid 3px var(--primary-hover, #e2a10a);
    transition: 0.3s;
}

footer {
    background-color: #000;
    width: 100%;
    color: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__container {
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.footer__company-name {
    margin-bottom: 3px;
    color:#5f5f5f;
}

.footer__link {
    color: rgba(255, 255, 255, 0.375);
    text-decoration: none;
}

.header {
    min-height: 350px;
    margin-top: 60px;
    display: flex;
    align-items: center;
}

.header__title-container {
    width: 100%;
    padding: 0 20px;
}

.header__title {
    display: inline-block;
    font-size: 40px;
    text-align: left;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.header__img-container {
    display: flex;
    justify-content: flex-end;
}

.header__img {
    margin-bottom: 20px;
    width: 200px;
    height: auto;
    margin-top: -35px;
}

.header__list {
    margin-bottom: 40px;
    margin-top: 40px;
}

.header__list-item {
    font-size: 14px;
    margin-bottom: 10px;
}

.header__list-icon {
    margin-right: 10px;
    vertical-align: middle;
}

.service {
    padding: 5vh 20px;
}

.service__title {
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-big {
    height: 480px;
    display: flex;
    justify-content: center;
}

.cta__container {
    display: flex;
    align-items: center;
}

.cta-big__title {
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-big__text {
    margin-bottom: 30px;
}

.cta-big__img {
    width: 100%;
    height: auto;
    padding-top: 30px;
}

.header__contact {
    padding: 15vh 20px;
    margin-top: 60px;
    min-height: 300px;
    max-width: 100%;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.header__title-container {
    text-align: center;
}

.header__contact-img {
    margin: 0;
    width: 100%;
}

.contact__img-bg {
    width: 100vw;
    z-index: 1;
    position: absolute;
    top: 60px;
}


/* ----- Colors ----- */

:root {
    --primary: #ffb302;
    --primary-hover: #e2a10a;
    --bg-yellow-light: #fff6e2;
    --bg-gray: #fafafa;
    --text: #2b2b2b;
    --black: #272727;
    --white: #fff;
}

.btn {
    text-decoration: none;
    border: none;
    height: 42px;
    font-family: inherit;
    cursor: pointer;
    /* width: 200px; */
    font-size: 14px;
    font-weight: 800;
    display: inline-block;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 29px;
    padding: 16px 30px;
    text-transform: uppercase;
    color: #000;
    transition: 0.2s;
}

.btn--primary {
    background-color: var(--primary, #ffb302);
    transition: 0.2s;
}

.btn--primary:hover {
    background-color: var(--primary-hover, #e2a10a);
    transition: 0.3s;
}

.btn--secondary {
    border: solid 2px black;
    background: transparent;
    margin-left: 5px;
    transition: 0.3s;
}

.btn--secondary:hover {
    background-color: #d1d1d1;
    border: solid 3px #d1d1d1;
    transition: 0.3s;
}

.btn--secondary-white {
    background: transparent;
    border: solid 2px #fff;
    color: #fff;
    font-weight: bold;
    margin-left: 5px;
    box-sizing: border-box;
    padding: 11px 25px;
    transition: 0.3s;
}

.btn--secondary-white:hover {
    background-color: white;
    border: solid 2px white;    
    font-weight: bold;
    color: var(--black, #272727);
    transition: 0.3s;
}
.btn--square {
    border-radius: 4px;
}

.cta__btn {
    width: 139px;
    max-height: 38px;
    font-size: 13px;
    background-color: var(--primary, #ffb302);
    text-align: center;
    color: var(--black, #272727);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
}

.btn-icon {
    margin-right: 8px;
    vertical-align: middle;
}

.title--underline {
    border-bottom: solid 5px var(--primary, #ffb302);
}

.title--black {
    color: var(--black, #272727);
}

.hidden-mobile {
    display: block;
    visibility: visible;
}

.only-mobile {
    display: block;
}

.only-desktop {
    display: none;
}
.policy__container {
    margin-top: 100px;
    max-width: 960px;
    display: flex;
}
.policy__p {
    color: #272727;
    font-weight: normal;
}

@media (min-width: 768px) {
    .btn--square {
        border-radius: 29px;
    }
    section {
        margin: 0 auto;
        padding: 0;
    }
    .container {
        padding: 5vh 10vw;
    }
    .cover__img {
        width: auto;
        height: auto;
        margin-top: 0;
    }
    .steps__container,
    .services__container {
        display: flex;
        justify-content: center;
    }
    .brands__img {
        min-width: 100px;
    }
    .header__title {
        padding: 0 5vw;
        font-size: 50px;
    }
    .header__img {
        width: 301px;
        margin-top: -100px;
    }
    .header__img-container {
        display: flex;
        justify-content: flex-end;
    }
    .services__container--overlap {
        margin-top: -170px;
    }
    .service__title {
        font-size: 40px;
    }
    .cta__big {
        max-width: 960px;
    }
    .cta-big__img {
        padding: 0;
    }
    .row {
        display: flex;
    }
    .header__title {
        display: block;
        text-align: center;
    }
    .header__contact-img {
        width: 387px;
    }
    .header__list {
        display: flex;
        justify-content: center;
        margin-bottom: 0px;
    }
    .header__list-item {
        margin-right: 25px;
    }
    .header__contact {
        padding: 40px 20px;
    }
    .header__container {
        width: 100% !important;
        max-width: 100vw;
    }
    .cta-mobile__copy {
        color:#272727 ;
        font-size: 24px;
        line-height: 27px;
        padding-right: 10px;
        margin-bottom: 5px;
    }
    .cta-mobile__sub-copy {
     color:#8B8B8B;
     font-size: 16px;
    }
}

@media (min-width: 1025px) {
    .only-desktop {
        display: block;
    }
    .only-mobile {
        display: none !important;
    }
    .hidden-mobile {
        visibility: hidden;
    }
    .container {
        padding: 5vh 0px;
        width: 960px;
    }
    .separator {
        margin: 0;
    }
    .col {
        width: 48%;
    }
    .col-60 {
        width: 50%;
        padding-left: 70px;
    }
    .col-40 {
        width: 400px;
        /* padding-right: 40px; */
    }
    .nav__logo {
        width: 50px;
        height: auto;
        padding-left: 0;
    }
    .cover {
        height: 80vh;
        padding: 0;
        display: flex;
        align-items: center;
    }
    .cover__title {
        font-size: 63px;
        font-weight: 800;
    }
    .cover__list {
        margin-bottom: 40px;
    }
    .services__item-title {
        display: block;
        font-size: 1em;
    }
    .brands__container {
        padding: 5vh 0px;
        display: flex;
        justify-content: center;
    }
    .services__container {
        height: 600px;
        display: flex;
        align-items: center;
    }
    .services__title {
        text-align: left;
        padding: 0;
        font-size: 40px;
        margin-bottom: 20px;
    }
    .services__item-icon {
        width: 80px;
        height: auto;
    }
    .services__items-row {
        margin-top: 0;
    }
    .steps__title,
    .brands__title,
    .contact__title {
        font-size: 40px;
    }
    .cta__container {
        width: 960px;
        justify-content: space-around;
    }
    .cta__btn-container {
        display: flex;
    }
    .cta__copy {
        font-size: 24px;
    }
    .contact__container {
        width: 960px;
        align-items: center;
    }
    .contact__map {
        width: 80%;
    }
    .align-items--center {
        align-items: center;
    }
    .row--reverse {
        display: flex;
        flex-direction: row-reverse;
    }
    .brands__list {
        margin-bottom: 0;
    }
    .steps__row {
        width: 600px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-top: 100px;
    }
    .steps__row .steps__content {
        align-items: center;
    }
    .steps__content {
        display: flex;
        justify-content: space-between;
    }
    .steps__step-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30%;
    }
    .steps__img {
        display: block;
        width: 67px;
        height: auto;
        margin: 0 auto;
    }
    .steps--camion {
        width: 100px;
        height: auto;
        margin-bottom: 10px;
    }
    .steps__step-title {
        text-align: center;
        display: inline-block;
        margin-top: 20pxe;
    }
    .steps_step-title--primary {
        font-size: 1.5em;
        margin: 0;
    }
    .steps__step-description {
        padding-left: 0px;
    }
    .steps__step-description--bold {
        font-weight: 800;
        font-size: 21px;
    }
    .steps__img--bigger {
        width: 110px;
    }
    .steps--only-mobile {
        display: none;
    }
    .header__img {
        width: 460px;
    }
    .services__container--overlap {
        margin-top: -200px;
    }
    .service__p {
        margin-bottom: 70px;
    }
}