﻿
body
{
    background:none;
    margin-top: 50px;
}

@media screen and (max-width: 900px) {
    body
    {
        margin-top: 23px;
    }
}

a {
    color:#1981b2;
}

input.button_green, a.button_green, .button_green,
input.button_orange, a.button_orange, .button_orange
{
    background: linear-gradient(rgb(102, 162, 209) 0%, rgb(25, 129, 178) 100%) !important;
}

.header-margin
{
    width:100%;
    height:150px;
}

.blue.blue_highlight,
input.button_blue.blue_highlight, a.button_blue.blue_highlight, .button_blue.blue_highlight
{
    background:#1981b2 !important;
}

header
{
    box-sizing:border-box;
    position:fixed;
    top:0;
    left:0;
    height:120px;
    width:100%;
    padding:0;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    z-index:99;

    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+45,ffffff+100&1+45,0+100 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */

    transition:background ease-in-out 0.2s;
}

@media screen and (max-width: 900px) {
    header
    {
        height:70px;
        display:block;
        position:absolute;
        top:0;
    }

    header.menu-opened
    {
        background-color:#000;
    }
}

header.full-header-bg
{
    background-color:#000;
    z-index: 999;
}

.header-section
{
    height:350px;
    width:100%;
    border-bottom:10px solid #1981b2;
    background-repeat:no-repeat;
    background-size:cover;
}

.header-section-core
{
    width:100%;
    height:100%;
    margin:0 auto;
    padding:0 0 0 0;
    display:flex;
    align-items: center;
    position:relative;
}

.header-section-core h1
{
    position:relative;
    z-index:20;
    color:#fff;
    font-size:53px;
    line-height:63px;
    text-transform:uppercase;
    font-weight:normal;
    padding:0 20px 0 80px;
    margin-top:70px;
}

.header-section-core h1:before
{
    content:"";
    position:absolute;
    width:70px;
    height:53px;
    background-color:#1981b2;
    display:block;
    top:0;
    left:0;
}

.header-section-overlay
{
    display:block;
    position:absolute;
    z-index:15;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(29, 29, 29, 0.7);
}

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

    .header-section
    {
        height:200px;
    }

    .header-section-core h1
    {
        font-size:30px;
        line-height:40px;
    }

}






.main-menu
{
    position:relative;
    list-style:none;
    display:inline-block;
    margin-top:0px;
    margin-bottom:10px;
    display: flex;
    justify-content: space-between;
}

.main-menu li
{
    position:relative;
    overflow:none;
    display:inline-block;

}

.main-menu li a
{
    text-transform:uppercase;
    font-size:15px;
    color:#fff;
    padding:20px;
}

.main-menu li.current-menu-parent a
{
    color:#1981b2;
}

.main-menu li a span
{
    display:none;
}

.main-menu li ul
{
    background-color:#1981b2;
    position:absolute;
    display:block;
    list-style:none;

    border-radius: 10px 10px 10px 10px;
    right: 0px;
    opacity:0;
    padding:20px;
    width:300px;
    pointer-events:none;
    transform:translate(0, -10px);
}

.main-menu li ul li
{
    width:300px;
    display:inline-block;
}

.main-menu li:hover a
{
    /*Hover */
    color:#000;
    background-color:#1981b2;
    border-radius:10px 10px 0 0;

}

.main-menu li:hover ul
{
    opacity:1;
    pointer-events:auto;
    transform:translate(0, 0);
    z-index: 2;
}

.main-menu li ul li a
{
    color:#fff !important;
    background:transparent !important;
    padding:0;
    text-transform:none;
}

.main-menu li ul li a:hover,
.main-menu li ul li.current-menu-item a
{
    color:#000 !important;
}

.main-menu li ul li ul
{
    position:relative;
    background:transparent;
    padding:10px 25px 0 25px;
    margin:0;
    box-sizing:border-box;
}

@media screen and (max-width: 1400px) {
    .main-menu li a
    {
        padding:15px;
    }

    .main-menu li ul
    {
        width:250px;
        border-radius:10px 10px 10px 10px;
        left:auto;
        right:0;
    }

    .main-menu li ul li
    {
        box-sizing:border-box;
        width:250px;
        padding-right:25px;
    }

    .main-menu li ul li ul
    {
        position:relative;
        background:transparent;
        padding:10px 55px 0 25px;
        margin:0;
        box-sizing:border-box;
    }

}

@media screen and (max-width: 900px) {
    .main-menu
    {
        display:none;
        width:100%;
        background-color:#000;
        margin-top:70px;
        padding:10px 20px;
        box-sizing:border-box;
    }

    .menu-opened .main-menu
    {
        display:inline-block;
    }

    .menu-opened header
    {
        background-color:#000;
    }

    .main-menu li
    {
        width:100%;
        padding:0 0 4px 0;
        border-bottom:1px solid #1981b2;
        position:relative;
    }

    .main-menu li a,
    .main-menu li:hover a,
    .main-menu li a:hover
    {
        padding:0;
        margin:0 0 0 0;
        background:transparent !important;
        height:auto;
        color:#fff;
        transform:none;
    }

    .main-menu li a:before
    {
        content:"";
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #fff;
        display:block;
        position:absolute;
        top:4px;
        right:0;
    }

    .main-menu li.opened a
    {
        color:#1981b2;
    }

    .main-menu li.opened a:before
    {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #1981b2;
        border-top: 6px solid transparent;
    }

    .main-menu li ul
    {
        display:none;
        left:auto;
        top:auto;
        width:100%;
        transform:none;
        position:relative;
        opacity:1;
        pointer-events:auto;
        background-color:transparent;
        padding:20px;
        box-sizing:border-box;
        margin:0;
    }

    .main-menu li.opened ul
    {
        display:block;
    }

    .main-menu li ul li
    {
        width:100%;
        display:inline-block;
        border-bottom:none;
    }

    .main-menu li ul li a:hover
    {
        color:#1981b2 !important;
    }

    .main-menu li ul li a:before
    {
        display:none;
    }

    .main-menu li ul li ul
    {
        padding:10px 0 10px 30px;
    }
}


