@import url(style-app.css);
/* ALL */


/*=== Bouton ===*/
.btn-rounded {
    padding: 5px 20px !important;
    border-radius: 30px !important;
}
.btn-social-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 3rem;
    width: 100%;
}
.btn-social-icon.btn-social-bg {
    width: 4rem;
    height: 4rem;
    background-color: rgba(0,0,0,.4) !important;
    border-radius: 50%;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-social-icon.btn-social-whatsapp {
    color: #fff;
    background-color: #218838;
}
.btn-social-icon.btn-social-whatsapp {
    background-color: #2f9e48;
}
.btn-social-icon>:first-child {
    position: relative !important;
}
.btn-social-icon i {
    color: #ffffff;
    font-size: 1.5rem !important;
}
btn-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #218838;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.page-header {
    background: linear-gradient(80deg, rgba(var(--rgb-main-light-color), 1), rgba(var(--rgb-main-dark-color), .9)),
    url(../img/index.png) no-repeat bottom/80%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    animation-duration: .5s;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

/* === PLATEFORME === */
.platform {
    background: #FFF;
    border-radius: 10px;
    box-shadow: .1px .1px 20px rgba(0,0,0, 0.3);
    position: relative;
    margin-bottom: 30px;
}
.platform .platform-img {
    height: 200px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.platform .platform-content {
    padding: .5em 1rem;
    height: 60px;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.platform .platform-content .title {
    margin: 10px 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
}
.platform .platform-content .content {
    display: none;
    opacity: 0;
    font-size:.9em;
    transition: all .5s ease-in-out;
}
.platform .platform-content .content a {
    display: block;
    margin-top: 1rem;
}
.platform:hover .platform-img  {
    height: 50px;
}
.platform:hover .platform-content {
    height: 210px;
}
.platform:hover .platform-content .content {
    display: block;
    opacity: 1;
}
