/*--------------------GLOBAL--------------------*/

body {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}

h1, h2 {
    font-family: SofiaProSoftLight;
    font-weight: 100;
    font-size: 36px;
    color: #191919;
}

h4 {
    font-family: SofiaProSoftLight;
    font-weight: normal;
    font-size: 18px;
    color: #191919;
    line-height: 23px
}

h3 {
    font-family: SofiaProSoftLight;
    font-weight: normal;
    font-size: 18px;
    color: #191919;
}

h6 {
    font-family: SofiaProSoftRegular;
    font-weight: normal;
    font-size: 14px;
    color: #323232;
}

p {
    font-family: SofiaProSoftLight;
    font-weight: normal;
    font-size: 16px;
    color: #646464;
    line-height: 19px;
}

li {
    font-family: SofiaProSoftLight;
    display: inline-block;
}

a {
    font-family: SofiaProSoftLight;
    text-decoration: none;

}

button {
    background-color: #EF5925;
    color: #FFF;
    font-family: SofiaProSoftlight;
    font-weight: normal;
    font-size: 15px;
    padding: 18px 30px 16px 30px;
    border-radius: 100px;
    border-style: none;
}

button:hover {
    cursor: pointer;
}

button, button:hover, button:active, button:focus, button:active:focus {
   outline: 0px !important;
   box-shadow: none !important;
}

.small-button {
    font-size: 13px;
    padding: 14px 24px 12px 24px;
}

.white-button {
    background-color: transparent;
    border: 1px solid #FFF;
    transition: 0.3s;
}

.grey-button {
    border: 1px solid #E6E6E6;
    color: #323232;
    transition: 0.3s;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.composition {
    width: 50%;
    height: 600px;
    position: relative;
    margin: 0;
    padding: 0;
}

.mockup {
    width: 100%;
    max-width: 550px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.description {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px 60px;
}

@media (max-width: 768px){
    h1 {
        font-size: 28px;
        line-height: 32px;
    }

    h4 {
        font-size: 16px;
        line-height: 19px;
    }

    p {
        font-size: 14px;
        line-height: 17px;
    }

    .composition {
        width: 100%;
    }

    .composition-small {
        height: 200px;
        margin-bottom: 100px;
    }

    .mockup {
        max-width: 500px;
        }

    .description {
        padding: 0px 30px;
    }
}

@media (max-width: 520px){
    .composition {
        height: 580px;
    }

    .composition-small {
        height: 200px;
        margin-bottom: 120px;
    }
}


/*--------------------NAVBAR--------------------*/
.navbar {
    width: 100%;
    line-height: 70px;
    position: fixed;
    z-index: 1;
    transition: 0.3s;
    background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

.nav-white {
    width: 100%;
    line-height: 70px;
    position: fixed;
    z-index: 1;
    background-color: #FFF;
    box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.navbar-left {
    float: left;
    padding-left: 60px;
}

.navbar-left img {
    width: 120px;
    vertical-align: middle;
}

.navbar-left ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.navbar-left a {
    font-size: 15px;
    color: #FFF;
    margin-right: 30px;
    transition: 0.3s;
}

.dark-text {
    color: #191919 !important;
    transition: 0.3s;
}

.navbar-right {
    float: right;
    padding-right: 60px;
    height: 70px;
    line-height: 70px;
    display: flex;
    align-items: center;
}

.navbar-right button{
    margin-right: 10px;
}

@media (max-width: 768px){
    .navbar-left {
        padding-left: 30px;
    }

    .navbar-left ul li {
        display: none;
    }

    .navbar-right {
        padding-right: 30px;
    }
}

@media (max-width: 520px){
    .white-button {
        display: none;
    }
}

/*--------------------HEADER--------------------*/

header {
    width: 100%;
    height: 620px;
    background-image: url(/assets/carrefour/img/header_carrefour.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    position: relative;
}

header img {
    margin-top: 100px;
    width: 200px;
}

header h1 {
    color: #FFF;
    width: 90%;
    margin: 30px auto 20px auto;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
}

header h4 {
    color: #FFF;
    width: 90%;
    margin: 20px auto 40px auto;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
}


header h6 {
    margin-top: 80px;
    margin-bottom: 10px;
    color: #FFF;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.arrow {
    margin: auto;
    width: 20px;
    height: 20px;
    background-image: url(/assets/carrefour/img/arrow_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.discover-more {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    animation-name: bounce;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes bounce {
    50% {
        bottom: 20px;
    }
}

/*--------------------COMPANY DESCRIPTION--------------------*/

.company-description {
    text-align: center;
    margin-top: 60px;
}

.company-description h1 {
    clear: both;
}

.company-description p {
    margin: 0 10%;
}

.company-description h6 {
    margin-top: 20px;
}

.company-description a h6 {
    color: #2799ff;
    display: inline-block;
    margin-bottom: 50px;
}

.link-icon {
    vertical-align: middle;
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(/assets/carrefour/img/link_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.info {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    height: 100%px;
    margin: 25px;
}

.info img {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
}

.info h4 {
    color: #F24E22;
    margin-bottom: 15px;
}

.info p {
    margin: 0px
}

@media (max-width: 768px){

    .info {
        width: 70%;
        margin-bottom: 50px;
    }

    .info img {
        max-width: 240px;
        border-radius: 50%;
    }
}

/*--------------------COME FUNZIONA--------------------*/

.come-funziona {
    text-align: center;
    margin-top: 100px;
}

@media (max-width: 768px){
    .come-funziona {
        margin: 50px 0px 0px 0px;
    }
}

/*--------------------SIGN UP--------------------*/

.signup {
    width: 100%;
    height: 650px;
}

/*--------------------DASHBOARD--------------------*/

.dashboard {
    width: 100%;
    height: 650px;
}

/*--------------------PRODUCT PAGE--------------------*/

.product-page {
    width: 100%;
    height: 650px;
}

/*--------------------TEMPLATE MAIL--------------------*/

.template-mail {
    width: 100%;
    height: 650px;
}

.template-mail img {
    max-width: 450px;
}
@media (max-width: 768px){
    .template-mail img {
        width: 90%;
    }
}

/*--------------------CALL TO ACTION--------------------*/

.call-to-action {
    clear: both;
    width: 100%;
    height: 450px;
    background-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.4), rgba(0,0,0,0)), url(img/header_carrefour.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}

.call-to-action img{
    width: 150px;
    margin-top: 70px;
}

.call-to-action button {
    margin-top: 40px;
}

.call-to-action h1, .call-to-action h2 {
    color: #FFF;
    width: 80%;
    margin: 50px auto 0px auto;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
}

/*--------------------FOOTER--------------------*/

.footer {
    height: 100px;
    line-height: 100px;
}

.footer ul {
    padding: 0;
    margin-left: 40px;
}

.footer li {
    font-size: 13px;
    color: #969696;
    margin-left: 20px;
}

.footer a {
    font-size: 13px;
    color: #969696;
}

.footer-left img {
    width: 100px;
    margin-right: 20px;
    margin-bottom: 4px;
    vertical-align: middle;
}

.footer-right img {
    width: 30px;
    margin-right: 60px;
    margin-left: 10px;
    vertical-align: middle;
}

@media (max-width: 980px){
    .footer {
        height: 100px;
        line-height: 100px;
    }

    .footer ul {
        margin-left: 0px;
    }

    .footer-right {
        display: none;
    }

    .footer-left {
        float: none !important;
        text-align: center;
        width: 100%;
    }

    .footer-left img {
        width: 100px;
        margin-right: 20px;
        margin-bottom: 4px;
        vertical-align: middle;
        display:
    }
}