.secondary-menu
{
    position:relative;
    height:25px;
    display:flex;
    justify-content: flex-end;
    align-items: center;
    margin:0 60px 0 0;
    min-width: 500px;
    width: 100%;
}

.secondary-menu a
{
    color:#1981b2;
    text-transform:uppercase;
    margin-right: 48px;
}

.secondary-menu-search
{
    color:#1981b2;
    height:30px;
    display:flex;
    justify-content: flex-end;
    align-items: center;
    padding:0 0 0 0;
}

.link-member-space
{
    position:relative;
}

.link-member-space .text
{
    padding:0 0 0 30px;
}

.link-member-space .icon
{
    position:absolute;
    top:3px;
    left:0;
    width:20px;
    height:20px;
    display:block;
    background-image:url(assets/images/icons/espace-membre.png);
    background-repeat:no-repeat;
}

.link-member-space:hover .icon
{
    background-image:url(assets/images/icons/espace-membre-hover.png);
}

.secondary-menu a:hover
{
    color:#fff !important;
}

.secondary-menu-search .search-toggle
{
    line-height:0;
    transition:  opacity ease-in-out 0.2s,
                transform ease-in-out 0.2s;
    margin-right:20px;

}

.secondary-menu-search-container
{
    opacity:0;
    transform:translate(15px, 0);
    pointer-events:none;
    width:157px;
    transition:  opacity ease-in-out 0.2s,
                transform ease-in-out 0.2s,
                width ease-in-out 0.2s;
    margin-right:20px;
    position: relative;
}

.secondary-menu-search-container form
{
    position: absolute;
    right: 10px;
    width: 210px;
    top: -14px;
}

.secondary-menu-search.opened .secondary-menu-search-container
{
    opacity:1;
    pointer-events:auto;
}

.secondary-menu-search.opened .search-toggle
{
    opacity:0;
    pointer-events:none;
    transform:translate(15px, 0);
}

.secondary-menu .link-menu
{
    display:none;
}



@media screen and (max-width: 900px) {
    .secondary-menu
    {
        position:absolute;
        top:20px;
        right:0;
        margin:0 20px 0 0;
        display:flex;
        align-items: center;
        justify-content: flex-end;
    }
    .secondary-menu a, .menu-toggle{
        order: 2;
    }

    .secondary-menu-search{
        order: 1;
    }

    .link-member-space
    {
        height:30px;
        width:30px;
        padding:0;
        margin:0 10px 0 0;
        border-right:1px solid #1981b2;
    }

    .link-member-space .icon
    {
        top:5px;
    }

    .link-member-space .text
    {
        display:none;
    }

    .secondary-menu-search .search-toggle
    {
        margin-right:7px;

    }

    .secondary-menu-search
    {
        margin-right:7px;
        border-right: 1px solid #1981b2;
    }

    .secondary-menu-search-container form {
        right: -10px;
    }

    .secondary-menu-search-container
    {
        opacity:0;
        transform:translate(0, 0);
        pointer-events:none;
        width:210px;
        margin-right:0;

    }

    .secondary-menu .link-menu
    {
        display:block;
        box-sizing:border-box;
        color:#1981b2;
        border-left:1px solid #1981b2;
        padding:5px 0 0 10px;
        margin:0 0 0 7px;
        height:30px;
    }
}

