img {
    max-width:100%;
}

.clear {
    clear: both;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    /* float: left; */
}

b {
    font-family: "AvantGarde Bold";
}

body {
    font-family: "AvantGarde";
    font-size: 15px;}

.page {
    /* padding-bottom: 50px; */
    min-height: calc(100vh - 80px);
}

section {
    position:  relative;
}

nav {
    position:  relative;
    z-index: 2;
}

nav:after {
    content:"";
    display:block;
    clear:both;
}

span.text-book {
    font-family:  "AvantGarde";
}


.bold-title, strong {
    font-family: "AvantGarde Bold";
}

.medium-title {
    font-family: "AvantGarde Medium";
    margin-bottom: 20px;
}

.tiret-line {
    margin:5px 0;
}

.intro-text b {
    font-family: "AvantGarde CondBold";
}

section .bottom-arrow {
    display:  block;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 35px solid #84bf52;
    position:  absolute;
    left: 50%;
    bottom:-35px;
    margin-left: -25px;
    z-index: 3;
}


.nav-item {
    float:  left;
    width: 33.33334%;
    text-align:  center;
    font-weight:  700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 0;
    color: #FFFFFF;
}

.nav-item:hover {
    color:#FFFFFF;
}

h1 {
    text-align:  center;
    font-size: 58px;
    margin-top: 40px;
    margin-bottom: 40px;
}



.vspacer {
    display: block;
    width: 100%;
}

.vspacer.h15 {
    height: 15px;
}

.vspacer.h30 {
    height: 30px;
}

.vspacer.h45 {
    height: 45px;
}

.vspacer.h60 {
    height: 60px;
}


.color-green {
    color: #84bf52;
}

.color-blue {
    color: #89c1cf;
}

.color-black {
    color: #000000;
}

.color-white {
    color: #FFFFFF;
}

.color-red {
    color: #e30613;
}

.color-orange {
    color: #ec6619;
}

.color-yellow {
    color: #fdba00;
}

.color-apple {
    color: #cdd146;
}
.color-purple {
    color: #AC2F84;
}

.color-blue.darker {
    color:#6db4cb;
}

.big-figure {
    font-size: 70px;
    font-family: "AvantGarde Bold";
    line-height: 1.2;
}

.medium-figure {
    font-size: 87px;
    font-family: "AvantGarde Bold";
    line-height: 1;
}

.medium-symbol {
    font-size: 50%;
}

.mini-symbol {
    font-size: 35%;
}

.mini-text {
    font-size: 10px;
}

.medium-alone-title {
    font-family: "AvantGarde Demi";
    font-size: 30px;
    text-transform: initial;
}


/* -------------------------------------------------------------------- POPUP -------------------------------------------------------------------- */



div#popups-container {
    position:  fixed;
    left:  0;
    right:  0;
    bottom:  0;
    top: 0;
    z-index: 999;
    pointer-events: none;
}

.popup-container {
    background: #00000066;
    width:  100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom:  0;
    left:  0;
    right: 0;
    display:  none;
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    z-index: 99;
}

.popup-container.visible {
    display: block;
}

.popup-container.active {
    opacity: 1;
}

.theme-titled .popup {
    padding-top:0;
    padding-bottom:40px;
    max-height: 60vh;
    overflow-y: auto;
}

