section.home{
    padding-top: 30px;
    padding-bottom: 30px;
}

section.home .col-part{
    height: calc( 100vh - 60px );
    opacity: 0;
    animation: slideFromLeft 1s ease-out forwards;
    text-align: center;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
section.home .col-part .lien{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section.home .col-part .bd{
    margin: 20px 10px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
section.home .col-part:hover .bd{
    background-color: rgba(255, 255, 255, 0.9);
}
section.home .col-part img.logo{
    max-height: 90px;
    padding-top: 20px;
    padding-bottom: 20px;
}
section.home .col-part:last-child{
    /* background-color: #ff008c; */
    animation: slideFromRight 1s ease-out forwards;
}
section.home .col-part:last-child img.logo{
    max-width: 200px;
}
section.home .col-part:last-child::after{
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 2px;
    height: 100%;
    background-color: #ffffff;
}



@keyframes slideFromLeft {
    from {
        transform: translateX(-300px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    from {
        transform: translateX(300px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/*************/



/** Responsive *****************************************/

@media (max-width: 1199px){
}

@media (max-width: 991px){
    section.home .col-part{
        height: calc( 50vh - 30px );
    }
    section.home .col-part:last-child::after{
        top: -1px;
        left: 0;
        width: 100%;
        height: 2px;
    }
    section.home .col-part img.logo{
        max-height: 70px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 767px){
}

@media (max-width: 575px){
}