
/* -------------------------------------------------
	
	01 . IMPORT
	02 . BASE
	03 . HERO
	04 . SUBNAV
	05 . LOGOS
	06 . HIGHLIGHT
	07 . PROCESS
	08 . REDUCTION
    09 . CTA
    10 . FAQ
    11 . TIMELINE
    12 . PAGE FOOTER
    13 . CONTACT
    14 . ANIM
    15 . xxxxxx
	
------------------------------------------------- */





/* ////////////////////////////////////////////////////////////////////////////

    01 . IMPORT

//////////////////////////////////////////////////////////////////////////// */

@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@300..800&display=swap');

@import url('libs/normalize.css');
@import url('libs/bootstrap.css');
@import url('libs/ionicons.css');
@import url('libs/swiper.css');

@import url('interface.css');
@import url('_fix.css');

:root {
    
    --font-title: 'Dela Gothic One', sans-serif;
    --font-text: 'Host Grotesk', sans-serif;

    --color-dark: #000; /* rgba(0,0,0,1); */
    --color-light: #FFF; /* rgba(255,255,255,1); */
    
    --color-grey-dark: #424656; /* rgba(66,70,86,1); */
    --color-grey: #757B95; /* rgba(117,123,149,1); */
    --color-grey-light: #A3A7B8; /* rgba(163,167,184,1); */
    --color-grey-xlight: #DCDEE4; /* rgba(220,222,228,1); */
    
    --color-orange: #FC5635; /* rgba(252,86,53,1); */
    /* --color-green: #4DFF84; */ /* rgba(77,255,132,1); */
    --color-green: #00E34D; /* rgba(0,227,77,1); */
    --color-blue: #4040FF; /* rgba(64,64,255,1); */

    /* --- INTERFACE --- */
    --site-width: 1500px;
    --site-width-inner: 1470px;
    --btn-radius: 2em;

}





/* ////////////////////////////////////////////////////////////////////////////

    02 . BASE

//////////////////////////////////////////////////////////////////////////// */

html {
	background-color: var(--color-light);
    width: 100%;
    height: 100%;
}
body {
    position: relative;
    background-color: var(--color-light);
    color: var(--color-dark);
    font-family: var(--font-text);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    height: 100%;
    overflow-x: hidden!important;
    /* user-select: none;
    -webkit-user-select: none; */
}

body::-webkit-scrollbar {
    display: none;
}
html {
    scrollbar-width: none;
}

::-moz-selection { background-color:var(--color-dark); color:var(--color-light); }
::selection { background-color:var(--color-dark); color:var(--color-light); }

/* LIENS */
a {
	color: var(--color-dark);
	text-decoration: none;
	-webkit-transition: all .25s;
	transition: all .25s;
}
.no-touch a:hover { color: var(--color-dark); outline:0; text-decoration:none; }

a[href^=tel]{
    color: inherit!important;
    text-decoration: inherit!important;
    font-size: inherit!important;
    font-style: inherit!important;
    font-weight: inherit!important;
}

/* TEXTE */
br { font-size: 0; line-height: 0; }
strong, b { font-weight: 700; }

/* IMAGE */
img { position: relative; max-width: 100%; user-select: none; -webkit-user-drag: none; }

/* LISTES */
ol, ul { margin: 0; padding: 0; list-style: none; }

/* PARAGRAPHES */
p { margin: 0 0 10px 0; padding: 0; }
p:last-child { margin: 0; }

/* TITRES */
h1, h2, h3, h4, h5, h6 {
	line-height: 1;
    font-weight: inherit;
    margin: 0;
    /* font-family: var(--font-title); */
}

/* PADDING */
.no-padding { padding:0; }





/* ////////////////////////////////////////////////////////////////////////////

    03 . HERO

//////////////////////////////////////////////////////////////////////////// */

.hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: calc(100vh);
    color: var(--color-dark);
    padding: 0 15px;
}
.color-orange .hero { background-color: var(--color-orange); }
.color-green .hero { background-color: var(--color-green); }
.color-blue .hero { background-color: var(--color-blue); }


.hero_image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: scroll;
    background-position: top center;
}
.hero_image img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(20%);
    opacity: 1;
    mix-blend-mode: luminosity;
}



.hero .section-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 15px;
}

.hero_caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: var(--site-width);
    padding: 0 10px;
    margin: 90px auto 0 auto;
}

.hero_caption h1 {
    font-family: var(--font-title);
    font-size: 52px;
    line-height: 1.1;
    color: var(--color-light);
    max-width: 1150px;
}

.hero_caption h1 span { color: var(--color-orange); }

.color-blue .hero_caption h1 span { color: var(--color-green); }
.color-green .hero_caption h1 span { color: var(--color-orange); }
.color-orange .hero_caption h1 span { color: var(--color-blue); }


.hero_caption h2 {
    font-size: 32px;
    line-height: 1.25;
    max-width: 900px;
    margin: 25px 0 0 0;
    color: var(--color-light);
}

