body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
form,
input {
    padding: 0;
    margin: 0;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'azosans', Arial, sans-serif;
    font-weight: bold;
    color: #000000;
    overflow: visible;
}
.text-container h1,
.text-container h2,
.text-container h3,
.text-container h4,
.text-container h5,
.text-container h6{
    font-family: 'roboto', Arial, sans-serif;
    line-height: 1.25;
}

body {
    font-family: 'roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.3;
}
a{
    color: #eb452f;
    text-decoration: none;
}
p{
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.overflow {
    overflow: hidden;
}

.input-text,
.textarea,
.select {
    border: 1px solid #e0e0e0;
    padding: 5px;
    margin: 0;
    color: #a8a8a8;
    background: url("../css/fonts/");
}

.input-text.error,
.textarea.error,
.select.error {
    border-color: #ee6557;
}
body > header{
    position: -webkit-sticky;
    position: sticky;
    z-index: 500;
    box-shadow: 0 3px 0 rgba(0,0,0,.05);
}
#top-wrapper {
    width: 100%;
    /*height: 140px;*/
    height: auto;
    /*position: sticky;*/
    z-index: 500;
}

#header-wrapper {
    background: #ffffff;
}

#header {
    /*height: 69px;*/
    /*max-width: 980px;*/
    max-width: 1200px;
    width: 100%;
    padding: 15px 0 5px 0;
    margin: 0 auto;
}

#header-inner {
    /*overflow: hidden;*/
    /*padding: 0 2.04081632653061%;*/ /* 20px / 980px */
    padding: 0 15px; /* 10px / 960px */
    display: flex;
    align-items: center;
}
@media (max-width: 991px) and (min-width: 768px) {
    #header-inner {
        flex-wrap: wrap;
    }
}
.pdw-logo {
    display: block;
}

.pdw-logo img {
    border: none;
    max-width: 100%;
}

#header .pdw-logo {
    min-width: 360px;
    max-width: 100%;
    margin-right: auto;
    line-height: 1;
}

#header-right-top,
#header-right-bottom {
    float: right;
    /*width: 71.80851063829787%; *//* 675px / 940px */
}
#header-right-bottom {
    display: flex;
    align-items: center;
}
#header-right-top{
    display: flex;
    align-items: center;
}

#header-right-top .float {
    float: right;
    margin-left: 2.96296296296296%; /* 20px / 675px */
    display: flex;
}
#search-form {
    position: relative;
    display: inline-block;
    width: auto;
    border: 2px solid black;
    border-radius: 50px;
    overflow: hidden;
    background: url("../medias/images/search.png") no-repeat calc(100% - 3px) center #ffffff;
    background-size: 20px 20px;
    margin-right: 15px;
}
#search-form .input-text {
    border: none;
    background: transparent;
    padding: 5px 5px 5px 5px;
    width: 26px;
    box-sizing: border-box;
    opacity: 0;
    transition: all .5s;
}
#search-form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    border: none;
    background-color: transparent;
    bottom: 0;
    cursor: pointer;
    display: none;
}
#search-form:focus-within{

}
#search-form:focus-within .input-text{
    width: 150px;
    opacity: 1;
}
@media (max-width:767px) {
    #search-form .input-text {
        width: 100%;
    }
    #search-form:focus-within .input-text{
        width: 100%;
    }
}
#search-form:focus-within button{
    display: block;
}
#language-switcher {
    list-style-type: none;
}

#language-switcher li {
    float: left;
    margin: 0 2px;
}

#language-switcher a {
    display: block;
    width: 25px;
    text-align: center;
    height: 21px;
    padding-top: 6px;
    text-decoration: none;
    text-transform: uppercase;
    color: #a8a8a8;
    background-image: url("../medias/images/language-background.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

#language-switcher a:hover,
#language-switcher .active {
    background-position: 0 -27px;
    color: #fff;
}

.social-links {
    list-style-type: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.social-links:hover .social-link {
    opacity: 0.5;
}

.social-links li {
    float: left;
    margin: 0 4px;
}

.social-link {
    width: 24px;
    height: 24px;
    display: block;
    background-image: url("../medias/images/social-icons.png");
    background-repeat: no-repeat;
    /*-webkit-transition: background-position 75ms linear;
    -moz-transition: background-position 75ms linear;
    -ms-transition: background-position 75ms linear;
    -o-transition: background-position 75ms linear;
    transition: background-position 75ms linear;*/
    -webkit-transition: opacity 100ms linear;
    -moz-transition: opacity 100ms linear;
    -ms-transition: opacity 100ms linear;
    -o-transition: opacity 100ms linear;
    transition: opacity 100ms linear;
}

.social-links .social-link:hover {
    opacity: 1;
}

.social-link.google {
    background-position: 0 0;
}
.social-link.google:hover {
    background-position: 0 -24px;
}

.social-link.facebook {
    background-position: -24px 0;
}
.social-link.facebook:hover {
    background-position: -24px -24px;
}

.social-link.twitter {
    background-position: -48px 0;
}
.social-link.twitter:hover {
    background-position: -48px -24px;
}

.social-link.linkedin {
    background-position: -72px 0;
}
.social-link.linkedin:hover {
    background-position: -72px -24px;
}

.social-link-2019 {
    width: 24px;
    height: 24px;
    display: block;
    /*-webkit-filter: grayscale(100%);
    filter: grayscale(100%);*/
    background-size: contain;
}
.social-link-2019:hover {
    /* -webkit-filter: none;
    filter: none;*/
}
.social-link-2019.facebook {
    background-image: url("../medias/images/logo-facebook-24.png");
}
.social-link-2019.linkedin {
    background-image: url("../medias/images/logo-linkedin-24.png");
}
.social-link-2019.instagram {
    background-image: url("../medias/images/logo-instagram-24.png");
}
.social-link-2019.youtube {
    background-image: url("../medias/images/logo-youtube-24.png");
}

.nav-menu {
    list-style-type: none;
    overflow: visible;
}

.nav-menu li {
    position: relative;
    float: left;
    line-height: 1em;
}
.nav-menu > li > span{
    padding: 5px;
    font-size: .875rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'azosans',Arial, sans-serif;
    color: black;
}
.nav-menu > li > span:after{
    content: '';
    width: 15px;
    height: 10px;
    display: inline-block;
    background: url('/medias/images/chevron-down.png') no-repeat center center transparent;
    background-size: contain;
}
.nav-menu li .sub-menu{
    padding: 15px;
    list-style: none;
    top: 100%;
}
.nav-menu li:hover .sub-menu{
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

#header .nav-menu li {
    /*padding: 0 9px;*/
    display: block;
}

#header .nav-menu li:first-child {
    padding-left: 0 !important;
    white-space: nowrap;
}

#header .nav-menu {
    /*padding-top: 1.48148148148148%;*/ /* 10px / 675px */
    /*padding-right: 1.18518518518519%;*/ /* 8px / 675px */
    /*float: right;*/
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.nav-menu a {
    text-decoration: none;
    text-transform: uppercase;
    color: #a8a8a8;
    line-height: 1em;
}

.nav-menu a:hover,
.nav-menu .active,
#footer .menu .active {
    color: #fff;
}

.nav-menu .sub-menu li{
    overflow: hidden;
}
.nav-menu .sub-menu a{
    display: block;
    text-transform: none;
    color: #7d7d7d;
    padding: 7.5px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    border-bottom: 1px dashed #ededed;
}
.nav-menu .sub-menu a:hover{
    color: #eb452f;
}

.quote-link {
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    display: block;
    color: #fff;
}

#header .quote-link {
    /*width: 123px;*/
    /*height: 27px;*/
    /*padding-top: 6px;*/
    /*float: right;*/
    /*margin-top: 0.74074074074074%; !* 5px / 675px *!*/
    /*font-size: 0.875em; !* 14px / 16px *!*/
    /*line-height: 1em; !* 14px *!*/
    /*background-repeat: no-repeat;
    background-image: url("../medias/images/quote-tooltip.png?v2");
    -webkit-transition: background-image 75ms linear;
    -moz-transition: background-image 75ms linear;
    -ms-transition: background-image 75ms linear;
    -o-transition: background-image 75ms linear;
    transition: background-image 75ms linear;*/
    order: 4;
    padding: 8px 10px;
    background: #eb452f;
    font-size: .875rem;
    font-weight: bold;
}

#header .quote-link:hover {
    /*background-image: url("../medias/images/quote-tooltip-hover.png?v2");*/
}
#header .contact-link {
    font-family: "azosans", Arial, sans-serif;
    order: 3;
    padding: 8px 0;
    background: transparent;
    color: #000000;
    font-size: .875rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    margin-right: 15px;
}
#header .contact-link:before{
    content:'\f003';
    font-family: "fontawesome";
    margin-right: 5px;
}

#header-under-wrapper {
    /*background: url("../medias/images/header-shadow.png") no-repeat bottom
        center;*/
    /*padding-bottom: 15px;*/
}

#header-under {
    /*height: 39px;*/
    width: 100%;
    background: #fff;
}

#header-under .services-menu,
#header-under .nav-menu {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.services-menu,
.nav-menu {
    list-style-type: none;
}

.services-menu li,
#header-under .nav-menu li {
    float: left;
    line-height: 19px;
    height: 100%;
    position: relative;
    flex-grow: 1;
    text-align: center;
}

.services-menu li > a,
#header-under .nav-menu li > a,
.services-menu-phone span {
    text-decoration: none;
    display: block;
    color: #3a3a3a;
    text-transform: uppercase;
    padding: 10px 11px;
    -webkit-transition: color 100ms, background-color 100ms linear;
    -moz-transition: color 100ms, background-color 100ms linear;
    -ms-transition: color 100ms, background-color 100ms linear;
    -o-transition: color 100ms, background-color 100ms linear;
    transition: color 100ms, background-color 100ms linear;
}
.services-menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services-menu > li > a{
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 3px;
    white-space: nowrap;
}
.sub-menu {
    position: absolute;
    left: 0;
    top: 39px;
    background: #fff;
    border: 1px solid;
    border-top-width: 4px;
    background: #fff;
    -webkit-transition: opacity 100ms linear;
    -moz-transition: opacity 100ms linear;
    -ms-transition: opacity 100ms linear;
    -o-transition: opacity 100ms linear;
    transition: opacity 100ms linear;
    opacity: 0;
    visibility: hidden;
    min-width: 190px;
    -webkit-box-shadow: 0px 3px 3px 1px rgba(00, 00, 00, 0.15);
    box-shadow: 0px 3px 3px 1px rgba(00, 00, 00, 0.15);
    text-align: left;
    z-index: 10;
}

.services-menu .sub-menu a {
    text-transform: none;
    color: #7d7d7d;
    padding: 10px;
    font-size: 1rem;
    line-height: 1.2;
    text-align: left;
    border-bottom: 1px dashed #ededed;
}
.services-menu-phone .sub-menu{
    display: none;
}

.sub-menu .menu {
    padding: 10px 10px 25px;
}

.sub-menu ul {
    list-style-type: none;
}

.sub-menu li {
    float: none;
    white-space: nowrap;
}
@media (max-width:991px) {
    .sub-menu li {
        white-space: normal;
    }
}

.sub-menu.sub-menu-right {
    left: auto;
    right: 0;
}

#header-under .services-menu :hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu .picto-container {
    width: 100%;
    height: 30px;
}

.sub-menu .picto {
    background-image: url("../medias/images/menu-sprite-small.png?v2");
    background-repeat: no-repeat;
    background-position: top center;
    width: 41px;
    height: 40px;
    margin: 0 auto;
    position: relative;
    top: -9px;
}

.service-consulting .picto {
    background-position: 0 0;
}
.service-design .picto {
    background-position: 0 -40px;
}
.service-website-creation .picto {
    background-position: 0 -80px;
}
.service-e-commerce .picto {
    background-position: 0 -120px;
}
.service-seo .picto {
    background-position: 0 -160px;
}
.service-e-marketing .picto {
    background-position: 0 -200px;
}
.service-mobile .picto {
    background-position: 0 -240px;
}
.service-video .picto {
    background-position: 0 -280px;
}
.service-gaming .picto {
    background-position: 0 -320px;
}
.service-support .picto {
    background-position: 0 -360px;
}
.service-formations .picto {
    background-position: 0 -400px;
}
[class~="service-"] .picto {
    background-position: 0 -440px;
}

.services-menu-phone .services-menu li {
    border-bottom: 1px solid;
}
.services-menu [class~="service-"]:hover .sub-menu,
.services-menu-phone li[class~="service-"] {
    border-color: #00a8e6;
}
.services-menu .service-consulting:hover .sub-menu,
.services-menu-phone li.service-consulting {
    border-color: #4aac51;
}
.services-menu .service-design:hover .sub-menu,
.services-menu-phone li.service-design {
    border-color: #8eb645;
}
.services-menu .service-website-creation:hover .sub-menu,
.services-menu-phone li.service-website-creation {
    border-color: #ffbc00;
}
.services-menu .service-e-commerce:hover .sub-menu,
.services-menu-phone li.service-e-commerce {
    border-color: #f98200;
}
.services-menu .service-seo:hover .sub-menu,
.services-menu-phone li.service-seo {
    border-color: #ee6557;
}
.services-menu .service-e-marketing:hover .sub-menu,
.services-menu-phone li.service-e-marketing {
    border-color: #f752ac;
}
.services-menu .service-mobile:hover .sub-menu,
.services-menu-phone li.service-mobile {
    border-color: #9e5dc9;
}
.services-menu .service-video:hover .sub-menu,
.services-menu-phone li.service-video {
    border-color: #5672d8;
}
.services-menu .service-gaming:hover .sub-menu,
.services-menu-phone li.service-gaming {
    border-color: #4abced;
}
.services-menu .service-support:hover .sub-menu,
.services-menu-phone li.service-support {
    border-color: #00bfba;
}
.services-menu .service-formations:hover .sub-menu,
.services-menu-phone li.service-formations {
    border-color: #1c9cc0;
}

.services-menu [class~="service-"]:hover > a,
.services-menu [class~="service-"].active > a,
[class~="service-"] .picto-container,
.services-menu-phone [class~="service-"],
.services-menu-phone [class~="service-"]:hover span,
.services-menu-phone [class~="service-"].active span {
    background-color: #36bdee;
}
.services-menu .service-consulting:hover > a,
.services-menu .service-consulting.active > a,
.service-consulting .picto-container,
.services-menu-phone .service-consulting,
.services-menu-phone .service-consulting:hover span,
.services-menu-phone .service-consulting.active span {
    background-color: #4aac51;
}
.services-menu .service-design:hover > a,
.services-menu .service-design.active > a,
.service-design .picto-container,
.services-menu-phone .service-design,
.services-menu-phone .service-design:hover span,
.services-menu-phone .service-design.active span {
    background-color: #8eb645;
}
.services-menu .service-website-creation:hover > a,
.services-menu .service-website-creation.active > a,
.service-website-creation .picto-container,
.services-menu-phone .service-website-creation,
.services-menu-phone .service-website-creation:hover span,
.services-menu-phone .service-website-creation.active span {
    background-color: #ffbc00;
}
.services-menu .service-e-commerce:hover > a,
.services-menu .service-e-commerce.active > a,
.service-e-commerce .picto-container,
.services-menu-phone .service-e-commerce,
.services-menu-phone .service-e-commerce:hover span,
.services-menu-phone .service-e-commerce.active span {
    background-color: #f98200;
}
.services-menu .service-seo:hover > a,
.services-menu .service-seo.active > a,
.service-seo .picto-container,
.services-menu-phone .service-seo,
.services-menu-phone .service-seo:hover span,
.services-menu-phone .service-seo.active span {
    background-color: #ee6557;
}
.services-menu .service-e-marketing:hover > a,
.services-menu .service-e-marketing.active > a,
.service-e-marketing .picto-container,
.services-menu-phone .service-e-marketing,
.services-menu-phone .service-e-marketing:hover span,
.services-menu-phone .service-e-marketing.active span {
    background-color: #f752ac;
}
.services-menu .service-mobile:hover > a,
.services-menu .service-mobile.active > a,
.service-mobile .picto-container,
.services-menu-phone .service-mobile,
.services-menu-phone .service-mobile:hover span,
.services-menu-phone .service-mobile.active span {
    background-color: #9e5dc9;
}
.services-menu .service-video:hover > a,
.services-menu .service-video.active > a,
.service-video .picto-container,
.services-menu-phone .service-video,
.services-menu-phone .service-video:hover span,
.services-menu-phone .service-video.active span {
    background-color: #5672d8;
}
.services-menu .service-gaming > a,
.services-menu .service-gaming.active > a,
.services-menu-phone .service-gaming,
.services-menu-phone .service-gaming span,
.services-menu-phone .service-gaming.active span {
    background-color: #4abced !important;
    color: #fff;
}