.main-logo
{
    width:200px;
    height:75px;

    position:absolute;
    top:20px;
    left:80px;

    background:url(assets/images/aqt-logo.svg) no-repeat center center;
    background-size:contain;

    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

@media screen and (max-width: 1400px) {
    .main-logo
    {
        left:20px;
    }
}

@media screen and (max-width: 900px) {
    .main-logo
    {

        width:133px;
        height:50px;
        top:10px;
        left:20px;
    }
}

@media screen and (max-width: 700px) {
    .main-logo
    {
        background:url(assets/images/aqt-logo-single.svg) no-repeat center center;
        width:70px;
        height:30px;
        top:17px;
        left:10px;
    }
}

@media screen and (max-width: 700px) {
    #s
    {
        width:80px;
    }
}


.home-main-banner
{
    width:100%;
    display:flex;
    background-repeat:no-repeat;
    background-position: top center;
    background-size:cover;
    align-items:center;
    justify-content: center;
    box-sizing:border-box;
}


.big-button
{
    width:100%;
    max-width:330px;
    color:#fff !important;
    text-transform:uppercase;
    text-align:center;
    height:65px;
    display:flex;
    align-items:center;
    justify-content: center;
    font-size:18px;
    font-weight:bold;
    margin:0 10px;
    border-radius:40px;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#66a2d1+0,1981b2+100 */
    background: rgb(102,162,209); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(102,162,209,1) 0%, rgba(25,129,178,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(102,162,209,1) 0%,rgba(25,129,178,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(102,162,209,1) 0%,rgba(25,129,178,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66a2d1', endColorstr='#1981b2',GradientType=0 ); /* IE6-9 */
}

.big-button-slider
{
    width:100%;
    max-width:330px;
    color:#fff !important;
    text-transform:uppercase;
    text-align:center;
    height:65px;
    display:flex;
    align-items:center;
    justify-content: center;
    font-size:18px;
    font-weight:bold;
    margin:0 10px;
    border-radius:40px;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#66a2d1+0,1981b2+100 */
    background: rgb(102,162,209); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(102,162,209,1) 0%, rgba(25,129,178,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(102,162,209,1) 0%,rgba(25,129,178,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(102,162,209,1) 0%,rgba(25,129,178,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66a2d1', endColorstr='#1981b2',GradientType=0 ); /* IE6-9 */
    padding:0 20px;
}

@media screen and (max-width: 800px) {
    .home-main-banner
    {
        flex-direction:column;
        margin-top:-20px;
    }

    .big-button
    {
        font-size:14px;
        height:40px;
        margin:0 0 30px 0;
    }
}

.medium-button
{
    width:330px;
    color:#fff !important;
    text-transform:uppercase;
    text-align:center;
    height:45px;
    display:flex;
    align-items:center;
    justify-content: center;
    font-size:16px;
    font-weight:bold;
    margin:0 10px;
    border-radius:40px;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#66a2d1+0,1981b2+100 */
    background: rgb(102,162,209); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(102,162,209,1) 0%, rgba(25,129,178,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(102,162,209,1) 0%,rgba(25,129,178,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(102,162,209,1) 0%,rgba(25,129,178,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66a2d1', endColorstr='#1981b2',GradientType=0 ); /* IE6-9 */
}

.small-button
{
    width:190px;
    color:#fff !important;
    text-transform:uppercase;
    text-align:center;
    height:40px;
    display:flex;
    align-items:center;
    justify-content: center;
    font-size:14px;
    font-weight:normal;
    margin:0 0;
    border-radius:40px;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#66a2d1+0,1981b2+100 */
    background: rgb(102,162,209); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(102,162,209,1) 0%, rgba(25,129,178,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(102,162,209,1) 0%,rgba(25,129,178,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(102,162,209,1) 0%,rgba(25,129,178,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66a2d1', endColorstr='#1981b2',GradientType=0 ); /* IE6-9 */
}

.small-button:hover
{
    color:#000;
}

.grey-button
{
    color:#fff;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#6c7b85+0,333942+100 */
    background: #6c7b85; /* Old browsers */
    background: -moz-linear-gradient(top, #6c7b85 0%, #333942 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #6c7b85 0%,#333942 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #6c7b85 0%,#333942 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6c7b85', endColorstr='#333942',GradientType=0 ); /* IE6-9 */
}

.grey-button:hover
{
    color:#000 !important;
}

.grey-bg{
    background-color: #efefef;
    padding: 60px 0;
    margin-bottom: 50px;
}
.grey-bg .section-news-core{
    margin: 0 auto;
}
.grey-bg .section-news-core .section-news-article{
    border: none;
}

.section-aqt
{
    width:100%;
    background-color:#f3f3f2;
    height:auto;
}

.section-aqt-core
{
    width:1300px;
    margin:0 auto;
    display:flex;
}

.section-aqt-article
{
    padding:20px;
    width:50%;
    box-sizing:border-box;
}

.section-aqt-article-content
{
    padding:60px 140px 0 70px;
}

.section-aqt-article h3
{
    font-size:28px;
    margin:0 0 15px 0;
    color:#1981b2;
}

.section-aqt-article p
{
    margin-bottom:35px;
}

.section-aqt-about-column
{
    height:auto;
    width:50%;
}

.section-aqt-about-main
{
    background:url(assets/images/aqt-about.jpg);
    background-repeat:no-repeat;
    background-size:cover;
    height:400px;
    display:flex;
    align-items:center;
    justify-content: center;
    flex-direction:column;
    text-align:center;
    padding:0 20px;
    box-sizing:border-box;
    color:#fff;
}

.section-aqt-about-main div
{
    width:100%;
}

.section-aqt-about-main h2
{
    font-size:32px;
    margin:0 0 25px 0;
}

.section-aqt-about-main p
{
    margin:0 0 15px 0;
}

.section-aqt-about-main .grey-button
{
    color:#fff;
}

.section-aqt-about
{
    height:80px;
    width:100%;
    display:block;
    background-color:#ff0000;
    display:flex;
    align-items:center;
    color:#fff !important;
    padding:0 20px;
    box-sizing:border-box;
    font-size:22px;
    position:relative;
}

.section-aqt-about.strategie
{
    background-color:#8c426d;
}

.section-aqt-about img
{
    width:30px;
    margin:0 15px 0 0;
}

.section-aqt-about.commerce
{
    background-color:#b2cd48;
}

.section-aqt-about.finances
{
    background-color:#288884;
}

.section-aqt-about.humain
{
    background-color:#d57738;
}

@media screen and (max-width: 1300px) {
    .section-aqt-core,
    .section-aqt-article
    {
        width:100%;
    }

    .section-aqt-about-column
    {
        width:100%;
    }

    .section-aqt-article-content
    {
        padding:40px 60px;
    }
}

@media screen and (max-width: 800px) {
    .section-aqt-core
    {
        flex-direction:column;
    }

    .section-aqt-article-content
    {
        padding:20px;
    }
}








.section-event
{
    width:100%;
    margin-bottom:75px;
}

.section-event-core
{
    width:1300px;
    margin:0 auto;
}

.section-event-more-core
{
    width:1100px;
    margin:0 auto;
}

.section-event-core h2 a
{
    color:#000 !important;
}

.section-event-title
{
    height:120px;

}

.section-event-banner
{
    position:relative;
    width:100%;
    height:420px;
    display:block;
    background-color:#1981b2;
}

.section-event-banner img
{
    z-index:18;
    position:absolute;
    bottom:0;
}

.section-event-main-article
{
    z-index:20;
    width:600px;
    position:relative;
    float:right;
    padding:50px 0 0 0;
}

.section-event-main-date
{
    padding:0px 10px;
    color:#fff;
    background-color:#000;
    display:flex;
    justify-content: flex-end;
    align-items: center;
    width:285px;
    margin-bottom:30px;
}

.section-event-main-date .day
{
    background:transparent;
    color:#fff;
    border-bottom:0;
    font-size:50px;
    line-height:50px;
    font-weight:bold;
    margin-right:4px;
}

.section-event-main-date .month-year
{
    font-size:12px;
    line-height:16px;
    text-transform:uppercase;
}

.section-event-main-content
{
    font-size:15px;
    color:#000;
    padding:0 0 0 170px;
}

.section-event-main-title
{
    font-size:30px;
    color:#000 !important;
}

.section-event-main-text
{
    padding:30px 0;
}

.section-event-listing
{
    display:flex;
    justify-content: space-between;
    flex-wrap:wrap;
    width:100%;
}

.section-event-listing h2
{
    color:#1981b2;
}

.section-event-more-core .medium-button
{
    margin-top:30px;
}

.section-event-element
{
    display:flex;
    padding:15px 0;
    width:48%;
    justify-content:flex-start;
    align-items:center;
    border-bottom:2px solid #f3f3f2;
}

.section-event-listing .section-event-main-date
{
    width:auto;
    background-color:transparent;
    color:#000;
    padding:0;
    margin:0 0 0 0;
    text-align:left;
    display:flex;
    justify-content: flex-start;
    width:150px;
}

.section-event-listing .section-event-main-date .day
{
    color:#1981b2;
}

.section-event-element a
{
    color:#000 !important;
    font-size:15px;
    width:calc(100% - 150px);
}

.section-event-element a:hover
{
    color:#1981b2 !important;
}








.section-work
{
    width:100%;
}

.section-work-core
{
    width:1300px;
    margin:0 auto;
    display:flex;
    padding:75px 0;
}

.section-work-column
{
    display:flex;
    width:66.66%;
    box-sizing:border-box;
}

.section-work-column-article
{
    width:50%;
    padding:0 90px 0 0;
    box-sizing:border-box;
}

.section-work-column-article h2
{
    text-transform:none;
}

.section-work-column-article div
{
    margin-bottom:35px;
}

.section-work-column-article a
{
    color:#fff;
}

.section-work-core .section-event-listing
{
    width:33.33%;
    display:flex;
    flex-direction:column;
    border-left:5px solid #f3f3f2;
    padding:0 0 0 30px;
    box-sizing:border-box;
}

.section-work-core .section-event-element
{
    width:100%;
}

@media screen and (max-width: 1300px) {
    .section-work-core
    {
        width:100%;
        flex-direction:column;
    }

    .section-work-column
    {
        padding:0 20px;
        width:100%;
        margin-bottom:35px;
    }

    .section-work-core .section-event-listing
    {
        width:100%;
        padding:0 20px;
        border:0;
    }

    .section-work-column-article
    {
        width:100%;

    }
}

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

    .section-work-column
    {
        flex-direction: column;
    }

    .section-work-column-article
    {
        width:100%;
        margin:0 0 35px 0;
        padding:0;
    }
}







.section-news
{
    padding:60px 0;
}

.section-news-core
{
    width:1300px;
    margin: 0 auto;

    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (min-width: 1300px) {
    .section-news-core.news-page {
        flex-wrap: initial;
    }
}

.section-news-core h2
{
    width:100%;
}

.section-news-core h2 a
{
    color:#000;
    margin-bottom:25px;
}

.section-news-latest
{
    width:100%;
    padding:0 0 25px 0;
    box-sizing:border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    align-items: space-between;
    position: relative;
    grid-gap: 20px;
    margin-top: 33px;
}

.section-news-latest::after {
    content: "";
    flex: auto;
}

.section-news-latest .archive-group{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-news-core.news-page .section-news-latest{
    padding: 0 40px 0 0;
    display: initial;
}

.section-news-core.news-page .section-news-latest #searchForm{
    width: 100%;
}

.section-news-core.news-page .section-news-article {
    width: 29%;
    padding: 0 0 0 0;
    border-bottom: 2px solid #fff;
    margin: 0 0 35px 0;
}

.section-news-core.news-page .section-news-article:nth-child(3n+1) {
    margin-right: 0;
}

.section-news-core.news-page .section-news-article:nth-child(3n+2) {

    clear: left;
}

@media screen and (max-width: 1300px) {
    .section-news-core.news-page .section-news-latest{
        padding: 0;
    }
}
@media screen and (max-width: 800px) {
    .section-news-core.news-page .section-news-article {
        width: 45%;
        padding: 0 0 0 0;
        border-bottom: 2px solid #fff;
        margin: 0 0 0 0;
    }
}
@media screen and (max-width: 520px) {
    .section-news-core.news-page .section-news-article {
        width: 100%;
        padding: 0 0 0 0;
        border-bottom: 2px solid #fff;
        margin: 0 0 0 0;
    }
}

.section-news-article
{
    width:23%;
    padding:0 0 0 0;
    border-bottom:2px solid #fff;
    margin:0 0 0 0;
}

.section-news-date-title
{
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 15px 0;
}

.section-news-content-core
{
    width:calc(100% - 50px);
    padding: 0 0 0 15px;
    display: flex;
    flex-direction: column;
}

.section-news-content-core .section-news-article-title
{
    
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #4a4a4a;
}

.section-news-date-format
{
    display: flex;
    flex-direction: column;
    width:50px;
}

.format-day
{

    text-align: center;
    padding: 8px 0;
    color: #9a9a9a;
    background-color: #f0f0f0;
    font-size: 15px;
}

.format-month
{
    text-align: center;
    padding: 0 0;
    color: #fff;
    background-color: #08bde4;
    font-size: 12px;
}

.section-news-article img 
{
    border-radius: 0 !important;
}

.section-news-article.border-grey
{
    border-bottom:2px solid #f3f3f2;

}

.section-news-article.min-height
{
    min-height:250px;
}

.section-news-article a
{
    text-align:left;
}

.section-news-article-content
{
    display: flex;
    margin-top: 10px;
}

input[type="text"].search_bar{
    margin: 0 0 25px auto;
}

.section-news-article-top
{
    font-size:11px;
    text-transform:uppercase;
    text-align:left;
    width: 40px;
    margin-right: 20px;
    border-radius: 7px;
    text-align: center;
}

.section-news-article-top span
{
    display: block;
}

.format-day
{
    background: rgb(247,247,247);
    background: linear-gradient(180deg, rgba(247,247,247,1) 0%, rgba(240,240,240,1) 100%);
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    padding: 7px 0;
    font-size: 16px;
}
.format-month
{
    background: #07bce3;
    color: white;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
.section-news-article-text{ flex: 1;}
.section-news-article-top a
{
    color:#1981b2;
    text-decoration:underline;
    text-align:left;
}

.section-news-article-top a:hover
{
    color:#000;
}

.section-news-article-title
{
    font-size:16px;
    color:#000;
    text-decoration:none;
    font-weight:bold;
}

.section-news-article-title:hover
{
    color:#1981b2;
}

.section-news-twitter-feed
{
    width:300px;
    min-height: 257px;
    overflow: hidden;
}

.section-news-twitter-feed .side_bar_menu
{
    margin-bottom:35px;
}

.section-news-excerpt
{
    padding:10px 0 0 0;
}

.section-news-twitter-feed .side_bar_menu li
{
    background-image:url(assets/images/bullet.jpg);
    background-position:left 7px;
    background-repeat:no-repeat;
    padding:0 0 0 15px;
    box-sizing:border-box;
    margin:0 0 10px 0;
}

.section-news-twitter-feed .side_bar_menu a
{
    color:#4c4c4c;
}

.section-news-twitter-feed .side_bar_menu a:hover
{
    color:#1981b2;
}

.section-news-twitter-feed .side_bar_menu a .hover_span
{
    display:none !important;
}

.section-news-twitter-feed iframe
{
    margin-bottom:25px !important;
    min-height: 303px !important;
    height: initial !important;
}

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

    .section-news
    {
        padding:40px 0;
    }

    .section-news-core
    {
        padding:0 20px;
        width:100%;
        flex-direction:row;
        flex-wrap:wrap;
        box-sizing:border-box;
    }

    .section-news-latest
    {
        width:100%;
        margin-bottom:50px;
        padding:0;
    }

    .section-news-article
    {
        width:calc(46% - 2%);
        box-sizing:border-box;
        text-align:left;
    }

    .section-news-twitter-feed
    {
        width:100%;
        display:flex;
        flex-direction:column;
    }

    .section-news-twitter-feed iframe
    {
        width:100% !important;
        margin-bottom:20px !important;
    }
}

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

    .section-news
    {
        padding:20px 0;
    }

    .section-news-core
    {
        padding:0 20px;
        width:100%;
        flex-direction:column;
        justify-content: space-between;
    }

    .section-news-article
    {
        width:100%;
    }
}

.content_bgr .hover_span{
    width: 0 !important;
}
.side_bar_menu > li a:hover {
    text-decoration: none;
}
a:hover .link_span {
    padding: 4px 10px 4px 22px;
    background-position: -1px 8px !important;
    color: #1981b2;
    text-decoration: none;
}

.content_bgr .section-news-twitter-feed .side_bar_menu li
{
    background: none;
    padding: 0;
    margin: 0;
}

.section-partners
{
    width:100%;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.section-partners-core
{
    width:1300px;
    margin:0 auto;
    display:flex;
    padding:0 20px;
    box-sizing:border-box;
    position: relative;
    z-index: 99;
}

.page-shorcodes .section-partners-core
{
    width: 100%;
}

.section-partners-core p
{
    font-size:18px;
    font-weight:bold;
    color:#000;
    text-transform:uppercase;
}

.section-partners-background
{
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 50;

}

.section-parners-logos
{
    width:100%;
}



.section-parners-type
{
    position:relative;
    width:100%;
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    box-sizing:border-box;
}

.section-more-post a {
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: #4a4a4a;
    text-decoration: none;
}
.section-news-category-list a{
    text-transform: initial;
}
.section-news-category-list a:hover{
    color: #4a4a4a !important;
}
.section-more-post .slick-dots{ display: none !important;}
.section-more-post a:hover {
    color: #1981b2;
    text-decoration: none;
}

.section-parners-type .owl-stage-outer
{
    width:100%;
    padding:0 30px !important;
    box-sizing:border-box;
}

.partner-element
{
    width:140px;
    height:150px;
    background-position:center center;
    background-repeat:no-repeat;
    display:block;
}

.partner-element span
{
    width:140px;
    height:150px;
    background-position:center center;
    background-repeat:no-repeat;
    display:block;
}

.partner-element.bigger
{
    width:200px;
    height:150px;
}

.partner-element.bigger span
{
    width:200px;
    height:150px;
    background-position:center center;
    background-repeat:no-repeat;
    display:block;
}

.partner-element span.normal,
.partner-element.bigger span.normal
{
    display:block;
}

.partner-element span.hover,
.partner-element.bigger span.hover
{
    display:none;
}

.partner-element:hover span.normal,
.partner-element.bigger:hover span.normal
{
    display:none;
}

.partner-element:hover span.hover,
.partner-element.bigger:hover span.hover
{
    display:block;
}

.owl-nav.disabled
{
    display:block !important;
}

.owl-nav .owl-prev
{
    position:absolute;
    left:0;
}

.owl-nav .owl-next
{
    position:absolute;
    right:0;
}

.owl-nav .owl-next,
.owl-nav .owl-prev
{
    top:50%;
    margin-top:-20px;
}

.owl-dots
{
    display:none !important;
}

.owl-nav .owl-prev span,
.owl-nav .owl-next span
{
    cursor:pointer;
    font-size:50px;
}



.section-parners-type p
{
    width:100%;
    display:block;
}

.section-parners-logos a img,
.section-parners-logos img
{
    margin:0 20px 35px 0;
}

@media screen and (max-width: 1300px) {
    .section-partners-core
    {
        width:100%;
        padding:60px;
    }
}

@media screen and (max-width: 800px) {
    .section-partners-core
    {
        flex-direction: column;
        padding:20px;
    }

}
.slick-list{ width: 100%;}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin: 0;
}

.blog-techno-form{

}
.gform_wrapper div.validation_error{
    border: none;
    color: #d12027;
    background-color: #f8e6e6;
}
.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning{
    border: none;
    color: #d12027;
    background-color: #f8e6e6;
}
.blog-techno-form .ginput_container_consent {
    display: flex;
    align-items: center;
}
.blog-techno-form .ginput_container input[type=checkbox]{
    margin-top: 0;
    margin-bottom: 0;
}
footer
{
    background-color:#000;
    padding:60px 0;
}

.footer-core
{
    width:1300px;
    margin:0 auto;
    display:flex;
}

.footer-navigation
{
    width:100%;		/** originaly at 66.66%**/
}

.footer-menu
{
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
}

.footer-menu li
{
    width:200px !important;
    list-style:none;
}

.footer-menu li a
{
    color:#66a2d1;
}

.footer-menu li a:hover
{
    color:#1981b2 !important;
}

.footer-menu li ul
{
    margin:0;
    padding:0;
}

.footer-menu li ul li
{
    width:100%;
}

.footer-menu li ul li a
{
    color:#fff;
    font-size:11px;
}

.footer-col-newsletter
{
    box-sizing:border-box;
    margin:0 0 15px 0; 			/** 0 0 15px 0; **/
    width:100%;					/** 33.33% **/
    padding:0 0 0 0;			/** left padding = 45px **/
}

.footer-col-newsletter p
{
    font-size:18px;
    text-transform:uppercase;
    color:#66a2d1;
    margin-bottom:20px;
}

.footer-social-icons a
{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display:inline-block;
    background-repeat:no-repeat;

    overflow:hidden;
    height:32px;
    width:32px;
    background-size: contain;
    margin-right:10px;
}

.post-infos {
    margin: 10px 0 25px;
}
.post-infos div{
    margin: 10px 0;
}
.article-social-icons a{
    width: 25px;
    height: 25px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
}
.article-social-icons .article-facebook{
    background-image:url(assets/images/sn_facebook.svg);
}

.article-social-icons .article-twitter{
    background-image:url(assets/images/sn_twitter.svg);
}

.article-social-icons .article-linkedin{
    background-image:url(assets/images/sn_linkedin.svg);
    background-size: 110%;
    background-position: center;
}

.footer-social-icons a.footer-facebook
{
    background-image:url(assets/images/bw-facebook.png);
}

.footer-social-icons a.footer-twitter
{
    background-image:url(assets/images/bw-twitter.png);
}

.footer-social-icons a.footer-youtube
{
    background-image:url(assets/images/bw-youtube.png);
}

.footer-social-icons a.footer-linkedin
{
    background-image:url(assets/images/bw-linkedin.png);
}

.footer-newslettre-form
{
    width:100%;
    display:flex;
    justify-content: flex-start;
    align-items:center;
}

.footer-newslettre-form div
{
    margin:0 30px 0 0;
}

.footer-newslettre-form label
{
    font-weight:normal;
    color:#fff;
    font-size:11px;
}

.footer-newslettre-form input[type="text"]
{
    width:100%;
    min-width:200px;

}

.footer-newslettre-form input[type="submit"]
{
    height:37px;
    margin-top: -20px;
}


.footer-copyright
{
    color:#fff;
    font-size:11px;
    background-color:#66a2d1;
    height:50px;
    padding:0 20px;
    box-sizing:border-box;
}

.footer-copyright-container {
    width: 1300px;
    margin: 0 auto;
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    align-items:center;
    height:50px;
}

.footer-copyright p
{
    margin:0;
    font-size: 12px !important;
}

.footer-copyright p span {
    display: none;
}

.footer-core {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col-menu, .footer-col-coordinates, .footer-col-newsletter {
    flex: 1;
}

.footer-col-menu, .footer-col-coordinates {
    margin-right: 15px;
}

.footer-col-menu:nth-of-type(2), .footer-col-newsletter, .footer-col-coordinates {
    margin-left: 8px;
}

.footer-col-menu h3, .footer-col-coordinates h3, .footer-col-newsletter h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #66a2d1;
    margin-bottom: 20px;
}

.footer-col-coordinates h4 {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
    color:#888;
}

.footer-col-coordinates a {
    color: #fff !important;
    text-decoration: underline !important;
}

.footer-col-menu .acc_item {
    padding-bottom: 0 !important;
    border-bottom: none;
}

.footer-col-menu .accordion {
    padding: 7px 10px 7px 0 !important;
    background-color: black;
}

.footer-col-menu .accordion .acc_control {
    background-color: #999;
}

.footer-col-menu .accordion .acc_heading {
    color: white;
}

.footer-col-menu .accordion_content {
    background-color: black;
    color: white;
}

.footer-col-menu .accordion_content a {
    text-decoration: underline;
    color: white !important;
}

.footer-col-coordinates h3, .footer-address-container {
    /*padding-left: 15px;*/
}

.footer-social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

@media screen and (max-width: 1300px) {
    .footer-core
    {
        width:calc(100% - 40px);
        padding: 0 20px;
    }

    .footer-newslettre-form
    {
        display:flex;
        flex-direction:column;
        align-items: flex-start;
    }

    .footer-copyright-container {
        width: 100%;
    }

    .footer-newslettre-form input[type="submit"] {
        margin-top: 0;
    }

    .footer-copyright p span {
        display: inline-block;
        padding-left: 7px;
    }

    .footer-copyright-container {
        justify-content: flex-start;
    }

    .footer-social-icons {
        margin-left: 10px;
    }
}

@media screen and (max-width: 800px) {
    footer
    {
        padding:20px;
        width: calc(100% - 40px);
    }

    .footer-newslettre-form
    {
        width:100%;
    }

    .footer-menu li ul
    {
        margin:0 0 25px 0;
    }

    .footer-menu li ul li ul
    {
        margin:0 0 7px 0;
    }

    .footer-copyright p
    {
        width:100%;
    }

    .footer-pipe
    {
        display:none;
    }

    .footer-core
    {
        flex-direction:column;

    }

    .footer-navigation
    {
        width:100%;
        border:none;
    }

    .footer-navigation
    {
        width:100%;
        border:none;
    }

    .footer-copyright-container {
        width: 100%;
    }

    .footer-copyright-container p {
        width: initial;
    }

    .footer-col-coordinates h3, .footer-address-container {
        padding-left: 0;
    }

    .footer-col-menu, .footer-col-coordinates, .footer-col-newsletter {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .footer-col-coordinates, .footer-col-newsletter {
        margin-top: 20px;
    }

    .footer-col-menu .acc_item {
        margin-bottom: 15px !important;
    }
    
}

@media screen and (max-width: 320px) {
    .footer-copyright p span {
        padding-left: 0;
    }
}

.menu-toggle
{
    cursor:pointer;
}

.menu-toggle span
{
  display: block;
  width: 20px;
  height: 2px;
  margin:4px 0 0 0;
  position: relative;

  background: #277dae;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.menu-toggle span:nth-child(1)
{
  transform-origin: 0% 0%;
}

.menu-toggle span:nth-child(3)
{
  transform-origin: 0% 100%;
}

.menu-opened .menu-toggle span:nth-child(1)
{
  opacity: 1 !important;
  transform: rotate(45deg) translate(-2px, -1px);
}

/*
 * But let's hide the middle one.
 */
.menu-opened .menu-toggle span:nth-child(2)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
.menu-opened .menu-toggle span:nth-child(3)
{
  transform: rotate(-45deg) translate(0, -1px);
}


.container-pagination
{
    width:1300px;
    margin:0 auto;
}
.section-news-latest .container-pagination
{
    width:auto;
}

@media screen and (max-width: 1300px) {
    .container-pagination
    {
        width:100%;
    }
}

.cat-button{ margin: auto;}
.legend
{
    margin:0 0 35px 0;
}

.legend a,
.legend span
{
    background-color:#1981b2;
    color:#fff;
    padding:3px;
    min-width:28px;
    display:inline-block;
    text-align:center;
    box-sizing:border-box;
    text-decoration:none;
}

.legend span
{
    opacity:0.2;
    background-color:#000;
}

.legend a.see-all
{
    padding:3px 10px;
}

.legend a.selected,
.legend a:hover
{
    background-color:#3b4748;
    text-decoration:none !important;
}


.member-listing
{
    display:flex;
    flex-wrap:wrap;
}

.member-container
{
    width:190px;
    padding:20px;
    background-color:#f3f3f2;
    margin:0 20px 20px 0;
    display:flex;
    flex-direction: column;
    text-decoration:none !important;
}

.member-container:hover
{
    cursor:pointer;
    background-color:#3a7cad;
}

.member-container:hover span
{
    color:#fff;
}

.member-container-image
{
    width:170px;
    height:130px;
    margin:0 0 7px 0;
    border:10px solid #fff;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center center;
    background-color:#fff;
}

.member-sector
{
    margin:0 0 6px 0;
    padding:0;
    line-height:14px;
    font-size:14px;
    text-decoration:none;
}

.member-title
{
    font-weight:bold;
    color:#000;
    text-decoration:none;
}

.members-overlay
{
    background-color:rgba(0,0,0,0.7);
    width:100%;
    height:100%;
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:99;
    justify-content: center;
    align-items: center;
    display:none;
}

.members-overlay.opened
{
    display:flex;
}

.members-popup
{
    position:relative;
    border-top:13px solid #1981b2;
    background-color:#fff;
    width:600px;
    height:500px;
    padding:30px;
}

@media screen and (max-width: 660px) {
    .members-popup
    {
        width:100%;
        margin:0 20px;
    }
}
.members-popup .members-popup-title
{
    font-size:28px;
    color:#000;
    text-transform:uppercase;
}

.members-popup .members-infos
{
    font-size:14px;
    color:#000;
    padding:0 0 15px 0;
    margin:0 0 15px 0;
    border-bottom:1px solid #1981b2;
}

.members-popup .members-infos p
{
    margin:0 !important;
    padding:0 !important;
}

.members-popup .close-popup
{
    font-weight:bold;
    color:#000;
    position:absolute;
    top:30px;
    right:30px;
    font-size:24px;
    cursor:pointer;
}

.js-collapse-member-content
{
    display: none;
}

.js-collapse-member-content
{
    display: none;
}

.members-popup .close-popup:hover
{
    color:#1981b2;
}

.members-popup .members-content
{
    width:100%;
      box-sizing:border-box;
}

.members-content-scroll
{
    width: 100%;
    height:450px;
    overflow-y:scroll;
    padding:7px;
}

.members-content-scroll
{
    width: 100%;
    height:450px;
    overflow-y:scroll;
    padding:7px;
}

.members-content-scroll
{
    width: 100%;
    height:450px;
    overflow-y:scroll;
    padding:7px;
}

.footer-address
{
    margin-top:10px;				/** default value = 25px **/
}

.footer-address .title
{
    font-size:18px;
    text-transform: uppercase !important;
    color:#1981b2 !important;
    font-weight:bold !important;
}

.footer-address-container p
{
    font-size:14px;
    line-height:25px;				/** default value = 18px **/
    color:#fff !important;
    text-transform:none !important;
}

.post-content-event
{
    margin:0 0 35px 0;
}

a.main-logo{
    z-index: 2;
}

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

    .box-bottom .button
    {
        position: absolute;
        bottom: 0;
        width: auto;
        left: 0;
        margin: 0 0 20px 30px;
    }

    .box-bottom .text_box
    {
        position:relative;
        padding-bottom: 70px;
    }

}

div.section-news-core div.section-title-blue{
    width: 100%;
    margin-bottom: 25px;
}

div.section-news-core div.section-title-blue h3{
    color: #1981b2;
    font-size: 28px;
}

/* page-shorcode */
.page-shorcodes .rev_slider_wrapper.fullwidthbanner-container {
    margin-bottom:50px!important;
}

.listing-pagination
{
    display:flex;
    justify-content: center;
    align-items:center;
    padding: 10px 0;
}

.listing-pagination-numbers
{
    padding:0 20px;
}

.link-pagination-arrows
{
    width:130px;
    display:flex;
}

.container.animationStart, .full_container_slider.animationStart
{
    opacity:1 !important;
}

.section-home-video-youtube
{
    width: 33.33%;
    position: relative;
}

@media screen and (max-width: 630px) {
    .section-home-video-youtube
    {
        width: 100%;
        position: relative;
    }
}

.section-news-author-name
{
    color: #444;
    font-style: italic;
    margin-bottom: 0;
}

.section-home-other-sections
{
    background-color: #efefef;   
    padding: 50px 0;
}

.section-home-other-sections-core
{
    width:1300px;
    margin:0 auto;

    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

    .section-home-other-sections
    {
        padding:0 20px;
    }

    .section-home-other-sections-core
    {
        width:100%;
    } 

    .section-home-other-single
    {
        margin-bottom: 15px;
    }
}

.section-home-other-single
{
    width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    align-items: center;
    padding-bottom: 25px;
}

@media screen and (max-width: 1300px) {
    .section-home-other-single
    {
         width: calc(50% - 15px);
    } 
}

@media screen and (max-width: 630px) {
    .section-home-other-single
    {
         width:100%;
    } 
}

.section-home-other-image
{
    width: 100%;
    height: 150px;
    background-position: center center;

}

.section-tweet-ads
{
    width:1300px;
    margin:0 auto;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width: 1300px) {
    .section-tweet-ads
    {
         width:100%;
         padding: 0 15px;
    } 
}

.slick-slide
{
    margin: 0 15px 0 0 !important;
}

.slick-arrow
{
    border:1px solid #a3a3a3;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    text-align: center;
    padding: 0;
    margin: 0;
    color: #a3a3a3;
    position: absolute;
    top: 0;
    right: 0;
}

.slick-prev
{
    top: -25px;
    right: 25px;
}

.slick-next
{
    top: -25px;
    right: 0;
}

.slick-arrow:hover
{
    color: #fff;
    background-color: #07bce3;
}

.slick-dots
{
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 15px 10px;
}

.slick-dots li button
{
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 0;
    text-align: center;
    padding: 0;
    margin: 0 15px 0 0;
    color: #308bbc;
}

.slick-dots li.slick-active button,
.slick-dots li:hover button
{
    color: #a3a3a3;
}

.home .slick-dots{ display: none !important;}

.home-banner-container
{
    width: 100%;
    max-width: 970px;
}

.section-ads img{
    margin-bottom: 10px;
}

@media screen and (max-width: 1300px) {
    .home-banner-container
    {
        max-width: 100%;    
    }
}

.home-banner-title
{
    font-size: 11px;
    float: left;
    text-align: left;
    display: block;
    width: 100%;
    margin-top: 25px;
}

.btn-techno
{
    text-decoration: none !important;
    font-weight: bold;
    margin-top: 33px;
}

.btn-techno-padding
{
    width:100%;
    padding:7px 10px;
    box-sizing:border-box;
    margin-bottom:15px;
}

.p3-sidebar-tags
{
    margin: 35px 0;
}

.p3-sidebar-tags a,
.p3-sidebar-tags a:hover
{
    text-decoration: none !important;
} 

.p3-sidebar-tags .left_title 
{
}

.p3-sidebar-tags .tagcloud
{
    display: block;
    float: left;
}

.p3-sidebar-tags .tagcloud span
{
    float: left;
    font-size: 12px;
    padding: 2px 12px;
    color: #555;
    text-shadow: 0 1px 0 rgb(255 255 255 / 70%);
    background: #fafafa url(../images/grad_menu.png) top left repeat-x;
    margin: 0 8px 8px 0;
    border-bottom: 1px solid #e6e6e6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    border-radius: 4px;
}


.p3-sidebar-tags .current
{
    color: #fff;
    background-color: #444;
    font-weight:normal;
    text-shadow: none;
} 


body.page-template-template-formulaire .ginput_container_list table.gfield_list tbody tr td.gfield_list_icons
{
    vertical-align: baseline !important;
}

.surligne-jaune
{
    background-color:#f9f10b;
}