.hero_caption a {
    align-self: flex-start;
    margin: 50px 0 0 0;
}
.no-touch .color-orange .hero_caption a:hover { color: var(--color-orange); }
.no-touch .color-green .hero_caption a:hover { color: var(--color-green); }
.no-touch .color-blue .hero_caption a:hover { color: var(--color-blue); }

@media only screen and (max-width: 992px) {
    .hero {
        height: 100dvh;
        max-height: -webkit-fill-available !important;
        padding: 0;
    }
    .hero .section-inner {
        padding: 0 5px;
    }
    .hero_caption {
        justify-content: center;
        margin: 60px 0 0 0;
    }
    .hero_caption h1 br,
    .hero_caption h2 br {
        display: none;
    }
    .hero_caption h1 {
        font-size: 30px;
        line-height: 1.05;
    }
    .hero_caption h2 {
        font-size: 19px;
        line-height: 1.35;
        max-width: 900px;
        margin: 25px 0;
    }
}


/* HOME */
.hero.home .section-inner {
    display: flex;
    align-items: center;
}
.hero.home .section-inner .hero_caption {
    flex: 1;
    margin: 90px 0 0 0;
}

.hero.home .hero_caption h1 {
    /* font-size: 48px; */
    color: var(--color-dark);
}
.hero.home .hero_caption h2 {
    font-size: 28px;
    color: var(--color-dark);
}

.hero.home .section-inner .banner_wrap-img {
    flex: 1;
}