.service-gaming .picto-container {
    background-color: #4abced;
}
.services-menu .service-support:hover > a,
.services-menu .service-support.active > a,
.service-support .picto-container,
.services-menu-phone .service-support,
.services-menu-phone .service-support:hover span,
.services-menu-phone .service-support.active span {
    background-color: #00bfba;
}
.services-menu .service-formations:hover > a,
.services-menu .service-formations.active > a,
.service-formations .picto-container,
.services-menu-phone .service-formations,
.services-menu-phone .service-formations:hover span,
.services-menu-phone .service-formations.active span {
    background-color: #1c9cc0;
}

[class~="service-"] .sub-menu :hover,
[class~="service-"] .sub-menu .active {
    color: #36bdee;
}
.service-consulting .sub-menu :hover,
.service-consulting .sub-menu .active {
    color: #4aac51;
}
.service-design .sub-menu :hover,
.service-design .sub-menu .active {
    color: #8eb645;
}
.service-website-creation .sub-menu :hover,
.service-website-creation .sub-menu .active {
    color: #ffbc00;
}
.service-e-commerce .sub-menu :hover,
.service-e-commerce .sub-menu .active {
    color: #f98200;
}
.service-seo .sub-menu :hover,
.service-seo .sub-menu .active {
    color: #ee6557;
}
.service-e-marketing .sub-menu :hover,
.service-e-marketing .sub-menu .active {
    color: #f752ac;
}
.service-mobile .sub-menu :hover,
.service-mobile .sub-menu .active {
    color: #9e5dc9;
}
.service-video .sub-menu :hover,
.service-video .sub-menu .active {
    color: #5672d8;
}
.service-gaming .sub-menu :hover,
.service-gaming .sub-menu .active {
    color: #4abced;
}
.service-support .sub-menu :hover,
.service-support .sub-menu .active {
    color: #00bfba;
}
.service-formations .sub-menu :hover,
.service-formations .sub-menu .active {
    color: #1c9cc0;
}

#formation-products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#formation-products a {
    display: block;
    width: 25%;
}

@media screen and (max-width: 767px) {
    #formation-products a {
        width: 50%;
    }
}
#formation-products img {
    display: block;
    width: 100%;
}
#formation-products img:hover {
    opacity: 0.75;
}

.services-menu .active > a,
.services-menu :hover > a,
.services-menu-phone :hover > span,
.services-menu-phone .active span {
    color: #fff;
}

#content-wrapper {
    background-color: #fff;
    /*padding: 160px 0 15px 0;*/
}

.references-list #content-wrapper {
    /*padding-top: 169px;*/
}

.home #content-wrapper,
.service-page #content-wrapper,
.reference #content-wrapper {
    /*padding-top: 120px;*/
}

.clearfix {
    width: 100%;
    clear: both;
    overflow: hidden;
    height: 1px;
    line-height: 1px;
}

.content-separator {
    color: #dcdcdc;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    background: url("../medias/images/grey-border.png") repeat-x 0 50%;
}

.content-separator span {
    background: #fff;
    display: inline-block;
    padding: 18px 10px;
}
.page-header{
    background: url("../medias/images/bg-page-header.png") 0 0 repeat scroll #4abced;
    text-align: center;
    padding: 30px 15px;
    background-size: 1920px 320px;
    -webkit-animation-name: pdw;
    animation-name: pdw;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-duration: 32s;
    animation-duration: 32s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes pdw{
    from{background-position:0 0}
    to{background-position:1920px -3840px}
}
body .page-header h1{
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: .125em;
    color: #ffffff;
    padding-bottom: 0;
}
.page-header #breadcrumbs,
.page-header #breadcrumbs a,
.page-header #breadcrumbs a:hover{
    color: rgba(255,255,255,.75);
}
.page-header #breadcrumbs a:hover{
    color: rgba(255,255,255,1);
}

.content {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.content-inner {
    padding: 0 1.04166666666667%; /* 10px / 960px */
    padding-top: 90px;
    padding-bottom: 90px;
}
#content-wrapper > .content:last-child .content-inner{
    padding-top: 45px;
    padding-bottom: 45px;
}
.content-title{
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.25em;
    margin-bottom: 30px;
}
.content-title.small{
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: .1em;
    display: block;
}

.home h2 span {
    float: left;
    width: 50%;
}

.box-left {
    float: left;
}

.box-right {
    float: right;
}

.box img {
    max-width: 100%;
}

.button {
    background: url("../medias/images/goto-arrow.png") no-repeat 96% 50% #e7e7e7;
    color: #3a3a3a;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    margin: 0;
    padding: 6px 0;
    -webkit-transition: background-color 75ms linear;
    -moz-transition: background-color 75ms linear;
    -ms-transition: background-color 75ms linear;
    -o-transition: background-color 75ms linear;
    transition: background-color 75ms linear;
}

.button:hover {
    background-color: #f0f0f0;
}

.button.branding-button {
    background: #eb452f;
    display: inline-block;
    color: #fff;
    margin-top: 3.26086956521739%; /* 15px / 460px */
    padding: 1.30434782608696% 3.04347826086957%; /* 6px / 460px  | 14px / 460px */
}

.button.branding-button:hover {
    background: #f77567;
}

.button.button-more {
    display: inline-block;
    font-size: 0.75em; /* 12px / 16px */
    padding: 5px 0;
}

.button.last {
    margin-right: 0;
}

.text-container p {
    margin-bottom: 1.02040816326531%; /* 10px / 980px */
}

.text-container li {
    font-size: 1rem;
    margin-bottom: 5px;
    margin-left: 15px;
}

.text-container a {
    color: #eb452f;
}
.text-container a:hover {
    color: #f77567;
}

.text-container img {
    max-width: 100%;
    display: block;
}

.more-link {
    background: #4abced;
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
    text-transform: uppercase;
    padding: 15px 20px;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    font-weight: bold;
    transition: all .3s;
    box-shadow: 3px 3px 0 rgba(0,0,0,.2);
}
.more-link:after {
    content: '\f105';
    display: inline-block;
    margin-left: .5em;
    font-family: "fontawesome";
}
.more-link:hover {
    opacity: 1;
    box-shadow: 3px 3px 5px rgba(0,0,0,.2);
    transform: scale(1.05);
}
.more-link.invert {
    background: #ffffff;
    color: #4abced;
}

h2 .more-link {
    float: right;
    text-align: right;
    width: 28.5%;
    padding-right: 1.5%;
    position: relative;
    z-index: 0;
}

.home .content h2 {
    font-size: 2.4375em; /* 39px / 16px */
    margin-bottom: 1.53061224489796%; /* 15px / 980px */
}

.home .content h2 .more-link {
    font-size: 0.3076923076923077em; /* 12px / 39px */
}

#footer-wrapper {

}

#footer {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

#footer-inner {
    padding: 2.60416666666667% 1.04166666666667% 1.5625%; /* 25px / 960px */ /*10px / 960px */ /* 15px / 960px */
    overflow: hidden;
}

#footer-left {
    float: none;
    width: 100%; /* 700px / 940px */
    text-align: center;
    padding: 30px 15px;
}

#footer-right {
    float: none;
    width: 100%; /* 230px / 940px */
    text-align: center;
}

#footer-right .pdw-logo {
    margin: 60px  auto 30px;
    width: 100%; /* 228px / 230px */
    max-width: 300px;
}

#footer-right .social-links {
    float: none;
    width: 100%;
    justify-content: center;
}

#footer .menu a {
    color: #a8a8a8;
    line-height: normal;
}

#footer .menu a:hover {
    color: #fff;
}

#footer .nav-menu {
    margin-bottom: 2.14285714285714%; /* 15px / 700px */
}

#footer .nav-menu li {
    line-height: 1.25em; /* 20px / 16px */
    margin-right: 2.85714285714286%; /* 20px / 700px */
}

#footer .services-menu {
    overflow: hidden;
    margin-bottom: 2.14285714285714%; /* 15px / 700px */
}

#footer .services-menu li {
    line-height: 0.875em; /* 14px / 16px */
    margin-right: 1.42857142857143%; /* 10px / 700px */
    margin-bottom: 1.42857142857143%; /* 10px / 700px */
}

#footer .services-menu a {
    padding: 0;
    font-size: 0.875em; /* 14px / 16px */
    line-height: 1em;
}

#copyright {
    color: #a8a8a8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#copyright a {
    color: #eb452f;
}
#copyright a:hover {
    color: #f77567;
}

#signature {
    overflow: hidden;
    width: 100%;
    text-align: right;
    padding-top: 5.31914893617021%; /* 50px / 940px */
    display: none;
}

#signature a {
    color: #a8a8a8;
    text-decoration: none;
}

#signature a:hover {
    color: #fff;
}

#signature img {
    border: none;
    vertical-align: middle;
}

/* HOME WEB AGENCY */
#first-web-agency .box-right {
    width: 50.63829787234043%; /* 476px / 940px */
    margin-right: -4.78723404255319%; /* 45px / 940px */
}

#first-web-agency .button {
    float: left;
    width: 44.82608695652174%; /* 220px / 460px --> 47 - 3 (padding-left) */
    margin-right: 2.17391304347826%; /* 10px / 460px */
    padding-left: 3%;
}

#first-web-agency .button.last {
    margin-right: 0;
}

#first-web-agency .text-container p {
    margin-bottom: 1.73913043478261%; /* 8px / 460px */
}

/* CLIENT TYPES LIST */
.home-client-type {
    overflow: hidden;
    padding-top: 2.17391304347826%; /* 10px / 460px */
}

.home-client-type .float {
    float: left;
    margin-left: 2.17391304347826%; /* 10px / 460px */
}

.home-client-type .float:first-child {
    margin-left: 0;
    padding-top: 2.17391304347826%; /* 10px / 460px */
}

.home-client-type h3 {
    color: #5d5d61;
}

.client-type-list {
    list-style-type: none;
    overflow: hidden;
    padding-left: 0 !important;
}

.client-type-list li {
    float: left;
    width: 24.54545454545455%; /* 54px / 220px */
    max-width: 54px;
    height: 100%;
}

.client-type-list a {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #5b5b5b;
}

.client-type-list .sprite {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 9.25925925925926%; /* 5px / 54px */
    max-height: 51px;
}

.client-type-list img {
    display: block;
    border: none;
    margin: 0 !important;
}

.client-type-list .sprite img {
    max-width: 100%;
    max-height: 51px;
}

.client-type-list .sprite img:first-child {
    position: absolute;
    max-width: 400%;
    max-height: none;
    top: 0;
    left: 0;
    display: block;
    border: none;
    transition: top 200ms;
    -moz-transition: top 200ms;
    -webkit-transition: top 200ms;
    -o-transition: top 200ms;
}

.client-type-list .client-tpe img:first-child {
}
.client-type-list .client-tpe:hover img:first-child {
    top: -100%;
}

.client-type-list .client-pme img:first-child {
    left: -100%;
}
.client-type-list .client-pme:hover img:first-child {
    top: -100%;
    left: -100%;
}

.client-type-list .client-account img:first-child {
    left: -200%;
}
.client-type-list .client-account:hover img:first-child {
    top: -100%;
    left: -200%;
}

.client-type-list .client-public img:first-child {
    left: -300%;
}
.client-type-list .client-public:hover img:first-child {
    top: -100%;
    left: -300%;
}

/* HOME NEWS */
#home-news {
    overflow: hidden;
    margin-bottom: 30px;
    text-align: center;
}

.home-news-item {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    text-align: left;
}

#home-news div .home-news-item:first-child {
    margin-left: 0;
}

.home-news-item .button-more {
    padding-left: 4%; /* 12px / 300px */
    padding-right: 10%; /* 30px / 300px */
    margin-top: 3.33333333333333%; /* 10px / 300px */
}

.home-news-item .news-title,
.press-list a {
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.home-news-item .news-title a,
.press-list a {
    text-decoration: none;
    color: #3a3a3a;
    -webkit-transition: color 75ms linear;
    -moz-transition: color 75ms linear;
    -ms-transition: color 75ms linear;
    -o-transition: color 75ms linear;
    transition: color 75ms linear;
    overflow: hidden;
    max-height: 3em;
}

.home-news-item .news-title :hover,
.press-list a:hover {
    color: #4abced;
}

.home-news-item .news-date {
    color: #a8a8a8;
    display: block;
    font-size: .875rem;
    line-height: 1;
    margin-bottom: 15px;
}

.home-news-item .news-brief * {
    color: #a8a8a8;
}
.home-news-item .news-brief p {
    overflow: hidden;
    max-height: 4.4em;
}
.home-news-item .news-brief p,
.home-news-item .news-brief p *{
    font-size: .875rem;
    line-height: 1.1;
}
.home-news-item .news-link{
    font-weight: bold;
}

.home-news-item .news-picture a{
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
}
.home-news-item .news-picture a:before{
    display: block;
    content: "";
    padding-top: 100%;
}

.home-news-item .news-picture img {
    max-width: 100%;
    border: none;
}

.home-news-item .news-picture,
.home-news-item .news-details {
    width: 50%;
    box-sizing: border-box;
    padding: 0 15px;
}

#home-news .cycle-item {
    overflow: hidden;
    width: 100% !important;
}

/* HOME REFERENCES + REFERENCES */
#home-references {
    overflow: hidden;
    position: relative;
    text-align: center;
}

#home-references .more-link,
#home-news .more-link {
    margin: 30px 0 10px 0;
}
#home-references .more-link:after,
#home-news .more-link:after {
    display: none;
}

#home-references .more-link span,
#home-news .more-link span {
}

#home-news-wrapper {
    clear: left;
    width: 100% !important;
    -webkit-transition: height 0.2s ease;
    -moz-transition: height 0.2s ease;
    transition: height 0.2s ease;
}

#home-references .cycle-item {
    width: 100% !important;
}
#home-references .slider-bullets .active a,
#home-references .slider-bullets a:hover{
    background-color: #b1b737;
}
#home-references .more-link{
    background-color: #b1b737;
}
#home-news .slider-bullets .active a,
#home-news .slider-bullets a:hover{
    background-color: #faa72a;
}
#home-news .more-link{
    background-color: #faa72a;
}

.reference-item {
    max-width: 240px;
    height: 186px;
    margin: 0;
    float: left;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
}

.reference-item.isotope-item {
    width: 240px;
}

.home .reference-item {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0;
}

