/*----------------- Tous le site -----------------*/

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/nunito/v23/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshdTQ3jw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

p {
    font-family: Nunito, sans-serif !important;
    font-style: normal;
    font-size: 17px;
    font-weight: 600;
    color: rgb(63, 63, 63);
    text-align: justify;
}

.web-link{
    color: #32557f;
    text-decoration: none;
    border-bottom: 2px dashed #32557f;
    transition: 0.2s;
}

.web-link:hover{
    color: black;
    border-bottom: 2px dashed black;
}

.tags-link{
    font-weight: normal;
    text-decoration: none;
}

/*----------------- Navbar -----------------*/
nav {
    font-family: Nunito, sans-serif !important;
    font-style: normal;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
}

nav li {
    padding: 10px;
    margin-left: 10px;
}

nav a {
    color: rgba(255, 255, 255, 0.7) !important;
}

nav a:hover {
    color: rgb(255, 255, 255) !important;
}

.title {
    color: white !important;
    font-size: 25px !important;
    font-weight: 1000;
}

.lg-icon {
    height: 20px;
    width: 20px;
    margin-top: 10px;
}

/*----------------- Animation du site -----------------*/

[class*="loader-"] {
    opacity: 0;
}


@media screen and (max-width: 768px) {
    [class*="loader-"] {
        opacity: 1;
        transform: translateZ(0) !important;
        transform: translateY(0) !important;
    }
}


.loader-1 {
    transform: translateY(-30px);
}

.loader-2 {
    transform: translateX(-30px);
}

.loader-3 {
    transform: translateX(30px);
}

.loader-visible {
    opacity: 1;
    transform: translateZ(0);
    transform: translateY(0);
    transition: 1s cubic-bezier(0.5, 0, 0, 1);
}


