/* Font-family style */
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,400i,700');

html {
    font-size: 16px;
}
@media screen and (min-width: 320px) {
    html {
        font-size: calc(16px + 6 * ((100vw - 320px) / 680));
    }
}
@media screen and (min-width: 1000px) {
    html {
        font-size: 22px;
    }
}

.fs18{
    font-size: 18px;
}

.fs24{
    font-size: 24px;
}

body{
    font-family: 'LatoWebLight', SansSerif;
}

.bold{
    font-weight: 700;
}

.light{
    font-weight: 300;
}


/* Global styles */

html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 75px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 75px;
    color: white;
}

.footer-link-container{
    background-color: #b9302d;
    padding: 15px 0;
}

.footer-link a{
    text-decoration: none;
    color: white;
    white-space: nowrap;
}

.footer-link a:hover{
    color: white;
}

.footer-mention{
    background-color: #303030;
    padding-left: 35px;
}

@media (max-width: 768px){
    body{
        margin-bottom: 100px;
    }
    footer{
        height: 100px;
    }
}

.no-padding{
    padding: 0;
}

.no-margin{
    margin: 0;
}

.no-border{
    border: none;
    border-radius: unset;
}

/*** Style navbar ***/
/*-----------------------------------------------------------*/

.border-top-grey{
    border-top: 1px solid #e6e6e6;
}

.wrapper, .link-container{
    margin-right: auto;
    margin-left: auto;
    zoom: 1;
}

.link-container a{
    text-decoration: none;
}

.link-container a:hover, .link-container a{
    color: black;
}

.red-link a{
    color: white;
    background-color:#b9302d;
    padding: 10px 25px;
    white-space: nowrap;
}

.red-link a:hover{
    color:white;
}

.logo-nav img {
    height: 100%;
    padding: 5px;
    width: auto;
    margin: auto;
    min-width: 160px;
}

.link-div{
    cursor: pointer;
}

.link-wrapper, .link-row, .link-div, .logo-nav{
    height: 80px;
}

@media screen and (min-width: 480px){
    .link-wrapper, .link-row, .link-div, .logo-nav{
        height: 80px;
    }

    .link-div a{
        line-height: 80px;
    }
}

@media screen and (min-width: 768px) {
    .wrapper, .link-container {
        width: 100%;
    }
    .link-wrapper, .link-div, .link-container, .link-row, .logo-nav{
        height: 95px;
    }
    .link-div a{
        line-height: 95px;
    }

    .link-div:hover:after{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background-color: #303030;
        z-index: 2;
    }
}

@media screen and (min-width: 992px){
    .wrapper, .link-container {
        width: 960px;
    }
}

@media screen and (min-width: 1200px) {
    .wrapper, .link-container {
        width: 1210px;
    }
    .link-wrapper, .link-div, .link-container, .link-row, .logo-nav{
        height: 120px;
    }
    .link-div a{
        line-height: 120px;
    }
}

@media screen and (max-width: 768px){
    .menu-dropdown{
        height: 80px;
    }

    .link-container{
        min-height: 80px;
    }
}

.menu-dropdown{
    padding: 18px 20px 18px 20px;
}

.link-row-hidden{
    z-index: 2;
    background-color: #FFFFFF;

    -webkit-transition: max-height 0.5s linear;

    transition: max-height 0.5s linear;
    max-height: 0;
    overflow: hidden;
}

.link-row-hidden.extend{
    border-top: 1px solid #e6e6e6;
    max-height: 220px;
}

.link-container-hidden{
    padding: 5px 0 5px 25px;
}

/* Hamburger */
#menu-hamburger {
    width: 40px;
    height: 45px;
    position: relative;
    margin: 0 auto;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#menu-hamburger span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #666;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#menu-hamburger span:nth-child(1) {
    top: 5px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#menu-hamburger span:nth-child(2) {
    top: 18px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#menu-hamburger span:nth-child(3) {
    top: 31px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#menu-hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 5px;
    left: 8px;
}

#menu-hamburger.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#menu-hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 32.5px;
    left: 8px;
}

/* Subscribe */
footer{
    border-top: 1px solid #e6e6e6;
}

.col-wrap-link-footer{
    padding: 0 5px;
}

.wrapper-subscribe{
    background-color: #b9302d;
    color: white;
}

footer .footer-subscribe{
    color: black;
    background-color: white;
}

.subscribe-row > .col-sm-12{
    padding: 5px 0;
}

.subscribe-row input{
    background-color: #303030;
    border: none;
    color: white;
    padding: 5px 10px;
    margin-top: 5px;
}

.subscribe-row input::-webkit-input-placeholder{
    color: white;
    opacity: 1;
}

.subscribe-row input:-ms-input-placeholder{
    color: white;
    opacity: 1;
}

.subscribe-row input::placeholder{
    color: white;
    opacity: 1;
}

.subscribe-row input:-ms-input-placeholder{
    color: white;
}

.subscribe-row input::-ms-input-placeholder{
    color: white;
}

@media screen and (max-width: 992px){
    .subscribe-row input[type="email"]{
        width: 70%;
    }
}

@media screen and (max-width: 767px){
    .follow-wrap{
        text-align: center;
    }
    .subscribe-wrap{
        text-align: center;
    }
}

@media screen and (min-width: 768px){
    .subscribe-wrap label{
        text-align: right;
    }
    .follow-wrap{
        text-align: center;
    }

    footer .footer-subscribe{
        min-height: 100px;
    }
}

@media screen and (min-width: 992px){
    .subscribe-wrap label{
        text-align: right;
    }
    .follow-wrap{
        text-align: left;
    }

    .follow-wrap p{
        padding-left: 21px;
    }

    footer .footer-subscribe{
        min-height: 50px;
    }

    .subscribe-row input[type="email"]{
        width: 84%;
    }
}

@media screen and (min-width: 1200px){
    .follow-wrap p{
        padding-left: 21px;
    }

    .subscribe-row input[type="email"]{
        width: 87%;
    }
}

.subscribe-wrap form{
    margin: 0;
}

.subscribe-wrap label{
    margin: 0;
    line-height: 40px;
}

.follow-wrap p{
    line-height: 40px;
}

.logo-linkedin{
    height: 27px;
    width: 27px;
    -webkit-transform: translateY(27%);
            transform: translateY(27%);
    background: url("../images/icon/linkedin_logo.svg");
    background-size: auto 100%;
    display: inline-block;
}

.pfr {
	
	max-width: 600px;
	width: 100%;
	margin-left: -2%;
	
}