.reference-item .reference-infos {
    width: 100%;
    height: 100%;
    background: rgba(74, 188, 237, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 75ms linear;
    -moz-transition: opacity 75ms linear;
    -ms-transition: opacity 75ms linear;
    -o-transition: opacity 75ms linear;
    transition: opacity 75ms linear;
}

.reference-item .reference-picture-wrapper {
    overflow: hidden;
}

.reference-item .reference-picture-wrapper img {
    position: relative;
    z-index: 0;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}
#references-wrapper{
    clear: left;
    border-top: 1px #e0e0e0 solid;
    border-left: 1px #e0e0e0 solid;
    margin-left: -1px;
}
#home-references-wrapper {
    clear: left;
}

#home-references-wrapper .reference-item:first-child {
    margin-left: 0;
}

.reference-item:hover .reference-infos {
    visibility: visible;
    opacity: 1;
}

.reference-item .reference-name {
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    line-height: 1;
}

.reference-item .reference-name a {
    text-decoration: none;
    color: #fff;
}

.reference-item .reference-external {
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    display: block;
    color: #fff;
    font-size: .625rem;
    line-height: 1;
    opacity: .9;
    margin-top: 5px;
}

.reference-item .reference-details-link {
    display: block;
    width: 100%;
    height: auto;
    padding: 14.70588235294118% 0 11.76470588235294%; /* 25px / 170px */ /* 20px / 170px */
}

.reference-item .reference-details-link img {
    border: none;
    max-width: 16.36363636363636%; /* 36px / 220px */
    display: block;
    margin: 0 auto;
}

/* reference page */
.references-list h2 {
    font-size: 3.125em; /* 50px / 16px */
    padding-bottom: 0.53191489361702%; /* 5px / 940px */
    color: #3a3a3a;
}

#filter-form-wrapper {
    overflow: hidden;
}

.references-list #filter-form-wrapper {
    margin-bottom: 2.65957446808511%; /* 25px / 940px */
}

#filter-form-wrapper .dropdown,
#filter-form-wrapper .explain {
    float: left;
    margin-right: 2.12765957446809%; /* 20px / 940px */
}

.explain {
    color: #7d7d7d;
    text-transform: uppercase;
}

#filter-form-wrapper .submit {
    background: #ee6557;
    padding: 7px 10px; /* 7px / 940px | 10px / 940px */
    float: right;
}

#filter-form-wrapper .submit img {
    display: block;
    margin: 0 auto;
}

/* HOME CERTIFICATIONS */
#certifs-section .content-inner{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0;
}
#certifs-section .content-title{
    font-size: 1.75rem;
    text-align: left;
    margin: 30px 0;
}
#home-certifications {
    overflow: hidden;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 2px solid #f0f0f0;
}

#home-certifications li {
    width: 30%;
}

/*#certif-rentic {*/
/*    width: 13.29787234042553%; !* 125px / 940px *!*/
/*}*/
/*#certif-adwords {*/
/*    width: 11.59574468085106%; !* 109px / 940px *!*/
/*}*/
/*#certif-etic {*/
/*    width: 9.57446808510638%; !* 90px / 940px *!*/
/*}*/
/*#certif-w3c {*/
/*    width: 8.08510638297872%; !* 76px / 940px *!*/
/*}*/
/*#certif-ogone {*/
/*    width: 14.14893617021277%; !* 133px / 940px *!*/
/*}*/
/*#certif-hipay {*/
/*    width: 14.14893617021277%; !* 133px / 940px *!*/
/*}*/
/*#certif-magento {*/
/*    width: 15.31914893617021%; !* 144px / 940px *!*/
/*}*/
/*#certif-prestashop {*/
/*    width: 13.82978723404255%; !* 130px / 940px *!*/
/*}*/

#home-certifications img {
    max-width: 100%;
    border: none;
}

#home-certifications :hover img {
    opacity: .75;
}

/* HOME 360 */
#service-360 {
}

#service-360 .text-container p {
    text-align: justify;
}

#service-360 h2 {
    margin-bottom: 0;
    margin-top: 15px;
}

#service-360 h3 {
    margin-bottom: 5px;
}

#service-360 .box-right {
    float: left;
    margin-left: 2.12765957446809%; /* 20px / 940px */
}

#service-360 .box-right img {
    max-width: 61.7741935483871%; /* 383px / 620px */
}

#service-360 .box-left {
    width: 31.59574468085106%; /* 297px / 940px */
    max-width: 297px;
}

/* ipad 1024 width fix */
@media screen and (max-width: 667px) {
    #service-360 {
        margin-top:15px;
    }
}

.service-text {
    display: none;
}

#circle-wrapper {
    position: relative;
}

#circle {
    max-width: 100%;
    position: relative;
    display: block;
    z-index: 0;
}

#circle-wrapper .service-link {
    display: block;
    opacity: 0.4;
    width: 12.45791245791246%; /* 37px / 297px */
    height: 13.8047138047138%; /* 41px / 297px */
    max-height: 41px;
    overflow: hidden;
    position: absolute;
}

#circle-wrapper .service-link:hover,
#circle-wrapper .service-link.active {
    opacity: 1;
}

#circle-wrapper .service-link img {
    max-width: 100%;
    position: absolute;
    left: 0;
    display: block;
    border: none;
}

#circle-wrapper .service-link.service-support {
    left: 32.32323232323232%; /* 96px / 297px */
    top: 6.3973063973064%; /* 19px / 297px */
}
#circle-wrapper .service-link.service-consulting {
    left: 55.21885521885522%; /* 164px / 297px */
    top: 6.3973063973064%; /* 19px / 297px */
}
#circle-wrapper .service-link.service-design {
    left: 74.74747474747475%; /* 222px / 297px */
    top: 20.2020202020202%; /* 60px / 297px */
}
#circle-wrapper .service-link.service-website-creation {
    left: 81.48148148148148%; /* 242px / 297px */
    top: 43.0976430976431%; /* 128px / 297px */
}
#circle-wrapper .service-link.service-e-commerce {
    left: 73.73737373737374%; /* 219px / 297px */
    top: 65.31986531986532%; /* 194px / 297px */
}
#circle-wrapper .service-link.service-seo {
    left: 54.88215488215488%; /* 163px / 297px */
    top: 79.46127946127946%; /* 236px / 297px */
}
#circle-wrapper .service-link.service-e-marketing {
    left: 31.64983164983165%; /* 94px / 297px */
    top: 79.12457912457912%; /* 235px / 297px */
}
#circle-wrapper .service-link.service-mobile {
    left: 13.46801346801347%; /* 40px / 297px */
    top: 65.65656565656566%; /* 195px / 297px */
}
#circle-wrapper .service-link.service-video {
    left: 5.72390572390572%; /* 17px / 297px */
    top: 43.77104377104377%; /* 130px / 297px */
}
#circle-wrapper .service-link.service-gaming {
    left: 12.79461279461279%; /* 38px / 297px */
    top: 20.2020202020202%; /* 60px / 297px */
}

#circle-wrapper .service-link.service-support img {
    top: 0;
}
#circle-wrapper .service-link.service-consulting img {
    top: -100%;
}
#circle-wrapper .service-link.service-design img {
    top: -200%;
}
#circle-wrapper .service-link.service-website-creation img {
    top: -300%;
}
#circle-wrapper .service-link.service-e-commerce img {
    top: -400%;
}
#circle-wrapper .service-link.service-seo img {
    top: -500%;
}
#circle-wrapper .service-link.service-e-marketing img {
    top: -600%;
}
#circle-wrapper .service-link.service-mobile img {
    top: -700%;
}
#circle-wrapper .service-link.service-video img {
    top: -800%;
}
#circle-wrapper .service-link.service-gaming img {
    top: -900%;
}

/* ipad 1024 width fix */
@media screen and (min-width: 980px) and (max-width: 1024px) {
    #service-360 .visible-desktop {
        display: none !important;
    }

    #service-360 .visible-tablet {
        display: inherit !important;
    }

    #service-360 .button.hidden-desktop {
        display: inherit !important;
    }
}

/* services circle */
#service-360 .button {
    padding-left: 10px;
    font-size: 1.0625em; /* 17px / 16px */
    width: 32.25806451612903%; /* 200px / 620px */
    margin-top: 10px;
}

/* BRANDING */
#branding {
    position: relative;
    padding-bottom: 75px;
}

#branding-inner {
    position: relative;
    z-index: 0;
}

#branding-inner .cycle {
    width: 100% !important;
    max-height: 445px;
    overflow: hidden;
}

.slide-arrow {
    display: block;
    width: 50px;
    height: 100px;
    background: url("../medias/images/slider-arrows.png");
    position: absolute;
    top: 160px;
    opacity: 0.5;
    -webkit-transition: opacity 100ms linear;
    -moz-transition: opacity 100ms linear;
    -ms-transition: opacity 100ms linear;
    -o-transition: opacity 100ms linear;
    transition: opacity 100ms linear;
    z-index: 99;
}

.slide-arrow:hover {
    opacity: 1;
}

.slide-arrow.arrow-previous {
    background-position: 0 0;
    left: 0;
}

.slide-arrow.arrow-next {
    background-position: -50px 0;
    right: 0;
}

.branding-toggle {
    display: block;
    width: 100px;
    background: url("../medias/images/branding-arrows.png");
    position: absolute;
    left: 50%;
    margin-left: -50px;
    background-position: 0 0;
    height: 50px;
    bottom: 75px;
}

.branding-toggle:hover {
    opacity: 1;
}

.branding-toggle.open {
    background-position: 0 -50px;
    height: 49px;
    bottom: 25px;
}

.branding {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100% !important;
    max-height: 445px;
}

.branding-background {
    min-height: 445px;
}

.branding-content {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.branding-content-inner {
    padding: 0 1.04166666666667%; /* 10px / 960px */
    position: relative;
}

.branding-content-inner .overflow {
    width: 100%;
    height: 1px;
    line-height: 1px;
}

.branding-left {
    float: left;
    padding-top: 8.51063829787234%; /* 80px / 940px */
    position: relative;
    z-index: 2;
}

.branding-left .branding-name {
    font-size: 2.75rem; /* 55px / 16px */
    margin-bottom: 3.26086956521739%; /* 15px / 460px */
}

.branding-right {
    float: right;
    position: relative;
    z-index: 1;
    margin-left: 2.12765957446809%; /* 20px / 940px */
}

.reference .branding-right {
    padding-bottom: 1.59574468085106%; /* 15px / 940px */
}

.branding-right img {
    display: block;
}

/* reference branding */
.reference .branding {
    height: auto;
    min-height: 649px;
}

.reference .addthis_toolbox {
    padding-top: 5%; /* 15px / 300px */
}

.author-name,
.author-function {
    display: block;
}

.author-function {
    font-size: 0.9166666666666667em; /* 11px / 12px */
    font-style: italic;
}

.author-name {
    text-transform: uppercase;
}

.slider-bullets {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
    height: 10px;
}

/*.home .slider-bullets {
    padding: 0;
    position: absolute;
    z-index: 0;
    right: 120px;
    top: 14px;
}*/

.home .slider-bullets {
}

.slider-bullets ul {
    list-style-type: none;
    position: relative;
    float: left;
    left: 50%;
}

/*.home .slider-bullets ul {
    float: none;
    left: auto;
}*/

.slider-bullets li {
    float: left;
    margin: 0 2px;
    position: relative;
    right: 50%;
}

/*.home .slider-bullets li {
    right: auto;
}*/

.slider-bullets a {
    display: block;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #d8d8d8;
}

.slider-bullets .active a,
.slider-bullets a:hover {
    background-color: #4abced;
}

#reference-navigation {
    overflow: hidden;
    list-style-type: none;
    padding-bottom: 1.66666666666667%; /* 5px / 300px */
}

#reference-navigation a {
    float: left;
    margin-right: 1px;
}

.reference-navigation-link {
    display: block;
    overflow: hidden;
    position: relative;
    width: 33px;
    height: 33px;
}

.reference-navigation-link img {
    position: absolute;
    left: 0;
    display: block;
    max-width: 100%;
    border: none;
}

.reference-navigation-link.link-previous img {
    top: 0;
}
.reference-navigation-link.link-cancel img {
    top: -100%;
}
.reference-navigation-link.link-next img {
    top: -200%;
}

#reference-pics {
    overflow: hidden;
    width: 91.29032258064516%; /* 566px / 620px */
    height: 57.09156193895871%; /* 318px / 557px */
    max-width: 566px;
    position: absolute;
    left: 4.19354838709677%; /* 26px / 620px */
    top: 4.66786355475763%; /* 26px / 557px */
}

.reference .references-goto {
    display: block;
    margin-bottom: 3.2258064516129%; /* 20px / 620px */
}

.comment-toggle {
    float: right;
    margin-top: -15%; /* 45px / 300px */
    position: relative;
}

.comment-toggle a {
    display: block;
    position: relative;
    overflow: hidden;
    width: 33px;
    height: 32px;
}

.comment-toggle a img {
    border: none;
    display: block;
    position: absolute;
    max-width: 100%;
    height: auto;
    top: 0;
}

.comment-toggle.view-comment a img {
    top: -100%;
}

.comment-toggle.view-description a img {
    top: 0;
}

.comment-toggle-background {
    width: 92px;
    height: 58px;
    background-image: url("../medias/images/ref-comments-link-fr.png");
    position: absolute;
    top: -45px;
    left: 38px;
    -webkit-transition: background-position 75ms linear;
    -moz-transition: background-position 75ms linear;
    -ms-transition: background-position 75ms linear;
    -o-transition: background-position 75ms linear;
    transition: background-position 75ms linear;
}

.comment-toggle.view-comment .comment-toggle-background {
    background-position: 0 -58px;
}

.comment-toggle.view-description .comment-toggle-background {
    background-position: 0 0;
}

#reference-pics img {
    width: 100% !important;
    height: auto !important;
}

.reference #branding {
    padding-bottom: 49px;
}

.reference .branding-toggle {
    bottom: 49px;
}

.reference .branding-toggle.open {
    bottom: 0;
}

.reference .slide-arrow {
    top: 250px;
}

.reference .branding-left {
    padding-top: 0;
    position: relative;
    height: auto;
    max-width: 620px;
}

.reference .branding-name {
    margin-bottom: 3.33333333333333%; /* 10px / 300px */
    position: relative;
    line-height: 0.8em;
    font-size: 2rem;
}

.reference .branding-name .project-type,
.reference .branding-name .project-size {
    display: block;
    padding-right: 11.66666666666667%; /* 35px / 300px */
    line-height: 1.4em;
    margin-top: 3.33333333333333%; /* 10px / 300px */
    font-size: 1rem;
}

.reference .branding-name .project-size {
    margin-top: 0;
    line-height: 1em;
    font-size: .875rem;
}

.reference .reference-screen {
    max-width: 100%;
    position: relative;
    z-index: 0;
    display: block;
}

.reference .description a {
    color: #eb452f;
}
.reference .description a:hover {
    color: #f77567;
}

.reference .branding-background {
    min-height: inherit;
    background: url("../medias/images/reference-background.png") no-repeat top
        center #efefef;
    width: 100%;
}

.reference .branding-brief p {
    margin-bottom: 3.33333333333333%; /* 10px / 300px */
    text-align: justify;
    font-size: .75rem;
}

.reference .branding-button {
    padding: 2.66666666666667% 9%; /* 8px / 300px | 27px / 300px */
}

.reference #branding-inner {
    height: auto;
    max-height: 649px;
}

.reference .branding-content-inner {
    padding-top: 6.12244897959184%; /* 60px / 980px */
}

.reference .branding-brief {
    max-height: 200px;
    overflow: auto;
    width: 100%;
}

.branding.communication-1000 .branding-right {
    left: -20%;
}

