@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Kawi:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Kawi', sans-serif;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    background-color: rgb(255, 255, 255);
    color: white;
}

.partContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px;
}

.colore {
    background-color: black;
}

.Titre {
    text-align: center;
    margin-left: 0px 50px;
    color: rgba(0, 0, 0, 0.337);
    font-size: clamp(32px, 5vw, 50px);
    transition: all 0.5s ease;
}


.colore .Titre {
    color: rgba(255, 255, 255, 0.337);
}


.Titre.actif {
    color: rgb(0, 0, 0);
    transition: all 0.5s ease;
}

.colore .Titre.actif {
    color: rgb(255, 255, 255);
}

.Titre2 {
    color: white;
    font-size: clamp(18px, 3vw, 26px);
    text-align: center;
}

.Titre3 {
    color: rgb(255, 255, 255);
    font-size: clamp(24px, 4vw, 38px);
    text-align: center;
}

.texte {
    text-align: justify;
    font-size: clamp(12px, 2vw, 16px);
    color: rgb(165, 165, 165);
}

.Transition {
    margin: 20px 50px 50px 50px;
    color: rgb(0, 0, 0);
    border: solid 3px rgb(0, 0, 0);
    border-radius: 10px;
    width: 100%;
}

.transitionCol1 {
    height: 50px;
    background: linear-gradient(180deg, black, white);
}

.transitionCol2 {
    height: 50px;
    background: linear-gradient(180deg, white, black);
}

.colore .Transition {
    color: rgb(255, 255, 255);
    border: solid 3px rgb(255, 255, 255);
}

.Transition2 {
    margin: 50px 5px 50px 5px;
    color: rgb(0, 0, 0);
    border: solid 3px rgb(0, 0, 0);
    border-radius: 10px;
    width: 100%;
}

.colore .Transition2 {
    color: rgb(255, 255, 255);
    border: solid 3px rgb(255, 255, 255);
}

.containerContent {
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 50px;
    margin-bottom: 100px;
    transition: all 0.5s ease;
}

.Centered {
    flex-direction: column;
}

.containerContent.actif {
    visibility: visible;
    opacity: 1;
    transition: all 0.5s ease;
}

.image {
    width: 50%;
    height: auto;
    transition: all 0.3s ease;
    max-width: 350px;
    min-width: 250px;
    margin: 0 50px;
}

.grandeImage {
    width: 50%;
}

.image2 {
    width: 75%;
    height: auto;
    margin-right: 50px;
}

.image:hover {
    transform: scale(1.1);
    transition: all 0.3s ease
}

.logo {
    width: 80px;
    height: 80px;
    margin: 20px 0;
}

.containerT2texte {
    margin-bottom: 50px;
}

.texteContainer {
    max-width: 1050px;
    min-width: 250px;
}

.texteSombre {
    color: rgb(34, 34, 34)
}

.centeredTexte {
    text-align: center;
}

.lien {
    font-weight: bold;
    color: #0084ff;
}

.lien:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}


footer {
    background-color: black;
    padding: 20px;
    padding-top: 40px;
    padding-bottom: 5px;
}

.partie3 {
    margin-bottom: 20px;
}

.row {
    display: flex;
    justify-content: center;
    text-align: center;
}

.col-md-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lienFooter {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.col-md-4 .lienFooter li {
    list-style-type: armenian;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.TransitionFoot {
    width: 100%;
    margin-top: 50px;
}

.copy {
    margin-top: 20px;
    text-align: center;
}

.appel {
    position: relative;
    width: 50px;
    height: 50px;
    padding: 5px;
    top: -5px;
    left: 10px;
    background-color: #0084ff;
    border-radius: 100%;
    fill: white;
    transition: all 0.3s ease
}

.appel:hover {
    background-color: #000000;
    transition: all 0.3s ease
}

@media (max-width: 1350px) {

    .containerContent {
        flex-direction: column;
    }

    .invert {
        flex-direction: column-reverse;
    }

    .image {
        width: 75%;
        height: auto;
        margin-bottom: 50px;
    }

    .image2 {
        margin-right: 0;
    }
}

@media (max-width: 770px) {

    .col-md-4 {
        margin-top: 40px;
    }
}