/*--------------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;
}

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

    .btn {
        height: 35px;
        width: 35px;
    }

}


/*-------------------CARD-------------------------*/

.card-area{
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.content{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.main-card {
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card-left{
    max-width: 600px;
    max-height: 500px;
    padding: 20px;
    background-color: #80ed99;
    border-top-left-radius: 2%;
    border-bottom-left-radius: 2%;
}

.card-title {
    max-width: 95%;
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 40px;
    color:rgb(255, 255, 255);
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.card-title span {
    color: #22577a;
}    

.card-text-area {
    max-width: 100%;
    height: auto;
    margin-bottom: 0px;
}

.card-text{
    font-weight: 500;
    margin-left: 10px;
    margin-bottom: 20px;
    font-size: 24px;
    color:rgb(255, 255, 255);
}

.fa-arrow-right {
    float: left;
    width: 10px;
    margin-right: 10px;
    margin-top: 5px;
    color: #22577a;
}

.card-logo img {
    max-width: 30%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.card-right img{
    height: 490px;
    width: 500px;
    margin-top: 5px;
    border-top-right-radius: 2%;
    border-bottom-right-radius: 2%;
}

/*-----------------RESPONSIVE CARD---------------*/

@media only screen and (max-width: 1400px) {
    .card-right img {
        display: none;
    }
}

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

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

    .content{
        width: 80%;
        height: auto;
        display: flex;
        justify-content: center;
        text-decoration: none;
    }

    .card-left {
        border-radius: 2%;
        max-width: 500px;
        max-height: 400px;
        padding: 20px;
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .card-text {
        margin-left: 3px;
        font-size: 18px;
    }

    .fa-arrow-right {
        width: 8px;
        margin-right: 12px;
        margin-top: 0px;
    }

    .card-logo img {
        margin-top: 5px;
    }

    .card-right img {
        display: none;
    }       

}

/*-----------------PRESTATIONS------------------*/

.presta-area {
    max-width: 100%;
    height: auto;
    background-color: rgb(250, 250, 250);
}

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

.presta-title-text {
    color: #22577a;
    font-size: 40px;
    border-bottom: 2px solid #80ed99;
    border-radius: 8px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

/*-------------RESPONSIVE PRESTATIONS--------------*/

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

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

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

}

/*-------------CALORIFUGEAGE---------------*/

.calori {
    max-width: 85%;
    margin: auto;
    height: 30%;
    margin-bottom: 30px;
    margin-top: 40px;
}

.calori-left {
    width: 50%;
    height: 60vh;
    display: inline-block;
}

.calori-title {
    margin-left: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
    display: block;
    padding-top: 100px;
} 

.calori-title-text {
    text-decoration: none;
    font-family: 'Inter',sans-serif;
    font-size: 30px;
    color: #80ed99;
    font-weight: 600;
    text-transform: uppercase;
}

.calori-text {
    margin-left: 20px;
    color: #22577a;
}

.calori-savoir {
    color: #38a3a5;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 30px;
}

.calori-right {
    width: 50%;
    float: right;
}

.calori-image a img{
    max-width: 75%;
    border-radius: 1%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin-left: 60px;
}

/*----------------RESPONSIVE CALORIFUGEAGE------------*/

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

    .calori {
        height: 500px;
        margin-top: 20px;
        margin-bottom: 0px;
    }

    .calori-left {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .calori-title {
        margin-left: 10px;
        padding-top: 20px;
        margin-bottom: 20px;
        padding-top: 20px;
        display: flex;
        justify-content: center;
    } 

    .calori-title-text {
        font-size: 24px;
    }

    .calori-text {
        margin-left: 10px;
    }

    .calori-savoir {
        display: inline-block;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .calori-right {
        width: 100%;
        display: block;
    }
}

/*----------------SEPARATION-------------------*/

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

/*----------------RESPONSIVE SEPARATION-------------*/ 

@media only screen and (max-width: 1330px) {
    
    .separation {
        display: none;
    }

}

/*----------------MATELAS ISOLANT--------------*/

.matelas {
    width: 85%;
    margin: auto;
    height: 30%;
    margin-top: 70px;
    margin-bottom: 10px;
}

.matelas-left {
    width: 50%;
    height: 60vh;
    display: inline-block;
}

.matelas-title {
    margin-left: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
    display: block;
    padding-top: 100px;
} 

.matelas-title-text {
    text-decoration: none;
    font-family: 'Inter',sans-serif;
    font-size: 30px;
    color: #80ed99;
    font-weight: 600;
    text-transform: uppercase;
}

.matelas-text {
    margin-left: 20px;
    color: #22577a;
}

.matelas-savoir {
    color: #38a3a5;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 30px;
}

.fa-circle-info {
    color: #38a3a5;
}

.matelas-right {
    width: 50%;
    float: right;
}

.matelas-image a img{
    max-width: 75%;
    border-radius: 1%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin-left: 60px;
}

/*-----------------RESPONSIVE MATELAS-----------*/

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

    .matelas {
        height: 500px;
        margin-top: 25px;
        margin-bottom: 0px;
    }

    .matelas-left {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .matelas-title {
        margin-left: 10px;
        padding-top: 20px;
        margin-bottom: 20px;
        padding-top: 20px;
        display: flex;
        justify-content: center;
    } 

    .matelas-title-text {
        font-size: 24px;
    }

    .matelas-text {
        margin-left: 10px;
    }

    .matelas-savoir {
        display: inline-block;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .matelas-right {
        width: 100%;
        display: block;
    }
}

/*-----------------PRESTATIONS2------------------*/

.presta-area2 {
    width: 100%;
    height: auto;
}

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

    .presta-area2 {
        margin-bottom: 30px;
    }

}


/*-----------------ISOLATION DES COMBLES-----------------*/

.combles {
    width: 85%;
    margin: auto;
    height: 30%;
    margin-top: 70px;
}

.combles-left {
    width: 50%;
    height: 60vh;
    display: inline-block;
}

.combles-title {
    margin-left: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
    display: block;
    padding-top: 100px;
} 

.combles-title-text {
    text-decoration: none;
    font-family: 'Inter',sans-serif;
    font-size: 30px;
    color: #80ed99;
    font-weight: 600;
    text-transform: uppercase;
}

.combles-text {
    margin-left: 20px;
    color: #22577a;
}

.combles-savoir {
    color: #38a3a5;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 30px;
}

.fa-circle-info {
    color: #38a3a5;
}

.combles-right {
    width: 50%;
    max-height: 100%;
    float: right;
    margin-top: 40px;
}

.combles-image a img{
    max-width: 75%;
    border-radius: 1%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin-left: 60px;
}

/*------------------RESPONSIVE COMBLES--------------*/

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

    .combles {
        height: 500px;
        margin-top: 40px;
        margin-bottom: 0px;
    }

    .combles-left {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .combles-title {
        margin-left: 10px;
        padding-top: 20px;
        margin-bottom: 20px;
        padding-top: 20px;
        display: flex;
        justify-content: center;
    } 

    .combles-title-text {
        font-size: 24px;
    }

    .combles-text {
        margin-left: 10px;
    }

    .combles-savoir {
        display: inline-block;
        margin-top: 15px;
    }

    .combles-right {
        width: 100%;
        display: block;
    }

}

/*------------------SEPARATION2-------------*/

.separation2 {
    border-bottom: 5px solid #38a3a5;
    width: 10%;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 100px;
}


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

    .separation2 {
        display: none;
    }

}

/*-------------------FLOCAGE--------------*/

.flocage {
    max-width: 85%;
    margin: auto;
    height: 30%;
    margin-bottom: 30px;
    margin-top: 40px;
}

.flocage-left {
    width: 50%;
    height: 60vh;
    display: inline-block;
}

.flocage-title {
    margin-left: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
    display: block;
    padding-top: 100px;
} 

.flocage-title-text {
    text-decoration: none;
    font-family: 'Inter',sans-serif;
    font-size: 30px;
    color: #80ed99;
    font-weight: 600;
    text-transform: uppercase;
}

.flocage-text {
    margin-left: 20px;
    color: #22577a;
}

.flocage-savoir {
    color: #38a3a5;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 30px;
}

.flocage-right {
    width: 50%;
    float: right;
}

.flocage-image a img{
    max-width: 75%;
    border-radius: 1%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin-left: 60px;
}

/*-------------------RESPONSIVE FLOCAGE--------------*/ 

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

    .flocage {
        height: 500px;
        margin-top: 40px;
        margin-bottom: 0px;
    }

    .flocage-left {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .flocage-title {
        padding-top: 20px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    } 

    .flocage-title-text {
        font-size: 24px;
    }

    .flocage-text {
        margin-left: 10px;
    }

    .flocage-savoir {
        display: inline-block;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .flocage-right {
        width: 100%;
        display: block;
    }

}

/*-------------------PARTENAIRE AREA---------------*/

.partenaire-title {
    max-width: 100%;
    padding-top: 20px;
    display: block;
    background-color: rgb(250, 250, 250);
    padding-bottom: 20px;
}

.partenaire-title-text {
    max-width: 90%;
    color: #22577a;
    font-size: 40px;
    border-bottom: 2px solid #80ed99;
    border-radius: 8px;
    margin-left: 80px;
    text-transform: uppercase;
    font-weight: 700;
}

.partenaire-area-global {
    max-width: 100%;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgb(250, 250, 250);
    z-index: -1;
}

.partenaire-area-section {
    width: 95%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: absolute;
}

.partenaire-bandeau {
    width: 100%;
    height: 25vh;
    background-color: #38a3a5;
    position: absolute;
    z-index: 1;
}

/*-------------------RESPONSIVE PARTENAIRE AREA-------------*/

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

    .partenaire-title {
        display: none;
    }
    
    .partenaire-area-global {
       display: none;
    }
    
}

/*PARTENAIRE 1*/

.partenaire-area1 {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.part-card1 {
    width: 300px;
    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: 60vh;
}

.part-card1 a { 
    color: rgb(255, 255, 255); 
    text-decoration: none;
}

.part-card-image1 {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.part-card-image1 img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.part-card-body1 {
    text-align:center;
    padding: 15px 20px;
    box-sizing: border-box;
}
  
.part-card-title1, .part-card-text1 {
     font-family: 'Inter', sans-serif;
     color: #80ed99;
     font-size: 15px;
}
  
.part-card-title1 {
    text-align:center;
    text-transform:uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}
  
.part-card-text1 {
    color: #22577a;
}


/*PARTENAIRE 2*/

.partenaire-area2 {
    width: 30%;
    height: 100%;
    display: inline-block;
    margin: 0 auto;
}

.part-card2 {
    max-width: 300px;
    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: 60vh;
    margin: auto;
}
.part-card2 a { 
    color: rgb(255, 255, 255); 
    text-decoration: none;
}

.part-card-image2 {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.part-card-image2 img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.part-card-body2 {
    text-align:center;
    padding: 15px 20px;
    box-sizing: border-box;
}
  
.part-card-title2, .part-card-text2 {
     font-family: 'Inter', sans-serif;
     color: #80ed99;
     font-size: 15px;
}
  
.part-card-title2 {
    text-align:center;
    text-transform:uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}
  
.part-card-text2 {
    color: #22577a;
}

/*PARTENAIRE 3*/

.partenaire-area3 {
    width: 30%;
    height: 100%;
    float: right;
}

.part-card3 {
    max-width: 300px;
    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: 60vh;
    margin: auto;
}
.part-card3 a { 
    color: rgb(255, 255, 255); 
    text-decoration: none;
}

.part-card-image3 {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.part-card-image3 img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.part-card-body3 {
    text-align:center;
    padding: 15px 20px;
    box-sizing: border-box;
}
  
.part-card-title3, .part-card-text3 {
     font-family: 'Inter', sans-serif;
     color: #80ed99;
     font-size: 15px;
}
  
.part-card-title3 {
    text-align:center;
    text-transform:uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}
  
.part-card-text3 {
    color: #22577a;
}

/*-----------------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 li {
    margin-left: 30px;
}
 
.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-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;
    }

}