.banner_wrap {
    position: relative;
    width: 100%;
    height: calc(100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.banner_wrap-img {
    position: relative;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 5% 0 0 75px;
    /* transform: rotate(5deg) scale(1.5);
    transform-origin: right top; */
}
.woman img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(.7);
    transform-origin: center center;
}
/* .woman {
    position: relative;
    z-index: 2;
    left: 25px;
}
.woman img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner_wrap-img .heart img {
    object-fit: inherit;
    height: inherit;
    margin: inherit;
} */


@media only screen and (max-width: 992px) {
    .hero.home {
        height: auto;
    }
    .hero.home .section-inner {
        padding: 150px 0 50px 0;
        flex-direction: column;
        /* display: block; */
    }
    .hero.home .section-inner .hero_caption {
        margin: 0;
        padding: 0 15px;
        flex: 1;
    }
    .hero.home .hero_caption h1 {
        font-size: 36px;
    }
    .hero.home .hero_caption h2 {
        font-size: 24px;
    }
    .hero.home .hero_caption h1 br,
    .hero.home .hero_caption h2 br {
        display: block;
    }
    .hero.home .section-inner .banner_wrap-img {
        order: -1;
    }
    .hero.home .banner_wrap-img {
        z-index: -1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        right: -35%;
    }
    .woman img {
        opacity: .25;
    }
    .hero.home .hero_caption a {
        margin: 0 0 0 0;
    }
    /* .hero.home .banner_wrap {
        top: 5%;
        right: -25%;
        opacity: .25;
        transform-origin: center;
    } */
}


/* CONTACT */
.hero.contact {
    height: auto;
}
.hero.contact .section-inner {
    padding: 75px 15px 100px 15px;
}
.hero.contact .hero_caption h1 {
    color: var(--color-dark);
    font-size: 46px;
}
.hero.contact .hero_caption::before {
    content: "";
    position: absolute;
    top: 0;
    right: -30%;
    width: 100%;
    height: 100%;
    background-image: url(../img/pictos/illus-06.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    opacity: 1;
    mix-blend-mode: multiply;
    transform: scale(.95);
    transform-origin: top;
}
.hero.contact .form {
    max-width: 775px;
    margin: 35px 0 0 0;
}

@media only screen and (max-width: 992px) {
    .hero.contact .section-inner {
        padding: 50px 0 50px 0;
    }
    .hero.contact .hero_caption h1 {
        font-size: 36px;
    }
    .hero.contact .hero_caption h1 br {
        display: block;
    }
    .hero.contact .hero_caption::before {
        top: 5%;
        right: -25%;
        opacity: .25;
        transform-origin: center;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    04 . SUBNAV

//////////////////////////////////////////////////////////////////////////// */

.subnav {
    overflow: inherit;
}

.sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 80px;
    z-index: 99;
}

.subnav_wrap {
    background-color: var(--color-light);
    border-top: rgba(0,0,0,.15) solid 1px;
    border-bottom: rgba(0,0,0,.15) solid 1px;
}
/* .color-orange .subnav_wrap { border-color: rgba(252,86,53,.25); }
.color-green .subnav_wrap { border-color: rgba(0,227,77,.25); }
.color-blue .subnav_wrap { border-color: rgba(64,64,255,.25); } */


.subnav_wrap-scroll {
    text-align: center;
}

.subnav_wrap-content {
    position: relative;
    width: auto;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.subnav_wrap-content a {
    position: relative;
    /* font-family: var(--font-title); */
    font-size: 14px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    text-decoration: none;
    grid-row: 1;
    text-align: center;
    border-right: rgba(0,0,0,.15) solid 1px;
    padding: 0 45px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: color .2s, opacity .2s;
}
.subnav_wrap-content a:last-child {
    border-right: none;
}

.no-touch .subnav_wrap-content a:hover,
.subnav_wrap-content a.active {
    color: var(--color-dark);
}

/* .color-orange .subnav_wrap-content a { border-color: rgba(252,86,53,.25); } */
.no-touch .color-orange .subnav_wrap-content a:hover,
.color-orange .subnav_wrap-content a.active { color: var(--color-orange); }
/* .color-green .subnav_wrap-content a { border-color: rgba(0,227,77,.25); } */
.no-touch .color-green .subnav_wrap-content a:hover,
.color-green .subnav_wrap-content a.active { color: var(--color-green); }
/* .color-blue .subnav_wrap-content a { border-color: rgba(64,64,255,.25); } */
.no-touch .color-blue .subnav_wrap-content a:hover,
.color-blue .subnav_wrap-content a.active { color: var(--color-blue); }



@media only screen and (max-width: 992px) {
    /* .subnav {
        display: none;
    } */
    .sticky {
        top: 70px;
    }
    .subnav_wrap-content {
        position: relative;
        width: auto;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .subnav_wrap-content a {
        font-size: 11px;
        padding: 0 5px;
        flex: 1;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    05 . LOGOS

//////////////////////////////////////////////////////////////////////////// */

.logos {
    padding: 100px 0!important;
}

.logos_wrap {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}

.logo_items {
    display: flex;
    justify-content: center;
    animation: 25s slides infinite linear;
}
/* .logos_wrap:hover .logo_items {
    animation-play-state: paused;
} */

@keyframes slides {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.logo_item {
    width: 190px;
    height: 90px;
    border: #f5f5f5 solid 1px;
    margin: 0 25px 0 0;
}
.color-blue .logo_item { border-color: #EBEBFF; }
.color-orange .logo_item { border-color: #FFEEEB; }


.logo_item-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.logo_item-inner img {
    display: flex;
    width: 100%;
    height: 90px;
    object-fit: contain;
    mix-blend-mode: multiply;
    padding: 15px;
    /* filter: brightness(0); */
}

@media only screen and (max-width: 992px) {
    .logos {
        padding: 50px 0!important;
    }
    .logos .section_title {
        padding: 0 15px;
    }
    .logo_item {
        width: 175px;
        height: 70px;
    }
    .logo_item-inner img {
        height: 70px;
        max-height: 70px;
        max-width: 160px;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

	06 . HIGHLIGHT

//////////////////////////////////////////////////////////////////////////// */

.highlight {
    position: relative;
}

/* -------------------------------------------
    LIST
------------------------------------------- */
.highlight_list {
    /* background-color: var(--color-grey-dark);
    color: var(--color-light);
    border-radius: 15px;
    padding: 45px; */
}
/* .color-orange .highlight_list { background-color: var(--color-orange); }
.color-green .highlight_list { background-color: var(--color-green); }
.color-blue .highlight_list { background-color: var(--color-blue); } */

.highlight_list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    /* display: flex;
    flex-direction: column;
    gap: 25px; */
    display: grid;
    box-sizing: border-box;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    width: 100%;
    text-align: center;
}
.highlight_list.col2 ul {
    grid-template-columns: repeat(2, 1fr);
}


.highlight_list ul li {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 300;
    margin: 0;
    border-radius: 15px;
    padding: 25px;
    color: var(--color-light);
}

.color-orange .highlight_list ul li { background-color: var(--color-orange); }
.color-green .highlight_list ul li { background-color: var(--color-green); }
.color-blue .highlight_list ul li { background-color: var(--color-blue); }


.highlight_list ul li:last-child {
    margin: 0;
}

.highlight_list ul li h2 {
    display: block;
    font-family: var(--font-title);
    font-size: 25px;
    line-height: 1;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.highlight_list ul li strong {
    font-weight: 600;
}
/* .highlight_list ul li::before {
	position:relative;
	content: "\f30f";
	font-family: "Ionicons";
	display: inline-block;
    font-size: 75%;
	margin-left: -26px;
	width: 26px;
	top: -0.05em;
} */

.highlight_list ul li img {
    height: 60px;
    filter: brightness(0) invert(1);
    margin: 0 0 15px 0;
}

@media only screen and (max-width: 992px) {
    .highlight_list ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    .highlight_list.col2 ul {
        grid-template-columns: repeat(1, 1fr);
    }
    .highlight_list ul li {
        font-size: 19px;
        line-height: 1.2;
        padding: 20px;
    }
    .highlight_list ul li h2 {
        font-size: 22px;
        margin: 0 0 15px 0;
    }
}


/* -------------------------------------------
    BLOCKS 
------------------------------------------- */
.highlight_wrap {
    display: grid;
    box-sizing: border-box;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}
.highlight_wrap.col3 {
    grid-template-columns: repeat(3, 1fr);
}

.highlight_block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background-color: rgba(220,222,228,.25);
    border-radius: 10px;
    color: var(--color-light);
}


.highlight_block-img {
    display: flex;
    align-items: center;
    margin: 0 auto 10px auto;
}
.highlight_block-img img {
    height: 80px;
}
.color-orange .highlight_block-img img {
    filter: invert(46%) sepia(24%) saturate(6985%) hue-rotate(341deg) brightness(101%) contrast(98%);
}
.color-green .highlight_block-img img {
    filter: invert(61%) sepia(77%) saturate(551%) hue-rotate(86deg) brightness(91%) contrast(110%);
}
.color-blue .highlight_block-img img {
    filter: invert(51%) sepia(96%) saturate(7416%) hue-rotate(239deg) brightness(99%) contrast(105%);
}

.highlight_block-head {
    position: relative;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    border-bottom: var(--color-grey-xlight) solid 1px;
}
.highlight_block-head h2 {
    font-family: var(--font-title);
    font-size: clamp(30px, 4vw, 36px);
    line-height: 1.05;
    /* font-weight: 400; */
    /* text-transform: uppercase; */
}
.highlight_block-head h2 strong {
    display: block;
    font-weight: 700;
}
.highlight_block-desc {
    font-size: 20px;
    line-height: 1.25;
}


/* -------------------------------------------
    HOME 
------------------------------------------- */
.highlight.home {
    background-color: var(--color-blue);
    color: var(--color-light);
}
.highlight.home .section_title h2 span {
    color: var(--color-blue);
}
.highlight.home .highlight_wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}
.highlight.home .highlight_block {
    background-color: rgba(255,255,255,1);
    text-align: left;
}
.highlight.home .highlight_block-head {
    color: var(--color-orange);
}
.highlight.home .highlight_block-desc {
    color: var(--color-dark);
}
.highlight.home .highlight_block-img img {
    filter: invert(46%) sepia(24%) saturate(6985%) hue-rotate(341deg) brightness(101%) contrast(98%);
}



@media only screen and (max-width: 992px) {
    .highlight_wrap,
    .highlight_wrap.col3,
    .highlight.home .highlight_wrap {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }

    .highlight_wrap.col7 {
        grid-template-columns: repeat(1, 1fr);
    }
    .highlight_wrap.col7 .highlight_block {
        grid-column: inherit;
    }
    .highlight_wrap.col7 .highlight_block.offset {
        grid-column: inherit;
    }

    .highlight_block {
        padding: 20px;
        flex-direction: row;
    }
    .highlight_block-img {
        align-items: flex-start;
        margin: 0 20px 0 0;
    }
    .highlight_block-img img {
        height: 55px;
    }
    .highlight_block-wrap {
        flex: 1;
    }
    .highlight_block-head {
        margin: 0 0 5px 0;
    }
    .highlight_block-desc {
        font-size: 19px;
        line-height: 1.35;
        text-align: left;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

	07 . PROCESS

//////////////////////////////////////////////////////////////////////////// */

.process {
    position: relative;
}

.process .section_title {
    text-align: left;
    margin: 0;
}

/* -------------------------------------------
    BLOCKS 
------------------------------------------- */
.process_grid {
    position: relative;
    display: grid;
    box-sizing: border-box;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
}
.process_item {
    position: relative;
    display: flex;
    padding: 0 0 35px 0;
    margin: 0 0 35px 0;
    border-bottom: 1px dotted var(--color-grey-light);
}

.process_item:first-child {
    border: none;
    padding: 0;
    margin: 0 0 35px 0;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 500;
}
.process_item:last-child {
    border: none;
    padding: 0;
    margin: 0;
}

.process_item-img {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 90px;
}
.process_item-img img {
    position: absolute;
    top: 5px;
    left: 0;
    display: flex;
    width: 100%;
    max-height: 60px;
}
.color-orange .process_item-img img {
    filter: invert(46%) sepia(24%) saturate(6985%) hue-rotate(341deg) brightness(101%) contrast(98%);
}
.color-green .process_item-img img {
    filter: invert(61%) sepia(77%) saturate(551%) hue-rotate(86deg) brightness(91%) contrast(110%);
}
.color-blue .process_item-img img {
    filter: invert(51%) sepia(96%) saturate(7416%) hue-rotate(239deg) brightness(99%) contrast(105%);
}

.process_item-head {
    position: relative;
    width: 100%;
    margin: 0 0 0 20px;
}
.process_item-head h3 {
    font-family: var(--font-title);
    font-size: 30px;
    line-height: 1.05;
    font-weight: normal;
    margin: 0 0 10px 0;
}
.process_item-head p {
    display: block;
    font-size: 22px;
    line-height: 1.35;
}


.process_item-head p span {
    font-weight: 600;
}
.color-orange .process_item-head p span {
    color: var(--color-orange);
}


@media only screen and (max-width: 992px) {
    .process .section_title {
        margin: 0 0 25px 0;
        text-align: center;
    }
    .process_item {
        /* padding: 0 0 25px 0; */
        margin: 0 0 35px 0;
    }
    .process_item:first-child {
        margin: 25px 0 35px 0;
        font-size: 26px;
        line-height: 1.15;
    }
    .process_item-img img {
        width: 30px;
        margin: 0 15px 0 0;
    }
    .process_item-img::before {
        width: 80px;
        height: 80px;
    }
    .process_item-head {
        margin: 0 0 0 15px;
    }
    .process_item-head h3 {
        font-size: 24px;
    }
    .process_item-head p {
        font-size: 18px;
    }
}

/* PINNED SECTION */
.pinned_section {
    position: relative;
    display: table!important;
    width: 100%;
}
.full .pinned_section, .full_elementor .pinned_section { max-width:100%; }
.pinned_section .pin-spacer { width:50%!important; }
.pinned_element {
    position:relative;
    display:block;
    height:auto;
    float:left;
    width:50%;
    margin:0;
    box-sizing:border-box;
}
.pinned_element.left { padding-right: 30px; }
.pinned_element.right { padding-left: 30px; }

.scrolling_element {
    position:relative;
    float:left;
    width:50%;
    margin:0;
    box-sizing:border-box;
}
.scrolling_element.left { padding-right: 30px; }
.scrolling_element.right { padding-left: 30px; }
.scrolling_element img {
    display:block;
    height: auto;
    width:100%;
}

@media only screen and (max-width: 992px) {
	.pinned_section .pin-spacer { width:100%!important; }
    .pinned_element { width:100%; }
    .pinned_element.left { padding-right: 0; }
    .pinned_element.right { padding-left: 0; }
    .scrolling_element { width:100%; }
    .scrolling_element.left { padding-right: 0; }
    .scrolling_element.right { padding-left: 0; }
}





/* ////////////////////////////////////////////////////////////////////////////

    08 . REDUCTION

//////////////////////////////////////////////////////////////////////////// */

.reduc {
    position: relative;
}

.reduc_wrap {
    position: relative;
    border-radius: 10px;
    padding: 30px;
    /* background-color: rgba(220,222,228,.25); */
    background-color: var(--color-light);
    box-shadow: inset 0px 0px 0px 1px var(--color-dark);
}
.color-orange .reduc_wrap { box-shadow: inset 0px 0px 0px 1px var(--color-orange); }
.color-green .reduc_wrap { box-shadow: inset 0px 0px 0px 1px var(--color-green); }
.color-blue .reduc_wrap { box-shadow: inset 0px 0px 0px 1px var(--color-blue); }


/* -------------------------------------------
    TITLE 
------------------------------------------- */
.reduc_title {
    margin: 0 0 25px 0;
}
.reduc_title h2 {
    font-family: var(--font-title);
    font-size: clamp(30px, 4vw, 36px);
    line-height: 1.05;
}
.color-orange .reduc_title h2 { color: var(--color-orange); }
.color-green .reduc_title h2 { color: var(--color-green); }
.color-blue .reduc_title h2 { color: var(--color-blue); }

.reduc_title h2 i {
    margin: 0 12px 0 0;
}


/* -------------------------------------------
    FORM 
------------------------------------------- */
.reduc_wrap-form {
    margin: 0 0 30px 0;
}

/* INLINE */
.reduc_wrap-form .form-inline { padding:0; }
.reduc_wrap-form .form-inline .row { margin:0!important; padding:0!important; }

.reduc_wrap-form .form-inline .row [class*='col-']:not(:first-child),
.reduc_wrap-form .form-inline .row [class*='col-']:not(:last-child) {
    padding-right: 20px;
    padding-left: 20px;
}
.reduc_wrap-form .form-inline .row [class*='col-']:first-child {
    padding-right: 20px;
    padding-left: 0;
}
.reduc_wrap-form .form-inline .row [class*='col-']:last-child {
    padding-right: 0;
    padding-left: 20px;
}

.reduc_wrap-form .form-inline .row { margin-bottom: 0!important; }
.reduc_wrap-form .form-inline .row:last-child { margin-bottom: 0!important; }
.reduc_wrap-form .form-inline .row .col-md-12 { padding-left:0!important; }

@media only screen and (max-width: 768px) {
	.reduc_wrap-form .form-inline .row [class*='col-']:not(:first-child),
	.reduc_wrap-form .form-inline .row [class*='col-']:not(:last-child) {
        padding-right:0;
        padding-left:0;
	}
	.reduc_wrap-form .form-inline .row [class*='col-']:first-child {
        padding-right:0;
        padding-left:0;
        margin: 0 0 25px 0;
	}
	.reduc_wrap-form .form-inline .row [class*='col-']:last-child {
        padding-right:0;
        padding-left:0;
	}
    .reduc_wrap-form .form-inline .row .col-md-12 { padding-left:0!important; }
    .reduc_wrap-form .form-inline .row { margin-bottom: 0!important; }
}


/* ------------------------------------------- 
	FIELDS
------------------------------------------- */
.reduc_wrap-form label {
    display: flex;
	font-size: 16px;
    line-height: 1.1;
    padding: 0 0 10px 0;
    margin: 0;
    color: var(--color-dark);
    user-select: none;
}

.reduc_wrap-form input[type=text],
.reduc_wrap-form input[type=number] {
  	position: relative;
    display: block;
    padding: 0;
    width: 100%;
    font-size: 20px;
    line-height: 50px;
    font-weight: 400;
    color: var(--color-dark);
    background: var(--color-light);
    border: 0;
    border-bottom: var(--color-grey-xlight) solid 1px;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}
.reduc_wrap-form input[type=text]:focus,
.reduc_wrap-form input[type=number]:focus {
	border-color: none;
    outline: none;
}

::-webkit-input-placeholder { color: var(--color-grey-light); }
:-ms-input-placeholder { color: var(--color-grey-light); }


/* -------------------------------------------
    RESULT 
------------------------------------------- */
.reduc_wrap-result {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 25px;
    background-color: var(--color-dark);
    color: var(--color-light);
    display: flex;
    align-items: center;
}
.color-orange .reduc_wrap-result { background-color: var(--color-orange); }
.color-green .reduc_wrap-result { background-color: var(--color-green); }
.color-blue .reduc_wrap-result { background-color: var(--color-blue); }

.reduc_content {
    display: flex;
    flex-direction: column;
    margin: 0 75px 0 0;
}
.reduc_content h3 {
    font-size: clamp(24px, 4vw, 30px);
    line-height: 1.1;
    font-weight: 400;
    margin: 0 25px 0 0;
}
.reduc_content h3 span {
    font-family: var(--font-title);
    font-weight: normal;
}
.reduc_result {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -0.015em;
    margin: 0 0 0 auto;
    display: flex;
    color: var(--color-dark);
    /* background-color: #eee; */
}
@media only screen and (max-width: 600px) {
    .reduc_wrap-result{
        padding: 13px;
    }
    .reduc_content{
        margin: 0;
    }
    .reduc_content h3{
        font-size: 15px;
    }
    .reduc_result {
        font-size: 20px;
       
    }
}
.color-orange .reduc_result { color: var(--color-orange); }
.color-green .reduc_result { color: var(--color-green); }
.color-blue .reduc_result { color: var(--color-blue); }

.reduc_result::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 110%;
    height: 100%;
    border-radius: 50% 0 0 50%;
    background-color: rgba(255, 255, 255, .9);
    transform: scale(1.6,3);
    mix-blend-mode: multiply;
}

.reduc_mention {
    font-size: clamp(11px, 4vw, 13px);
    line-height: 1.15;
    color: var(--color-grey-light);
    margin: 25px 0 0 0;
}





/* ////////////////////////////////////////////////////////////////////////////

	09 . CTA

//////////////////////////////////////////////////////////////////////////// */

.cta {
    position: relative;
    background-color: var(--color-dark);
    color: var(--color-light);
}
.color-orange .cta { background-color: var(--color-orange); }
.color-green .cta { background-color: var(--color-green); }
.color-blue .cta { background-color: var(--color-blue); }


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

.cta_wrap-content {
    margin: 0 100px 0 0;
}
.cta_wrap-content h2 {
    font-family: var(--font-title);
    font-size: clamp(34px, 4vw, 42px);
    line-height: 1.05;
}
.color-orange .cta_wrap-content h2 span { color: var(--color-blue); }
/* .color-green .cta_wrap-content h2 { color: var(--color-blue); } */
.color-green .cta_wrap-content h2 span { color: var(--color-blue); }
.color-blue .cta_wrap-content h2 span { color: var(--color-green); }



.cta_wrap-content h3 {
    font-size: clamp(19px, 4vw, 24px);
    line-height: 1.35;
    margin: 25px 0 0 0;
}

.cta_wrap-cta {
    display: flex;
    margin: 0 0 0 auto;
}
.cta_wrap-cta a {
    align-self: flex-start;
    margin: 0 15px 0 0;
}
.cta_wrap-cta a:last-child {
    margin: 0;
}

.color-orange .cta_wrap-cta a.btn-white { color: var(--color-orange); }
.no-touch .color-orange .cta_wrap-cta a.btn-white:hover { color: var(--color-light); }
.no-touch .color-orange .cta_wrap-cta a.btn-white-outline:hover { color: var(--color-orange); }

.color-green .cta_wrap-cta a.btn-white { color: var(--color-blue); }
.no-touch .color-green .cta_wrap-cta a.btn-white:hover { color: var(--color-blue); }
.no-touch .color-green .cta_wrap-cta a.btn-white-outline:hover { color: var(--color-blue); }

.color-blue .cta_wrap-cta a.btn-green { color: var(--color-light); }
.no-touch .color-blue .cta_wrap-cta a.btn-green:hover { color: var(--color-green); }
.no-touch .color-blue .cta_wrap-cta a.btn-white-outline:hover { color: var(--color-blue); }


@media only screen and (max-width: 992px) {
    .cta_wrap {
        flex-direction: column;
    }
    .cta_wrap-content {
        margin: 0 0 30px 0;
    }
    .cta_wrap-content h2 br,
    .cta_wrap-content h3 br {
        display: none;
    }
    .cta_wrap-cta {
        flex-direction: column;
        width: 100%;
    }
    .cta_wrap-cta a {
        align-self: flex-start;
        margin: 0 0 10px 0;
        width: 100%;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

    10 . FAQ

//////////////////////////////////////////////////////////////////////////// */

.faq {
    position: relative;
}

.accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.accordion_item {
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 10px;
    overflow: hidden;
}
.accordion_header {
    padding: 25px 50px 25px 25px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.accordion_header::after {
    content: '\f35d';
    font-family: "Ionicons";
    font-size: 24px;
    line-height: .7;
    transition: .25s;
    display: flex;
    position: absolute;
    right: 0;
    top: calc(50% - 8px);
    height: 16px;
    z-index: 1;
    padding: 0 25px 0 0;
}
.accordion_header.active::after {
    transform: rotateX(180deg);
}
.color-orange .accordion_header::after { color: var(--color-orange); }
.color-green .accordion_header::after { color: var(--color-green); }
.color-blue .accordion_header::after { color: var(--color-blue); }

.accordion_item .accordion_content {
    padding: 0 25px;
    display: none;
    overflow: hidden;
    color: var(--color-grey-dark);
}
.accordion_content p:last-child {
    margin-bottom: 25px;
}

@media only screen and (max-width: 992px) {
    .accordion_header {
        padding: 16px 50px 16px 16px;
        font-size: 17px;
    }
    .accordion_header::after {
        font-size: 18px;
        line-height: 1;
        padding: 0 16px 0 0;
    }
    .accordion_item .accordion_content {
        padding: 0 16px;
    }
    .accordion_content p:last-child {
        margin-bottom: 16px;
    }
}





/* ////////////////////////////////////////////////////////////////////////////

	11 . TIMELINE

//////////////////////////////////////////////////////////////////////////// */

.timeline {
    position: relative;
    padding: 0 15px;
    /* color: var(--color-light); */
    /* background-color: var(--color-blue); */
}
.timeline_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px 10px 100px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.timeline_title {
    max-width: 970px;
    margin: 0 auto 75px auto;
}
.timeline_title h2 {
    font-family: var(--font-title);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05;
}
.timeline_title h2 span {
    color: var(--color-orange);
}

.timeline_grid {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline_item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    height: 100%;
    text-align: left;
}

/* FIRST CHILD */
.timeline_item:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 35px;
    width: 70%;
}
.timeline_item:first-child .timeline_item-block {
    flex: 1;
    border-radius: 15px;
    border: var(--color-grey-xlight) solid 1px;
    padding: 35px;
}


/* SECOND CHILD */
.timeline_item:nth-child(2) {
    /* background-color: #eee; */
    width: 15%;
    height: 100%;
}
.timeline_item:nth-child(2) img {
    transform: rotate(-90deg) scale(2.25);
    object-fit: contain;
}


/* THIRD CHILD */
.timeline_item:last-child {
    /* align-items: center; */
    width: 40%;
    text-align: center;
}

.heart {
    position: relative;
}
.heart img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    height: 225px;
    margin: 0 0 15px 0;
}
.heartbeat {
    position: relative;
    z-index: 1;
    animation: beat 2s linear infinite;
}
.heartecho {
    position: absolute;
    top: 0;
    left: 0;
    animation: echo 2s linear infinite;
}
@keyframes beat {
    0% { transform: scale(1); }
    14% { transform: scale(0.95); }
    21% { transform: scale(1.05); }
    28% { transform: scale(1); }
    35% { transform: scale(1); }
}
@keyframes echo {
    0% { opacity: 0.4; transform: scale(1); }
    14% { opacity: 0.3; transform: scale(0.85); }
    21% { opacity: 0.3; transform: scale(1.15); }
    100% { opacity: 0; transform: scale(1.35); }
}



.timeline_item:not(:last-child) .timeline_item-image {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    /* padding-top: 66.25%; */
    height: 175px;
    margin: 0 0 15px 0;
}
.timeline_item:not(:last-child) .timeline_item-image img {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto 0 auto;
    /* animation: pulse 2s infinite; */
}


.timeline_item h3 {
    font-family: var(--font-title);
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1;
    margin: 0 0 15px 0;
}

.timeline_item-desc {
    height: auto;
}
.timeline_item-desc ul {
	position:relative;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}
.timeline_item-desc li {
    margin: 0 0 10px 0;
    /* padding: 0 0 0 25px; */
    font-size: 20px;
    line-height: 1.25;
}
.timeline_item-desc li:last-child {
    margin: 0;
}

.timeline_item-desc li.last {
    font-size: 23px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    margin: 5px 0 0 0;
}
.timeline_item-desc li.last strong {
    font-weight: 800;
}



@media only screen and (max-width: 992px) {
    .timeline {
        padding: 0;
    }
    .timeline_wrap {
        padding: 50px 0 50px 0;
    }
    .timeline_title {
        margin: 0 auto 50px auto;
    }
    .timeline_grid {
        flex-direction: column;
    }

    /* FIRST CHILD */
    .timeline_item:first-child {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    .timeline_item:first-child .timeline_item-block {
        padding: 25px;
    }

    /* SECOND CHILD */
    .timeline_item:nth-child(2) {
        width: 100%;
        height: auto;
        padding: 25px 0;
    }
    .timeline_item:nth-child(2) img {
        transform: rotate(0deg) scale(.85);
        object-fit: contain;
    }

    /* THIRD CHILD */
    .timeline_item:last-child {
        width: 100%;
    }

    .timeline_item:not(:last-child) .timeline_item-image {
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
        /* padding-top: 66.25%; */
        height: 200px;
        margin: 0 0 15px 0;
    }

}





/* ////////////////////////////////////////////////////////////////////////////

	12 . PAGE FOOTER

//////////////////////////////////////////////////////////////////////////// */

.page {
    position: relative;
    padding: 200px 15px 100px 15px;
}

.page_title {
    margin: 0 0 50px 0;
}
.page_title h1 {
    font-family: var(--font-title);
    font-size: 48px;
    line-height: 1.1;
    /* color: var(--color-orange); */
}

/* CONTENT */
.page a {
    text-decoration: underline;
}
.no-touch .page a:hover {
    text-decoration: none;
}
.page h2 {
    font-family: var(--font-title);
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px;
}
.page h3 {
    font-family: var(--font-title);
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.page p {
    margin: 0 0 10px 0;
    color: var(--color-grey-dark);
}
.page p:last-child { margin: 0; }
.page p + h2 { margin: 40px 0 10px 0; }
.page p + h3 { margin: 40px 0 10px 0; }

@media only screen and (max-width: 992px) {
    .page {
        position: relative;
        padding: 100px 0 50px 0;
    }
    .page_title {
        margin: 0 0 35px 0;
    }
    .page_title h1 {
        font-size: 40px;
        line-height: 1.1;
    }
    .page h2 { font-size: 22px; }
    .page h3 { font-size: 18px; }
    .page p + h2 { margin: 25px 0 10px 0; }
    .page p + h3 { margin: 25px 0 10px 0; }
}





/* ////////////////////////////////////////////////////////////////////////////

	13 . CONTACT

//////////////////////////////////////////////////////////////////////////// */


/* -------------------------------------------
    FORM 
------------------------------------------- */
/* INLINE */
.form-inline { }

.form-inline .row [class*='col-']:first-child{ padding-right:15px; padding-left:15px; }
.form-inline .row [class*='col-']:last-child { padding-right:15px; padding-left:15px; }

/* FORM */
.form-inline .row { margin-bottom: 15px; }
.form-inline [class*="row"].field { padding:0; }

@media only screen and (max-width: 992px) {
	.form-inline .row [class*='col-']:not(:first-child),
	.form-inline .row [class*='col-']:not(:last-child) { padding-right:15px; padding-left:15px; }
	.form-inline .row [class*='col-']:first-child{ padding-right:15px; padding-left:15px; }
	.form-inline .row [class*='col-']:last-child { padding-right:15px; padding-left:15px; }
    .form-inline [class*="row"].field { padding:0; }
    .form-inline .row { margin-bottom:0; }
    .form-inline .col-md-6 { margin-bottom: 15px; }
}

/* MENTION */
.form-mention {
    font-size: 12px;
    line-height: 14px;
    opacity: .5;
    margin-top: 10px;
}

/* INPUT */
input[type=text], input[type=email], textarea, select {
	position: relative;
  	border-radius:0;
    border: 0;
    outline: none;
    background: none;
	outline:0;
    font-size: 17px;
 	line-height: 1;
    border-bottom: 1px solid var(--color-grey-xlight);
 	color: var(--color-text);
	width:100%;
	min-height:50px;
	max-width:100%;
	display:block;
	background:transparent;
	box-sizing: border-box;
	margin: 0 0 0 0;
	padding: 10px 10px 10px 0px;
	-webkit-appearance: none;
  	appearance: none;
}

::placeholder { color: var(--color-grey-light); }
::-webkit-input-placeholder { color: var(--color-grey-light); }

select {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px 30px 10px 0px;
}
.select-carret {
	position: relative;
	width:100%!important;
    margin: 0;
}
.select-carret:after {
    content: "";
    position: absolute;
    font-family: "Ionicons";
    content: "\f123";
    pointer-events: none;
    z-index: 1;
    top: calc(50%);
    transform: translateY(-50%);
    right: 0;
    font-size: 12px;
    color: var(--color-grey);
}
select:invalid { color: var(--color-grey-light); }
select [disabled] { color: var(--color-grey-light); }
select option { color: var(--color-txt); }
select:required:invalid { color: var(--color-grey-light); }

textarea {
	display:block;
	width:100%;
	resize:none;
    min-height: 100px;
    max-height: 100px;
    word-wrap: break-word !important;
    white-space: normal!important;
	line-height:20px;
	padding: 10px 10px 10px 0!important;
}

.btn-form {
    display: inline-block;
    margin: 10px 0 0 0;
}





/* ////////////////////////////////////////////////////////////////////////////

	14 . ANIM

//////////////////////////////////////////////////////////////////////////// */

.anim {
    padding: 50px 10px;
}
.anim img {
    display: flex;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

@media only screen and (max-width: 992px) {
    .anim {
        padding: 50px 0;
    }
}