.popup {
    background: #FFFFFF;
    padding: 80px 20px;
    margin-top: -100vh;
    position:relative;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.popup-container.active .popup {
    margin-top: 18vh;
}

.popup-exit {
    width: 20px;
    position:  absolute;
    right:  20px;
    top: 20px;
    cursor:pointer;
    display:  block;
    z-index: 9;
}

.popup-exit img {
    transform:rotate(0deg);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.popup-exit:hover img {
    transform:rotate(90deg);
}

.popup-title {
    padding: 20px 30px 15px 30px;
    text-align:center;
    text-transform:uppercase;
    color:#FFFFFF;
    background:green;
    margin-left:-20px;
    margin-right:-20px;
    font-family: 'AvantGarde Bold';
    font-size: 26px;
    line-height: 1;
}

.blue .popup-title {
    background: #89c1cf;
}

.popup-content {
    max-width:  800px;
    margin:  auto;
}

.theme-titled .popup-content {
    padding-top:40px;
}


.home-button {
    position: fixed;
    right:  30px;
    top: 70px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    padding: 8px;
    z-index: 10;
    box-shadow: 0px 0px 3px 0px #00000094;
}

.home-button:hover {
}

.popup-big-text {
    font-family: 'AvantGarde Medium';
    font-size: 22px;
}

/* -------------------------------------------------------------------- HOME -------------------------------------------------------------------- */





section#home-head {
    padding: 20px 50px;
}

div#logo-ecureuil-CE {
    width: 260px;
    float:  left;
    margin-top: 35px;
    padding: 5px 0;
    background: #FFFFFF;
}

div#logo-jassure {
    float:  left;
    width: calc(100% - 490px);
    margin: 0 20px;
    text-align:  center;
    line-height: 132px;
    height: 120px;
    display: table;
}


div#logo-jassure-inner {
    line-height:  normal;
    vertical-align:  middle;
    display: table-cell;
}

div#logo-jassure img {
    max-height: 132px;
}

.header-hone-separator {
    float: right;
    width:  2px;
    height: 83px;
    display: inline-block;
    vertical-align: middle;
    background: #FFFFFF;
    margin: 30px 30px 0 0;
}

.jassure-number-container {
    float: right;
    color: #FFFFFF;
    margin-top: 20px;
    vertical-align:  bottom;
    line-height: 1;
    padding-left:  40px;
    border-left: 2px solid #FFFFFF;
}

.text-underline {
    text-decoration: underline;
}

span.indice {
    font-size: 28px;
    font-weight: 200;
}

span.number {
    font-size: 76px;
    font-weight:  300;
}

.jassure-number-separator {
    width:  100%;
    margin: 0 0 10px 0;
    height:  1px;
    background: #FFFFFF;
}

.jassure-number-date {
    font-size: 15px;
    font-weight:  600;
    letter-spacing: 1px;
}

section#jassure-title {
    margin-top: 9vh;
    margin-bottom: 30px;
}

.jassure-title-line-1 {
    color: #646464;
    font-size: 41px;
    font-weight:  200;
    line-height: 1.3;
    font-family: "AvantGarde";
    max-width: 400px;
    margin-bottom: 29px;
}


.jassure-title-line-2 {
    color: #646464;
    font-size: 73px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 890px;
    font-family: "AvantGarde Bold";
}

.jassure-title-strong {
    text-transform:uppercase;
    color:#89c1cf;
}


div#home-illustration {
    position: absolute;
    right: -5%;
    top: -24%;
    z-index: 1;
    /* max-width: 655px; */
}

