@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Inter&family=Vina+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    background-color: #f4fffd;

}

main.container{
    margin-top: 200px;
    width: 100vw;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* border: solid pink 2px; */
}

h1{
    font-size: 30pt;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Staatliches', sans-serif;

}

.psyc-container{
    /* border: solid red 1px; */
    position: relative;
    /* margin-top: 200px; */
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    /* flex-wrap: wrap; */
    gap: 30px;
    margin: 50px 0;
    -webkit-animation: fadeInLeft 1s both;
    -o-animation: fadeInLeft 1s both;
    -moz-animation: fadeInLeft 1s both;
    animation: fadeInLeft 1s both;
}

.psyc-box{
    /* border: solid green 1px; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    /* flex-wrap: wrap; */
    gap: 10px;
    padding: 10px 15px;
    /* border: solid green 1px; */
    width: 40%;
    height: 100%;
    /* position: relative; */

}

.psyc-box h2, .psyc-box h3{
    color: #1ca4db;
}

.psyc-box img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.list-infos-item{
    list-style:disc;
    list-style-position: inside;
}

.divider, .first-divider{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 80%;
    height: 40px;
    /* background: rgb(80, 112, 218); */
    color: #0780ae;
    
    border-radius: 10px;
    font-size: 25pt;
    /* border: solid red 5px; */
    /* color: #fff; */
    /* text-transform: uppercase; */
    font-weight: bold;
    margin-bottom: 50px;
}


.content{
    content: '';
    height: 0.12rem;
    width: 50%;
    position: relative;
    border-radius: 20px;
    background-color: #48adce ;
}

@media (max-width: 750px){
    .psyc-container{
        flex-direction: column;
        gap: 100px;
        height: max-content;
    }

    .psyc-box{
        width: 100%;
    }

    .divider, .first-divider{
        text-align: center;

    }
} 




@-webkit-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -webkit-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-o-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -o-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeft{
    0%{
        opacity: 0;
        -moz-transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@keyframes fadeInLeft{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInTop{
    0%{
        opacity: 0;
        transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInTop{
    0%{
        opacity: 0;
        -moz-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-webkit-keyframes fadeInTop{
    0%{
        opacity: 0;
        -webkit-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-o-keyframes fadeInTop{
    0%{
        opacity: 0;
        -o-transform: translateY(-50px);
    }
    100%{
        opacity: 1;
        -o-transform: translateY(0);
    }
}



