/* ------------------------- FONTS ------------------------- */
@import url("http://hello.myfonts.net/count/30f671");
@font-face {
    font-family: 'CreightonPro-Bold';
    src:    url('../fonts/craighton_bold.eot');
    src:    url('../fonts/craighton_bold.eot?#iefix') format('embedded-opentype'),
            url('../fonts/craighton_bold.woff2') format('woff2'),
            url('../fonts/craighton_bold.woff') format('woff'),
            url('../fonts/craighton_bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'foliolight';
    src: url('../fonts/folio-lig-webfont.eot');
    src: url('../fonts/folio-lig-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/folio-lig-webfont.woff2') format('woff2'),
         url('../fonts/folio-lig-webfont.woff') format('woff'),
         url('../fonts/folio-lig-webfont.ttf') format('truetype'),
         url('../fonts/folio-lig-webfont.svg#foliolight') format('svg');
    font-weight: normal;
    font-style: normal;

}



/* ------------------------- GENERAL STYLES ------------------------- */
*, ul, li {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: 'foliolight';
    color: #52534c;
    font-size: 1em; /* currently ems cause chrome bug misinterpreting rems on body element */
}

h1 {
    margin-bottom: 4rem;
    font-family: Georgia, serif;
    text-align: center;
    font-size: 4rem;
    line-height: 4rem;
    text-transform: uppercase;
}
h3 {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    line-height: 2rem;
    letter-spacing: 0.2rem;
    color: #44c8cc;
    text-transform: uppercase;
}
h4 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.4rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}
p+h4 {
    margin-top: 3rem;
}
h5 {
    margin-top : 0;
    font-family: 'foliolight';
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

a, a:visited {
    text-decoration: underline;
}

a:hover, a.is-active, a:focus {
    outline: none;
}

p {
    margin: 0 20px;
    font-size: 1.5rem;
    line-height: 2rem;
}
p:last-child {
    margin-bottom: 0;
}

::-moz-selection {
    color: #fff;
    background: #626364;
}

::selection {
    color: #fff;
    background: #626364;
}



/* ------------------------- FORMS ------------------------- */
input::-webkit-input-placeholder, textarea::-webkit-textarea-placeholder { opacity: 1; color: #636363; }
input:-moz-placeholder, textarea:-moz-placeholder { opacity: 1; color: #636363; }
input::-moz-placeholder, textarea::-moz-placeholder { opacity: 1; color: #636363; }
input:-ms-input-placeholder, textarea:-ms-textarea-placeholder { opacity: 1; color: #636363; }
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-textarea-placeholder { opacity: 0.25; }
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder { opacity: 0.25 }
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { opacity: 0.25 }
input:focus:-ms-input-placeholder, textarea:focus:-ms-textarea-placeholder { opacity: 0.25 }
input.error::-webkit-input-placeholder, textarea.error::-webkit-textarea-placeholder { color: #f00; opacity: 1; filter : alpha(opacity=10); }
input.error:-moz-placeholder, textarea.error:-moz-placeholder { color: #f00; opacity: 1; filter : alpha(opacity=100); }
input.error::-moz-placeholder, textarea.error::-moz-placeholder { color: #f00; opacity: 1; filter : alpha(opacity=100); }
input.error:-ms-input-placeholder, textarea.error:-ms-textarea-placeholder { color: #f00; }

:focus {
    outline: none;
}



/* ------------------------- USER GLOBAL SPECIAL STYLES ------------------------- */
.img-circle {
    display: block;
    width: 170px;
    height: 170px;
    margin: 0 auto;
    background: #e12987;
    border: solid 10px #e12987;
    line-height: 150px;
    font-size: 1.4rem;
    color: #fff;
}



/* ------------------------- HEADER ------------------------- */
.header_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
}
header {
    position: relative;
    height: 145px;
    margin: 0 auto;
    padding-top: 25px;
}
header img {
    display: block;
    height: 100px;
    margin: 0 auto;
    transition: all 0.2s;
}
.socials {
    position: absolute;
    top: 35px;
    right: 15px;
}
.socials li {
    display: block;
    float: left;
    margin-left: 30px;
    margin-top: -10px;
}
.socials a {
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    border-radius: 100%;
    color: #fff;
    font-size: 22px;
    text-align: center;
    line-height: 40px;
    transition: all 0.2s;
}
.socials a:hover, .socials a:focus {
    background: #000
}



/* ------------------------- FOOTER ------------------------- */
footer {
    padding: 8.8rem 0 9rem;
    background: #303030;
    color: #b2b2b2;
    font-family: 'Arimo', sans-serif;
}
footer .container > div {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between; /* Safari */
    justify-content: space-between;
}
footer p {
    margin-left: 0;
    margin-right: 0;
    color: #b2b2b2;
    font-size: 1.4rem;
    line-height: 1.8rem;
}
footer a {
    color: #b2b2b2 !important;
    text-decoration: underline;
}
footer a:hover, footer a:focus {
    color: #fff !important;
}
footer img {
    width: 80px;
    margin-top: 25px;
}
p.googleMapLink {
    margin-top: 1.5rem;
}
p.googleMapLink a, p.privacyPolicyLink a {
    color: #fff !important;
    font-family: 'foliolight';
}
 



/* ------------------------- NAVIGATION ------------------------- */
#nav_mobile {
    display: none;
}
.navbar_wrapper {
    height: 110px;
    background: #fff;
    line-height: 1;
}
.navbar {
    height: 80px;
    background: rgba(68,200,204,0.2);
}
.navbar nav {
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between; /* Safari */
    justify-content: space-between;
}
.navbar a  {
    text-align: center;
    height: 39px;
    padding: 0 20px;
    margin-top: 20px;
    border-bottom: 1px solid #52534c;
    color: #52534C;
    font-size: 1.8rem;
    line-height: 39px;
    text-decoration: none;
    transition: all 0.2s;
}
.navbar a.is-active, .navbar a:hover, .navbar a:focus {
    text-decoration: none;
    color: #44c8cc;
    border-bottom: 1px solid #44c8cc;
}
.navbar a:last-of-type {
    height: 80px;
    width: 110px;
    padding: 0;
    margin: 0;
    border: none;
    background: rgba(68,200,204,0.9);
    line-height: 80px;
    color: #fff;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
}
.navbar a:last-of-type:hover {
    background: #333;
}



/* ------------------------- MAIN CONTENT ------------------------- */
section {
    padding-top: 50px;
    background: #fff;
}
section::after {
    display: block;
    content: "";
    width: 86px;
    height: 1px;
    margin: 8.5rem auto 0;
    background: #626364;
}
section:first-child::after, section:last-of-type::after {
    display: none;
}


/* HOME */
#home {
    position: relative;
    height: 700px;
    padding: 0 !important;
    margin: 145px 0 0 0;
    background: rgba(68,200,204,0.9);
    overflow: hidden;
}
#home::after {
    display: none;
}

#home h1 {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
    top: 50%;
    left: 50%;
    z-index: 1;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    font-size: 7rem;
    line-height: 7.8rem;
}
#home h1:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border-bottom: 1px solid #fff;
    content: "";
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}



/* Know-how */
#knowhow {
    padding-top: 25px;
}


/* Consultant */
#consultant {
    padding-bottom: 14.5rem;
}
#consultant::after {
    display: none;
}