.a-la-une-box {
    padding-bottom: 5px;
    margin: 10px 0;
    display: block;
    transform: scale(1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position:  relative;
    box-shadow: 4px 3px 10px #0000004f;
}

.a-la-une-box:hover {
    text-decoration:none!important;
    transform: scale(1.025);
    box-shadow:none;
}

.a-la-une-box:hover .a-la-une-box-inner {
    background:none;
    color:#FFFFFF;
}

.a-la-une-box:hover .a-la-une-box-title {
    background: #DDDDDD;
}

.a-la-une-box:hover .a-la-une-box-title {
    color:inherit!important;
}

.a-la-une-box-inner {
    padding: 10px 45px 10px 10px;
    color: #000000;
    overflow-y:  auto;
    height: 125px;
    line-height: 1.3;
    font-weight:  500;
    font-family: "AvantGarde Bold";
    background: #DDDDDD;
}

.a-la-une-box-title {
    color: #FFFFFF!important;
    text-transform: uppercase;
    padding: 6px 10px 0px 10px;
    font-weight:  600;
    font-family: 'AvantGarde Bold';
}


.a-la-une-box-line-bottom {
    height: 5px;
}

span.thin-text {
    font-weight: 200;
    font-family: "AvantGarde";
}

footer {
    padding: 5px 50px;
    line-height: 40px;
    color: #FFFFFF;
    z-index: 1;
}

footer:after {
    content:"";
    display:block;
    clear:both;
}

.footer-column {
    float:  left;
    width: 33.33334%;
}

a.next-hand {
    width: 38px;
    height: 38px;
    display:  inline-block;
    border: 1px solid #FFFFFF;
    border-radius: 100%;
    padding: 7px;
    vertical-align:  middle;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

footer a {
    color:  #FFFFFF;
}

a.next-hand:hover {
    padding-left: 10px;
    padding-right: 4px;
}

a.underline-link {
    text-decoration: underline;
}

footer a:hover {
    color: #000000;
}

.footer-message {
    font-weight:  100;
    letter-spacing: 1px;
}

.text-italic {
    font-style:  italic;
}


/* -------------------------------------------------------------------- A LA UNE -------------------------------------------------------------------- */



.big-numbered {
    font-size:25px;
    font-family: "AvantGarde Bold";
}

.thin-title.text-uppercase {
    font-weight:  200;
}

.intro-text {
    font-size: 22px;
    margin-bottom: 100px;
    font-weight:  300;
    font-family: "AvantGarde CondBook";
    line-height: 1.3;
    max-width: 1000px;
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.jassure-titles {
    position:relative;
}

.jassure-title-container {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

h2.section-title {
    text-transform:  uppercase;
    font-family: "AvantGarde Bold";
    font-size: 35px;
    text-align:  center;
    margin-bottom: 5px;
}


h3.section-subtitle {
    text-align:  center;
    font-family: "AvantGarde Demi";
    font-size: 23px;
    margin-top: 0;
}

.square-title {
    font-family: "AvantGarde Bold";
    font-size: 22px;
    margin-bottom: 15px;
}

span.square-puce {
    width: 8px;
    height: 8px;
    display:  inline-block;
    margin-right: 5px;
}

.disk-title {
    font-family: "AvantGarde Bold";
    font-size: 15px;
}

span.disk-puce {
    width: 8px;
    height: 8px;
    display:  inline-block;
    margin-right: 5px;
    border-radius: 100%;
}

.tiret-title {
    font-family: "AvantGarde Bold";
    font-size: 15px;
}

span.tiret-puce {
    width: 8px;
    height: 8px;
    display:  inline-block;
    margin-right: 5px;
    border-radius: 100%;
}

.legend-text {
    color: #000000;
    font-size: 18px;
    font-family: "AvantGarde CondBook";
}

.alu-bubble-text {
    position:  absolute;
    top: 0;
    left:  0;
    right: 5%;
    bottom: 27%;
    padding: 35px;
    text-align:  center;
    color: #FFFFFF;
}

.big-figure-popup {
    font-size:30px;
}

.alu-bubble {
    position:  relative;
    margin-top: 140px;
}

.alu-bubble-text-bold {
    font-family: "AvantGarde Bold";
    font-size: 35px;
}

.alu-graph-1 {
    display: inline-block;
    width: 100%;
}

img.alu-graph-1-1 {
    width: 26%;
}

img.alu-graph-1-2 {
    width: 37%;
}

img.alu-graph-1-3 {
    width: 33%;
}

span.triangle-puce {
    border-top: 10px solid transparent;
    border-left: 10px solid #ff0000;
    border-bottom: 10px solid transparent;
    width:  0;
    height: 0;
    margin-right: 20px;
    display:  inline-block;
    vertical-align: sub;
}

span.figure-big {
    font-family: "AvantGarde Bold";
    font-size: 22px;
    line-height: 1;
}

span.figure-medium {
    font-family: "AvantGarde Bold";
    font-size: 20px;
    line-height: 1;
}

.triangle-puced-texte {
    margin-bottom: 15px;
}

.arrowed-text {
    float: left;
    margin-top: 20px;
}

img.text-arrow.left {
    float: left;
}

img.text-arrow.right {
    float:  right;
}

.info-box {
    max-width: 610px;
    margin:  auto;
    border-style:  solid;
    border-width: 1px;
    padding: 4px 7px 2px 7px;
    cursor:  pointer;
}

.info-box-icon-container {
    display:  inline-block;
    border-right-style:  solid;
    padding: 2px 14px 2px 8px;
    border-right-width:  1px;
    vertical-align: text-top;
}

.info-box-icon-container img {
    max-height: 28px;
}

.info-box-text-container {
    display:  inline-block;
    padding-left: 30px;
    vertical-align:  text-top;
}

.info-box-legend {
    font-family: "AvantGarde Bold";
    text-transform:  uppercase;
    font-size: 11px;
}

.info-box-text {
    font-family: "AvantGarde Bold";
    text-transform:  uppercase;
}

.ic-opener {
    width: 30px;
    float: right;
    margin-top: 5px;
    line-height: 1px;
    height: 30px;
}


ul#tabs-etude .nav-item {
    text-align:  center;
    padding-bottom: 0;
}

ul#tabs-etude .nav-item a{
    border: none;
    border-radius: 20px 20px 0 0;
    height: 170px;
}

.objection-tab-icon {
    width: 45px;
    margin-top: 0;
    display:  inline-block;
    margin-bottom: 15px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.objection-tab-text {
    color: #ec6619;
    font-size: 20px;
    margin-bottom: 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.objection-tab-legend {
    color:  #000000;
    text-transform:  uppercase;
    font-family: "AvantGarde Medium";
    line-height: 1.3;
    font-size: 12px;
    overflow:  hidden;
}

.nav-item.active .objection-tab-icon {
    width: 60px;
    margin-bottom: 0;
    margin-top: 30px;
}

.nav-item.active .objection-tab-text {
    font-size: 30px;
}

.nav-item.active .objection-tab-legend {
    display: none;
}
div#contents-etude .tab-pane {
    background: #FFFFFF;
    padding: 30px 20px;
}

.etude-title {
    text-align:  center;
    color: #6cb03b;
    text-transform:  uppercase;
    font-family: "AvantGarde CondBold";
    font-size: 30px;
    margin-bottom: 30px;
}

.etude-figure-legend {
    text-align:  center;
    color: #6cb03b;
    font-family: "AvantGarde CondBold";
    font-size: 17px;
}

.etude-figure-text {
    text-align: center;
}

.etude-figure-mini {
    text-align:  center;
    font-size: 11px;
}

.etude-figure {
    text-align: center;
    color: #ec6619;
    font-family: "AvantGarde CondBold";
    font-size: 32px;
    margin-bottom: 15px;
}

.col-md-3.plus-separated-column {
    position:  relative;
}

.col-md-3.plus-separated-column:after {
    content:  "";
    width: 26px;
    height: 26px;
    background-image: url(../images/ic-plus-black.png);
    background-size:  contain;
    background-position: 50%;
    background-repeat:  no-repeat;
    position:  absolute;
    right: -15px;
    top: 6px;
}

.etude-figure-total-horizontal {
    border-bottom: 1px solid #6d6d6d;
    border-right: 1px solid #6d6d6d;
    border-left: 1px solid #6d6d6d;
    height: 31px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 30px;
    margin-top: 30px;
    position:  relative;
}

.etude-figure-total-horizontal:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 20px solid #464646;
    position:  absolute;
    bottom: -21px;
    left: calc(50% - 7px);
}

.etude-figure-total-horizontal:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 20px solid #ffffff;
    position:  absolute;
    bottom: -19px;
    left: calc(50% - 7px);
    z-index: 2;
}

.timing-figure {
    font-family: "AvantGarde Bold";
    font-size: 110px;
    text-align:  center;
    line-height: 0.7;
    margin-top: 60px;
}

.timing-title {
    text-align:  center;
    text-transform:  uppercase;
    font-size: 28px;
    font-family: "AvantGarde Medium";
}

.timing-subtitle {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    font-family: "AvantGarde Medium";
}

.timing-figure-camenbert {
    max-width: 250px;
    margin: auto;
}


.family-diagram.responsive img {
    max-width: 460px;
}

.family-diagram.responsive {
    text-align:  center;
}

span.family-diagram-item-name {
    font-family: "AvantGarde Bold";
    color: #fdba00;
}

span.family-diagram-item-argent {
    display: block;
}

.family-diagram-item {
    margin-top: 20px;
    width:  33%;
    float:  left;
}

.family-diagram-items:after {
    content:  "";
    display:  block;
    clear: both;
    margin-bottom: 45px;
}



/* -------------------------------------------------------------------- DIRECT -------------------------------------------------------------------- */


section.padded-section {
    padding: 30px 0;
}

.direct-map img {
    max-height: 300px;
}

.direct-map {
    text-align:  center;
}

.question-title {
    font-family: "Gill BoldItalic";
    font-size: 25px;
    line-height: 1;
}

hr.medium {
    max-width: 135px;
    height: 0px;
    margin: 15px 0;
    border-top-color:#FFFFFF;
    margin-left: 0;
}

hr.thick {
    border-top-width: 5px;
}

.question-name {
    font-family: "Gill BoldItalic";
    font-size: 34px;
    line-height: 1;
}

.question-legend {
    font-family: "Gill SemiBold";
    font-size: 17px;
    line-height: 1;
}

.lettering-title {
    font-family: "Gill BoldItalic";
}

span.quote-mark {
    font-size: 60px;
    line-height: 0;
}

span.quote-mark.closer {
    vertical-align:  text-top;
    margin-left: 10px;
}

span.quote-mark.opener {
    vertical-align:  middle;
}

.card.jassure-accordion {
    background: #FFFFFF;
    padding: 15px 15px;
    margin: 3px 0;
    border-bottom: 2px solid #FFFFFF;
}

.card.jassure-accordion .btn-link {
    color: #000000;
    font-family: "AvantGarde Bold";
    text-transform: uppercase;
    font-size: 13px;
    width: 100%;
    text-align:  left;
    outline:0;
    white-space: inherit;
}

.card.jassure-accordion .btn-link:focus {
    outline:0;
}

.card.jassure-accordion .btn-link:after {
    content:"";
    display:  inline-block;
    width: 12px;
    height: 6px;
    background-image:url("../images/ic-arrow-accordion.png");
    background-size: cover;
    vertical-align:  middle;
    margin-left: 7px;
    transform:rotateX(180deg);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.card.jassure-accordion .btn-link.collapsed:after {
    transform:rotateX(0deg);
}

.jassure-accordion .card-body {
    padding: 15px 15px;
}


/* -------------------------------------------------------------------- PREVOYANCE -------------------------------------------------------------------- */



.header-paragraphe {
    text-align:  center;
    font-size: 18px;
}

button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    background: #FFFFFF;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    line-height: 24px;
    font-size: 12px;
    font-family: "AvantGarde Bold";
    color: #ec6619;
    margin: 0 5px;
}

div#objections-dots {
    text-align:  center;
    margin-bottom: 30px;
}