/*----------------- Accueil -----------------*/
/*----------------- Image de fond de la page d'accueil -----------------*/
.imgacc {
    min-height: 30rem;
    position: relative;
    display: table;
    width: 100%;
    height: 100vh;
    padding-top: 1rem;
    padding-bottom: 8rem;
    background: linear-gradient(90deg, rgba(1, 1, 1, 0.70) 0%, rgba(1, 1, 1, 0.70) 100%), url(../img/DALLE-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imgacc i {
    color: gray;
    transition: 0.3s;
}

.imgacc h1 {
    color: white;
    font-size: 2rem;
}

@media screen and (min-width: 768px) {
    .imgacc h1 {
        font-size: 3rem;
        transition: 0.5s;
    }
}

/*----------------- Text animé de la page d'accueil -----------------*/
.txt-type {
    font: 1.5rem Inconsolata, monospace !important;
    border-right: 2px solid;
    white-space: nowrap;
    color: white;
    margin: 0 auto;
    letter-spacing: 2px;
    animation: blink-caret 0.7s step-end infinite;
    transition: 0.3s;
}

.lead {
    text-align: center !important;
}


.txt-type>.txt {
    font: 1.3rem Inconsolata, monospace !important;
    white-space: nowrap;
    color: white;
    margin: 0 auto;
    letter-spacing: 2px;
    transition: 0.3s;
}

@media screen and (max-width: 768px) {
    .txt-type > .txt {
        font: 0.9rem Inconsolata, monospace !important;
    }
    .txt-type {
        font: 1rem Inconsolata, monospace !important;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: green;
    }
}

/*----------------- Animation du bouton page d'accueil -----------------*/
.animUpDown {
    animation: up-down 1s cubic-bezier(0.39, 0.58, 0.57, 1) infinite alternate-reverse both;
    bottom: 0;
    transition: 0.5s;
}

.animUpDown:hover {
    color: white;
    transition: 0.5s;
}

@keyframes up-down {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*----------------- Image page d'accueil -----------------*/
.img-pr {
    height: 200px;
    width: 200px;
}

/*----------------- Profil -----------------*/
.sectitle {
    font-family: Nunito, sans-serif !important;
    font-style: normal;
    font-size: 30px;
    font-weight: 600;
    color: rgba(0, 0, 0);
    border-left: 4px solid rgba(71, 71, 73, 0.7);
    padding-left: 20px;
}

.bg-gray {
    background-color: #f5f5f5;
}

.black {
    color: #000000;
}

.profil h3 {
    font-family: Nunito, sans-serif !important;
    font-style: normal;
    font-size: 22px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.profil img {
    border-radius: 1%;
    width: 300px;
    height: 300px;
}

.profil button {
    background-color: #d44547 !important;
    font-family: Nunito, sans-serif !important;
    font-style: normal;
    font-size: 18px;
    box-shadow: 0 0 30px rgb(31 45 61 / 15%);
}

.profil button:hover {
    background-color: #b13b3d !important;
    box-shadow: 0 0 30px rgb(31 45 61 / 20%);
    transition: 0.2s;
}

.profil .card {
    box-shadow: 0 0 30px rgb(31 45 61 / 10%);
    transition: 0.2s;
    border-radius: 10px;
    border: none;
}

.title-strg {
    color: #000000;
    font-size: 20px;
    transition: 0.3s;
}

.lt-p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 10px;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .title-strg {
        font-size: 14px;
    }

    .lt-p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .profil .card{
        display: none;
    }
}




/*----------------- Compétences -----------------*/

.cpt .card {
    box-shadow: 0 0 30px rgb(31 45 61 / 13%);
    transition: 0.2s;
    border-radius: 10px;
    border: none;
}

.cpt .card:hover {
    box-shadow: 0 0 30px rgb(31 45 61 / 20%);
    transition: 0.2s;
}

.cpt h5 {
    font-family: Nunito, sans-serif !important;
    font-style: normal;
    font-size: 22px;
    color: rgb(0, 0, 0);
    line-height: 40px;
}

.cpt i {
    color: white;
    font-size: 1.5rem;
    background-color: #d44547;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 50%;
    margin-right: 20px;
}

.title-cpt{
    color: black;
    font-size: 18px;
}

.italic-par{
    font-style: italic;
}

.und-p{
    text-decoration: underline;
}


/*----------------- Expériences -----------------*/
@media (max-width: 992px) {
    .exp .justify-content-end {
        justify-content: center !important;
    }

    .exp .justify-content-start {
        justify-content: center !important;
    }

    .exp .col-8 {
        width: 100% !important;
    }
}

.exp .card {
    margin-bottom: 25px;
}

.exp .card {
    box-shadow: 0 3px 10px rgb(0 0 0 / 30%);
    transition: 0.2s;
    border-radius: 20px;
    border: none;
}

.algn{
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp i{
    font-size: 3rem;
    color: white;
    vertical-align: middle;
}

.bg-blue {
    background-color: #456bd4;
}

.exp h4 {
    font-family: 'Poppins', sans-serif !important;
    font-style: normal;
    font-size: 30px;
    font-weight: 700;
    transition: 0.4s;
    padding: 10px;
    vertical-align: middle;
}

@media (max-width: 1198px) {
    .exp h4{
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .exp h4{
        font-size: 40px;
    }
}

.margin-rm{
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.blue {
    color: #456bd4;
}

.gray {
    color: #b0b0b0
}

.bg-gray2 {
    background-color: #b0b0b0
}

.exp h5 {
    font-family: Nunito, sans-serif !important;
    font-style: normal;
    font-size: 22px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.exp button {
    font-family: Nunito, sans-serif !important;
    font-style: normal;
    font-size: 18px;
    box-shadow: 0 0 30px rgb(31 45 61 / 15%);
}

/*----------------- Réalisations -----------------*/

.real h5 {
    font-family: Nunito, sans-serif !important;
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.real img {
    max-height: 200px;
}

.real .card {
    margin-bottom: 10px;
    display: inline-block !important;
    width: 100%;
}

@media (min-width: 576px) {
    .card-columns {
        column-count: 1;
    }
}

@media (min-width: 768px) {
    .card-columns {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .card-columns {
        column-count: 3;
    }
}

.real a:hover{
    color: white;
}


/*----------------- Bas de page -----------------*/
#footer {
    background: #343b40;
    padding: 10px;
    color: #fff;
    font-size: 14px;
}

#footer .copyright {
    text-align: center;
}