/*
Theme Name: Gizmo
Author: IZHAK
Author URI: http://izhak.fr/
Version: 1.0

*/


/* 	==================================================================
	General
	==================================================================	*/
body {
	color: #383543;
	font-family: 'trendaregular', sans-serif;
	font-size: 16px;
	margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


strong { font-family: 'trendabold'; }


/*  ==================================================================
    Loader
    ==================================================================  */
.loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
}

.loader .background {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: scale(20);
    z-index: -1;
}

.loader .content {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.loader .content img {
    width: 375px;
    height: auto;
    animation: loaderAnim 3s infinite ease;
}

@keyframes loaderAnim {
    0%{opacity: 1; transform: translateY(0)}
    50%{opacity: .3; transform: translateY(15px)}
    100%{opacity: 1; transform: translateY(0)}
}

@media (max-width: 425px) {
    .loader .content img {
        width: 325px;
    }
}


/*  ==================================================================
    Header
    ==================================================================  */
.main-header {
    /*opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);*/
    width: 100%;
    background: transparent;
    padding: 40px 10%;
    height: 110px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    transition: all .4s ease;
}

.main-header.no-transparent, body.page-template-default .main-header, body.search .main-header {
    height: 70px;
    padding: 15px 10%;
    position: absolute;
    background: #383543;
}
body.page-template-default .main-header, body.search .main-header { position: fixed; }
.main-header.active { background: #383543; }

.main-header.transparent { background: transparent !important; }

.main-header.active { background: #383543; padding-top: 15px; padding-bottom: 15px; height: 70px; }

body.admin-bar .main-header { margin-top: 32px; }

.main-header .title {
    margin: 0;
}

.main-header .title .link {
    display: block;
    line-height: 0;    
    text-decoration: none;
    color: #fff;
}

.main-header .right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .languages-block {
    margin-right: 30px;
    position: relative;
    text-transform: uppercase;
}

.main-header .languages-block span, .main-header .languages-block a {
    color: white;
    text-decoration: none;
}

.main-header .languages-block .current-lang {
    padding-right: 17px;
    position: relative;
}

.main-header .languages-block .current-lang:after {
    content: '';
    background-image: url(svg/arrow-carousel.svg);
    background-repeat: no-repeat;
    width: 7px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-65%) rotate(-90deg);
}

.main-header .languages-block ul {
    opacity: 0;
    visibility: hidden;
    background: linear-gradient(to bottom, #fed204, #f89e19);
    margin: 0;
    padding: .8em .5em;
    border-radius: 4px;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
}

.main-header .languages-block ul:before {
    content: '';
    width: 0;
    height: 0;
    border-color: transparent transparent #fed204;
    border-style: solid;
    border-width: 0 5px 5px;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.main-header .languages-block ul li {
    list-style: none;
}

.main-header .languages-block ul li a {
    font-size: .9em;
    padding: 1em 0;
}

.main-header .search.btn {
    margin-right: 30px;
}

.main-header .search.btn .img {
    width: 20px;
}

.main-header .menu.btn {
    color: white;
    font-size: .9em;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.main-header .menu.btn .btn {
    width: 22px;
    height: 14px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-header .menu.btn .btn span {
    background-color: white;
    width: 100%;
    height: 2px;
    border-radius: 5px;
}

.main-header .menu.btn .btn span:first-child {
    width: 70%;
}

@media (max-width: 768px) {
    .main-header {
        padding: 2em 5%;
    }
    .hideMobile { display: none; }
}

@media (max-width: 640px){
    .main-header .languages-block { margin-right: 15px; }
    .main-header .search.btn { margin-right: 5px; padding: 5px; }
    .main-header .menu.btn { padding: 10px 0 10px 10px; }
    .main-header .menu.btn .btn { margin-left: 0; }
    .main-header .menu.btn .txt { display: none; }
    .main-menu .navigation .list .item .link, .main-menu .navigation .list .item .submenu .item a {
        font-size: 1.2em;
    }
}

@media (max-width: 425px) {
    .main-header {
        padding: 1.5em 5%;
    }

    .main-header .title,
    .main-header .title .link {
        width: 106px;
        height: 40px;
    }
}



/*  ==================================================================
    Sub Menu
    ==================================================================  */
.sub-menu {
    background: #f0f0ef;
    width: 100%;
    padding: 0 10%;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 11;
}
body.admin-bar .sub-menu { margin-top: 32px; }
.sub-menu.active { top: 0; position: fixed; }
.sub-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.sub-menu ul li {
    display: inline-block;
    margin-right: 15px;
    line-height: 30px;
    padding: 5px;
    height: 40px;
}
.sub-menu ul li.trigger {
    float: left;
    line-height: 30px;
}
.sub-menu ul li.trigger img { margin-top: 6px; }
.sub-menu ul li a {
    display: block;
    color: #383543;
    font-family: 'trendabold';
    text-decoration: none;
    font-size: 0.85em;
}


@media (max-width: 768px) {
    .sub-menu {
        padding: 0;
    }
    .sub-menu ul li { display: none; padding-left: 5%; padding-right: 5%; margin-right: 0; line-height: 35px; height: 45px; }
    .sub-menu ul li.trigger { display: block; float: none; cursor: pointer; }
    .sub-menu ul li.trigger::after {
        content: '';
        background-image: url(svg/arrow-right.svg);
        background-repeat: no-repeat;
        background-position: center center;
        width: 12px;
        height: 12px;
        position: absolute;
        top: 17px;
        right: 20px;
        transform: translateY(-50%);
        transform: rotate(90deg);
        transition: transform .6s ease;
    }
    .sub-menu ul li.trigger img { margin-top: 8px; }
    .sub-menu ul.active li.trigger::after { transform: rotate(270deg); }
    .sub-menu ul.active li { display: block; }
}


/*  ==================================================================
    Menu
    ==================================================================  */
.main-menu {
    background: linear-gradient(to right, #fed204, #f89e19);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    overflow: hidden;
    z-index: 11;
}

.main-menu .arrow img {
    position: absolute;
}

.main-menu .arrow img._01 {
    transform: scale(.02);
    top: -60%;
}

.main-menu .arrow img._02 {
    transform: scale(.1);
    top: -70%;
}

.main-menu .arrow img._03 {
    transform: scale(.05);
    top: -55%;
}

.main-menu .arrow img._04 {
    transform: scale(.08);
    top: -35%;
}

.main-menu .arrow img._05 {
    transform: scale(.07);
    top: -30%;
}

.main-menu .navigation {
    transform: translateY(9%);
}

.main-menu .navigation .list {
    text-align: right;
    margin: 0;
    padding: 0;
    transform: translateX(11px);
}

.main-menu .navigation .list .item {
    list-style: none;
    margin-bottom: 1.7em;
}

.main-menu .navigation .list .item .link {
    opacity: 0;
    visibility: hidden;
    color: rgba(255,255,255,.35);
    font-family: 'trendabold';
    font-size: 2em;
    letter-spacing: 10px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transform: translateY(50%);
    display: block;
}

.main-menu .navigation .list .item .link span {
    position: relative;
}

.main-menu .navigation .list .item .link span:before {
    opacity: 0;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent white;
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translateY(-50%) rotate(180deg);
    transition: .45s;
}

.main-menu .navigation .list .item .link:hover span:before,
.main-menu .navigation .list .item .link span.active:before {
    opacity: 1;
    left: 105%;
    transition: .45s;
}

.main-menu .navigation .list .item .link span.active:before {
    transform: translateY(-50%) rotate(90deg);
}

.main-menu .navigation .list .item .link span:after {
    content: attr(data-hover);
    color: rgba(255,255,255,1);
    white-space: nowrap;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .45s;
    overflow: hidden;
}

.main-menu .navigation .list .item .link:hover span:after,
.main-menu .navigation .list .item .link span.active:after {
    width: 100%;
    transition: .45s;
}

.main-menu .navigation .list .item .submenu {
    height: 0;
    transform: translateX(-11px);
    transition: .4s ease;
    overflow: hidden;
}

.main-menu .navigation .list .item .submenu .item {
    line-height: 3em;
    margin: 0;
}

.main-menu .navigation .list .item .submenu .item a {
    color: white;
    font-size: 2em;
    text-decoration: none;
}

.main-menu .navigation .list .item .submenu .item span {
    padding-left: 35px;
    position: relative;
}

.main-menu .navigation .list .item .submenu .item span:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent white;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.main-menu .navigation .social {
    display: flex;
    justify-content: flex-end;
}

.main-menu .navigation .social .item {
    opacity: 0;
    visibility: hidden;
    margin-left: 7px;
    transform: translateY(50%);
}

.main-menu .navigation .social .item .bg {
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-menu .navigation .social .item .bg .icon {
    width: 45%;
}

@media (max-width: 425px) {
    .main-menu .navigation .list .item .link:hover span:before,
    .main-menu .navigation .list .item .link:hover span:after {
        display: none;
    }

    .main-menu .navigation .list .item {
        margin-bottom: 2em;
    }

    .main-menu .navigation .list .item .link,
    .main-menu .navigation .list .item .submenu .item a {
        font-size: 1.5em;
    }

    .main-menu .navigation .list .item .link span:before,
    .main-menu .navigation .list .item .submenu .item span:before {
        border-width: 6px 0 6px 8px;
    }

    .main-menu .navigation .list .item .link:hover span:before,
    .main-menu .navigation .list .item .link span.active:before {
        left: 102%;
    }

    .main-menu .navigation .list .item .submenu .item {
        line-height: 2.5em;
    }

    .main-menu .navigation .list .item .submenu .item span {
        padding-left: 20px;
    }

    .main-menu .navigation .social .item .bg {
        width: 30px;
        height: 30px;
    }
}

/* 	==================================================================
	Columns
	==================================================================	*/
.columns {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    z-index: -5;
}

.columns .stroke {
    border-right: 1px solid rgba(255,255,255,.3);
    width: calc((100% / 4.98) - 1px);
    height: 100%;
}

.columns .stroke:first-child {
    width: 10%;
}

.columns-anim {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
}

.columns-anim .stroke {
    background-color: #f89e19;
    width: calc((100% / 4.98) - 1px);
    height: 100%;
    border-right: 1px solid rgba(255,255,255,.3);
    transform: translateY(100%);
}

.columns-anim .stroke:first-child,
.columns-anim .stroke:last-child  {
    width: 10%;
}

@media (max-width: 768px) {
    .columns .stroke,
    .columns .stroke:first-child {
        width: calc((100% / 4) - 1px);
    }

    .columns .stroke.-four,
    .columns .stroke.-five {
        display: none;
    }
}


/*  ==================================================================
    Pop-up
    ==================================================================  */
.pop-up {
    margin: 0;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 8;
}

.pop-up:after {
    content: '';
    background-color: black;
    width: 70px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
}

.pop-up .close {
    opacity: 0;
    visibility: hidden;
    width: 25px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.pop-up .bg {
    background-color: black;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100%);
}

.pop-up .link {
    color: #383543;
    text-decoration: none;
}

.pop-up .img {
    opacity: 0;
    visibility: hidden;
    transform: scale(.7);
    width: 115px;
    box-shadow: 0 9px 50px rgba(0,0,0,.4);
    position: absolute;
    top: -45%;
    left: 1.4em;
    z-index: 1;
}

.pop-up .content {
    background-color: white;
    line-height: 1.4em;
    width: 450px;
    padding: 1.4em 0 2.4em 11em;
    box-shadow: -11px -9px 35px rgba(82,82,82,.11);
    position: relative;
    transform: translateX(100%);
}

.pop-up .content .title {
    opacity: 0;
    visibility: hidden;
    font-size: .85em;
    text-transform: uppercase;
    margin: 0;
}

.pop-up .content .text {
    opacity: 0;
    visibility: hidden;
    font-family: 'trendabold';
    font-size: 1.15em;
    padding-right: 30px;
    position: relative;
}

.pop-up .content .text:after {
    content: '';
    background-image: url(svg/arrow-pop-up.svg);
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: -2px;
    right: 0;
}

@media (max-width: 425px) {
    .pop-up .content {
        width: 100%;
        padding: 1.4em 0 2.4em 10em;
    }

    .pop-up .img {
        top: -40%;
    }
}


/*  ==================================================================
    Bouton
    ==================================================================  */
.btn {
    background: transparent;
    padding: 0;
    border: none;
    outline-style: none;
}

.link.btn {
    font-family: 'trendablack';
    font-size: .9em;
    text-align: center;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    width: 370px;
    border-radius: 5px;
    padding: 27px 0;
    position: relative;
    overflow: hidden;
}

.link.btn.-one {
    color: #383543;
    background-color: #fed204;
}

.link.btn.-two {
    color: white;
    background-color: #383543;
}

.link.btn.-three {
    color: #383543;
    background-color: transparent;
    border: 2px solid #fed204;
}

.link.btn.-four {
    color: #383543;
    background-color: white;
}

.link.btn.-five {
    color: white;
    background-color: #fe004e;
}

.link.btn.-six {
    color: white;
    background-color: #6ec7db;
}

.link.btn:after {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    transition: .5s;
}

.link.btn.-one:after {
    background-color: #ffdc00;
}

.link.btn.-two:after {
    background-color: #312f3a;
}

.link.btn.-three:after {
    background-color: #fed204;
    border-radius: 0;
}

.link.btn.-five:after {
    background-color: #ef014a;
}

.link.btn.-six:after {
    background-color: #6ac0d4;
}

.link.btn:hover:after {
    width: 100%;
    transition: .5s;
}

.link.btn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .link.btn {
        width: 340px;
    }
}

@media (max-width: 425px) {
    .link.btn {
        font-size: .8em;
        width: 100%;
        padding: 25px 0;
    }
}


/*  ==================================================================
    General
    ==================================================================  */
.w-100 {width: 100%;}
.w-90 {width: 90%;}
.w-80 {width: 80%;}
.w-70 {width: 70%;}
.w-60 {width: 60%;}
.w-50 {width: 50%;}
.w-40 {width: 40%;}
.w-30 {width: 30%;}
.w-20 {width: 20%;}
.w-10 {width: 10%;}

@media (max-width: 1024px) {
    .w-m-100 {width: 100%}
    .w-m-90 {width: 90%}
    .w-m-80 {width: 80%}
    .w-m-70 {width: 70%}
    .w-m-60 {width: 60%}
    .w-m-50 {width: 50%}
    .w-m-40 {width: 40%}
    .w-m-30 {width: 30%}
    .w-m-20 {width: 20%}
    .w-m-10 {width: 10%}
}

@media (max-width: 768px) {
    .w-sm-100 {width: 100%}
    .w-sm-90 {width: 90%}
    .w-sm-80 {width: 80%}
    .w-sm-70 {width: 70%}
    .w-sm-60 {width: 60%}
    .w-sm-50 {width: 50%}
    .w-sm-40 {width: 40%}
    .w-sm-30 {width: 30%}
    .w-sm-20 {width: 20%}
    .w-sm-10 {width: 10%}
}

@media (max-width: 425px) {
    .w-xs-100 {width: 100%}
    .w-xs-90 {width: 90%}
    .w-xs-80 {width: 80%}
    .w-xs-70 {width: 70%}
    .w-xs-60 {width: 60%}
    .w-xs-50 {width: 50%}
    .w-xs-40 {width: 40%}
    .w-xs-30 {width: 30%}
    .w-xs-20 {width: 20%}
    .w-xs-10 {width: 10%}
}

.container {
    width: 100%;
}

.container.center {
    width: 80%;
    margin: auto;
}

.container.left {
    width: 90%;
    margin-right: 10%;
}

.container.right {
    width: 90%;
    margin-left: 10%;
}

@media (max-width: 768px) {
    .container.right,
    .container.left {
        width: 80%;
        margin: auto;
    }
}

@media (max-width: 425px) {
    .container.center,
    .container.right,
    .container.left {
        width: 85%;
    }
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.column {
    flex-direction: column;
}

.start-start {
    justify-content: flex-start;
    align-items: flex-start;
}

.start-center {
    justify-content: flex-start;
    align-items: center;
}

.start-end {
    justify-content: flex-start;
    align-items: flex-end;
}

.center-start {
    justify-content: center;
    align-items: flex-start;
}

.center-center {
    justify-content: center;
    align-items: center;
}

.center-end {
    justify-content: center;
    align-items: flex-end;
}

.end-start {
    justify-content: flex-end;
    align-items: flex-start;
}

.end-center {
    justify-content: flex-end;
    align-items: center;
}

.end-end {
    justify-content: flex-end;
    align-items: flex-end;
}

.between-start {
    justify-content: space-between;
    align-items: flex-start;
}

.between-center {
    justify-content: space-between;
    align-items: center;
}

.between-end {
    justify-content: space-between;
    align-items: flex-end;
}

.around-start {
    justify-content: space-around;
    align-items: flex-start;
}

.around-center {
    justify-content: space-around;
    align-items: center;
}

.around-end {
    justify-content: space-around;
    align-items: flex-end;
}


/*  ==================================================================
    Home
    ==================================================================  */
.home-panel,
.contact {
    color: white;
    width: 100%;
    min-height: calc( 100vh - 130px );
    position: relative;
    padding: 30px 0;
}

.home-panel .background,
.contact .background {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -15;
}

.background.filter:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay-black {
    background: #000;
    width: 100%;
    height: 100%;
    opacity: .3;
}

.home-panel._1 .background {
    visibility: hidden;
    display: none;
}

.home-panel._1 .background-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -10;
}

.home-panel._1 .background-video video {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1.2);
    z-index: -1;
}

@media (max-width: 425px) {
    .home-panel._1 .background {
        visibility: visible;
        display: initial;
    }

    .home-panel._1 .background-video {
        visibility: hidden;
        display: none;
    }
}

.home-panel._1 .background.filter:after {
    opacity: .5;
    background-color: #383543;
}

.home-panel._5 .background.filter:after {
    background-color: #fe004e;
}

.home-panel._6 .background.filter:after {
    opacity: .9;
    background: linear-gradient(to right, #fed204, #f89e19);
}

.home-panel._3 .background-anim {
    background-image: linear-gradient(55deg, transparent 6%, #51deed 27%, #51deed 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: skew(-35deg) translateX(200%);
    transition: 2s ease;
    z-index: -7;
}

.home-panel._3.active .background-anim {
    transform: skew(-35deg) translateX(35%);
    transition: .9s ease;
}

.home-panel._4 .background-anim {
    background-image: linear-gradient(-115deg, transparent 0%, #fed204 25%, #fed204 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transform: skew(-35deg) translateX(-200%);
    transition: 2s ease;
    z-index: -7;
}

.home-panel._4.active .background-anim {
    transform: skew(-35deg) translateX(-35%);
    transition: .9s ease;
}

.home-panel._8 .background-anim {
    background-image: linear-gradient(55deg, transparent 6%, #FFFFFF 27%, #F1F1F1 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: skew(-35deg) translateX(200%);
    transition: 2s ease;
    z-index: -7;
}

.home-panel._8.active .background-anim {
    transform: skew(-35deg) translateX(35%);
    transition: .9s ease;
}

.home-panel._8 .download {
	font-size: 1.6rem;
	font-weight: bold;
	color: #f89e19;
	line-height: 1;
}

.home-panel._8 .download:hover {
	color: #333;
}

.home-panel .container,
.contact .container {
    height: 100%;
    min-height: calc( 100vh - 60px );
    padding: 0 5em;
    position: relative;
}

.home-panel._1 .logo {
    margin-bottom: 2%;
}

.home-panel._1 strong {
    font-family: 'trendablack';
    font-size: 3em;
}

.home-panel._1 strong._02 {
    font-family: 'trendaregular';
    font-size: 1em;
    position: absolute;
    bottom: 8%;
    right: 0;
}

.home-panel._1 strong span {
    display: inline-block;
}
.home-panel._1 .btn {
    margin-top: 30px;
    width: auto;
    padding: 27px;
}

.home-panel._1 .scroll-to {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.home-panel._1 .scroll-to img {
    width: 30px;
    height: auto;
}

.home-panel .title,
.contact .title {
    font-family: 'trendablack';
    font-size: 2.5em;
    line-height: 1.2em;
    margin-top: 0;
    margin-bottom: 20px;
}

.home-panel._8 .title {
    color:#333;
}

.contact .title {
    margin-bottom: 40px;
}

.home-panel .text,
.contact .text {
    font-size: 1.2em;
    line-height: 2em;
    margin-top: 0;
    margin-bottom: 25px;
    color: #383543 !important;
}
.cover .text {
    color: #383543 !important;
}


.home-panel .subtitle {
    font-size: .9em;
    font-weight: normal;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 25px;
    padding-left: 25px;
    position: relative;
}

.home-panel .subtitle:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #fed204;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.home-panel .subtitle-logo {
    margin-bottom: 15px;
}

.home-panel._3,
.home-panel._8,
.home-panel._4 {
    overflow: hidden;
}

.home-panel._5 .list {
    margin: 0;
    padding: 0;
}

.home-panel._5 .list .item {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
}

.home-panel._5 .list .item:last-child {
    margin-bottom: 0;
}

.home-panel._5 .list .item .thumbnail {
    width: 40%;
}

.home-panel._5 .list .item .list-content {
    width: 60%;
}

.home-panel._5 .list .item .list-content .date {
    font-size: .8em;
}

.home-panel._5 .list .item .list-content .list-title {
    font-family: 'trendabold';
    font-size: 1.2em;
    line-height: 1.5em;
    margin-top: 0;
    margin-bottom: 0;
}

.home-panel._5 .link.btn {
    color: #fe004e;
}

.home-panel._6 ul#instafeed {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.home-panel._6 ul#instafeed li {
    float: left;
    width: 33.3%;
    display: block;
}
.home-panel._6 ul#instafeed li a img {
    padding: 5px;
    display: block;
}
.home-panel._6 ul#instafeed li a img {
    max-width: 100%;
    height: auto;
}

.home-panel._6 .link.btn {
    background-color: transparent;
    border: 2px solid white;
    transition: .3s;
}

.home-panel._6 .link.btn:hover {
    color: #383543;
    transition: .3s;
}

.home-panel._6 .link.btn:after {
    background-color: white;
    border-radius: 0;
}

.contact .background:before {
    content: '';
    opacity: .7;
    background-color: #383543;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact .wpcf7-form {
    font-size: 1.25em;
    margin-bottom: 65px;
}

.contact .wpcf7-form hr {
    margin: 5px 0;
    border: none;
}

.contact .form .input {
    background-color: #1d1c1d;
    padding: .4em .5em;
    border: none;
    outline-style: none;
}

.contact .wpcf7-form select {
    color: #fff;
    font-family: 'trendaregular_it';
    font-size: 1em;
    font-family: 'trendabold';
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    padding: 10px 35px 10px 10px;
    position: relative;
    cursor: pointer;
    border: 0;
    outline: none;
    background: #1d1c1d url('../images/arrow-select.png') right center no-repeat;
    background-size: auto 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}

#contact-form-livre select {
    color: #1d1c1d;
    font-family: 'trendaregular_it';
    font-size: 1em;
    font-family: 'trendabold';
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    padding: 10px 35px 10px 10px;
    position: relative;
    cursor: pointer;
    border: 0;
    outline: none;
    background: #fff url('../images/arrow-select.png') right center no-repeat;
    background-size: auto 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}

.contact .wpcf7-form input[type="text"] {
    color: #fff;
    font-family: 'trendaregular_it';
    font-size: 1em;
    font-family: 'trendabold';
    background: #1d1c1d;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    padding: 10px;
    position: relative;
    border: 0;
    outline: none;
    width: 260px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}

.contact .form .input::placeholder,
.contact .form .input[type=tel] {
    color: #04ada8;
    font-family: 'trendaregular_it';
    font-size: 1em;
}

.contact .form .select {
    font-family: 'trendabold';
    position: relative;
    display: inline-block;
}

.contact .form .select .toggle {
    background-color: #1d1c1d;
    padding: .4em 1.7em .4em .5em;
    position: relative;
    cursor: pointer;
}

.contact .form .select .toggle:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 9px 6px;
    border-color: #04ada8 transparent transparent transparent;
    position: absolute;
    top: 50%;
    right: .5em;
    transform: translateY(-15%);
}

.contact .form .select .list {
    opacity: 0;
    visibility: hidden;
    background-color: white;
    font-size: 1.2em;
    margin: 0;
    padding: .5em;
    border-radius: 7px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.contact .form .select .list .item {
    color: #04ada8;
    list-style: none;
    padding: .3em 1em;
    cursor: pointer;
}

.contact .form .select .list .item:hover {
    color: #1d1c1d;
}

.contact .form .select .bg-select {
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0,0,0,.7);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}

#contact-form-submit { cursor: pointer; }

.use-floating-validation-tip span.wpcf7-not-valid-tip {
    padding: 8px;
    line-height: 1.2em;
    font-size: 0.7em;
    width: 100%;
    border-radius: 4px;
}
div.wpcf7-response-output {
    margin: 2em 0 1em 0;
    padding: 0;
    border: none !important;
    line-height: 1.3em;
}

@media (max-width: 1024px) {
    .home-panel .container,
    .contact .container {
        padding: 0;
    }

		.home-panel._3 .background-anim {
        background-image: linear-gradient(55deg, transparent 6%, #fed204 37%, #fed204 100%);
        width: 150%;
    }

    .home-panel._3.active .background-anim {
        transform: skew(-35deg) translateX(5%);
    }

		.home-panel._8 .background-anim {
        background-image: linear-gradient(55deg, transparent 6%, #FFFFFF 37%, #F1F1F1 100%);
        width: 150%;
    }

    .home-panel._8.active .background-anim {
        transform: skew(-35deg) translateX(5%);
    }

    .home-panel._4 .background-anim {
        background-image: linear-gradient(-115deg, transparent 0%, #51deed 35%, #51deed 100%);
        width: 150%;
    }

    .home-panel._4.active .background-anim {
        transform: skew(-35deg) translateX(-5%);
    }

    .home-panel._5 .container {
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-panel .title,
    .contact .title {
        font-size: 2.5em;
    }

    .contact {
        height: auto !important;
        padding: 4em 0;
    }

    .contact .form {
        line-height: 2.5em;
    }

    .contact .form hr {
        margin: 0;
    }

		.home-panel._3,
		.home-panel._8,
    .home-panel._4,
    .cover.page-gizmo-immo._1 .container,
    .cover.page-gizmo-viewer._1 .container {
        padding-bottom: 7em;
    }

    .cover.page-gizmo-immo._1 .container,
    .cover.page-gizmo-viewer._1 .container {
        height: 100vh;
    }

		.home-panel._3 .container,
		.home-panel._8 .container,
    .home-panel._4 .container,
    .cover.page-gizmo-immo._1 .container,
    .cover.page-gizmo-viewer._1 .container {
        justify-content: flex-end;
        align-items: flex-end;
    }

		.home-panel._3 .background-anim {
        background-image: linear-gradient(125deg, transparent -7%, #fed204 37%, #fed204 100%);
        width: 200%;
    }
		.home-panel._8 .background-anim {
        background-image: linear-gradient(125deg, transparent -7%, #FFFFFF 37%, #F1F1F1 100%);
        width: 200%;
    }

    .home-panel._4 .background-anim {
        background-image: linear-gradient(125deg, transparent -7%, #51deed 37%, #51deed 100%);
        width: 200%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transform: skew(-35deg) translateX(200%);
    }

		.home-panel._3.active .background-anim,
		.home-panel._8.active .background-anim,
    .home-panel._4.active .background-anim {
        transform: skew(-35deg) translateX(5%);
    }

    .home-panel._5 .list .item:nth-child(3),
    .home-panel._5 .list .item:last-child {
        display: none;
    }
}

@media (max-width: 425px) {
    .home-panel._1 {
        padding: 0;
    }

    .home-panel._1 strong._02 {
        font-size: 1.3em;
        text-align: center;
        width: 100%;
        bottom: 20%;
        left: 50%;
        transform: translateX(-50%);
    }

    .home-panel.contact {
        height: auto !important;
        padding: 3em 0;
    }

    .home-panel .title,
    .contact .title {
        font-size: 2em;
    }

    .home-panel .text,
    .contact .text {
        line-height: 1.7em;
    }

    .home-panel._1 .logo {
        height: 70px;
    }

    .home-panel._1 strong {
        font-size: 1.3em;
    }

		.home-panel._3,
		.home-panel._8,
    .home-panel._4,
    .cover.page-gizmo-immo._1 .container,
    .cover.page-gizmo-viewer._1 .container {
        padding-bottom: 4em;
    }

		.home-panel._3.active .background-anim,
		.home-panel._8.active .background-anim,
    .home-panel._4.active .background-anim {
        transform: skew(-35deg) translateX(-5%);
    }

    .home-panel._5 .list {
        display: none;
    }
}


/*  ==================================================================
    Cover Immo - Viewer
    ==================================================================  */
.cover {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cover .background {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -10;
}

.cover.page-gizmo-immo._1 .background img,
.cover.page-gizmo-viewer._1 .background img,
.page-gizmo-viewer._5 .section-background img {
    display: none;
}

.cover.page-livre-blanc._2 .background.filter:after,
.cover.page-comment-marche._3 .background.filter:after {
    opacity: .8;
    background-color: #ffdc00;
}

body.page-id-118 .cover.page-comment-marche._3 .background.filter::after, body.parent-pageid-61 .background.filter::after,
body.page-id-1125 .cover.page-comment-marche._3 .background.filter::after, body.parent-pageid-1121 .background.filter::after {
    opacity: .8;
    background-color: #51deed !important;
}
body.page-template-tpl-notre-equipe .cover .background.filter::after, body.page-template-tpl-faq .cover .background.filter::after {
    background-color: #f2a100 !important;
}

.cover.page-notre-vision._3 .background.filter:after {
    opacity: .8;
    background-color: #f9a317;
}

.cover.page-lab._3 .background.filter:after {
    opacity: .8;
    background-color: #fe004e;
}
.cover.page-lab._3 .text {
    color: #fff !important;
}

.cover._1 .background-anim {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    transform: skew(-35deg) translateX(35%);
    z-index: -5;
}

.cover.page-gizmo-immo._1 .background-anim {
    background-image: linear-gradient(55deg, transparent -100%, #fed204 40%, #fed204 100%);
}

.cover.page-gizmo-viewer._1 .background-anim {
    background-image: linear-gradient(55deg, transparent -100%, #51deed 40%, #51deed 100%);
}

.cover .container {
    min-height: 100vh;
    padding: 100px 0 30px 0;
}
.cover .container.blog { min-height: 60vh; }
body.page-id-59 .cover .container,
body.parent-pageid-59 .cover .container,
body.page-id-1067 .cover .container,
body.parent-pageid-1067 .cover .container,
body.page-id-61 .cover .container,
body.parent-pageid-61 .cover .container
body.page-id-1121 .cover .container,
body.parent-pageid-1121 .cover .container {
    padding: 140px 0 30px 0;
}


.cover .title,
.cover .subtitle {
    font-family: 'trendablack';
}

.cover .title {
    font-size: 2.5em;
    line-height: 1.2em;
    margin-top: 0;
    margin-bottom: 20px;
}

.cover .logo {
    height: 75px;
    margin-bottom: 15px;
}

.cover._3,
.cover.page-gizmo-immo._1 .title,
.cover.page-gizmo-immo._1 .text {
    color: white;
}

.cover.page-comment-marche .title {
    color: #383543;
}

/*.cover.page-livre-blanc .title {
    margin-bottom: 45px;
}*/

.cover._3 .subtitle,
.section.page-notre-vision._5 .subtitle,
.contact.cover .subtitle {
    font-family: 'trendalight';
    font-size: 1em;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.cover._3 .subtitle:before,
.section.page-notre-vision._5 .subtitle:before,
.contact.cover .subtitle:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent white;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.cover.page-livre-blanc .desc,
.section.page-notre-vision._3 .desc {
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 5px;
}

.cover .text {
    font-size: 1.2em;
    line-height: 1.4em;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.cover.page-gizmo-viewer._1 .text {
    color: white;
}

.cover.page-livre-blanc._2 .w-40 .img {
    box-shadow: -21px 26px 95px rgba(47,47,47,.85);
    border-radius: 4px;
    /*transform: translateY(20%);*/
}
.cover.page-livre-blanc._2 .w-40 .img.no-shadow {
    box-shadow: none !important;
    border-radius: 0;
}

.cover #contact-form-livre {
    font-family: 'trendabold';
    font-size: 1.2em;
    line-height: 1.5em;
    margin-bottom: 45px;
}

.cover #contact-form-livre hr {
    margin: .1em 0;
    border: none;
}

.cover #contact-form-livre input::placeholder,
.cover #contact-form-livre input[type=text],
.cover #contact-form-livre input[type=email] {
    color: #383543;
    font-family: 'trendabold';
    font-size: 1em;
    text-align: center;
    margin: 2px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}
input[type=submit].wpcf7-submit {
    font-size: 0.8em;
    margin-top: 20px;
    cursor: pointer;
    transition: background .6s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}
input[type=submit].wpcf7-submit:hover { background: #ffdc00; }
.cover #contact-form-livre [type=submit].wpcf7-submit:hover { background: #383543; color: #fff; }

.cover #contact-form-livre input[type=text],
.cover #contact-form-livre input[type=email] {
    background-color: white;
    padding: .5em;
    border: none;
    position: relative;
    outline-style: none;
    width: 180px;
}
.cover #contact-form-livre input[type=email] {
    background-color: white;
    padding: .5em;
    border: none;
    position: relative;
    outline-style: none;
    width: 200px;
}

.cover #contact-form-livre input.small {
    width: 120px;
}

.cover #contact-form-livre input.medium {
    width: 170px;
}

.cover #contact-form-livre input.large {
    width: 250px;
}

@media (max-width: 1024px) {
    .cover.page-gizmo-immo._1 .background-anim {
        background-image: linear-gradient(55deg, transparent 6%, #fed204 37%, #fed204 100%);
        width: 150%;
    }

    .cover.page-gizmo-viewer._1 .background-anim {
        background-image: linear-gradient(55deg, transparent 6%, #51deed 37%, #51deed 100%);
        width: 150%;
    }

    .cover.page-gizmo-immo._1 .background-anim,
    .cover.page-gizmo-viewer._1 .background-anim {
        transform: skew(-35deg) translateX(5%);
    }
}

@media (max-width: 768px) {
    .cover._2 {
        height: auto;
        padding: 7em 0 5em 0;
    }

    .cover .text {
        width: 100%;
    }

    .cover.page-gizmo-immo._1 .background-anim {
        background-image: linear-gradient(125deg, transparent -7%, #fed204 37%, #fed204 100%);
        width: 200%;
    }

    .cover.page-gizmo-viewer._1 .background-anim {
        background-image: linear-gradient(125deg, transparent -7%, #51deed 37%, #51deed 100%);
        width: 200%;
    }

    .cover .logo {
        width: 80%;
        height: auto;
    }
}

@media (max-width: 425px) {
    .cover .title {
        font-size: 2em;
    }

    .cover._3 .subtitle {
        font-size: .9em;
    }

    .cover.page-gizmo-immo._1 .background,
    .cover.page-gizmo-viewer._1 .background,
    .page-gizmo-viewer._5 .section-background {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .cover.page-gizmo-immo._1 .background img,
    .cover.page-gizmo-viewer._1 .background img,
    .page-gizmo-viewer._5 .section-background img {
        width: 100%;
        display: initial;
    }

    .cover.page-gizmo-immo._1 .background img {
        transform: scale(2);
    }

    .cover.page-gizmo-immo._1 .background video,
    .cover.page-gizmo-viewer._1 .background video,
    .page-gizmo-viewer._5 .section-background video {
        display: none;
    }

    .cover.page-gizmo-immo._1 .background-anim,
    .cover.page-gizmo-viewer._1 .background-anim {
        transform: skew(-35deg) translateX(-5%);
    }
}


/*  ==================================================================
    Breadcrumb
    ==================================================================  */

.container-content {
    margin-top: 70px;
    padding: 30px 10% 45px 10%;
}
.container-content h1, .container-content h2, .container-content h3 { font-family: 'trendablack'; }



@media (max-width: 768px) {
    .container-content {
        padding: 20px 5% 30px 5%;
    }
}



/*  ==================================================================
    Breadcrumb
    ==================================================================  */
.breadcrumb {
    width: 80%;
    margin: auto;
    padding-top: 3em;
}

.breadcrumb a {
    color: #159494;
    text-decoration: none;
    margin-right: 5px;
    padding-right: 17px;
    position: relative;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb > span > span > a:first-child {
    padding-left: 30px;
}

.breadcrumb a:last-child {
    padding-right: 0;
}

.breadcrumb > span > span > a:first-child:before {
    content: '';
    background-image: url(svg/home-icon.svg);
    background-repeat: no-repeat;
    width: 15px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.breadcrumb a:after {
    content: '';
    background-image: url(svg/arrow-right.svg);
    background-repeat: no-repeat;
    width: 7px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.breadcrumb a:last-child:after {
    display: none;
}

@media (max-width: 768px) {
    .breadcrumb {
        width: 90%;
        margin: auto;
        padding-top: 2em;
    }
}


/*  ==================================================================
    Section
    ==================================================================  */
.section {
    padding-bottom: 12em;
    position: relative;
}

.padding-top {
    padding-top: 7em;
}

.section-background {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10%;
    z-index: -11;
}

.section.page-notre-vision._5 .section-background,
.section.page-gizmo-viewer._5 .section-background {
    top: 0;
}

.section-background.filter:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.section.page-notre-vision._5 .section-background.filter:after {
    opacity: .8;
    background-color: #fed204;
}

.section .title {
    font-family: 'trendablack';
    font-size: 2em;
    line-height: 1.5em;
    margin-top: 0;
    margin-bottom: 30px;
}

.section .title.light {
    font-family: 'trendaregular';
    font-size: 2em;
    line-height: 1.4em;
}

.section .title i {
    font-family: 'trendaregular';
    font-style: normal;
}

.section .text {
    font-size: 1.2em;
    line-height: 1.9em;
    margin-top: 0;
    margin-bottom: 40px;
    color: #383543 !important;
}

.section.page-gizmo-immo._1 {
    text-align: center;
}

.section.page-gizmo-immo._1 .logo {
    margin-bottom: 35px;
}

.section.page-gizmo-immo._1 .text {
    font-size: 1.5em;
    line-height: 1.5em;
    max-width: 70%;
    margin: auto;
    padding-bottom: 20px;
}

.section.page-gizmo-immo._1 .iframe {
    width: 100%;
    /* max-width: 780px; */
}

.section.page-gizmo-immo._1 .iframe iframe {
    width: 100%;
    margin-bottom: 45px;
}

.section .button .link.btn:first-child {
    margin-right: 35px;
}

.section .slider {
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.section .slider img {
    width: 100%;
    height: auto;
    display: block;
}

.section .slider .resize {
    width: 55%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.section .slider .handle {
    background: #fed204;
    width: 15px;
    height: 125px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
}

.section .slider .handle:before,
.section .slider .handle:after {
    content: '';
    background-color: white;
    width: 2px;
    height: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.section .slider .handle:before {
    left: 5px;
}

.section .slider .handle:after {
    right: 5px;
}

.section .img-vr {
    margin: 0;
    margin-bottom: 5em;
    position: relative;
    overflow: hidden;
}

.section .img-vr .tag {
    color: white;
    background-color: #bababa;
    font-size: .9em;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    padding: 2em;
}

.section .img-vr img {
    width: 100%;
    height: auto;
}

.section .img-vr .filter {
    position: absolute;
    bottom: 0;
    left: 0;
}

.section .img-vr .filter svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.section .img-vr .filter .mask {
    transform: scale(3);
}

.section .main-carousel-one {
    background-color: white;
    width: 100%;
    box-shadow: 20px 10px 85px rgba(82,82,82,.11);
}

.section .main-carousel-one .slick-dots {
    height: 20px;
    margin: 1em 0 0 0;
    padding-left: 0;
    position: absolute;
    bottom: -50px;
    right: 10px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.section .main-carousel-one .slick-dots li {
    list-style: none;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.section .main-carousel-one .slick-dots li button {
    background-color: #e0e0e0;
    text-indent: -9999px;
    width: 5px;
    height: 5px;
    padding: 0;
    border: none;
    border-radius: 50%;
    transition: .3s ease;
    outline-style: none;
    cursor: pointer;
}

.section .main-carousel-one .slick-dots li.slick-active button {
    background-color: #fed204;
    transform: scale(2);
    transition: .3s ease;
}

.slick-slide {
    outline-style: none;
}

.section .main-carousel-one .content {
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section .main-carousel-one .img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: .3s ease;
}

.section .main-carousel-one .item:hover .img {
    filter: grayscale(0);
    transition: .3s ease;
}

.section.page-gizmo-immo._5 .w-40,
.section.page-comment-marche._2 .w-40,
.section.page-notre-vision._4 .w-40 {
    padding-left: 5em;
}

.section .main-carousel-two {
    position: relative;
    transform: translateX(11.1%);
}

.section .main-carousel-two .slick-list {
    padding: 9em 0 2em 0
}

.section .main-carousel-two .item {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    box-shadow: 0px 15px 35px rgba(82,82,82,.11);
    transition: .3s ease;
}

.section .main-carousel-two .item:hover {
    transform: translateY(-15px);
    transition: .3s ease;
}

.section .main-carousel-two .card {
    height: 400px;
    margin: 0;
    border-radius: 7px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section .main-carousel-two .img {
    width: auto;
    height: 100%;
}

.section .main-carousel-two .content {
    background: linear-gradient(to top, #383543, rgba(56,53,67,.3) 40%);
    width: 100%;
    height: 100%;
    padding: 2em;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.section .main-carousel-two .card-title,
.section .main-carousel-two .card-text {
    margin-top: 0;
}

.section .main-carousel-two .card-title {
    color: #fed204;
    font-size: .9em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section .main-carousel-two .card-text {
    max-width: 80%;
    margin-bottom: 0;
}

.section .main-carousel-two .slick-next {
    background-color: #383543;
    text-indent: -9999px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(50%);
    outline-style: none;
    cursor: pointer;
}

.section .main-carousel-two .slick-next:before {
    content: '';
    background-image: url(svg/arrow-carousel.svg);
    background-repeat: no-repeat;
    width: 10px;
    height: 15px;;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section.page-livre-blanc._1 {
    text-align: center;
    padding-bottom: 12em;
}

.section.page-livre-blanc._1 .title {
    margin: 0 auto 85px auto;
}

.section.page-livre-blanc._1 .list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.section.page-livre-blanc._1 .item {
    background-color: white;
    width: 31%;
    padding: 5em 2em;
    box-shadow: 20px 10px 85px rgba(82,82,82,.11);
}

.section.page-livre-blanc._1 .icon .img {
    height: 115px;
    margin-bottom: 35px;
}

.section.page-livre-blanc._1 .content {
    font-size: 1.2em;
    line-height: 1.5em;
}

.section.page-livre-blanc._1 .item-title {
    color: #ffdc00;
    font-family: 'trendabold';
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 25px;
}
body.parent-pageid-61 .section.page-livre-blanc._1 .item-title, body.parent-pageid-1121 .section.page-livre-blanc._1 .item-title { color: #51deed; }

.section.page-livre-blanc._1 .item-text {
    margin: 0;
}

.section.page-comment-marche._1 .w-50 {
    padding-top: 5em;
    padding-left: 3em;
    position: relative;
}

.section.page-comment-marche._1 .section {
    padding-bottom: 15em;
}

.section.page-comment-marche._1 .list {
    margin: 0;
    padding: 0 0 7em 0;
    list-style-type: none;
}

.section.page-comment-marche._1 .item {
    background-color: white;
    width: 31%;
    margin-top: 10em;
    padding: 2em;
    box-shadow: 20px 10px 85px rgba(82,82,82,.11);
    position: relative;
}

.section.page-comment-marche._1 .number {
    opacity: .2;
    font-family: 'trendablack';
    font-size: 12em;
    line-height: .6em;
    position: absolute;
    bottom: 100%;
    left: 0;
    display: flex;
    z-index: -1;
}

.section.page-comment-marche._1 .icon { width: 100%; }

.section.page-comment-marche._1 .icon .img {
    height: 115px;
    margin-bottom: 35px;
}

.section.page-comment-marche._1 .content {
    font-size: 1.2em;
    line-height: 1.5em;
}

.section.page-comment-marche._1 .item-title {
    color: #ffdc00;
    font-family: 'trendabold';
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
}

body.page-id-118 .section.page-comment-marche._1 .item-title, body.page-id-118 .section.page-comment-marche._1 .item-text a,
body.page-id-1125 .section.page-comment-marche._1 .item-title, body.page-id-1125 .section.page-comment-marche._1 .item-text a {
    color: #51deed;
}

.section.page-comment-marche._1 .item-text {
    margin: 0;
}

.section.page-comment-marche._1 .item-text a {
    color: #ffdc00;
    font-family: 'trendabold';
    margin-top: 15px;
    position: relative;
    display: table;
}

.section.page-notre-vision._1 {
    position: relative;
}

.section.page-notre-vision._1 .background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-35%);
    z-index: -1;
}

.section.page-notre-vision._1 .test {
    margin: 0;
    margin-bottom: 5em;
    padding-top: 25em;
    transform: translateX(15%);
    overflow: hidden;
}

.section.page-notre-vision._1 .test .tag {
    background-color: #ffdc00;
    letter-spacing: 1px;
    width: 100%;
    padding: 2em;
}

.section.page-notre-vision._1 .test .img {
    width: 100%;
}

.section.page-notre-vision._1 .page-notre-vision-02 .link.btn.-three {
    margin-bottom: 20px;
}

.section.page-notre-vision._1 .page-notre-vision-03 .w-50 {
    margin-top: 9em;
    margin-bottom: 3em;
    transform: translateX(-10%);
}

.section.page-notre-vision._1 .page-notre-vision-03 .w-60 {
    position: relative;
    transform: translateX(10%);
}

.section.page-notre-vision._1 .page-notre-vision-03 .w-60:before {
    content: '‘‘';
    color: #ffdc00;
    font-family: 'trendabold';
    font-size: 9em;
    line-height: .8em;
    position: absolute;
    top: 0;
    left: -20%;
}

.section.page-notre-vision._2 .list {
    margin: 0;
    padding: 0;
}

.section.page-notre-vision._2 .item {
    padding: 0 1em;
}

.section.page-notre-vision._2 .item:first-child {
    margin-bottom: 75px;
}

.section.page-notre-vision._2 .icon .img {
    height: 95px;
    margin-bottom: 25px;
}

.section.page-notre-vision._2 .content {
    font-size: 1.2em;
    line-height: 1.5em;
}

.section.page-notre-vision._2 .item-title {
    color: #ffdc00;
    font-family: 'trendabold';
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px;
}

.section.page-notre-vision._2 .item-text {
    margin: 0;
}

.section.page-notre-vision._3 .w-100 {
    background-color: #ffdc00;
    height: 50vh;
    margin: 0;
    position: relative;
}

.section.page-notre-vision._3 .img {
    width: 22%;
    box-shadow: -21px 26px 95px rgba(47,47,47,.85);
    position: absolute;
    top: 0;
    left: 10%;
    transform: translateY(-22%);
    border-radius: 4px;
}

.section.page-notre-vision._3 .w-50 {
    transform: translateX(-12%);
}

.section.page-notre-vision._5 {
    padding: 4em 0;
}

.section.page-lab._1 a {
    text-decoration: none;
}

.section.page-lab._1 .last-post {
    line-height: 2em;
    /*max-height: 60vh;*/
    margin-bottom: 5em;
    box-shadow: 0px 15px 35px rgba(82,82,82,.11);
}

.section.page-lab._1 .last-post .content {
    background-color: white;
    padding: 4em;
}

.section.page-lab .post-tag {
    color: white;
    background-color: #fe004e;
    font-size: .8em;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding: .5em 1.7em;
    border-radius: 5px;
    display: inline-block;
}
body.page-template-tpl-notre-equipe .section.page-lab .post-tag {
    background-color: #f2a100;
}
body.single-post .post-tag {
    color: #fe004e;
    background-color: #fff;
    font-size: .8em;
    text-transform: uppercase;
    margin-bottom: 15px 0;
    padding: .5em 1.7em;
    border-radius: 5px;
    display: inline-block;
}

.section.page-lab .post-title {
    color: #383543;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
}
body.page-template-tpl-notre-equipe .section.page-lab .post-title {
    margin-bottom: 0;
}

.section.page-lab .post-text {
    color: #383543;
    font-size: 1.2em;
    margin: 0;
}
.section.page-lab .post-text p:last-child { margin-bottom: 0; }

.section.page-lab._1 .thumbnail {
    overflow: hidden;
}

.section.page-lab._1 .list-post {
    line-height: 2em;
    margin-top: 0;
    margin-bottom: 3em;
    padding: 0;
}

.section.page-lab._1 .item-post {
    list-style: none;
    margin-bottom: 2em;
    margin-left: 11%;
}

.section.page-lab._1 .item-post:nth-child(2n) {
    margin-top: 5em;
}

.section.page-lab._1 .list-post .thumbnail {
    background-color: #fe004e;
    height: 45vh;
}
body.page-template-tpl-notre-equipe .section.page-lab._1 .list-post .thumbnail {
    background-color: #f2a100;
}

.section.page-lab._1 .list-post .thumbnail .img {
    height: 100%;
    transform: scale(1.7);
}

.section.page-lab._1 .list-post .content {
    background-color: white;
    padding: 1.5em;
    box-shadow: 0px 15px 35px rgba(82,82,82,.11);
}
body.page-template-tpl-notre-equipe .section.page-lab._1 .list-post .content {
    padding: 1.5em;
}

.section.page-lab._1 .product .thumbnail {
    height: 50vh;
    margin-bottom: 35px;
}

.section.page-lab._1 .product .thumbnail .img {
    height: 100%;
}

.section.page-lab._1 .product .logo {
    min-height: 95px;
}

.section.page-lab._1 .product .logo .img {
    width: 50%;
}

.alm-btn-wrap { text-align: center; }
.alm-load-more-btn {
    font-family: 'trendablack';
    font-size: .9em;
    text-align: center;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    width: 370px;
    border-radius: 5px;
    padding: 27px 0;
    position: relative;
    overflow: hidden;
    color: white;
    background-color: #fe004e;
    border: 0;
    margin: 15px auto;
    cursor: pointer;
    transition: opacity .4s ease;
}
.alm-load-more-btn:hover { opacity: 0.85; }

body.post-template-default .container-content { margin-top: 0; font-size: 1.1em; line-height: 1.6em; }

.section.page-gizmo-viewer._1 .tag {
    color: white;
    background-color: #51deed;
    font-size: .9em;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    padding: 2em;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.section.page-gizmo-viewer._3 .main-carousel-three {
    margin: 0;
    padding: 0;
}

.section.page-gizmo-viewer._3 .main-carousel-three .item {
    background-color: white;
    width: 31%;
    min-height: 45vh;
    margin: 50px 20px;
    padding: 5em 2em 4em 2em;
    box-shadow: 20px 10px 85px rgba(82,82,82,.11)
}

.section.page-gizmo-viewer._3 .main-carousel-three .icon .img {
    height: 115px;
    margin-bottom: 35px;
    filter: grayscale(100%);
}

.section.page-gizmo-viewer._3 .main-carousel-three .content {
    font-size: 1.2em;
    line-height: 1.5em;
    text-align: center;
}

.section.page-gizmo-viewer._3 .main-carousel-three .item-title {
    color: #51deed;
    font-family: 'trendabold';
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 25px;
}

.section.page-gizmo-viewer._3 .main-carousel-three .item-text {
    margin: 0;
}

.section.page-gizmo-viewer._4 .title {
    font-size: 3em;
    padding-left: 45px;
    position: relative;
}

.section.page-gizmo-viewer._4 .title:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 16px 20px;
    border-color: transparent transparent transparent #51deed;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.section.page-gizmo-viewer._5 {
    height: 100vh;
    padding-bottom: 0;
}

.section.page-gizmo-viewer._5 .container {
    height: 100%;
}

.section.page-gizmo-viewer._5 .link.btn.-four {
    margin-bottom: 20px;
}

.main-carousel-four .item {
    text-decoration: none;
    transition: .3s ease;
}

.main-carousel-four .item:hover {
    transform: translateY(-15px);
    transition: .3s ease;
}

.main-carousel-four .card {
    background-color: white;
    margin: 50px 20px;
    border-radius: 5px;
    box-shadow: 20px 10px 85px rgba(82,82,82,.11);
    overflow: hidden;
}

.main-carousel-four .card .img:first-child {
    height: 30vh;
}

.main-carousel-four .card .content {
    min-height: 25vh;
    padding: 2em;
}

.main-carousel-four .card .city {
    color: #51deed;
    font-family: 'trendabold';
    font-size: .8em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-carousel-four .card .card-title {
    color: #383544;
    font-family: 'trendabold';
    font-size: 1.3em;
    line-height: 1.3em;
    margin-top: 5px;
    margin-bottom: 15px;
}

.main-carousel-four .card .profil-picture {
    background-color: red;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .section {
        padding-bottom: 10em;
    }

    .section.page-comment-marche._1 .list {
        padding-bottom: 5em;
    }

    .section.page-livre-blanc._1 .item,
    .section.page-comment-marche._1 .item {
        width: 80%;
        margin-bottom: 4em;
    }

    .section.page-gizmo-immo._1 .text {
        max-width: 100%;
    }

    .section.page-gizmo-immo._2 .container div:first-child {
        margin-bottom: 4em;
    }

    .section .slider img {
        width: 100%;
        height: auto;
    }

    .section.page-lab._1 .item-post {
        margin-top: 5em;
        margin-bottom: 2em;
        margin-left: 11%;
    }

    .section.page-lab._1 .item-post:nth-child(2n) {
        transform: translateX(50%);
    }

    .section.page-lab._1 .last-post .thumbnail {
        order: 1;
        height: 40vh;
        background-size: cover;
        background-position: center center;
    }

    .section.page-lab._1 .last-post .content {
        order: 2;
    }

    .section.page-lab._1 .product:first-child {
        margin-bottom: 7em;
    }

    .section .main-carousel-two {
        transform: translateX(0);
    }

    .section .main-carousel-two .slick-list {
        padding-top: 4em;
    }

    .section.page-notre-vision._1 {
        overflow: hidden;
    }

    .section.page-notre-vision._1 .test {
        transform: translateX(0);
    }

    .section.page-notre-vision._3 .w-100 {
        height: auto;
        padding: 5em 0;
    }

    .section.page-notre-vision._3 .img {
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .padding-top {
        padding-top: 5em;
    }

    .section.page-gizmo-immo._1 .text {
        font-size: 1.2em;
    }

    .section.page-livre-blanc._1 .item,
    .section.page-comment-marche._1 .item {
        width: 100%;
    }

    .section.page-livre-blanc._1 .item:last-child,
    .section.page-comment-marche._1 .item:last-child {
        margin-bottom: 0;
    }

    .section.page-comment-marche._1 .list {
        padding-bottom: 5em;
    }

    .section.page-comment-marche._1 .item {
        padding: 3em;
    }

    .section .button .link.btn:first-child {
        margin-bottom: 2em;
        margin-right: 0;
    }

    .section .main-carousel-one {
        margin-bottom: 5em;
    }

    .section.page-gizmo-immo._5 .w-40,
    .section.page-comment-marche._2 .w-40,
    .section.page-notre-vision._4 .w-40 {
        margin: auto;
        padding: 0;
    }

    .section.page-gizmo-immo._3 .container div:first-child {
        display: none;
    }

    .section .img-vr {
        order: 2;
        margin-bottom: 0;
    }

    .section.page-lab._1 .last-post .content {
        padding: 1.5em 1.5em 3em 1.5em;
    }

    .section.page-lab._1 .item-post:first-child {
        margin-top: 0;
    }

    .section.page-lab._1 .item-post,
    .section.page-lab._1 .item-post:nth-child(2n) {
        margin: 2em 0;
    }

    .section.page-lab._1 .item-post:nth-child(2n),
    .section.page-notre-vision._1 .page-notre-vision-03 .w-50,
    .section.page-notre-vision._3 .w-50 {
        transform: translateX(0);
    }

    .section.page-notre-vision._1 .test {
        padding-top: 1em;
    }

    .section.page-notre-vision._1 .page-notre-vision-02 div:first-child {
        display: none;
    }

    .section.page-notre-vision._1 .page-notre-vision-02 div:last-child {
        order: 1;
        margin-bottom: 4em;
    }

    .section.page-notre-vision._3 .w-100 {
        justify-content: center;
    }

    .section.page-notre-vision._3 .img {
        width: 30%;
        margin-bottom: 4em;
        position: relative;
        left: 0;
        transform: translate(0);
    }

    .section.page-notre-vision._3 .w-50 {
        text-align: center;
        align-items: center;
    }

    .section.page-gizmo-viewer._1 .tag {
        position: relative;
        top: 0;
        right: 0;
        transform: translateY(0);
        z-index: -1;
    }

    .section.page-gizmo-viewer._4 .title {
        font-size: 2em;
    }

    .section.page-gizmo-viewer._5 {
        height: auto;
        padding: 7em 0;
    }
}

@media (max-width: 425px) {
    .section {
        padding-bottom: 5em;
    }

    .section .title {
        font-size: 2em;
    }

    .section .title.light {
        font-size: 1.7em;
    }

    .section .title br {
        display: none;
    }

    .section.page-comment-marche._1 .item {
        padding: 2em;
    }

    .section.page-comment-marche._1 .item-title {
        font-size: .9em;
    }

    .section.page-notre-vision._1 .background {
        top: 7%;
        left: 0;
        transform: translateX(0);
    }

    .section.page-notre-vision._1 .background img {
        width: 100%;
    }

    .section.page-notre-vision._1 .page-notre-vision-02 div:last-child {
        padding-top: 0;
    }

    .section.page-notre-vision._1 .page-notre-vision-03 .w-50 {
        margin-top: 0;
    }

    .section.page-notre-vision._1 .page-notre-vision-03 .w-60 {
        transform: translateX(0);
    }

    .section.page-notre-vision._1 .page-notre-vision-03 .w-60:before {
        left: -10%;
        z-index: -1;
    }

    .section.page-notre-vision._2 .item {
        margin-bottom: 75px;
    }

    .section.page-notre-vision._2 .item:last-child {
        margin-bottom: 0;
    }

    .section.page-notre-vision._2 .item .icon {
        justify-content: center;
        align-items: center;
    }

    .section.page-notre-vision._3 .w-100 {
        padding: 3em 1em;
    }

    .section.page-notre-vision._3 .img {
        width: 40%;
    }

    .section.page-gizmo-viewer._3 .main-carousel-three .item {
        min-height: auto;
        margin: 50px 10px;
        padding: 4em 1em;
    }

    .slick-slide img {
        width: auto;
    }
}


/*  ==================================================================
    Showroom
    ==================================================================  */
#showroom-nav {
    border-bottom: 8px solid #ffdc00;
    text-transform: uppercase;
    font-size: 0.85em;
    font-family: 'trendabold';
}
    #showroom-nav span { padding: 15px 30px; display: inline-block; border: 3px solid #ffdc00; border-bottom: 0; cursor: pointer; border-top-left-radius: 6px; border-top-right-radius: 6px; transition: background .6s ease; background: white; }
    #showroom-nav span:hover, #showroom-nav span.active { background: #ffdc00; }

#showroom-tabs {
    width: 100%;
    margin: 0 0 120px 0;
    display: block;
}

#showroom-visites, #showroom-rendu { display: none; }
#showroom-visites.active, #showroom-rendu.active { display: block; }
.showroom-list {
    width: 100%;
    float: left;
    position: relative;
    margin: 0;
    padding: 0;
    list-style-type: none;
    opacity: 0;
    transition: opacity .6s ease;
}
.showroom-list.active { opacity: 1; }
.showroom-list::after, #showroom-tabs::after { content: ""; width: 100%; height: 1px; display: block; clear: both; }
    .showroom-list li { width: 25%; float: left; display: block; }
    .showroom-list li a { display: block; width: 100%; line-height: 0; }
    .showroom-list li a img { width: 100%; height: auto; }

.conclusion { width: 100%; max-width: 800px; margin: auto; }

@media (max-width: 1024px) {

    .showroom-list li { width: 33.333%; }

}

@media (max-width: 768px) {

    .showroom-list li { width: 50%; }

}



/*  ==================================================================
    Réalité virtuelle
    ==================================================================  */
.realite-iframe {
    width: 100%;
    max-width: 780px;
    margin: 60px auto;
}
.realite-iframe iframe {
    width: 100%;
}



/*  ==================================================================
    Contact
    ==================================================================  */
.shadow {
    margin: 30px;
    box-shadow: 0 9px 50px rgba(0,0,0,.4);
}
.w-40 .shadow { padding: 70px 15px; text-align: center; }
.w-60 .shadow { line-height: 0; }


@media (max-width: 1024px) {
    .shadow { margin: 15px; }
}

@media (max-width: 768px) {
    .shadow { margin: 30px 0; }
    .w-40 .shadow { padding: 15px; }
}



/*  ==================================================================
    Footer
    ==================================================================  */
#rgpd { font-size: 10px; }

.main-footer {
    background-color: #383543;
    padding: 4em 0 5em 0;
}

.main-footer ul {
    margin: 0;
    padding: 0;
}

.main-footer li {
    list-style: none;
    line-height: 3em;
}

.main-footer li:first-child {
    font-family: 'trendabold';
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
}

.main-footer li.social {
    margin-top: 2em;
    display: flex;
}

.main-footer a {
    color: white;
    text-decoration: none;
}

.main-footer span {
    background-color: white;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-footer span img {
    height: 45%;
}

@media (max-width: 1024px){
    .main-footer .container {
        flex-direction: column;
    }

    .main-footer ul {
        margin-bottom: 1em;
    }
}


#search {
    background: linear-gradient(to right, #fed204, #f89e19);
    width: 100%;
    min-height: 100vh;
    padding: 60px;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    overflow: hidden;
    z-index: 9999;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .6s ease;
}
    #search input {
        width: 100%;
        max-width: 480px;
        font-family: 'trendabold';
        background: transparent;
        font-size: 2em;
        border: 0;
        border-bottom: 3px solid #fff;
        padding: 10px 0;
        color: #fff;
        margin: auto;
        opacity: 0;
        transform: translateY(-50px);
        transition: all .4s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
    }
    #search .close {
        color: #fff;
        text-transform: uppercase;
        margin-top: 15px;
        font-size: 0.9em;
        opacity: 0;
        transform: translateY(-50px);
        transition: all .4s ease;
    }
    #search.active .close span { cursor: pointer; padding: 10px; display: inline-block; }
    #search.active, #search input.active, #search .close.active { transform: translateY(0); opacity: 1; }

body.search .entry-content a { text-decoration: none; color: #383543; }
body.search .entry-content .hentry {
    background-color: white;
    padding: 1.5em;
    margin-bottom: 1.5em;
    box-shadow: 0px 15px 35px rgba(82,82,82,.11);
}
    body.search .entry-content .hentry h2 { margin: 0; }
    body.search .entry-content .entry-summary p { margin-bottom: 0; }

body.page-template-tpl-faq #showroom-nav { margin-bottom: 1.5em; }
body.page-template-tpl-faq h2.title.light { margin-top: 80px; margin-bottom: 15px; }
body.page-template-tpl-faq .faq-categorie:first-child h2 { margin-top: 0; }
body.page-template-tpl-faq .faq-categorie { display: none; }
body.page-template-tpl-faq .faq-categorie.active { display: block; }
.item-faq {
    background-color: white;
    padding: 10px;
    margin-bottom: 1.5em;
    box-shadow: 0px 15px 35px rgba(82,82,82,.11);
    transition: all .4s ease;
}
.item-faq.active { box-shadow: 0px 15px 35px rgba(82,82,82,.22); background: #f8f8f8; }
    .item-faq .question { display: block; font-size: 1.2em; cursor: pointer; padding: 10px 30px 10px 10px; }
    .item-faq .question::before { display: block; float: right; content: "+"; color: #fca112; margin-right: -20px; }
    .item-faq.active .question::before { content: "-"; }
    .item-faq .reponse { display: none; padding: 10px; line-height: 1.4em; }
    .item-faq .reponse p:last-child { margin-bottom: 0; }
    .item-faq .reponse a { color: #fca112; }


#related {
    padding: 50px 0 60px 0;
    background: #fe004e;
}
#related h2 { color: #fff; margin-bottom: 35px; font-size: 2em; }

#related .list {
    margin: 0;
    padding: 0;
    width: 100%;
}

#related .list .item {
    list-style: none;
    margin-bottom: 25px;
    display: inline-block;
    float: left;
    width: 33%;
}
#related .list .item a { text-decoration: none; color: #fff; display: block; }
#related .list .item:last-child {
    margin-bottom: 0;
}

#related .list .item .thumbnail {
    width: 85px;
    float: left;
}
#related .list .item .thumbnail img { width: 100%; }

#related .list .item .list-content {
    width: calc( 100% - 100px );
    float: right;
}

#related .list .item .list-content .date {
    font-size: .8em;
}

#related .list .item .list-content .list-title {
    font-family: 'trendabold';
    font-size: 1.2em;
    line-height: 1.5em;
    margin-top: 0;
    margin-bottom: 0;
}


@media (max-width: 1080px) {
    #related .list .item { width: 50%; }
}

@media (max-width: 768px) {
    #related .list .item { width: 100%; }
}

ul li {
  display: inline; /* 或者使用 inline-block */
  margin-right: 10px; /* 可选，添加一些间距 */
}