button.owl-dot.active {
    background: #ec6619;
    color: #FFFFFF;
}

.objection-slides {
    width: calc(100% - 200px);
    float: left;
}

.slider-arrow {
    float: left;
    cursor: pointer;
    margin-top: 40px;
}

.slider-arrow img {
    width: 36px;
    margin-bottom: 10px;
}

.slider-arrow-text {
    text-transform:  uppercase;
    font-family: "AvantGarde Medium";
    color: #ec6619;
    max-width:  80px;
    font-size: 13px;
}

.slider-arrow-text.arrow-left-text {
    text-align:  right;
}

.slider-arrow.arrow-left {
    text-align:  right;
    margin-right: 20px;
}

.slider-arrow.arrow-right {
    margin-left: 20px;
    float:  right;
}

.objection-slide-left {
    width: 270px;
    padding: 0 20px 0 0;
    /* float:  left; */
    display:  inline-block;
    vertical-align:  middle;
}

.objection-slide {
    background: #FFFFFF;
    padding: 10px 12% 10px 5%;
    overflow-y: scroll;
    line-height: 190px;
    height: 190px;
    display: table;
    text-align:  center;
}

.objection-slide:after {
    content:'';
    display:block;
    clear:both;
}

.objection-slide-right {
    width: calc(100% - 270px);
    /* float:  left; */
    line-height: 1;
    display:  inline-block;
    vertical-align: middle;
}

