/*--------------GENERAL CSS-----------*/

*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,500,700,900');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url("https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css");

body{
    font-size: 18px;
    font-family: 'Inter',sans-serif;
}

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

.header-area {
    background: #fff;
    width: 100%;
    padding: 12px 30px;
    z-index: 999;
    border-bottom: 2px solid #d5d5d5ad;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    position: fixed;
}

.header-container {
    display: table;
    width: 100%;
    margin: auto;
}

.site-logo {
    width: auto;
    float: left;
    display: flex;
}

.site-logo a {
    color: #22577a;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    padding: 15px;
    font-family: 'Inter';
    font-style: bold;
}

.site-logo span {
    color: #80ed99;
}

.site-logo img {
    max-width: 60px;
}

.site-nav-menu {
    float: right;
}

.primary-menu{
    list-style: none;
}

.primary-menu li {
    display: inline-block;
    margin: 21px 5px;
}

.primary-menu a {
    color: #22577a;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 10px;
    transition: .5s;
}

.primary-menu a:hover,
.primary-menu .active {
    color: #80ed99;   
}

.primary-menu li a:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #80ed99;
    bottom: 0px;
    left: 0;
    transition: all .5s;
}

.primary-menu li a:hover:after {
    width: 100%;
}

.primary-menu li .active:after{
    width: 100%;
}

.mobile-nav{
    display: none;
}

.mobile-nav i{
    float: right;
    margin: 10px;
    padding: 10px;
    font-size: 24px;
    color: #80ed99;
    outline: none;
    cursor: pointer;
}

.sous-deroulant {
    display: none;
    box-shadow: 0px 1px 2px #CCC;
    background-color: white;
}

.site-nav-menu > ul li:hover .sous-deroulant {
    display: block;
}

.sous-deroulant li {
    float: none;
    width: 100%;
    text-align: left;
}

.sous-deroulant a {
    padding: 10px;
    border-bottom: none;
}

.sous-deroulant a:hover {
    border-bottom: none;
    background-color: rgba(200, 200, 200, 0.1);
}

