@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    background-color:#0fd669;
}
header .logo {
    font-size: 25px;
}
header .logo span {
    color: #e8ad0c;
}
header .menu a {
    position: relative;
    margin: 0 10px;
    text-decoration: 0;
    color: #0a0a0a;
    transition: 0.5s;
}
header .menu a:before {
    position: absolute;
    top: -2px;
    content: "";
    width: 0;
    height: 2px;
    background-color: #93d6d0;
    transition: 0.5s;
}
header .menu a:hover:before {
    width: 100%;
}
header .menu a:hover {
    color: #000;
}
            /* footer */
footer {
    background-color: #0fd669;
    margin-top: 50px;
    margin-bottom: -20px;
}
.socialIcons{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;

}
.socialIcons a {
    font-size: 30px;
    display: inline-block;
    border: 1px solid beige;
    width: 75px;
    padding: 20px;
    border-radius: 8px;

}
.socialIcons a:hover{
    background-color: antiquewhite;
}
footer .footermenu{
    text-align: center;
}

footer .footermenu a {
    display: inline-block;
    list-style: none;
    padding: 30px;
    text-decoration: none;

}
footer .mail{
    text-align: center;
}
footer .mail i.email{
    display: inline-block;
    list-style: none;
    padding: 30px;
    text-decoration: none;
}
footer.local{
    text-align: center;
}
footer.local.a {
    width: 100px;
    height: 100px;
    background-color: black;
}

.footerBottom{
    text-align: center;
}

/* home */

.home {
    height: calc(100vh - 55px);
    background: url("images/img1.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-left: 5%;
    padding-bottom: 50px;
}
.home-infos {
    background-color: #fff;
    border-radius: 6px;
    padding: 50px;
    animation: anime 2s linear;
}

/* animation home-infos */

@keyframes anime {
    from{
        transform: translateX(-600px);
    }
}
.home-infos h1 {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.home-infos p {
    margin-top: 10px;
    margin-bottom: 20px;
}
.home-infos a {
    text-decoration: 0;
    border: 2px solid #93d6d0;
    color: #93d6d0;
    border-radius: 6px;
    padding: 5px 20px;
    margin-top: 5px;
    font-weight: 400;
    text-transform: capitalize;
    transition: 0.5s;
}
.home-infos a:hover {
    background-color: #93d6d0;
    color: #fff;
    letter-spacing: 1px;
}

/* services */

.services {
    padding: 0 10%;
}
.title {
    text-align: center;
    margin-top: 50px;
    font-size: 35px;
    letter-spacing: 1px;
    text-transform: uppercase
}
.sub-title {
    text-align: center;
    color: #93d6d0;
    margin: 20px 0;
}
.sub-title2 {
    text-align: center;
    color: #252323;
    margin: 20px 0;
}
.list-services {
    display: grid;
    grid-template-columns: repeat(auto-fit,20rem);
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.list-services .box {
    padding: 30px;
    background-color: #f3fbfa;
    border-radius: 6px;
    transition: 0.5s;
}
.list-services .box h1 {
    text-transform: uppercase;
    color: #93d6d0;
    margin-bottom: 10px;
    font-size: 18px;
    letter-spacing: 1px;
}
.list-services .box p {
    font-size: 16px;
}
.list-services .box:hover{
    background-color: #93d6d0;
} 
.list-services .box:hover h1 {
    color: #fff;
}
.list-services .box:hover p {
    color: #333;
}

/* banner */
.banner {
    height: calc(100vh - 55px);
    background: url("images/img2.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-left: 5%;
    padding-bottom: 50px;
}

.banner-infos {
    background-color: #fff;
    border-radius: 6px;
    padding: 50px;
    animation: anime 2s linear;
}

/* animation home-infos */

@keyframes anime {
    from{
        transform: translateX(-600px);
    }
}
.banner-infos h1 {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.banner-infos p {
    margin-top: 10px;
    margin-bottom: 20px;
}
.banner-infos a {
    text-decoration: 0;
    border: 2px solid #93d6d0;
    color: #93d6d0;
    border-radius: 6px;
    padding: 5px 20px;
    margin-top: 5px;
    font-weight: 400;
    text-transform: capitalize;
    transition: 0.5s;
}
.banner-infos a:hover {
    background-color: #93d6d0;
    color: #fff;
    letter-spacing: 1px;
}





/*Fabiola*/

#Fabiola {
    margin-top: 50px;
    height: calc(100vh - 50px);
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
/*Scrollbar CSS*/

::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}
::-webkit-scrollbar-thumb{
    background-color: #93d6d0;
}

#Fabiola .left {
    width: 40%;
}
#Fabiola .left h1 {
    font-size: 35px;
    margin-bottom: 10px;
}
#Fabiola .left h1 span {
    color: #ea1f33;
}
#Fabiola .left p {
    margin-bottom: 30px;
    color: #999;
    font-size: 13px;
}
#Fabiola .left a {
    background-color: #ea1f33;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    transition: 0.5s;
}
#Fabiola .left a:hover {
    background-color: #000;
}
#Fabiola .right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#Fabiola .right img {
    width: 100%;
}

#Clinic {
    margin-top: 50px;
    height: calc(50vh - 50px);
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#Clinic .left {
    width: 40%;
}
#Clinic .left h1 {
    font-size: 35px;
    margin-bottom: 10px;
}
#Clinic .left h1 span {
    color: #93d6d0;
}
#Clinic .left p {
    margin-bottom: 30px;
    color: #999;
    font-size: 13px;
}
#Clinic .left a {
    background-color: #ea1f33;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    transition: 0.5s;
}
#Clinic .left a:hover {
    background-color: #000;
}
#Clinic .right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#Clinic .right img {
    width: 90%;

#Clinic .right video {
    width: 100%;

          /*localisation*/
.local.a{
    text-align: center;
}
.local.a {
    width: 100px;
    height: 100px;
    background-color: black;
}