.objection-title {
    font-family: "AvantGarde Bold";
    line-height: 1;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #89c1cf;
}

.objection-slide-full {
    line-height:  normal;
    vertical-align:middle;
    display: table-cell;
}

.objection-text {
    font-size: 20px;
}

hr {
    margin: 15px 0;
    border-top-color: #777777;
}

.objections-slider:after {
    content: "";
    display: block;
    clear: both;
}

/* -------------------------------------------------------------------- A BON DROIT -------------------------------------------------------------------- */

.figure-big.color-red.text-uppercase {
    font-family: "AvantGarde Bold";
    font-size: 21px;
}

.big-text {
    font-size: 20px;
}

.dot-separator {
    float:  left;
    border-right: 4px dotted #000000;
    margin-left:  -2px;
    margin-right: -2px;
}

.book-condensed {
    font-family: "AvantGarde CondBook";
}

.info-box.medium {
    max-width: 460px;
}

/* -------------------------------------------------------------------- CHARTS -------------------------------------------------------------------- */

.left-iso {
    background: #6CA0AE;
    width: 50%;
    height: 100%;
    transform: skewY(30deg);
    position:  absolute;
    left: 0;
}

.right-iso {
    background: #83BECE;
    width: 50%;
    height: 100%;
    transform: skewY(-30deg);
    position:  absolute;
    right: 0;
}