/* SERVICES */
.service-page #branding {
    padding-bottom: 0;
}

.service-page .branding-background,
.service-branding .branding-background,
.reference-branding .branding-background,
.communication-branding .branding-background,
.video-branding .branding-background {
    width: 100%;
    background-position: top center;
    background-repeat: no-repeat;
}

.service-page .branding-content .branding-brief *,
.branding.service-branding .branding-brief *,
.branding.video-branding .branding-brief * {
    color: #fff;
    margin-bottom: 2.17391304347826%; /* 10px / 460px */
    line-height: 1.2;
    font-size: 1.125rem;
    font-weight: 300;
}

.branding.communication-branding .branding-brief * {
    margin-bottom: 2.17391304347826%; /* 10px / 460px */
}

.service-page .branding-left {
    padding-top: 5.31914893617021%; /* 50px / 940px */
}

.service-page .branding-brief {
    padding-right: 17.39130434782609%; /* 80px / 460px */
}

.service-page .branding-left .branding-name {
    margin-bottom: 4.34782608695652%; /* 20px / 460px */
    color: #fff;
}

.service-page .branding-right {
    margin-left: 0;
    left: -40px;
}

.button.quote-button {
    width: 179px;
    height: 49px;
    /*background: url('../medias/images/quote-tooltip-green.png') no-repeat;*/
    background-image: url("../medias/images/quote-tooltip-sprite.png");
    background-repeat: no-repeat;
    background-position: 0 -58px;
    background-color: transparent;
    color: #fff;
    font-size: 1.125rem; /* 23px / 16px */
    text-align: center;
    padding: 0;
    padding-top: 9px;
    margin-top: 25px;
    font-weight: bold;
    line-height: 1.5;
    /*-webkit-transition: background-image 75ms linear;
    -moz-transition: background-image 75ms linear;
    -ms-transition: background-image 75ms linear;
    -o-transition: background-image 75ms linear;
    transition: background-image 75ms linear;*/
}

.button.quote-button:hover {
    /*background-image: url('../medias/images/quote-tooltip-green-hover.png');*/
    background-position: -179px -58px;
}

.service-page.design .quote-button,
.service-page.seo .quote-button,
.service-page.gaming .quote-button {
    background-position: 0 -116px;
}
.service-page.design .quote-button:hover,
.service-page.seo .quote-button:hover,
.service-page.gaming .quote-button:hover {
    background-position: -179px -116px;
}

.service-page.website-creation .quote-button,
.service-page.mobile .quote-button {
    background-position: 0 0;
}
.service-page.website-creation .quote-button:hover,
.service-page.mobile .quote-button:hover {
    background-position: -179px 0;
}

.service-page.e-commerce .quote-button,
.service-page.video .quote-button {
    background-position: 0 -174px;
}
.service-page.e-commerce .quote-button:hover,
.service-page.video .quote-button:hover {
    background-position: -179px -174px;
}

/* services backgrounds */
.service-page .branding-name .icon {
    display: block;
    background-image: url("../medias/images/services-sprite.png?v2");
    background-repeat: no-repeat;
    width: 37px;
    height: 41px;
    margin: 0 auto 10px;
}

.service-page .branding-background {
    background-repeat: no-repeat;
}

.service-page.consulting .branding-background,
.branding.service-consulting .branding-background {
    background-image: url("../medias/images/consulting-background.png");
    background-color: #4aac51;
}
.service-page.consulting .branding-name .icon {
    background-position: 0 -41px;
}
.service-page.design .branding-background,
.branding.service-design .branding-background {
    background-image: url("../medias/images/design-background.png");
    background-color: #8eb645;
}
.service-page.design .branding-name .icon {
    background-position: 0 -82px;
}
.service-page.website-creation .branding-background,
.branding.service-website-creation .branding-background {
    background-image: url("../medias/images/website-creation-background.png");
    background-color: #fbae13;
}
.service-page.website-creation .branding-name .icon {
    background-position: 0 -123px;
}
.service-page.e-commerce .branding-background,
.branding.service-e-commerce .branding-background {
    background-image: url("../medias/images/e-commerce-background.png");
    background-color: #f98200;
}
.service-page.e-commerce .branding-name .icon {
    background-position: 0 -164px;
}
.service-page.seo .branding-background,
.branding.service-seo .branding-background {
    background-image: url("../medias/images/seo-background.png");
    background-color: #ee6557;
}
.service-page.seo .branding-name .icon {
    background-position: 0 -205px;
}
.service-page.mobile .branding-background,
.branding.service-mobile .branding-background {
    background-image: url("../medias/images/mobile-background.png");
    background-color: #9e5dc9;
}
.service-page.mobile .branding-name .icon {
    background-position: 0 -287px;
}
.service-page.video .branding-background,
.branding.service-video .branding-background {
    background-image: url("../medias/images/video-background.png");
    background-color: #5672d8;
}
.service-page.video .branding-name .icon {
    background-position: 0 -328px;
}
.service-page.e-marketing .branding-background,
.branding.service-e-marketing .branding-background {
    background-image: url("../medias/images/e-marketing-background.png");
    background-color: #f752ac;
}
.service-page.e-marketing .branding-name .icon {
    background-position: 0 -246px;
}
.service-page.gaming .branding-background,
.branding.service-gaming .branding-background {
    background-image: url("../medias/images/gaming-background.png");
    background-color: #4abced;
}
.service-page.gaming .branding-name .icon {
    background-position: 0 -369px;
}
.service-page.support .branding-background,
.branding.service-support .branding-background {
    background-image: url("../medias/images/support-background.png");
    background-color: #00bfba;
}
.service-page.support .branding-name .icon {
    background-position: 0 0;
}

/* default brandings */
.branding.reference-branding .branding-background {
    background-image: url("../medias/images/background-latest-work.png");
    background-color: #e4ebf3;
}

.branding.video-branding .branding-background {
    background-image: url("../medias/images/video-branding-background.png");
    background-color: #002160;
}

.branding.video-branding .branding-right {
    padding-top: 9.04255319148936%; /* 85px / 940px */
}

.content-inner.content-inner-isotope {
    padding: 0;
}

.service-product {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 260px;
    overflow: hidden;
    float: left;
    /*margin: 20px 0;*/
    position: relative;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
    box-sizing: border-box;
}

#service-products {
    overflow: hidden;
    padding: 20px 0;
}

.service-page .product-name span {
    float: none;
    display: block;
    color: #a5a5a5;
}

.service-page .product-name {
    margin-bottom: 4.54545454545455%; /* 10px / 220px */
    font-size: 1.25rem;
    line-height: 1.2;
}

.service-product p {
    height: 6.25em; /* 90px / 220px */
    overflow: hidden;
    text-align: left;
    font-size: .875rem;
    line-height: 1.25;
    margin-bottom: 0;
    margin-top: auto;
}

.service-product .product-button {
    padding: 3.63636363636364% 0; /* 8px / 220px */
    width: 94%;
    padding-left: 6%;
    -webkit-transition: color 75ms, background-color 75ms linear;
    -moz-transition: color 75ms, background-color 75ms linear;
    -ms-transition: color 75ms, background-color 75ms linear;
    -o-transition: color 75ms, background-color 75ms linear;
    transition: color 75ms, background-color 75ms linear;
    /*position: absolute;*/
    /*bottom: 0;*/
    margin-top: 15px;
}
.service-product .product-button:hover {
    opacity: .75;
}

.service-product .product-button {
    color: #fff;
}

/* service colors */
.service-page.consulting .service-product .product-button {
    background-color: #4aac51;
}
.service-page.design .service-product .product-button {
    background-color: #8eb645;
}
.service-page.website-creation .service-product .product-button {
    background-color: #ffbc00;
}
.service-page.e-commerce .service-product .product-button {
    background-color: #f98200;
}
.service-page.seo .service-product .product-button {
    background-color: #ee6557;
}
.service-page.mobile .service-product .product-button {
    background-color: #9e5dc9;
}
.service-page.video .service-product .product-button {
    background-color: #5672d8;
}
.service-page.e-marketing .service-product .product-button {
    background-color: #f752ac;
}
.service-page.gaming .service-product .product-button {
    background-color: #4abced;
}
.service-page.support .service-product .product-button {
    background-color: #00bfba;
}

/* product page */
.product-page .text-container h2 {
    color: #5b5b5b;
    font-size: 1.25em; /* 20px / 16px */
    margin-bottom: 1.42857142857143%; /* 10px / 700px */
    padding-top: 0.71428571428571%; /* 5px / 700px */
}

/* two cols */
#col-left {
    float: left;
    box-sizing: border-box;
    width: 25%;
}

#col-right {
    float: left;
    /*padding-left: 30px; /* 20px / 940px */
    box-sizing: border-box;
    /*width: 75%;*/
}

.contact #col-left ,
.news-detail #col-left ,
.job-detail #col-left {
    width: 75%;
    padding-left: 0;
    padding-right: 30px;
}

.contact #col-right ,
.news-detail #col-right ,
.job-detail #col-right {
    width: 25%;
    padding-left: 0;
}


#col-right h1 {
    margin-bottom: 4.16666666666667%; /* 30px / 720px */
}

.content-full h1 {
    margin-bottom: 2.12765957446809%; /* 30px / 940px */
}

.content-full .text-container h2 {
    padding-top: 1.06382978723404%; /* 10px / 940px */
}

.content-full .text-container h3 {
    padding-top: 1.06382978723404%; /* 10px / 940px */
}

.content-full .text-container ul,
.content-full .text-container ol {
    padding-left: 2.12765957446809%; /* 20px / 940px */
}

.content-full .text-container p,
.content-full .text-container h2,
.content-full .text-container h3,
.content-full .text-container ul {
    margin-bottom: 1.06382978723404%; /* 10px / 940px */
}

#col-right .text-container p {
    margin-bottom: 1.42857142857143%; /* 10px / 700px */
}

#col-right .text-container ul,
#col-right .text-container ol {
    margin-bottom: 1.42857142857143%; /* 10px / 700px */
    padding-left: 20px;
}

#col-left .content-separator {
    width: auto;
}

.content-side-title {
    border-bottom: 4px solid #f0f0f0;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.content-side-title:first-child {
    margin-top: 0;
}

#col-left .content-separator span {
    padding: 0 2.27272727272727%; /* 5px / 220px */
}

.left-menu {
    list-style-type: none;
    padding: 2.27272727272727% 0 6.81818181818182%; /* 5px / 220px | 15px / 220px */
}

.left-menu li {
    margin-top: 0;
    border-bottom: 1px dashed #ededed;
}

.left-menu li:first-child {
    margin-top: 0;
}

.left-menu a {
    text-decoration: none;
    text-transform: uppercase;
    color: #3a3a3a;
    -webkit-transition: color 75ms, background-color 75ms linear;
    -moz-transition: color 75ms, background-color 75ms linear;
    -ms-transition: color 75ms, background-color 75ms linear;
    -o-transition: color 75ms, background-color 75ms linear;
    transition: color 75ms, background-color 75ms linear;
    overflow: hidden;
    font-weight: bold;
    font-size: .75rem;
    padding: 10px;
    display: flex;
    align-items: center;
    margin: 0;
}

.left-menu span {
    float: left;
    width: 88%;
}

.left-menu span:first-child {
    color: #a5a5a5;
    display: inline-block;
    width: 12%;
}

.left-menu :hover,
.left-menu .active {
    color: #fff;
}

.left-menu .active {
    background-color: #4abced;
}

.left-menu :hover {
    background-color: #4abced;
}

.left-menu :hover span,
.left-menu .active span {
    color: #fff;
}

#col-left .quote-link,
#col-right .quote-link {
    background: url("../medias/images/contact-quote.png") 10px -77px no-repeat #4abced;
    color: #fff;
    text-align: left;
    line-height: 1.125em;
    margin: 2.27272727272727% 0 11.36363636363636%; /* 5px / 220px | 25px / 220px */
    -webkit-transition: background-color 75ms linear;
    -moz-transition: background-color 75ms linear;
    -ms-transition: background-color 75ms linear;
    -o-transition: background-color 75ms linear;
    transition: background-color 75ms linear;
    font-weight: bold;
    font-size: .75rem;
    padding: 15px 15px 15px 35px;
    background-size: 15px;
    background-position: 15px -36px;
}

#col-left .quote-link:hover,
#col-right .quote-link:hover {
    background-color: #8eb645;
}

#col-left .addthis_toolbox {
    padding: 4.54545454545455% 0 11.36363636363636%; /* 10px / 220px */ /* 25px / 220px */
}

#recent-projects {
    list-style-type: none;
    padding: 2.27272727272727% 0 6.81818181818182%; /* 5px / 220px | 15px / 220px */
}

#recent-projects li {
    margin-bottom: 2.27272727272727%; /* 5px / 220px */
}

#recent-projects a {
    text-decoration: none;
    display: block;
}

#recent-projects .project-name {
    color: #4abced;
}

#recent-projects .project-url {
    color: #5b5b5b;
}

/* colors */
.product-page.consulting .page-header,
.product-page.consulting .left-menu :hover,
.product-page.consulting .left-menu .active {
    background-color: #4aac51;
}
.product-page.design .page-header,
.product-page.design .left-menu :hover,
.product-page.design .left-menu .active {
    background-color: #8eb645;
}
.product-page.website-creation .page-header,
.product-page.website-creation .left-menu :hover,
.product-page.website-creation .left-menu .active {
    background-color: #ffbc00;
}
.product-page.e-commerce .page-header,
.product-page.e-commerce .left-menu :hover,
.product-page.e-commerce .left-menu .active {
    background-color: #f98200;
}
.product-page.seo .page-header,
.product-page.seo .left-menu :hover,
.product-page.seo .left-menu .active {
    background-color: #ee6557;
}
.product-page.e-marketing .page-header,
.product-page.e-marketing .left-menu :hover,
.product-page.e-marketing .left-menu .active {
    background-color: #f752ac;
}
.product-page.mobile .page-header,
.product-page.mobile .left-menu :hover,
.product-page.mobile .left-menu .active {
    background-color: #9e5dc9;
}
.product-page.gaming .page-header,
.product-page.gaming .left-menu :hover,
.product-page.gaming .left-menu .active {
    background-color: #4abced;
}
.product-page.video .page-header,
.product-page.video .left-menu :hover,
.product-page.video .left-menu .active {
    background-color: #5672d8;
}
.product-page.support .page-header,
.product-page.support .left-menu :hover,
.product-page.support .left-menu .active {
    background-color: #00bfba;
}
.product-page.formations .page-header,
.product-page.formations .left-menu :hover,
.product-page.formations .left-menu .active {
    background-color: #1c9cc0;
}

/* jobs list */
.jobs .text-container {
    float: left;
    padding: 1.06382978723404% 0 2.12765957446809%; /* 10px / 940px | 20px / 940px */
}

.jobs .text-container h2 {
    color: #5b5b5b;
    font-size: 1.125em; /* 18px / 16px */
    margin-bottom: 1.61290322580645%; /* 10px / 620px */
}

.jobs .text-container h2.bigger {
    font-size: 1.25em; /* 20px / 16px */
}

.jobs .text-container p {
    margin-bottom: 1.61290322580645%; /* 10px / 620px */
}

.jobs .jobs-buttons {
    float: left;
    margin-left: 2.12765957446809%; /* 20px / 940px */
    list-style-type: none;
    padding-top: 1.06382978723404%; /* 10px / 940px */
}

.jobs .jobs-buttons li {
    margin-bottom: 6.66666666666667%; /* 20px / 300px */
}

