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

    text-decoration: none;
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(177, 6, 157);
    display: flex;
    align-items: center;
    justify-content: center;
    


}
.creator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family:"Ballet", cursive;
    font-size: 30px;

}


.load {
    height: 200px;
    width: 200px;
    border-radius: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: black;
}
.load img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.content {
    display: none;
}
body {
    background-color: white;
    min-height: 150vh;
}
header {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background-color: purple;
}
nav {
    min-height: 90px;
    width: 100%;
    background: linear-gradient(90deg, purple, rgb(185, 48, 185));
    position: sticky;
    top: 0;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}
.nav-links {
    display: flex;
    align-items: center;

}
.nav-links ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    list-style: none;
}
.nav-links ul li {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.381);
    cursor: pointer;
}
.nav-links ul li a {
    color: black;
}
.logo h1 {
    color: black;
    font-family: "Ballet", cursive;
    font-size: 35px;
}
.header-contenaire {
    height: 400px;
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
}
.infos-img {
    width: 100%;
    display: flex;
    justify-content: center;
}
.infos-img .box {
    height: 200px;
    width: 200px;
    background-color: white;
    border-radius: 100%;
    position: relative;
    transition: .3s;

}
.infos-img {
    display: flex;
    align-items: center;
}
.infos-img .box:nth-child(2){
    margin-bottom: 150px;
}
.infos-img .box img {
    height: 100%;
    width: 100%;
    border-radius: 100%;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.411), -10px -10px 15px rgba(0, 0, 0, 0.484);

}
.infos-img .box:nth-child(1) {
    transform: rotate(-45deg);
}
.infos-img .box:nth-child(3) {
    transform: rotate(45deg);
}
.infos-img .box:hover {
    transform: scale(1.09);
    

}
.type {
    text-align: center;
    padding-bottom: 20px;
}
main {
    position: relative;
    padding: 30px;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient( 90deg, purple, rgb(160, 7, 160));
}
.contenaire {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}
main h1 {
    text-decoration: underline;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.199), -1px -1px 5px rgba(0, 0, 0, 0.153);
    
}
.contenaire .card {
    height: 300px;
    width: 230px;
    background-color: rgba(255, 255, 255, 0.831);
    border-radius: 14px;
}
.card {
    display: grid;
    grid-template-rows: 50% 50%;
    transition: .5s;

}
.card:hover {
    transform: scale(1.05);

}
.head-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.head-card img {
    height: 90%;
    width: 90%;
    object-fit: cover;
    border-radius: 14px;
}
.body-card p {
    font-size: 19px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 10px;
}
.body-card h3 {
    text-align: center;
    font-size: 18px;
}
.body-card{
    display: flex;
    align-items: center;
    flex-direction: column;
    
}
.body-card button {
    margin-top: 10px;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 15px;
    background-color: rgb(22, 205, 64);
    border: 1px solid black;
    transition: .4s;

}
.body-card button:hover {
    transform: scale(1.05);
    cursor: pointer;
}
@media screen and (max-width: 1000px) {
    .contenaire {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 800px) {
    .contenaire {
        grid-template-columns: repeat(2, 1fr);
    }
    .infos-img .box {
        height: 160px;
        width: 160px;
    }
}
@media screen and (max-width: 550px) {
    .contenaire {
        grid-template-columns: repeat(1, 1fr);
    }
    .infos-img .box {
        height: 140px;
        width: 140px;
    }
}
@media screen and (max-width: 480px) {
    nav {
        flex-direction: column;
    }
    .infos-img .box {
        height: 124px;
        width: 124px;
    }
}
@media screen and (max-width: 425px) {
    .infos-img .box {
        height: 120px;
        width: 120px;
    }
}
@media screen and (max-width: 400px) {
    .infos-img .box {
        height: 105px;
        width: 105px;
    }
}
@media screen and (max-width: 360px) {
    .infos-img .box {
        height: 100px;
        width: 100px;
    }
}
@media screen and (max-width: 320px) {
    .infos-img .box {
        height: 80px;
        width: 80px;
    }
}


.about {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 50px;
}

.about1 {
    min-height: 70vh;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns:repeat(1, 1fr);
    background-color: rgba(0, 0, 0, 0.53);
    border-radius: 15px;
}
@media screen and (min-width: 800px) {
    .about1 {
        width: 80%;
    }
}
@media screen and (min-width: 1000px) {
    .about1 {
        width: 60%;
    }
}
.about-img {
    position: relative;
    overflow: hidden;
}
.about-img img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    border-radius: 134px 0px 106px 0px;
    -webkit-border-radius: 134px 0px 106px 0px;
    -moz-border-radius: 134px 0px 106px 0px;
}
.about-text {
    color: white;
    
}
.about-text h3 {
    color: white;
    text-align: center;
    font-size: 20px;
    padding: 10px;
    font-weight: bold;
    text-decoration: underline;

}
.about2 img {
    border-radius: 0px 135px 0px 121px;
    -webkit-border-radius: 0px 135px 0px 121px;
    -moz-border-radius: 0px 135px 0px 121px;
}
.about3 img {
    border-radius: 79px 42px 42px 0px;
    -webkit-border-radius: 79px 42px 42px 0px;
    -moz-border-radius: 79px 42px 42px 0px;
}
.about5 {
    border-radius: 148px 0px 0px 0px;
    -webkit-border-radius: 148px 0px 0px 0px;
    -moz-border-radius: 148px 0px 0px 0px;
}
.about-text ul {
    padding-left: 30px;
}
.about-text p {
    padding: 10px;
    color: white;
    font-size: 19px;

}


footer {
    height: 200px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.968);
    position: relative;
}
.reseau-sociaux {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
}
footer .icon a{
    font-size: 40px;
    transition: all .3s;
    cursor: pointer;
}

footer .icon:nth-child(1) a {
    color: blue;
}
footer .icon:nth-child(2) a {
    color: rgb(0, 0, 0);
}
footer .icon:nth-child(3) a {
    color: rgb(52, 255, 96);
}
footer p {
    color: rgb(0, 0, 0);
    text-align: center;
    padding-top: 20px;
    font-size: 18px;
}
footer .barre {
    height: 1px;
    width: 90%;
    background-color: black;
    margin: 10px auto;

}
@media screen and (min-width:600px) {
    .about-text {
        font-size: 26px;
    }
    .about-text p {
        font-size: 26px;
    }
    .about-text h3 {
        font-size: 35px;
    }
}