/* Join us */
#joinus {
    padding: 7.5rem 0;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}
#joinus p {
    font-size: 6rem;
    line-height: 6.5rem;
    letter-spacing: 0.2rem;
    font-family: Georgia, serif;
    text-align: center;
    color: #fff;
}
#joinus a {
    display: block;
    height: 60px;
    width: 160px;
    margin: 7rem auto 1rem;
    background: #fff;
    line-height: 60px;
    color: #60d8cf;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}
#joinus a:hover, #joinus a:focus {
    background: #000;
    color: #fff;
}



/* FORM */
.titleBar {
    height: 140px;
    margin: 145px 0 60px;
    background: #4befd6; /* Old browsers */
    background: -moz-linear-gradient(left, #4befd6 0%, #056ff1 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #4befd6 0%,#056ff1 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #4befd6 0%,#056ff1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4befd6', endColorstr='#056ff1',GradientType=1 ); /* IE6-9 */
}

.titleBar h1 {
    margin: 0;
    position: relative;
    top: 50%;
    left: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
    padding: 0 130px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: 7rem;
    line-height: 7.8rem;
    text-align: center;
}

form {
    max-width: 360px;
    margin: 50px auto;
    text-align: left;
}
fieldset {
    position: relative;
    padding: 0;
    margin: 0 0 10px 0;
    border: none;
}
form span {
    position: absolute;
    left: -16px;
    margin-top: 8px;
    display: block;
    color: #44C8CC;
    line-height: 1;
    font-size: 1.8rem
}
form p.mandatory {
    position: relative;
    margin: 0 0 3.5rem;
    color: #44C8CC;
}
form p.mandatory span {
    position: absolute;
    left: -13px;
    top: 0;
    margin: 0;
    color: #44C8CC;
}
label, p {
    display: block;
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.1;
}
input, button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    outline: 0;
    height: 38px;
    padding: 0 10px;
    margin: 10px 0 7px;
    border: 1px solid #999999;
    transition: all 0.2s;
    color: #52534c;
    font-family: 'foliolight';
    font-size: 1.5rem;
}
textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 10px !important;
    margin: 10px 0 7px;
    min-height: 275px;
    border: 1px solid #999;
    transition: all 0.2s;
    color: #52534c;
    font-family: 'foliolight';
    font-size: 1.5rem;
}