.job-button {
    display: block;
    width: auto;
    height: auto;
    text-decoration: none;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    padding: 10px;
    color: #5b5b5b;
    -webkit-transition: color 75ms, background-color 75ms linear;
    -moz-transition: color 75ms, background-color 75ms linear;
    -ms-transition: color 75ms, background-color 75ms linear;
    -o-transition: color 75ms, background-color 75ms linear;
    transition: color 75ms, background-color 75ms linear;
    background-position: 15px 0;
}

.job-button:hover {
    background-color: #4abced;
    background-position: 15px -90px;
    color: #fff;
}

.job-button .button-description,
.job-button .button-title {
    display: block;
}

.job-button .button-description {
    padding-left: 60px;
    padding-top: 5px;
}

.job-button .button-title {
    text-transform: uppercase;
    padding-top: 10px;
}

.job-button.job-button-apply {
    background-image: url("../medias/images/job-apply.png");
}

.job-button.job-button-internship {
    background-image: url("../medias/images/job-internship.png");
}

/* news & jobs */
.isotope-container {
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}

#news-filter .content-inner{
    padding: 45px 0;
}

.news.news-list .content-separator span,
.jobs .content-separator span {
    padding: 5px 10px;
}

.news-list-top {
    overflow: hidden;
}

.news-list-top .float {
    float: left;
    margin-left: 2.12765957446809%; /* 20px / 940px */
}

.news-list-top .float:first-child {
    margin-left: 0;
}

.news-list-top #filter-form-wrapper {
    padding-top: 1.06382978723404%; /* 10px / 940px */
    margin: 0 auto;
    max-width: 50%;
}
select#category{
    background: #faa72a;
    color: #ffffff;
    font-family: 'azosans', Arial, sans-serif;
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1;
    padding: 10px;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
select#category:focus{
    outline: none;
}
select#category option{
    outline: none;
}
.news-list .news-item,
.jobs-list .job-item {
    float: left;
    margin: 10px;
    width: 220px;
    height: 254px;
    background: #f0f0f0;
    color: #5b5b5b;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: box-shadow 75ms, color 75ms,
        background-color 75ms linear, -webkit-transform 0.8s, opacity 0.8s;
    -moz-transition: box-shadow 75ms, color 75ms, background-color 75ms linear,
        -moz-transform 0.8s, opacity 0.8s;
    -ms-transition: box-shadow 75ms, color 75ms, background-color 75ms linear,
        -ms-transform 0.8s, opacity 0.8s;
    -o-transition: box-shadow 75ms, color 75ms, background-color 75ms linear,
        -o-transform 0.8s, opacity 0.8s;
    transition: box-shadow 75ms, color 75ms, background-color 75ms linear,
        transform 0.8s, opacity 0.8s;
    /*-webkit-box-shadow:  0px 0px 3px 2px rgba(00, 00, 00, 0.05);
    box-shadow:  0px 0px 3px 2px rgba(00, 00, 00, 0.05);*/
}

.job-item .job-picture {
    display: block;
    width: 100%;
    height: auto;
    padding: 13.77952755905512% 0 15.74803149606299%; /* 35px / 254px */ /* 40px / 254px */
}

.job-item .job-picture img {
    max-width: 75.45454545454545%; /* 166px / 220px */
    margin: 0 auto;
    display: block;
    border: none;
}

.news-list .news-item.highlighted {
    width: 460px;
    height: 528px;
}

.news-list .news-picture {
    display: block;
    margin: 4.54545454545455% auto 10px; /* 10px / 220px */
    max-width: 90.90909090909091%; /* 200px / 220px */
    height: 61.02362204724409%; /* 155px / 254px */
    overflow: hidden;
}

.news-list .news-picture img {
    border: none;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

.news-list .news-date,
.jobs-list .job-date {
    display: block;
    float: left;
    padding-top: 3px;
}

.jobs-list .job-date {
    float: none;
    margin: 0 7px 0 4.54545454545455%;
}

.news-sprite {
    width: 16px;
    height: 16px;
    display: block;
    float: left;
    overflow: hidden;
    position: relative;
}

.news-sprite img {
    position: absolute;
    top: 0;
    left: 0;
}

.job-detail .news-sprite.job {
    background-image: url("../medias/images/news-sprite.png");
    background-repeat: no-repeat;
    background-position: 0 -32px;
}

.news-item:hover .news-sprite img {
    left: -16px;
}

.news-item .news-sprite {
    margin: 0 7px 0 4.54545454545455%; /* 10px / 220px */
}

.news-list .news-title,
.jobs-list .job-title {
    font-size: 1.125em; /* 18px / 16px */
    line-height: 0.95em;
    padding: 4px 9.09090909090909% 0 4.54545454545455%; /* 4px / 220px | 20px / 220px | 10px / 220px */
}

.news-list .news-title a,
.jobs-list .job-title a {
    text-decoration: none;
    color: #5b5b5b;
    text-transform: uppercase;
    overflow: hidden;
    max-height: 2.85em;
    display: block;
}

.news-list .news-item:hover,
.jobs-list .job-item:hover {
    background-color: #b9b748;
    color: #fff;
}

.news-list .news-item.hover-green:hover,
.jobs-list .job-item.hover-green:hover {
    background: #baba1b;
    -webkit-box-shadow: 0px 0px 3px 2px rgba(184, 184, 72, 0.45);
    box-shadow: 0px 0px 3px 2px rgba(184, 184, 72, 0.45);
}
.news-list .news-item.hover-yellow:hover,
.jobs-list .job-item.hover-yellow:hover {
    background: #f7a813;
    -webkit-box-shadow: 0px 0px 3px 2px rgba(250, 182, 62, 0.4);
    box-shadow: 0px 0px 3px 2px rgba(250, 182, 62, 0.4);
}
.news-list .news-item.hover-red:hover,
.jobs-list .job-item.hover-red:hover {
    background: #eb452f;
    -webkit-box-shadow: 0px 0px 3px 2px rgba(239, 103, 88, 0.4);
    box-shadow: 0px 0px 3px 2px rgba(239, 103, 88, 0.4);
}
.news-list .news-item.hover-blue:hover,
.jobs-list .job-item.hover-blue:hover {
    background: #4abced;
    -webkit-box-shadow: 0px 0px 3px 2px rgba(76, 197, 240, 0.4);
    box-shadow: 0px 0px 3px 2px rgba(76, 197, 240, 0.4);
}

.news-list .news-item:hover a,
.jobs-list .job-item:hover a {
    color: #fff;
}

.news-list .news-brief {
    padding: 10px 4.54545454545455% 0; /* 10px / 220px */
}

.news-list .news-item:hover .news-brief * {
    color: #fff;
}

.year-link {
    text-decoration: none;
    color: #dcdcdc;
    -webkit-transition: color 75ms linear;
    -moz-transition: color 75ms linear;
    -ms-transition: color 75ms linear;
    -o-transition: color 75ms linear;
    transition: color 75ms linear;
}

/* news detail & job detail */
.news #col-left,
.job #col-left {
    padding-top: 0;
}

.news #col-right,
.job #col-right {
    padding-left: 2.12765957446809%; /* 20px / 940px */
}

.news-detail h1,
.job-detail h1 {
    color: #5b5b5b;
    font-size: 1.8125em; /* 29px / 16px */
    padding-bottom: 1.61290322580645%; /* 10px / 620px */
}

.news-detail .content-separator span,
.contact .content-separator span,
.job-detail .content-separator span {
    padding: 1.66666666666667%; /* 5px / 300px */
}

.news-detail #col-left img {
    max-width: 100%;
    display: block;
}
.news-detail #col-left img.news-picture {
    width: 100%;
}

.news-detail #col-left .news-sprite img {
    max-width: none;
}

.news-detail .text-container {
    /*padding-top: 3.2258064516129%;*/ /* 20px / 620px */
}

.job-detail .text-container {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.61290322580645%; /* 10px / 620px */
}

.apply-button {
    float: right;
    background-image: none;
    background-color: #b9b748;
    color: #fff;
    text-align: center;
    float: right;
}

.apply-button:hover {
    background: #c5c34d;
}

.job-detail-bottom {
    overflow: hidden;
    padding-top: 2.77777777777778%; /* 20px / 620px */
}

.job-detail-bottom h2 {
    float: left;
    font-size: 1.25em; /* 20px / 16px */
    padding-top: 1.12903225806452%; /* 7px / 620px */
}

.job-detail-bottom img {
    float: right;
    margin-top: 1.61290322580645%; /* 10px / 620px */
    margin-right: 1.61290322580645%; /* 10px / 620px */
    max-width: 100%;
}

.news-detail .text-container p,
.job-detail .text-container p,
.job-detail .text-container h2,
.job-detail .text-container ul {
    margin-bottom: 1.61290322580645%; /* 10px / 620px */
}

.job-detail .text-container h2 {
    font-size: 1.25em; /* 20px / 16px */
    padding-top: 1.61290322580645%; /* 10px / 620px */
}

.news-detail #col-left .addthis_toolbox,
.job-detail #col-left .addthis_toolbox {
    float: right;
    width: 143px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-left: auto;
}
.news-detail #col-left .addthis_toolbox a,
.job-detail #col-left .addthis_toolbox a {
    display: inline-block;
    line-height: 1;
    margin-bottom: 0;
}

.news-detail .news-bar,
.job-detail .news-bar {
    overflow: hidden;
    padding: 1.12903225806452% 0;
    border: 1px solid #e0e0e0;
    border-left: none;
    border-right: none;
    /*margin-bottom: 4.83870967741935%;*/ /* 30px / 620px */
    margin-bottom: 1.61290322580645%; /* 10px / 620px */
    color: #5b5b5b;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.news-detail .news-picture {
    margin-bottom: 1.61290322580645%; /* 10px / 620px */
}

.job-detail .news-bar {
    /*margin-bottom: 1.61290322580645%;*/ /* 10px / 620px */
}

.job-detail .text-container li {
    font-size: 0.75em; /* 12px / 16px */
}

.job-detail .text-container ul {
    padding-left: 4.83870967741935%; /* 30px / 620px */
}

.news-detail .news-left-title,
.job-detail .job-left-title {
    color: #5b5b5b;
    float: left;
    margin-left: 5px;
    /*padding-top: 3px;*/
    display: inline-block;
}

.detail-latest-news {
    list-style-type: none;
    padding: 2.66666666666667% 0; /* 8px / 300px */
}

.detail-latest-news img {
    max-width: 100%;
    border: none;
}

.detail-latest-news li {
    margin-bottom: 4.33333333333333%; /* 13px / 300px */
    text-align: left;
    width: 100% !important;
}

.detail-latest-news.same-category {
    overflow: hidden;
    -webkit-transition: height 0.2s ease;
    -moz-transition: height 0.2s ease;
    transition: height 0.2s ease;
}

.detail-latest-news.same-category li {
    margin-bottom: 0;
}

.detail-latest-news a {
    text-decoration: none;
    display: block;
    /*padding-right: 3.33333333333333%;*/ /* 10px / 300px */
}

.detail-latest-news .news-infos {
    color: #a5a5a5;
}

.detail-latest-news .news-title {
    color: #3a3a3a;
    text-transform: uppercase;
    -webkit-transition: color 75ms linear;
    -moz-transition: color 75ms linear;
    -ms-transition: color 75ms linear;
    -o-transition: color 75ms linear;
    transition: color 75ms linear;
    font-size: .875rem;
    line-height: 1;
    font-weight: bold;
}

.detail-latest-news .news-title:hover {
    color: #4abced;
}

.detail-services-list {
    overflow: hidden;
    list-style-type: none;
    padding: 1.66666666666667% 0 4%; /* 5px / 300px | 12px / 300px */
}

.detail-services-list li {
    float: none;
    width: 100%;
    margin-bottom: 3.33333333333333%; /* 10px / 300px */
}

.detail-services-list .sprite-link {
    text-decoration: none;
    text-transform: uppercase;
    color: #3a3a3a;
    display: block;
    padding: 2px 0 0 28px;
    background-image: url("../medias/images/services-sprite-color.png?v2");
    background-repeat: no-repeat;
    -webkit-transition: color 75ms linear;
    -moz-transition: color 75ms linear;
    -ms-transition: color 75ms linear;
    -o-transition: color 75ms linear;
    transition: color 75ms linear;
}

.detail-services-list .sprite-link.sprite-link-e-marketing {
    background-position: 0 -21px;
}
.detail-services-list .sprite-link.sprite-link-design {
    background-position: 0 -42px;
}
.detail-services-list .sprite-link.sprite-link-mobile {
    background-position: 0 -63px;
}
.detail-services-list .sprite-link.sprite-link-website-creation {
    background-position: 0 -84px;
}
.detail-services-list .sprite-link.sprite-link-gaming {
    background-position: 0 -147px;
}
.detail-services-list .sprite-link.sprite-link-e-commerce {
    background-position: 0 -126px;
}
.detail-services-list .sprite-link.sprite-link-video {
    background-position: 0 -105px;
}
.detail-services-list .sprite-link.sprite-link-seo {
    background-position: 0 -168px;
}
.detail-services-list .sprite-link.sprite-link-support {
    background-position: 0 -189px;
}

.detail-services-list .sprite-link.sprite-link-consulting:hover {
    color: #4aac51;
}
.detail-services-list .sprite-link.sprite-link-e-marketing:hover {
    color: #f752ac;
}
.detail-services-list .sprite-link.sprite-link-design:hover {
    color: #8eb645;
}
.detail-services-list .sprite-link.sprite-link-mobile:hover {
    color: #9e5dc9;
}
.detail-services-list .sprite-link.sprite-link-website-creation:hover {
    color: #ffbc00;
}
.detail-services-list .sprite-link.sprite-link-gaming:hover {
    color: #4abced;
}
.detail-services-list .sprite-link.sprite-link-e-commerce:hover {
    color: #f98200;
}
.detail-services-list .sprite-link.sprite-link-video:hover {
    color: #5672d8;
}
.detail-services-list .sprite-link.sprite-link-seo:hover {
    color: #ee6557;
}
.detail-services-list .sprite-link.sprite-link-support:hover {
    color: #00bfba;
}

/* form newsletter */
#newsletter-section .content-title{
    letter-spacing: 0;
    margin-bottom: 15px;
}
#newsletter-form-wrapper {
    padding: 3% 0; /*5% 0 6.66666666666667%; *//* 15px / 300px */ /* 20px / 300px */
}

#newsletter-form .checkboxes-wrapper2 label {
    text-transform: none !important;
    font-size: small !important;
}

#newsletter-form .checkboxes-wrapper2 label input {
    margin-right: 5px !important;
    position: relative !important;
    top: 2px !important;
}

#newsletter-form label {
    color: #3a3a3a;
    text-transform: uppercase;
    display: block;
    margin: 0 0 8px 0;
}
#newsletter-form label.newsletter_form_news_label {
    font-size: 1em !important;
    font-weight: bold;
}
.newsletter_form_news {
    margin-top:60px;
}
.width4 #newsletter-form label{
    font-size: 1rem;
    line-height: 1.2;
    text-transform: none;
}
.width4 #newsletter-form .input-group{
    margin-bottom: 10px;
}

#newsletter-form .input-text {
    width: 85.5%;
    padding: 1.5% 12% 1.5% 1.5%;
    font-size: 1em;
    background: url("../medias/images/newsletter.png") no-repeat 98% 50%;
}

.home #newsletter-form label {
    display: inline-block;
    margin: 0 0 15px 0;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
    text-transform: none;
}