.iso-chart {
    height: 50px;
    width: 60px;
    position:  relative;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.top-iso {
    width: 70%;
    height: 43px;
    background: #97C8D6;
    position:  absolute;
    top: -30px;
    left: 9px;
    transform: rotateX(55deg) rotateY(0deg) rotateZ(-45deg);
}

.green .left-iso {
    background: #5ab04f;
}

.green .right-iso {
    background: #81bf4c;
}

.green .top-iso {
    background: #94c419;
}


.left-iso {
    background: #6CA0AE;
    width: 50%;
    height: 100%;
    transform: skewY(30deg);
    position:  absolute;
    left: 0;
}

.right-iso {
    background: #83BECE;
    width: 50%;
    height: 100%;
    transform: skewY(-30deg);
    position:  absolute;
    right: 0;
}

.iso-chart {
    width: 60px;
    position:  relative;
    -webkit-transition: all 2s 0s;
    -moz-transition: all 2s 0s;
    -o-transition: all 2s 0s;
    transition: all 2s 0s;
    display: inline-block;
    margin: 0 5px;
}

.iso-chart-container:not(.motion-active) .iso-chart {
    height: 5px!important;
}

.iso-chart-container:not(.motion-active) .top-legend, .iso-chart-container:not(.motion-active) .bottom-legend {
    opacity: 0;
}

.top-iso {
    width: 70%;
    height: 43px;
    background: #97C8D6;
    position:  absolute;
    top: -30px;
    left: 9px;
    transform: rotateX(55deg) rotateY(0deg) rotateZ(-45deg);
}

.top-legend {
    position:  absolute;
    left: 90px;
    top: 30px;
    width: 120px;
    -webkit-transition: all 2s 0.3s;
    -moz-transition: all 2s 0.3s;
    -o-transition: all 2s 0.3s;
    transition: all 2s 0.3s;
}

.iso-chart-container {
    display:  inline-block;
    padding-top: 130px;
    margin-bottom: 40px;
    position:  relative;
}

.legend-figure {
    font-family: "AvantGarde Bold";
    font-size: 29px;
    color: #EE5C00;
}

.legend-figure:after {
    content:"";
    width: 100%;
    height:  2px;
    background: #EE5C00;
    position:  absolute;
    left: 0;
    top: 100%;
}

.legend-figure:before {
    content:"";
    width: 55px;
    height:  2px;
    background: #EE5C00;
    transform: rotate(-45deg);
    position:  absolute;
    left: -47px;
    top: calc(100% + 19px);
}

.animated-iso-chart {
    width: 33%;
}

.col-chart {
    width:  33%;
    position:  relative;
    display:  inline-block;
    vertical-align: bottom;
    line-height: normal;
}

.col-chart.col-small {
    width: 25%;
}

.col-chart.col-medium {
    width: 32%;
}

.cols-charts:after {
    content: "";
    display:  table;
    clear:  both;
}

.bottom-legend {
    position:  absolute;
    left: 80px;
    bottom: 30px;
    width: 230px;
    -webkit-transition: all 2s 0.3s;
    -moz-transition: all 2s 0.3s;
    -o-transition: all 2s 0.3s;
    transition: all 2s 0.3s;
}

.bottom-legend .legend-figure:before {
    content:none;
}

.bottom-legend .legend-figure:after {
    background: #94c419;
    max-width: 75px;
}

.legend-figure.green {
    color: #94c419;
    padding-left: 15px;
    text-align: left;
}

.mini-legend {
    font-size: 15px;
    font-family: "AvantGarde";
}

.chart-year {
    font-family: "AvantGarde Bold";
    font-size: 29px;
    padding-left: 8px;
}

.cols-charts {
    height: 390px;
    position: relative;
    line-height: 390px;
}

.horizontal-chart-legend {
    width: 235px;
    display:  inline-block;
    vertical-align:  super;
}

.horizontal-chart {
    width: calc(75% - 235px);
    display:  inline-block;
    border: 1px solid #848484;
    font-family: "AvantGarde Bold";
    background: #ec6619;
    height: 24px;
}

.horizontal-chart-row {
    margin: 5px 0;
}

.horizontal-chart-bar {
    display:  inline-block;
    height: 22px;
    background: #9a9a9a;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.horizontal-chart-row:not(.motion-active) .horizontal-chart-bar {
    width:0%!important;
}

.horizontal-chart-data {
    display:  inline-block;
    margin-left: 6px;
    color: #666666;
    font-family: "AvantGarde CondBook";
}

.legend-square {
    color: #777777;
}

.square {
    width: 20px;
    height: 20px;
    display:  inline-block;
    vertical-align: sub;
    border: 1px solid #000000;
}

.legend {
    display:  inline-block;
    vertical-align:  middle;
    margin-left: 15px;
}

.home-button:hover:after {
    -webkit-animation: spinAround 9s linear infinite;
    -moz-animation: spinAround 9s linear infinite;
    animation: spinAround 9s linear infinite;
    border: 2px dashed #fff;
}

.home-button:after {
    padding: 0;
    z-index: 10;
    content:"";
    position:  absolute;
    left: -1px;
    border: 2px solid #fff;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 100%;
}

@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes spinAround {
    from {
        -moz-transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(360deg);
    }
}
@keyframes spinAround {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg);
    }
}