.sous-deroulant {
    display: none;
    box-shadow: 0px 1px 2px #CCC;
    background-color: #fff;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

section#hero-section {
    width: 100%;
    height: 20vh;
    background: url(../img/ny_nu1it.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

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

@media only screen and (max-width: 1000px) {
    .site-nav-menu {
        float: none;
        position: absolute;
        background: #fff;
        width: 100%;
        left: 0;
        top: 85px;
        padding: 30px 0px 150px 0px;
        border-top: 1px solid #4a4848;
        clip-path: circle(0% at 100% 0%);
        transition: all .8s;
    }

    .site-logo {
        padding: 17px 0px;
    }

    .site-logo a {
        font-size: 15px;
    }

    .site-logo img {
        display: none;
    }

    .mobile-nav i {
        font-size: 25px;
        margin-top: 20px;
    }

    .primary-menu li {
        display: block;
        text-align: center;
        margin: 25px 5px;
    }
    .mobile-nav{
        display: block;
    }
    .mobile-menu {
        clip-path: circle(112% at 100% 0%);
    }
    .primary-menu li a:after{
        display: none;
    }
}


/*-------------------BUTTON UP--------------------*/

.btn {
    height: 50px;
    width: 50px;
    background-color: #80ed99;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    text-decoration: none;
}

.fa-arrow-up {
    color: #22577a;
}

@-webkit-keyframes btn {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}

.btn:hover {
    transform-origin: 50% 50%;
    -webkit-animation: btn 2s linear infinite;
    transition: 0.5s;
}

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

.image-header {
    width: 100%;
    height: 450px;
    position: relative;
    z-index: -1;
    display: block;
}

.image-header-image{
    width: 100%;
    position: absolute;
    z-index: 1;
}

.image-header img {
    max-width: 100%;
    opacity: 0.9;
}

.image-header-text {
    max-width: 70%;
    position: absolute;
    z-index: 2;
    border-left: 10px solid #80ed99;
    margin-left: 120px;
    margin-top: 50px;
}

.image-header-text h2 {
    font-size: 60px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 0 0 5px black;
    padding-left: 20px;
}

.image-header-text span {
    font-weight: 800;
}

.image-header-logo {
    max-width: 100%;
    position: absolute;
    z-index: 2;
    margin-top: 280px;
    display: flex;
    margin-left: 45%;
}

.image-header-logo img {
    width: 150px;
}

/*------------RESPONSIVE HEADER IMAGE----------*/

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

    .image-header {
        height: 150px;
    }

    .image-header-text {
        border-left: 5px solid #80ed99;
        margin-left: 30px;
        margin-top: 30px;
    }

    .image-header-text h2 {
        font-size: 16px;
        color: #fff;
        font-weight: 400;
        text-transform: uppercase;
    }

    .image-header-logo {
        margin-top: 30px;
        margin-left: 300px;
    }

    .image-header-logo img {
        width: 80px;
    }

}

/*------------AVANTAGES--------------*/

.avantages-area-global {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.avantages-content {
    width: 80%; 
    height: 55vh;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    background-color: #fff;
}

.avantages-title {
    max-width: 250px;
    max-height: 40px;
    margin: auto;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avantages-title-text {
    text-transform: uppercase;
    font-size: 30px;
    color: #22577a;
    border-bottom: 5px solid #80ed99;
}

.avantages-content1 {
    width: 30%;
    height: 35vh;
    margin-top: 30px;
    margin-left: 15px;
    display: inline-block;
    margin-right: 40px;
}

.avantages-card {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    background-color: rgb(254, 254, 254);
    height: 150px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;

}

.avantages-card-body {
    text-align:center;
    box-sizing: border-box;
}

.avantages-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #22577a;
}

.fa-heart {
    padding-top: 20px;
    color: #80ed99;
}

.avantages-content2 {
    width: 30%;
    height: 35vh;
    margin-top: 30px;   
    display: inline-block;
}

.avantages-content3 {
    width: 30%;
    height: 35vh;
    margin-right: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: inline-block;
}

.avantages-card-logo {
    width: 100px;
    height: 100px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-bolt {
    color: #22577a;
}

.fa-earth-europe{
    color: #22577a;
}

.fa-house-circle-check{
    color: #22577a;
}

/*-----------------RESPONSIVE AVANTAGES--------------*/

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

    .avantages-content {
        width: 90%; 
        height: auto;
    }

    .avantages-title {
        margin-top: 15px;
    }

    .avantages-title-text {
        font-size: 24px;
        border-bottom: 4px solid #80ed99;
    }

    .avantages-content1 {
        width: 90%;
        margin-top: 30px;
    }

    .avantages-content2 {
        width: 90%;
        margin-top: 10px;   
        margin-left: 15px;
    }

    .avantages-content3 {
        width: 90%;
        margin-left: 15px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

}

/*-----------------COMPARAISON---------------*/

.visu-area-global {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    background-color: rgb(250, 250, 250);
}

.visu-title {
    width: 90%;
    margin-left: 80px;
    padding-top: 20px;
    display: block;
    margin-bottom: 50px;
}

.visu-title-text {
    color: #22577a;
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border-bottom: 2px solid #80ed99;
    border-radius: 8px;
    margin: 0;
    text-transform: uppercase;
}

.visu-content {
    width: 90%;
    margin: auto;
    height: 500px;
    margin-bottom: 60px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visu-card {
    width: 80%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    height: 90%;
}

.visu-card-video {
    width: 90%;
    height: 80%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: 20px;
}

.visu-card-video::after {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: calc(320/240+100%);
}

.visu-card-video video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.visu-card-body {
    width: 100%;
    text-align:center;
    box-sizing: border-box;
    margin-top: 10px;
}

.visu-logo {
    width: auto;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-hourglass-end {
    color: #80ed99;
    animation-duration: 4s;
    animation-name: rotation;
    animation-iteration-count: infinite;
}

@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }

  .separation {
    border-bottom: 5px solid #38a3a5;
    width: 10%;
    margin: auto;
    margin-bottom: 30px;
}

/*-----------------RESPONSIVE VISU------------------*/

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

    .visu-title {
        margin-left: 20px;
        padding-top: 15px;
        margin-bottom: 20px;
    }

    .visu-title-text {
        font-size: 30px;
        border-bottom: 2px solid #80ed99;
        border-radius: 8px;
    }

    .visu-content {
        height: 400px;
    }

    .visu-card-video {
        margin-top: 0px;
    }

}

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

.footer-area{
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    height: auto;
    width: 100vw;
    padding-top: 50px;
    color: #fff;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3{
    font-size: 2.1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3rem;
    color: #80ed99;
}

.footer-content img {
    max-width: 200px;
}

.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li{
    margin: 0 10px;
}

.socials a{
    text-decoration: none;
    color: #22577a;
    padding: 5px;
    border-radius: 50%;
}

.socials a i{
    font-size: 1.1rem;
    width: 20px;
    transition: color .4s ease;
}
.fa-facebook {
    color: #3B5998;
    margin-right: 10px;
}

.fa-instagram {
    color: #C32AA3;
    margin-right: 10px;
}

.fa-linkedin {
    color: #007BB5;
    margin-right: 10px;
}

.socials a:hover i{
    color: #80ed99;
}

.footer-bottom{
    background: #80ed99;
    width: 100vw;
    padding: 20px;

    text-align: center;
}
 
.footer-bottom p a{
   color:#44bae8;
   font-size: 16px;
   text-decoration: none;
}
 
.footer-bottom span{
     text-transform: uppercase;
     opacity: .4;
     font-weight: 200;
}

.footer-menu{
    margin: auto;
    justify-content: center;
    display: flex;
}

.footer-bottom li {
    margin-left: 30px;
}

.footer-menu ul{
    display: flex;
}
  
.footer-menu ul li{
  padding-right: 10px;
  display: block;
}
  
.footer-menu ul li a{
    color: #22577a;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}
  
.footer-menu ul li a:hover{
    color: #fff;
}

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

    .footer-content p{
        max-width: 450px;
        margin: 10px auto;
        line-height: 20px;
        font-size: 12px;
        color: #22577a;
    }

    .footer-menu ul{
        display: flex;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .footer-menu ul li a{
        font-size: 15px;
    }

}