.home #newsletter-form .input-group {
    justify-content: center;
}
.home #newsletter-form .input-text {
    width: 37.09677419354839%; /* 230px / 620px */
    padding: 1.29032258064516% 0.80645161290323% 1.29032258064516%
        6.45161290322581%; /* 5px / 620px | 8px / 620px | 40px / 620px */
    background: url("../medias/images/newsletter.png") no-repeat 3% 50% #ffffff;
    font-style: italic;
    margin: 15px 0;
    box-shadow: none;
}

.home #newsletter-form-wrapper {
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

#newsletter-form .submit {
    background: #4abced;
}
/* end form newsletter */

.submit {
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    vertical-align: middle;
    height: 46px;
    color: #fff;
    background: #b9b748;
    text-align: center;
    -webkit-transition: background-color 75ms linear;
    -moz-transition: background-color 75ms linear;
    -ms-transition: background-color 75ms linear;
    -o-transition: background-color 75ms linear;
    transition: background-color 75ms linear;
    font-size: 1rem;
    line-height: 1;
    font-weight: bold;
}

.submit:hover {
    background: #c5c34d;
}

.newsletter-submit {
    padding: 0 2.41935483870968%; /* 15px / 620px */
}

.contact-submit {
    padding: 0 25px;
    width: auto;
}

/* CONTACT */
#contact-form-wrapper {
    overflow: hidden;
}

.message {
    font-size: 1.25em; /* 20px / 16px */
    font-family: 'azosans', Arial, sans-serif;
    margin-bottom: 3.2258064516129%; /* 20px / 620px */
}

.job-apply .message {
    margin-bottom: 2.12765957446809%; /* 20px / 940px */
}

.message.success {
    color: #b9b748;
}

.message.error {
    color: #ee6557;
}

.contact h1 img {
    float: right;
    max-width: 100%;
    margin-top: 1.59574468085106%; /* 15px / 940px */
    margin-right: 1.59574468085106%; /* 15px / 940px */
}

.contact-buttons {
    overflow: hidden;
    list-style-type: none;
    padding: 15px 0 2.65957446808511%; /* 15px / 940px | 25px / 940px */
}

.contact .explain p {
    color: #5b5b5b;
    font-size: 1.125em; /* 18px / 16px */
    font-family: 'azosans', Arial, sans-serif;
    padding-bottom: 3.2258064516129%; /* 20px / 620px */
    margin: 0;
}

.contact-buttons li {
    float: left;
    margin-left: 2.12765957446809%; /* 20px / 940px */
}

.contact-buttons li:first-child {
    margin-left: 0;
}

.contact-button {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    color: #3a3a3a;
    background-color: #e0e0e0;
    background-repeat: no-repeat;
    text-align: center;
    -webkit-transition: color 75ms, background-color 75ms linear;
    -moz-transition: color 75ms, background-color 75ms linear;
    -ms-transition: color 75ms, background-color 75ms linear;
    -o-transition: color 75ms, background-color 75ms linear;
    transition: color 75ms, background-color 75ms linear;
    height: auto;
    padding: 12px 0;
    background-position: 20px -8px;
}

.contact-button:hover,
.contact-button.active {
    background-color: #4abced;
    background-position: 20px -70px;
    color: #fff;
}

.contact-button.contact-quote-button {
    background-image: url("../medias/images/contact-quote.png");
}

.contact-button.contact-question-button {
    background-image: url("../medias/images/contact-question.png");
}

.contact-button.contact-apply-button {
    background-image: url("../medias/images/contact-apply.png");
}

.contact h1 {
    overflow: hidden;
}

.contact h1 span {
    float: left;
}

.contact h1 .contact-button {
    float: right;
}

.contact .address {
    text-align: center;
    margin-bottom: 20px;
}

.contact .address h3 {
    font-size: 1.125em; /* 18px / 16px */
    margin-bottom: 2%; /* 6px / 300px */
}

.contact .address p {
    margin-bottom: 2%; /* 6px / 300px */
    font-size: 0.6875em; /* 11px / 16px */
}

.contact .address a {
    color: #eb452f;
}
.contact .address a:hover {
    color: #f77567;
}

.form-left,
.form-right {
    float: left;
}

.form-bottom {
    display: none; /* anti bot sans captcha */
}

.contact .form-left {
    margin-right: 2.12765957446809%; /* 20px / 940px */
}

.job-apply .form-left {
    margin-right: 2.12765957446809%; /* 20px / 940px */
}

.contact form p,
.job-apply form p {
    margin-bottom: 2.25806451612903%; /* 14px / 620px */
}

.contact .form-left p,
.contact .form-right p {
    margin-bottom: 4.66666666666667%; /* 14px / 300px */
}

.job-apply .form-left p,
.job-apply .form-right p {
    margin-bottom: 3.04347826086957%; /* 14px / 460px */
}

.contact .textarea {
    width: 98.06451612903226%; /* 608px / 620px */
    height: auto;
    padding: 0.80645161290323%; /* 5px / 620px */
    margin-bottom: 2.25806451612903%;
    display: block;
}

.contact .input-text {
    width: 96%; /* 288px / 300px */
    padding: 1.66666666666667%; /* 5px / 300px */
}

.job-apply .input-text {
    width: 96%; /* 288px / 300px */
    padding: 1.08695652173913%; /* 5px / 460px */
}

.job-apply label {
    color: #a8a8a8;
}

.contact .input-text,
.contact .textarea,
.contact .dropdown,
.job-apply .input-text,
.job-apply .dropdown {
    font-size: 1em; /* 12px */
}

#google-map {
    padding-top: 40px;
}

#google-map iframe {
    /*padding-top: 3.33333333333333%; */ /* 10px / 300px */
    float: left;
    margin-right: 2.12765957446809%; /* 20px / 940px */
}

#other-addresses {
    /*clear: left;*/
    /*padding-top: 2.12765957446809%;*/ /* 20px / 940px */
}

#other-addresses .address {
    margin-left: 2.12765957446809%; /* 20px / 940px */
}

#other-addresses .address:first-child {
    margin-left: 0;
}

#google-map a {
    display: block;
}

.contact #col-right {
    /*padding-top: 1.06382978723404%; */ /* 10px / 940px */
    /*padding-left: 0;*/
    padding-top: 25px;
}

#social-links-wrapper .social-links {
    width: 128px;
    margin: 0 auto;
    padding-top: 10px;
}
#social-links-wrapper .social-links:hover .social-link {
    opacity: 1;
}

#social-links-wrapper .social-link.google {
    background-position: 0 -24px;
}

#social-links-wrapper .social-link.facebook {
    background-position: -24px -24px;
}

#social-links-wrapper .social-link.twitter {
    background-position: -48px -24px;
}

#social-links-wrapper .social-link.linkedin {
    background-position: -72px -24px;
}

#addresses {
    /*clear: left;
    padding-top: 20px;*/
    padding-top: 10px;
    padding-bottom: 20px;
}

.contact .floats-wrapper {
    overflow: hidden;
}

.contact .floats-wrapper p {
    float: left;
    width: 46%; /* 138px / 300px */
    margin-left: 6.66666666666667%; /* 20px / 300px */
}

.contact .floats-wrapper p:first-child {
    margin-left: 0;
}

.contact .floats-wrapper p .input-text {
    width: 94.20289855072464%; /* 130px / 138px */
    padding: 3.6231884057971%; /* 5px / 138px */
}

.contact .submit-wrapper {
    text-align: right;
}

.job-apply h1 {
    margin-bottom: 15px;
}

.contact #col-left h3 {
    font-size: 1.25em; /* 20px / 16px */
    margin-bottom: 2.25806451612903%; /* 14px / 620px */
}

.contact .checkboxes-wrapper,
.contact .checkboxes-wrapper2 {
    overflow: hidden;
    margin-bottom: 1.612903225806452%; /* 10px / 620px */
}

.contact .checkboxes-wrapper label {
    float: left;
    /*width: 33.2258064516129%; */ /* 206px / 620px */
    width: 31.91489361702128%; /* 300px / 940px */
    /*margin-bottom: 1.61290322580645%; */ /* 10px / 620px */
    margin-bottom: 1.06382978723404%; /* 10px / 940px */
    overflow: hidden;
    o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-size: 0.9166666666666667em; /* 11px / 12px */
}

.contact .checkboxes-wrapper2 label {
    margin-bottom: 1.06382978723404%; /* 10px / 940px */
    overflow: hidden;
    o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-size: 0.9166666666666667em; /* 11px / 12px */
}

.contact .checkboxes-wrapper input,
.contact .checkboxes-wrapper2 input {
    margin-right: 1.45631067961165%; /* 3px / 206px */
    position: relative;
    top: 2px;
}

/* COMPANY TUNNEL PAGE */
.company-home-item {
    background: #f0f0f0;
    height: 300px;
    width: 300px;
    float: left;
    margin: 10px;
    overflow: hidden;
}

.company-home-item img {
    display: block;
    border: none;
    margin: 6.66666666666667% auto 8.33333333333333%; /* 20px / 300px | 25px / 300px */
    max-width: 100%;
}

.company-home-item a {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    overflow: hidden;
}

.company-home-item .title {
    color: #3a3a3a;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    display: inline-block;
    cursor: pointer;
    font-size: 1.75rem;
    line-height: 1;
    font-family: 'azosans',Arial,sans-serif;
    font-weight: bold;
}

.company-home-item .title span {
    display: block;
    font-size: 64.1025641025641%; /* 25px / 39px */
}

.company-home-item img {
    border: none;
}

.company-home-presentation {
    width: 620px;
}

.company-home-presentation img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    margin-top: 0;
    max-width: 55.80645161290323%; /* 346px / 620px */
}

.company-home-presentation .title {
    float: left;
    width: 35.48387096774194%; /* 220px / 620px */
    position: relative;
    z-index: 1;
    top: 44%;
}

.company-home-expertise img {
    position: relative;
    z-index: 0;
    margin: 0;
}

.company-home-expertise .title {
    width: 100%;
    position: absolute;
    top: 44%;
}

/* entreprise presentation */
.entreprise .text-container h2 {
    font-size: 1.8125em; /* 29px / 16px */
    margin-bottom: 4%; /* 28px / 700px */
    color: #5b5b5b;
}

.entreprise .text-container h3 {
    font-size: 1.5625em; /* 25px / 16px */
    margin-bottom: 1.42857142857143%; /* 10px / 700px */
}

.content-cols-container {
    overflow: hidden;
}

.content-cols-container > div {
    float: left;
    margin-left: 2.85714285714286%; /* 20px / 700px */
}

.content-cols-container > div:first-child {
    margin-left: 0;
}

.content-cols-container p {
    text-align: justify;
}

.content-cols-container h3 {
    text-align: center;
}

.content-cols-container.produweb-experts-clients h3 {
    text-align: left;
}

.content-cols-container img {
    margin: 0 auto 6.81818181818182%; /* 15px / 220px */
}

.content-cols-container.produweb-experts-clients img {
    margin: 0 0 6.81818181818182%; /* 15px / 220px */
}

.content-cols-container.produweb-today {
    padding: 2.85714285714286% 0; /* 20px / 700px */
}

.presentation-certifs {
    padding: 4.28571428571429% 0 2.85714285714286%; /* 30px / 700px */ /* 20px / 700px */
}

.presentation-certifs > div {
    overflow: hidden;
    margin-bottom: 10px;
}

.presentation-certifs div div:first-child {
    float: left;
    margin-right: 2.85714285714286%; /* 20px / 700px */
    vertical-align: middle;
    margin-top: -1.42857142857143%; /* 10px / 700px */
}

.presentation-full-service div {
    overflow: hidden;
}

.presentation-full-service img {
    width: 10%; /* 70px / 700px */
    float: left;
}

.presentation-full-service p {
    padding: 3.57142857142857% 0 2.14285714285714%; /* 25px / 700px */ /* 15px / 700px */
    color: #b3b3b3;
}

.content-cols-container .content-cols-container-team h3,
.content-cols-container .content-cols-container-clients h3 {
    text-align: left;
}

/* entreprise expertise */
.entreprise-expertise .content-cols-container h3,
.entreprise-expertise .content-cols-container p {
    text-align: left;
}

.entreprise-expertise .content-cols-container div ul {
    padding-left: 10%; /* 30px / 300px */
}

.entreprise-expertise .content-cols-container div:first-child ul {
    padding-left: 7.89473684210526%; /* 30px / 380px */
}

.entreprise-expertise .text-container li {
    font-size: 0.6875em; /* 11px / 16px */
}

.entreprise-expertise .text-container h2 {
    margin-bottom: 4.28571428571429%; /* 30px / 700px */
}

.expertise-circle {
    margin: 4.28571428571429% auto;
}

.expertise-circle img {
    margin-left: -13.33333333333333%; /* 40px / 300px */
}

/* entreprise presentation */
.entreprise-presentation .client-type-list {
    padding-top: 11.66666666666667%; /* 35px / 300px */
}

.entreprise-presentation .client-type-list li {
    width: 18%; /* 54px / 300px */
    margin-left: 3.33333333333333%; /* 10px / 300px */
}

.entreprise-presentation .client-type-list li:first-child {
    margin-left: 0;
}

/* entreprise equipe */
.entreprise-equipe .text-container h2 {
    margin-bottom: 2.85714285714286%; /* 20px / 700px */
}

.entreprise-equipe .content-cols-container {
    padding: 2.85714285714286% 0; /* 20px / 700px */
}

/* entreprise methodo */
.entreprise-methodo .content-cols-container {
    padding-bottom: 1.42857142857143%; /* 10px / 700px */
}

.entreprise-methodo .text-container h3 {
    text-align: left;
}

.entreprise-methodo .text-container h3 span {
    display: block;
}

.entreprise-methodo .text-container h3 :first-child {
    color: #a5a5a5;
}

.entreprise-methodo .methodo-meeting-design div,
.entreprise-methodo .methodo-meeting-prog div {
    margin-left: 14.28571428571429%; /* 100px / 700px */
}

.entreprise-methodo .methodo-meeting-design div:first-child,
.entreprise-methodo .methodo-meeting-prog div:first-child {
    margin-left: 0;
}

.entreprise-methodo .methodo-meeting-prog div:first-child {
    margin-top: 10%; /* 70px / 700px */
}

.methodo-creation-pages img,
.methodo-online img {
    margin-bottom: 1.42857142857143%; /* 10px / 700px */
}

.methodo-creation-pages div,
.methodo-online div {
    margin-left: 0;
}

.methodo-futur div {
    margin-top: 4.28571428571429%; /* 30px / 700px */
}

.methodo-futur div:first-child {
    margin-top: 0;
}

.methodo-url-check {
    overflow: visible;
}

.entreprise-methodo .content-inner {
    overflow: visible;
}

.methodo-url-check img {
    margin-bottom: 0;
}

.methodo-check img {
    /*max-width: 122.1052631578947%; !* 464px / 380px *!*/
}

.methodo-validation-prog {
    clear: left;
}

.methodo-validation-design,
.methodo-validation-prog {
    padding-top: 1.42857142857143%; /* 10px / 700px */
}

.methodo-futur {
    padding-top: 7.14285714285714%; /* 50px / 700px */
}

.methodo-validation-prog {
    padding-bottom: 1.42857142857143%; /* 10px / 700px */
}

.methodo-validation-design div,
.methodo-validation-prog div {
    margin-top: 7.14285714285714%; /* 50px / 700px */
}

.methodo-validation-design div:first-child,
.methodo-validation-prog div:first-child {
    margin-top: 0;
}

.entreprise-methodo .methodo-meeting-prog {
    padding-bottom: 2.85714285714286%; /* 20px / 700px */
}

.methodo-meeting-design {
    padding-bottom: 1.42857142857143%; /* 10px / 700px */
}

/* testimonials list */
.testimonials-intro {
    overflow: hidden;
    padding: 2.12765957446809% 0; /* 20px / 940px */
}