.tooltiped {
    text-decoration: underline;
}

.tooltip-inner {
    background: #FFFFFF;
    padding: 10px 15px;
    color: inherit;
    font-size: 14px;
    box-shadow:0px 0px 8px #0000009c;
}

.tooltip.in {
    opacity: 1;
}

.tooltip.top .tooltip-arrow {
    border:none;
}



/* -------------------------------------------------------------------- TIMELINE -------------------------------------------------------------------- */


.circle-content-title {
    font-family: "AvantGarde Demi";
    font-size:  18px;
    margin-bottom: 10px;
}

.circle-content {
    padding: 0 14%;
    height:  300px;
    width: 300px;
    line-height: 300px;
    border-radius: 100%;
    text-align:  center;
    display: table;
    margin: 20px 0;
}

.circle-content-inner {
    line-height: 1.4;
    display: table-cell;
    vertical-align:  middle;
}

.timeline-chapter-title h3 {
    font-family: "AvantGarde Demi";
    font-size: 30px;
    text-transform:  initial;
}

.timeline-chapter-title {
    text-align:  center;
    margin: 50px 0;
}

.timeline-chapter-title p {
    max-width: 500px;
    margin: auto;
}

.timeline-section-button {
    display:  inline-block;
    border:1px solid grey;
    padding: 12px 0px 9px 0px;
    background: grey;
    border-radius: 10px;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-family: "AvantGarde CondMedium";
    position:  relative;
    z-index: 2;
    line-height: 1;
    cursor: pointer;
    width: 200px;
}