input[type="submit"] {
    display: block;
    width: 120px;
    height: 38px;
    margin: 60px auto 0;
    background: #60d8cf;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
}
input:focus, input:hover, textarea:focus, textarea:hover {
    border-color: #000;
}
input[type="submit"]:hover, input[type="submit"]:focus {
    background: #000;
    color: #fff;
}
.uploadPicture {

}
.chooseFile {
   position:relative;
   overflow: hidden;
   cursor: pointer !important;
}
.chooseFile button {
    position: relative;
    display: block;
    height: 38px;
    width: 100% !important;
    border: 1px solid #44C8CC;
    border-radius: 10px;
    background: #fff;
    font-size: 1.8rem;
    text-align: left;
    color: #44c8cc;
    transition: all 0.2s;
    cursor: pointer !important;
}
.chooseFile input:hover+button, .chooseFile button:focus {
    border: 1px solid #000;
    color: #000;
}
.chooseFile input {
    position: absolute;
    z-index: 1;
    top:0;
    right:0;
    font: 500px monospace;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer !important;;
}
.btn_clear {
    display: none;
    position: absolute;
    z-index: 5;
    top: 14px;
    right: -40px;
    width: 30px;
    height: 30px;
    background: #44c8cc;
    border-radius: 100%;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}
.btn_clear:hover {
    background: #000;
}
.message {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
}
.message.error {
    color: #f00;
}

/* COOKIES POLICY */
.cookies-policy p{
    margin-bottom: 10px;
}
.cookies-policy{
    margin-bottom: 60px;
}
.cc-compliance a {
    text-decoration: none;
}