.testimonials-intro div {
    float: left;
    margin-left: 2.12765957446809%; /* 20px / 940px */
}

.testimonials-intro img {
    max-width: 100%;
}

.testimonials-intro h2 {
    color: #5b5b5b;
    font-size: 18px;
}

.testimonials-intro div:first-child {
    margin-left: 0;
}

.testimonial {
    overflow: hidden;
    margin-bottom: 2.12765957446809%; /* 20px / 940px */
}

.testimonial .reference-item {
    margin: 0 2.12765957446809% 0 0; /* 20px / 940px */
}

.testimonial .float {
    float: left;
}

.testimonial .author-name {
    font-size: 0.8181818181818182em; /* 18px / 22px */
    line-height: 1.2em;
}

.testimonial .author-function {
    font-size: 0.5em; /* 11px / 22px */
    font-family: Arial, sans-serif;
    text-transform: none;
    line-height: 1em;
}

.testimonial .text-container {
    padding-top: 10px;
}

/* company team background */
.team-content-background {
    margin-bottom: 4.28571428571429%; /* 30px / 700px */
}

.team-content-background .glass-picture {
    margin-left: 0;
    width: 34.28571428571429%; /* 240px / 700px */
}

.team-content-background ul {
    list-style-type: none;
    border-top: 1px solid #aeaeae;
    padding-top: 7.14285714285714%; /* 10px / 140px */
    margin-top: 39.28571428571429%; /* 55px / 140px */
}

.team-content-background li {
    font-family: 'azosans', Arial, sans-serif;
    color: #aeaeae;
    font-size: 1.1875em; /* 19px / 16px */
    text-transform: uppercase;
}

.entreprise .team-content-background h2 {
    color: #aeaeae;
    padding: 0;
    margin: 0;
    font-family: "Copse", Arial, sans-serif;
    text-transform: none;
    padding-top: 15%; /* 45px / 300px */
}

.team-content-background p {
    font-family: "Copse", Arial, sans-serif;
    font-size: 1.375em; /* 22px / 16px */
    color: #aeaeae;
    text-align: left;
}

/* VIDEOS */
#player-wrapper,
#playlist-wrapper {
    float: left;
}

#playlist-wrapper {
    margin-left: 2.12765957446809%; /* 20px / 940px */
}

#player-wrapper {
    overflow: hidden;
}

#player,
.video-js {
    width: 100% !important;
}

#playlist-wrapper ul {
    list-style-type: none;
}

#playlist-wrapper li {
    margin-bottom: 12px;
    font-size: 1.125em; /* 18px / 16px */
    line-height: 0.95em;
}

#playlist-wrapper a {
    font-family: 'azosans', Arial, sans-serif;
    text-decoration: none;
    color: #3a3a3a;
    -webkit-transition: color 75ms linear;
    -moz-transition: color 75ms linear;
    -ms-transition: color 75ms linear;
    -o-transition: color 75ms linear;
    transition: color 75ms linear;
    text-transform: uppercase;
}

#playlist-wrapper a:hover,
#playlist-wrapper a.active {
    color: #4abced;
}

/* sitemap */
.sitemap,
.sitemap ul {
    list-style-type: none;
}

.sitemap ul {
    padding-left: 20px;
}

.sitemap a {
    text-decoration: none;
    color: #3a3a3a;
    font-size: 0.75em; /* 12px / 16px */
    -webkit-transition: color 75ms linear;
    -moz-transition: color 75ms linear;
    -ms-transition: color 75ms linear;
    -o-transition: color 75ms linear;
    transition: color 75ms linear;
}

.sitemap > li > a {
    font-family: 'azosans', Arial, sans-serif;
    font-size: 1.25em; /* 20px / 16px */
    text-transform: uppercase;
}

.sitemap a:hover {
    color: #4abced;
}

.sitemap > li > ul {
    padding-top: 10px;
}

.sitemap > li {
    padding-bottom: 10px;
}

/* breadcrumbs */
#breadcrumbs {
    font-size: .625rem;
    font-family: 'azosans', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 8px;
}
#breadcrumbs div {
    display: inline;
}

#breadcrumbs a {
    text-decoration: none;
    color: #5b5b5b;
    -webkit-transition: color 75ms linear;
    -moz-transition: color 75ms linear;
    -ms-transition: color 75ms linear;
    -o-transition: color 75ms linear;
    transition: color 75ms linear;
}

#breadcrumbs a:hover,
#breadcrumbs .active {
    color: #4abced;
}

.service-page #breadcrumbs {
    padding-bottom: 0;
    padding-top: 20px;
    padding-left: 10px;
}

/* search */
.search-keyword {
    font-size: 0.75em; /* 12px / 16px */
    margin-bottom: 1.59574468085106%; /* 15px / 940px */
}

.search-keyword span {
    font-style: italic;
}

.search .button-more {
    padding-left: 1.27659574468085%; /* 12px / 940px */
    padding-right: 3.19148936170213%; /* 30px / 940px */
    margin-top: 1.06382978723404%; /* 10px / 940px */
}

.search .search-result-item {
    padding: 1.06382978723404% 0 1.59574468085106%; /* 10px / 940px */ /* 15px / 940px */
    padding-left: 2.12765957446809%; /* 20px / 940px */
}

.search-result-item h3 {
    margin-bottom: 1.06382978723404%; /* 10px / 940px */
}

.search .search-category {
    padding-top: 1.06382978723404%; /* 10px / 940px */
}

.search-result-item h3 a {
    text-decoration: none;
    color: #5b5b5b;
    -webkit-transition: color 75ms linear;
    -moz-transition: color 75ms linear;
    -ms-transition: color 75ms linear;
    -o-transition: color 75ms linear;
    transition: color 75ms linear;
}

.search-result-item h3 a:hover {
    color: #4abced;
}

.search-result-item .highlight {
    font-weight: bold;
    background-color: yellow;
}

/* press */
.press .float {
    float: left;
    margin-left: 2.12765957446809%; /* 20px / 940px */
}

.press .float:first-child {
    margin-left: 0;
}

.press-list {
    list-style-type: none;
}

.press-list span {
    display: block;
    font-size: 0.75em; /* 12px / 16px */
}

.press-list a {
    margin-bottom: 0;
    font-family: 'azosans', Arial, sans-serif;
    text-transform: uppercase;
    line-height: 0.875em; /* 14px / 16px */
}

.press-list li {
    margin-bottom: 4.34782608695652%; /* 20px / 460px */
}

/* videos */
.videos .content-separator span {
    padding: 12px 10px;
}

.videos #newsletter-form-wrapper {
    padding-top: 0;
}

.videos #newsletter-form .input-text {
    width: 76.66666666666667%; /* 230px / 300px */
    padding: 1.66666666666667% 13.33333333333333% 1.66666666666667%
        2.66666666666667%; /* 5px / 300px | 8px / 300px | 40px / 300px */
}

/* clients types pages */
.clients-type .detail-services-list {
    padding: 2.27272727272727% 0 5.45454545454545%; /* 5px / 220px | 12px / 220px */
}

.clients-type .detail-services-list li {
    float: none;
    width: 100%;
}

.clients-type #newsletter-form label {
    font-size: 1.333333333333333em; /* 16px / 12px */
    margin-bottom: 5px;
}

/* entreprise certifs page */
.certifs-page-header {
    padding-bottom: 30px;
}

.certif div {
    padding-top: 5px;
}

.certif div:first-child {
    padding-top: 0;
}

/* offre noel 2014 */
.offre-noel-2014 {
    width: 960px;
    float: left;
    background: url("/medias/images/offre-noel-2014-background.jpg") top center
        no-repeat;
    text-align: center;
}
.offre-noel-2014-content {
    float: left;
    width: 940px;
    margin: 560px auto 0 auto;
    text-align: left;
    font-family: Arial;
    font-size: 11px;
    color: #3a3b3a;
}
.offre-noel-2014-content span {
    font-family: Arial;
    font-size: 12px;
    color: #3a3b3a;
}

/* widget contact */
.home #widget_contact{
    display: none;
}
#widget_contact {
    z-index: 9999999;
    position: fixed;
    top: 60%;
    margin-top: -130px;
    right: -255px;
    width: 255px;
}
#widget_contact_btn {
    left: -50px;
    width: 80px;
    height: 60px;
    top: 0px;
    position: absolute;
    background: #eb452f url("/medias/images/widget_contact_picto_bt.png") 13px
        20px no-repeat;
    cursor: pointer;

    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;

    /*border-left: 1px solid white;*/
}
#widget_contact.opened #widget_contact_btn {
    background-image: url("/medias/images/widget_contact_picto_bt_opened.png");
}
#widget_contact_content_inner {
    /*border: 1px solid #ffffff;
    border-right: none;*/
}
#widget_contact_content_text {
    padding: 10px 10px 10px 30px;
    min-height: 40px;
    background-color: #eb452f;

    font-size: 1.125rem;
    line-height: 1.15;
    font-family: 'azosans', Arial, sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}
#widget_contact_content_form {
    background: #e15a4b url("/medias/images/widget_contact_picto_bg.png") left
        bottom no-repeat;
    padding-top: 17px;
}
#widget_contact_content_form dl {
    margin: 0;
    padding: 0;
}
#widget_contact_content_form p {
    margin: 0 30px 5px 30px;
}
#widget_contact_content_form p.success,
#widget_contact_content_form p.error {
    color: #ffffff;
}
#widget_contact_content_form .input-txt {
    padding: 5px 4%;
    width: 92%;
    border: none;
    font-family: Arial, sans-serif;
}

#widget_contact_content_form p.btn {
    font-size: 1em;
    margin: 0 15px 0 70px;
    padding: 5px 0 10px 0;
}
#widget_contact_content_form .input-sbt {
    border: none;
    background-color: transparent;
    font-family: 'azosans', Arial, sans-serif;
    font-size: 1.7em;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;

    /*margin: 5px 20px 10px 75px;*/
    margin: 0;
    padding: 0;
    width: 100%;
}

@media screen and (max-width: 580px) {
    #widget_contact{
        display: none;
    }
    #widget_contact {
        top: 30% !important;
    }
    #widget_contact_content_text {
        font-size: 1.5em !important;
    }
    #widget_contact_content_form {
        text-align: center;
    }
    #widget_contact_content_form img {
        width: 110px !important;
    }
    #widget_contact_content_link {
        font-size: 1.5em !important;
    }
}

article ul,
article ol {
    list-style-position: outside;
    padding-left: 40px;
}

.call-to-action-button {
    padding: 10px 30px;
    margin: 10px 0;
    background-image: none;
    display: inline-block;
    font-size: 1.25rem;
    -webkit-transition: color 75ms, background-color 75ms linear;
    -moz-transition: color 75ms, background-color 75ms linear;
    -ms-transition: color 75ms, background-color 75ms linear;
    -o-transition: color 75ms, background-color 75ms linear;
    transition: color 75ms, background-color 75ms linear;
    color: #ffffff !important;
}

.call-to-action-button.green {
    background-color: #4aac51;
}
.call-to-action-button.green:hover {
    color: #4aac51 !important;
}
.call-to-action-button.green-light {
    background-color: #8eb645;
}
.call-to-action-button.green-light:hover {
    color: #8eb645 !important;
}
.call-to-action-button.yellow {
    background-color: #ffbc00;
}
.call-to-action-button.yellow:hover {
    color: #ffbc00 !important;
}
.call-to-action-button.orange {
    background-color: #f98200;
}
.call-to-action-button.orange:hover {
    color: #f98200 !important;
}
.call-to-action-button.red {
    background-color: #ee6557;
}
.call-to-action-button.red:hover {
    color: #ee6557 !important;
}
.call-to-action-button.mauve {
    background-color: #9e5dc9;
}
.call-to-action-button.mauve:hover {
    color: #9e5dc9 !important;
}
.call-to-action-button.blue {
    background-color: #5672d8;
}
.call-to-action-button.blue:hover {
    color: #5672d8 !important;
}
.call-to-action-button.fuschia {
    background-color: #f752ac;
}
.call-to-action-button.fuschia:hover {
    color: #f752ac !important;
}
.call-to-action-button.blue-light {
    background-color: #4abced;
}
.call-to-action-button.blue-light:hover {
    color: #4abced !important;
}
.call-to-action-button.blue-green {
    background-color: #00bfba;
}
.call-to-action-button.blue-green:hover {
    color: #00bfba !important;
}

.call-to-action-button:hover {
    background-color: #e7e7e7;
}

.article-35,.article-35>* {
	text-align:center;
}
.article-35 img {
	display:inline !important;
}
.article-35 .width4 {
	float: left;
	width:33.33% !important;
}
.article-35 .width4 a {
	text-decoration: none;
}
.article-35 .width4 div {
	font-family: 'azosans',Arial,sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 1.4em;
	color: #fff;
	padding: 30px 5px;
	margin: 10px;
}

.article-35 .width4 div.elem1 {
	background-color: #ee6557;
}
.article-35 .width4 div.elem2 {
	background-color: #4abced;
}
.article-35 .width4 div.elem3 {
	background-color: #b9b748;
}

/*Utilities*/
.bg-blue{background-color: #36bdee;}
.bg-light-blue{background-color: #f5fcfe;}
.bg-green{background-color: #b8b949;}
.bg-light-green{background-color: #fbfbf5;}
.bg-red{background-color: #eb452f;}
.bg-light-red{background-color: #ebd6d3;}
.bg-yellow{background-color: #faa72a;}
.bg-light-yellow{background-color: #faf0e1;}

.input-group{
    display: flex;
    align-items: center;
}


.hamburglar {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    margin: 15px auto;
    position: relative;
    display: block;
    width: 64px;
    height: 64px;
    background: #36bdee;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 32px;
}

#top, #bottom {
    position: absolute;
    display: block;
    height: 4px;
    width: 36px;
    border-radius: 2px;
    background: #fff;
}

#top {
    top: 19px;
    left: 14px;
}

#bottom {
    top: 41px;
    left: 14px;
}

path, line {
    stroke: #fff;
    stroke-linecap: round;
}

#top, #bottom {
    -webkit-transform-origin: 34px 2px;
    transform-origin: 34px 2px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 500ms cubic-bezier(0.8, -1.1, 0.5, 1.9);
}

#circle {
    stroke-dasharray: 1 100 32 300;
    stroke-dashoffset: 101;
    transition: all 750ms ease;
}

.hamburglar.is-closed {
    border-radius: 32px;
}
.hamburglar.is-closed svg{
    width: 66px;
    height: 66px;
    margin: -1px 0 0 -1px;
}
.hamburglar.is-closed #circle {
    stroke-dasharray: 1 100 190 300;
    stroke-dashoffset: 1;
}
.hamburglar.is-closed #top {
    -webkit-transform: translateX(-4.5px) rotate(-45deg);
    transform: translateX(-4.5px) rotate(-45deg);
}
.hamburglar.is-closed #bottom {
    -webkit-transform: translateX(-4.5px) rotate(45deg);
    transform: translateX(-4.5px) rotate(45deg);
}