.timeline-section-arrow {
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto 0 auto;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 20px solid #89c1cf;
    z-index: 3;
}


.blue .timeline-section-button {
    background: #6db4cb;
    border: 2px solid #6db4cb;
}

.orange .timeline-section-button {
    background: #ec6619;
    border: 2px solid #ec6619;
}

.apple .timeline-section-button {
    background: #cdd146;
    border: 2px solid #cdd146;
}

.timeline-section-button:hover {
    background:none!important;
    color:#000000;
}


.circle-number {
    color: #FFFFFF;
    background: grey;
    display:  inline-block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    font-family: "AvantGarde Demi";
    line-height: 34px;
    margin-bottom: 15px;
    font-size: 18px;
}

.blue .circle-number {
    background: #6db4cb;
}

.orange .circle-number {
    background:#ec6619;
}

.apple .circle-number {
    background:#cdd146;
}

.dot-separator-vertical {
    font-size: 20px;
    line-height: 1;
}

.timeline-section {
    text-align:  center;
    margin-bottom: 15px;
    position:  relative;
}

.timeline-section-content:after {
    content:  "";
    display:  block;
    clear: both;
}

.timeline-section-content {
    background:#FFFFFF;
    position:  relative;
    z-index: 1;
    max-height: 0;
    overflow:  hidden;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.timeline-section-content .col-sm-4 {
    padding:0 45px;
}

.timeline-section-content.active {
    max-height: 700px;
    margin-top: -35px;
}

.timeline-section-close {
    position:  absolute;
    right: 15px;
    top: 15px;
    width: 25px;
    cursor:pointer;
}

.timeline-section-close img {
    transform:rotate(0deg);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.timeline-section-close:hover img {
    transform:rotate(90deg);
}

.timeline-section-content .container {
    padding: 80px 0;
}


.timeline-section-content h4 {
    font-family: "AvantGarde CondMedium";
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 15px;
}

.timeline-section-content .big-figure {
    font-size:40px;
}

.timeline-section-content span.figure-medium {
    font-family:"AvantGarde CondMedium";
    font-size: 21px;
}



#objections-questions .card.jassure-accordion {
    background: none;
    padding: 15px 15px 15px 0;
}

#objections-questions .card.jassure-accordion .btn-link {
    padding-left:0;
}

#objections-questions .card.jassure-accordion .btn-link:after {
    float: right;
}



.border-simple {
    border: 2px solid #FFFFFF;
    padding: 10px;
}


.col-sm-6.border-simple {
    width: calc(50% - 40px);
    margin: 20px;
}


.commentaire-box {
    padding: 15px;
    position:  relative;
}

.top-bar {
    margin-top:  -15px;
    margin-left:  -15px;
    margin-right: -15px;
    padding: 5px 0 0px 15px;
    margin-bottom: 10px;
    font-size: 20px;
    }

.top-bar.black {
    background:  #000000;
    color: #FFFFFF;
}

.puce-triange-right img{
    width:10px;
    margin-right: 7px;
}

.speak-bubble-queue {position:  absolute;left: -30px;top: 20%;}

.speak-bubble-queue img {
    width: 30px;
}