@media screen and (max-width: 980px) {
    .header_wrapper * {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .header_wrapper .container {
        width: 100% !important;
    }
    header {
        height: 110px;
        max-width: auto;
        margin: 0 auto;
        padding-top: 20px;
    }
    header img {
        display: block;
        height: 80px;
        margin: 0 0 0 20px !important;
    }
    .socials {
        position: absolute;
        top: 15px;
        right: 100px;
    }
    .socials li {
        display: block;
        float: left;
        margin-left: 10px;
        margin-top: 0;
    }
    .socials a {
        display: block;
        width: 40px;
        height: 40px;
        background: rgba(0,0,0,0.6);
        border-radius: 100%;
        color: #fff;
        font-size: 22px;
        text-align: center;
        line-height: 40px;
        transition: all 0.2s;
    }
    .socials a:hover, .socials a:focus {
        background: #000
    }
    #nav_mobile {
        display: block;
        position: fixed;
        top: 35px;
        right: 20px;
        z-index: 10000;
        width: 40px;
        height: 40px;
        padding: 14px 10px;
        background: rgba(0,0,0,0.6);
        border-radius: 100%;
        cursor: pointer;
        -moz-transition: all 0.1s;
        -webkit-transition: all 0.1s;
        transition: all 0.1s;
    }
    #nav_mobile span {
        display: block;
        height: 2px;
        margin: 3px 0;
        background-color: #fff;
        -moz-transition: all 0.1s;
        -webkit-transition: all 0.1s;
        transition: all 0.1s;
    }
    #nav_mobile span:first-child {
        margin-top: 0;
    }
    #nav_mobile.navOpen {
        color: #fff;
    }
    #nav_mobile.navOpen span {
        background: #fff;
    }
    #nav_mobile.navOpen span:first-of-type {
        margin-top: 5px;
        transform: rotate(45deg);
    }
    #nav_mobile.navOpen span:nth-of-type(2) {
            opacity: 0;
        }
    #nav_mobile.navOpen span:last-of-type {
        margin-top: -10px;
        transform: rotate(-45deg);
    }
    .navbar_wrapper {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        z-index: 100;
        padding-bottom: 0;
    }
    .navbar {
        height: auto !important;
        background: #fff
    }
    .navbar * {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .navbar nav {
        margin: 0 auto;
        display: block;
        display: block;
    }
    .navbar a  {
        display: block;
        text-align: center;
        height: 60px;
        margin: 0;
        padding: 0 10px;
        border-bottom: none !important;
        border-top: 1px solid #52534c;
        color: #52534c;
        font-size: 1.8rem;
        line-height: 60px;
        text-decoration: none;
        transition: all 0.2s;
    }
    .navbar a.is-active, .navbar a:hover, .navbar a:focus {
        text-decoration: none;
        border-top: 1px solid #52534c;
    }
    .navbar a:last-of-type {
        height: 60px;
        width: 100%;
        padding: 0 10px;
        border-top: 1px solid #52534c;
        background: rgba(68,200,204,0.9);
        line-height: 60px;
        color: #fff;
        font-family: 'Arimo', sans-serif;
        font-weight: 700;
    }
    .navbar a:last-of-type:hover {
        background: #333;
    }
    #home {
        margin: 110px 0 50px;
    }
}

@media screen and (max-width: 767px) {
    .row>div+div {
        margin-top: 60px;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 3rem;
        line-height: 3rem;
        margin-bottom: 5rem;
    }
    #home {
        height: 50vh;
        background: -moz-linear-gradient(45deg, #4befd6 0%, #056ff1 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(45deg, #4befd6 0%,#056ff1 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(45deg, #4befd6 0%,#056ff1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4befd6', endColorstr='#056ff1',GradientType=1 ); /* IE6-9 */
    }
    #home h1 {
        font-size: 6rem;
        line-height: 7rem;
    }
    video {
        display: none;
    }
    #joinus {
        padding: 4rem 0;
    }
    #joinus p {
        font-size: 4rem;
        line-height: 4.2rem;
    }
    #joinus a {
        margin: 3.5rem auto 1rem;
    }
    footer {
        padding: 4rem 0;
    }
    footer .container > div {
        display: block;
        text-align: center;
    }
    footer .container > div div {
        margin-bottom: 30px;
    }
    footer .container > div div:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    #home h1 {
        font-size: 4rem;
        line-height: 5rem;
    }
    #joinus p {
        font-size: 3rem;
        line-height: 3.2rem;
    }
}
@media screen and (max-width: 400px) {
    header img {
        height: 60px;
        margin-top: 10px;
        margin-left: 20px;
    }
    .socials {
        right: 80px;
        top: 5px;
    }
    #nav_mobile {
        top: 25px;
    }
    #home h1 {
        font-size: 10vw;
        line-height: 12vw;
    }
    #joinus p {
        font-size: 2rem;
        line-height: 2rem;
    }
}

@media screen and (max-width: 320px) {
    header img {
        margin-left: 10px !important;
    }
    #nav_mobile {
        right: 10px;
    }
    .socials {
        right: 60px;
    }
}

/* ------------------------- PRIVACY POLICY ------------------------- */
.privacy-policy ul, .privacy-policy ol{
    font-size: 1.8rem;
    padding-left: 4rem;
}

.privacy-policy li{
   margin-bottom: 0.5rem;
}

.privacy-policy h4{
    margin-top: 3rem;
}

.privacy-policy{
    margin-bottom: 7.5rem;
}