/*Welcome*/
.welcome,
.welcome *{
    box-sizing: border-box;
}
.welcome{
    position: relative;
    background: #faa72a;
    display: flex;
    overflow: hidden;
}
.welcome .welcome-left{
    width: 60%;
    transform: skew(-24.9deg);
    transform-origin: bottom right;
    background: #faa72a;
}
.welcome .welcome-left:last-child{
    transform-origin: top left;
}
.welcome .welcome-left .welcome-left-inner{
    transform: skew(24.9deg) skewX(-5deg);
    transform-origin: bottom right;
    min-height: 60vh;
    padding: 60px 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.welcome .welcome-left:last-child .welcome-left-inner{
    transform-origin: top left;
}
.welcome.end .welcome-left .welcome-left-inner{
    padding: 60px 5%;
}
.welcome .welcome-left .welcome-left-inner .welcome-title{
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,.15));
    line-height: 1;
    min-height: 3em;
    display: flex;
    align-items: center;
}
@media (max-width: 480px){
    .welcome .welcome-left .welcome-left-inner .welcome-title{
        min-height: 4em;
    }
}
.welcome.end .welcome-left .welcome-left-inner .welcome-title{
    font-size: 2rem;
    min-height: 0;
}
.welcome .welcome-left .welcome-left-inner .highlight{
    font-family: "azosans", Arial, sans-serif;
    font-size: 1.5rem;
    background: #ffffff;
    margin: 0 5px 5px 0;
    padding: 2px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
}
.welcome .welcome-left .welcome-left-inner p{
    color: white;
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.welcome .welcome-left .welcome-left-inner .welcome-btn{
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
    line-height: 1;
    font-weight: bold;
    display: inline-block;
    padding: 15px 20px;
    text-transform: uppercase;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all .3s;
    box-shadow: 3px 3px 0 rgba(0,0,0,.2);
}
.welcome .welcome-left .welcome-left-inner .welcome-btn:hover{
    background: #eb452f;
    color: #ffffff;
    box-shadow: 3px 3px 5px rgba(0,0,0,.2);
    transform: scale(1.1);
}
.welcome-btn.anim-1{
    animation: welcomeBtn2 3s infinite alternate 0s;
}
.welcome-btn.anim-2{
    animation: welcomeBtn2 3s infinite alternate 1.5s;
}
.welcome-btn.anim-3{
    animation: welcomeBtn2 3s infinite alternate 3s;
}
@keyframes welcomeBtn2 {
    0%{
        transform: translateX(0);
    }
    70%{
        transform: translateX(0);
    }
    80%{
        transform: translateX(15px);
    }
    100%{
        transform: translateX(15px);
    }
}
@keyframes welcomeBtn1 {
    0%{
        background: #ffffff;
        color: #000000;
        box-shadow: 3px 3px 0 rgba(0,0,0,.2);
        transform: scale(1);
    }
    70%{
        background: #ffffff;
        color: #000000;
        box-shadow: 3px 3px 0 rgba(0,0,0,.2);
        transform: scale(1);
    }
    80%{
        background: #eb452f;
        color: #ffffff;
        box-shadow: 3px 3px 5px rgba(0,0,0,.2);
        transform: scale(1.1);
    }
    100%{
        background: #eb452f;
        color: #ffffff;
        box-shadow: 3px 3px 5px rgba(0,0,0,.2);
        transform: scale(1.1);
    }
}
.welcome-left-inner:hover .welcome-btn.anim-1,
.welcome-left-inner:hover .welcome-btn.anim-2,
.welcome-left-inner:hover .welcome-btn.anim-3{
    animation: none;
}
.welcome .welcome-left .welcome-left-inner ul + .welcome-btn{
    margin-top: 15px;
}
.welcome.end .welcome-left .welcome-left-inner .welcome-btn{
    margin-top: 15px;
}
.welcome .welcome-left .welcome-left-inner .welcome-btn i{
    margin-left: 5px;
}
.welcome .welcome-right{
    background: 0 0 repeat scroll #eb452f;
    background-image: url("../medias/images/bg-page-header.png"),url("../medias/images/bg-page-header-dark.png");
    background-size: 1920px,960px;
    width: 40%;
    -webkit-animation-name: pdwwelcome;
    animation-name: pdwwelcome;
    -webkit-animation-timing-function: cubic-bezier(1, 0.5, 0, 0.5);
    animation-timing-function: cubic-bezier(1, 0.5, 0, 0.5);
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes pdwwelcome{
    from{background-position:0 0}
    to{background-position:1920px -4160px,3840px -8320px}
}
.hover-item svg {
    width: 100%;
    max-height: 100%;
}
.hover-item svg path{
    stroke: none;
}
.hover-item{
    position: absolute;
    top: 30px;
    right: -40%;
    width: 50%;
    bottom: 30px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    filter: drop-shadow(3px 3px 0px rgba(0,0,0,.3));
    transform: skewX(5deg);
    transform-origin: center center;
}
a:hover + .hover-item{
    transform: skewX(5deg) scale(1.2);
    filter: drop-shadow(3px 3px 2px rgba(0,0,0,.3));
}
.hover-item.visibility{
    z-index: 3;
}
.hover-item.website{
    z-index: 2;
}
.hover-item.strategy{
    z-index: 1;
}

.flex-row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
}
.flex-row *{
    box-sizing: border-box;
}
.flex-row img{
    max-width: 100%;
    height: auto;
}
.flex-row .content-left{
    width: 45%;
    padding: 15px;
}
.flex-row .content-right{
    width: 55%;
    padding: 15px;
}
.home .flex-row h2,
.flex-row h2{
    font-size: 2rem;
    margin-bottom: 20px;
}
.flex-row p{
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 15px;
}
.flex-row ul{
    list-style: outside;
    margin-bottom: 15px;
    padding-left: 45px;
}
.flex-row ul.list-style-none {
    margin-bottom: 15px;
    padding-left: 0;
    list-style: none;
}
.flex-row li{
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 5px;
}
.flex-row .more-link{
    margin-top: 5px;
}
#acteurs .content-inner{
    padding-top: 0;
}
#acteurs .more-link{
    background-color: #eb452f;
}
/*Conseils*/
.bg-conseils{
    background-color: #4aac51;
    color: #ffffff;
}
.bg-seo{
    background-color: #ee6557;
    color: #ffffff;
}
.bg-website{
    background-color: #ffbc00;
    color: #ffffff;
}
.bg-website h4,
.bg-seo h4,
.bg-conseils h4{
    color: #ffffff;
}
.bg-website p,
.bg-seo p,
.bg-conseils p{
    color: #ffffff;
}
.bg-website .more-link.invert{
    color: #ffbc00;
}
.bg-seo .more-link.invert{
    color: #ee6557;
}
.bg-conseils .more-link.invert{
    color: #4aac51;
}
.welcome.conseils{
    background-color: #4aac51;
}
.welcome.seo{
    background-color: #ee6557;
}
.welcome.website{
    background-color: #ffbc00;
}
.welcome.conseils .welcome-left{
    background-color: #4aac51;
}
.welcome.seo .welcome-left{
    background-color: #ee6557;
}
.welcome.website .welcome-left{
    background-color: #ffbc00;
}
.welcome .welcome-left ul{
    padding-left: 30px;
}
.welcome .welcome-left ul li{
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 10px;
}
.welcome.website .welcome-right{
    background: center center no-repeat scroll #ee6557;
    background-size: cover;
    -webkit-animation-name: none;
    animation-name: none;
}
.welcome.seo .welcome-right,
.welcome.conseils .welcome-right{
    background: center center no-repeat scroll #faa72a;
    background-size: cover;
    -webkit-animation-name: none;
    animation-name: none;
}
.welcome.website .welcome-right{
    background-image: url("../medias/images/website-welcome.jpg");
}
.welcome.seo .welcome-right{
    background-image: url("../medias/images/seo-welcome.jpg");
}
.welcome.conseils .welcome-right{
    background-image: url("../medias/images/conseils-welcome.jpg");
}
.welcome.website.end .welcome-right{
    background-image: url("../medias/images/website-end.jpg");
}
.welcome.seo.end .welcome-right{
    background-image: url("../medias/images/seo-end.jpg");
}
.welcome.conseils.end .welcome-right{
    background-image: url("../medias/images/conseils-end.jpg");
}
.welcome.conseils .welcome-left .welcome-left-inner .highlight{
    color: #4aac51;
}
.welcome.conseils .welcome-left .welcome-left-inner .welcome-btn:hover{
    background: #faa72a;
}
@media (max-width: 768px){
    .welcome{
        flex-direction: column;
        min-height: 60vh;
    }

    .welcome .welcome-left{
        width: 100%;
        height: 60%;
        transform: skew(0deg) skewY(-10deg);
        transform-origin: top left;
        order: 2;
    }
    .welcome .welcome-left .welcome-left-inner{
        transform: skew(0deg) skewY(10deg) skewX(-5deg);
        transform-origin: top left;
        min-height: 0;
        padding: 60px 30px 30px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    .welcome .welcome-left ul{
        padding: 0;
        display: block;
        list-style: none;
    }
    .welcome .welcome-left ul li{
        margin-bottom: 15px;
    }
    .welcome .welcome-right{
        width: 100%;
        height: 40%;
        min-height: 30vh;
    }
    .hover-item{
        top: -30vh;
        right: 0;
        width: 100%;
        bottom: 0;
        height: 30vh;
        left: 5%;
        flex-direction: column;
        margin-top: 30px;
        max-width: 80%;
        padding-top: 30px;
    }
}
@media screen and (max-width:767px) {
    .welcome.conseils .welcome-left ul{
        display: block;
    }
    .welcome.conseils .welcome-left ul li{
        display: block;
    }
}
.steps.steps-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 45px;
}
.steps.steps-center .step{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
}
.steps.steps-center .step:before{
    content: '';
    display: block;
    width: 2px;
    background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 25%,
    rgba(255,255,255,1) 25.1%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0) 50.1%,
    rgba(255,255,255,0) 75%,
    rgba(255,255,255,1) 75.1%,
    rgba(255,255,255,1) 100%
    );
    background-size: 200% 200%;
    height: 45px;
    animation: stepdown infinite normal linear .5s;
}
@keyframes stepdown {
    0%{background-position:50% 100%}
    100%{background-position:50% 0}
}
.steps.steps-center.steps-row{
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
}
.steps.steps-center.steps-row .step{
    flex-basis: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}
.steps.steps-center.steps-row .step:after{
    content: '';
    height: 2px;
    display: block;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.steps.steps-center.steps-row .step:last-child:after{
    right: 50%;
}
.steps.steps-center.steps-row .step:first-child:after{
    left: 50%;
}
@media screen and (max-width:767px) {
    .steps.steps-center .step{
        padding-left: 15px;
        padding-right: 15px;
    }
    .steps.steps-center.steps-row .step{
        margin-top: 30px;
        flex-basis: 100%;
    }
    .steps.steps-center.steps-row .step:after,
    .steps.steps-center.steps-row .step:last-child:after,
    .steps.steps-center.steps-row .step:first-child:after{
        left: 25%;
        right: 25%;
    }
}
.steps *{
    box-sizing: border-box;
}
.steps .step .step-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-bottom: 15px;
}
.steps .step .step-icon:hover + .step-title{
    transform: scale(1.25);
}
.steps .step .step-icon i{
    font-size: 2rem;
    line-height: 1;
}
.steps .step .step-title{
    font-family: "azosans", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 10px;
    transition: all .3s;
}
.steps .step .step-content p{
    font-size: .875rem;
    line-height: 1.25;
    margin-bottom: 5px;
    opacity: .75;
}
.columns{
    box-sizing: border-box;
    display: flex;
}
.columns *{
    box-sizing: border-box;
}
.columns > .column{
    flex-basis: 100%;
    padding: 15px;
}
.text-center{
    text-align: center;
}
.img-fluid{
    max-width: 100%;
    height: auto;
}
.tools.columns{
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}
@media screen and (max-width:767px) {
    .tools.columns{
        flex-wrap: wrap;
        justify-content: center;
    }
    .tools.columns > .column{
        flex-basis: 30%;
        padding: 15px;
    }
}
#website-type .content{
   max-width: 1280px;
}
#website-type .content-title{
    font-size: 2rem;
    letter-spacing: .15em;
}
.welcome.end .welcome-btn{
    position: relative;
}
.welcome.end .welcome-btn:before{
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    background: url('../medias/images/arrow-cta-white.png') center center scroll transparent;
    background-size: contain;
    bottom: 30%;
    right: 105%;
    transform: skewX(5deg);
}
/*Contact*/
.contact-banner{
    background: hsla(198, 82%, 50%, 1);
    color: #ffffff;
    padding: 30px 15px 25px 15px;
    text-shadow: 0 1px 0px rgba(0,0,0,.15);
}
.contact .content{
    max-width: 1200px;
}
.contact-banner p{
    color: #ffffff;
    font-family:  'azosans', Arial, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    transform: skewX(-5deg);
    letter-spacing: .04em;
}
.contact .input-text,
.contact .textarea,
.contact .dropdown,
.job-apply .input-text,
.job-apply .dropdown {
    font-size: 1rem;
    padding: 15px;
    box-sizing: border-box;
    border-width: 2px;
    width: 100%;
}
.contact .content-inner {
    padding-top: 45px;
    padding-bottom: 45px;
    padding-left: 15px;
    padding-right: 15px;
}
#form-quote-zone{
    width: 100%;
}
.contact .submit-wrapper{
    text-align: center;
    width: 100%;
}
.contact-submit{
    width: 100%;
    background: #eb452f;
    transition: all .5s;
}
.contact-submit:hover{
    background: #c93c2c;
}
#addresses{
    display: flex;
    justify-content: center;
}
#addresses .address{
    flex-basis: 100%;
    box-sizing: border-box;
    padding: 15px;
    margin: 0;
}
#addresses .address h3 {
    margin-bottom: 10px;
    color: #ffffff;
}
#addresses .address p {
    margin-bottom: 10px;
    font-size: .75rem;
    line-height: 1.2;
    color: rgba(255,255,255,.75);
}
#addresses .address p a {
    color: rgba(255,255,255, 1);
}
@media (max-width: 991px) {
    #addresses{
        flex-wrap: wrap;
    }
    #addresses .address{
        flex-basis: 25%;
    }
}
@media (max-width: 768px) {
    #addresses .address{
        flex-basis: 50%;
    }
}
@media (max-width: 480px) {
    #addresses .address{
        flex-basis: 100%;
    }
}
.bg-mymap{
    background: #4d6a79;
}
.bg-mymap #google-map{
    padding: 0;
}
.bg-mymap .content-inner{
    padding-bottom: 0;
}

.consulting .welcome .welcome-left .welcome-left-inner .welcome-btn,
.consulting .bg-conseils .more-link.invert{
    background: #faa72a;
    color: #ffffff;
}
.consulting .welcome .welcome-left .welcome-left-inner .welcome-btn:hover,
.consulting .bg-conseils .more-link.invert:hover{
    background: #ffffff;
    color: #000000;
}
.phone-link:before{
    content:'\f095';
    font-family: 'fontawesome';
    margin-right: 5px;
}
@media (max-width:480px) {
    #addresses .address p a.phone-link{
        padding: 5px 10px;
        background: #ffffff;
        color: #4d6a79;
        box-shadow: 0 2px 5px rgba(0,0,0,.3);
        display: inline-block;
        margin-top: 5px;
        margin-bottom: 10px;
        border-radius: 50px;
    }
}

#header-message {
    background-color: #4FC5F0;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-family: 'azosans', Arial, sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    line-height: 1.25;
    letter-spacing: .1em;
    text-shadow: 0 1px 1px rgba(0,0,0,.15);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.button-group button.isotope-filter {
    background: #ee6758;
    border: 0;
    padding: 10px 20px;
    font-size: 1rem;
    line-height: 1;
    color: #ffffff;
    font-weight: bold;
    display: block;
    margin: 0 5px 5px 0;
    opacity: .5;
    cursor: pointer;
}
.button-group button.isotope-filter.active,
.button-group button.isotope-filter:focus,
.button-group button.isotope-filter:hover {
    opacity: 1;
    box-shadow: none;
    outline: none;
}