@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Grotesk:wght@300..700&display=swap');



body{
    background: #ff3c32;
    color: white;
}

:root {
    --header-height: 3rem;
    
    /*===== Colores =====*/
    /* --first-color: rgb(22, 32, 34);
    --dark-color: rgb(47, 68, 72);
    --dark-color-alt: rgb(31, 27, 41); 
    --white-color: white; */


    --color1: #0e0b28;
    --color2: #0e0b28;
    --color3: #ff5e57;
    --color4: #0930fa;
    --color5: #ffc868;
    --color6: #f7ead7;
    --color7: #4e8c77;

    /*===== Fuente y tipografia =====*/
    --body-font1: 'Space Grotesk', sans-serif;
    --body-font2: 'DM Sans', sans-serif;
    --normal-font-size: 1.5rem;
    --small-font-size: 1rem;

    /*===== z index =====*/
    --z-fixed: 100;
}

/* @media screen and (min-width: 1080px) { */
:root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
}
/* } */

/*===== BASE =====*/
*, ::before, ::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
main{
    font-family: var(--body-font2);
}
body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font1);
    font-size: var(--normal-font-size);
    font-weight: 500;
}


/* ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none; 
} */



.bd-grid {
    max-width: 1024px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

/*===== HEADER =====*/
.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 1.5rem;
    background-color: var(--color4);
    z-index: var(--z-fixed);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 4px var(--color1) solid;
}

.header__logo {
    color: var(--color6);
}

.header__toggle {
    font-size: 1.5rem;
    color: var(--color6);
    cursor: pointer;
}

/*===== NAV =====*/
/* @media screen and (max-width: 1080px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        background-color: var(--color4);
        color: var(--color6);
        width: 100%;
        height: 100vh;
        padding: 1.5rem 0;
        z-index: var(--z-fixed);
        -webkit-transition: .5s;
        transition: .5s;
    }
}

.nav__content {
    height: 100%;
    -ms-grid-rows: max-content 1fr max-content;
        grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
        grid-template-rows: max-content 1fr max-content;
    row-gap: 2rem;
}

.nav__close {
    position: absolute;
    right: 1.5rem;
    font-size: 1.3rem;
    padding: .25rem;
    background-color: var(--color2);
    border-radius: 50%;
    cursor: pointer;
}

.nav__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: .25rem;
    margin-bottom: .8rem;
    width: 56px;
    height: 56px;
    background-color: var(--color3);
    border-radius: 50%;
    overflow: hidden;
}

.nav__img img {
    width: 46px;
}

.nav__name {
    display: block;
    color: var(--color6);
    font-size: 20px;
}

.nav__profesion {
    font-size: var(--small-font-size);
}

.nav__menu {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.nav__item {
margin: 2.5rem 0;
}

.nav__link {
    color: var(--color6);
}

.nav__social {
    padding-top: .5rem;
}

.nav__social-icon {
    font-size: 1.2rem;
    color: var(--color6);
    margin-right: 1rem;
}

.nav__social-icon:hover {
    color: var(--color3);
}

Aparecer menu
.show {
    left: 0;
}

Active menu
.active {
    color: var(--color3);
} */

/*===== MEDIA QUERIES =====*/
/* @media screen and (min-width: 1080px) {
    body {
        margin: 0;
    }
    .header {
        height: calc(var(--header-height) + 1rem);
    }
    .header__logo, .header__toggle {
        display: none;
    }
    .nav {
        width: 100%;
    }
    .nav__content {
        -ms-grid-columns: (max-content);
            grid-template-columns: repeat(3, -webkit-max-content);
            grid-template-columns: repeat(3, max-content);
        -ms-grid-rows: 1fr;
            grid-template-rows: 1fr;
        -webkit-column-gap: 1rem;
                column-gap: 1rem;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .nav__close, .nav__profesion {
        display: none;
    }
    .nav__perfil {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .nav__img {
        width: 32px;
        height: 32px;
        margin-right: .5rem;
        margin-bottom: 0;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .nav__img img {
        width: 26px;
    }
    .nav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .nav__item {
        margin: 0 .25rem;
    }
    .nav__link {
        padding: .5rem .8rem;
        border-radius: .25rem;
    }
    .nav__link:hover {
        background-color: var(--color7);
    }
    .active {
        background-color: var(--color7);
        color: var(--color6);
    }
}

@media screen and (min-width: 1080px) {
    .bd-grid {
        margin-left: auto;
        margin-right: auto;
    }
} */










.container_slide {
    font-family: var(--body-font2);
    margin: 50px 15px;
    /* border: 2px white solid; */
    display: flex;
    align-items: center;
    justify-content: space-between; /* ou flex-end */
}

.container_slide .texte img{
    width: 85%;
    height: auto;
    /* border: 2px white solid; */
    margin-bottom: 50px;
    margin-top: -50px;
}

.container_slide h1{
    font-size: 120px;
    /* border: 2px white solid; */
}
.image{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    /* border: 4px white double; */
    padding: 20px 0;
    border-radius: 10px;
    margin-top: -20px;
    margin-right: 200px;
    margin-left: -100px;
}
.image img {
    max-width: 110%;   /*l'image ne dépassera pas la largeur du parent */
    height: auto;      /*conserve les proportions*/
}

.texte{
    padding-left: 60px;
    display: flex;
    align-content: start;
    flex-wrap: wrap;
}

#subtitle{
    font-size: 20px;
}





.logo{
    text-transform: none;
}








.container-acc-hg{
  width: 96%;
  display: flex;
  background: var(--color3);
  border-radius: 10px;
  margin: 2%;
}

.acc-hg-txt{
  flex: 0 0 70%;
  box-sizing: border-box;
  padding: 20px;
  text-align: justify;
  /* border: 5px dashed rgb(37, 37, 37); */
  border-radius: 10px;
  padding: 2% 5%;
}

.acc-hg-txt h2{
  margin: 3% 0;
  font-size: 40px;
  font-family: var(--body-font1);
}

.acc-hg-txt p{
  font-size: 20px;
}
.acc-hg-txt a{
  font-size: 20px;
  color: var(--color1);
  padding: 2%;
}

.acc-hg-vid{
  display: flex;
  flex: 1;
  margin: 1%;
  width: auto;
  height: auto;
  align-self: center;
}

.acc-hg-vid iframe{
  width: 100%;
  border-radius: 10px;
  border: 5px solid rgb(37, 37, 37);
}














.container-acc-stream{
  width: 96%;
  display: flex;
  background: var(--color3);
  border-radius: 10px;
  margin: 2%;
}

.acc-stream-txt{
  flex: 0 0 60%;
  box-sizing: border-box;
  padding: 20px;
  text-align: justify;
  /* border: 5px dashed rgb(37, 37, 37); */
  border-radius: 10px;
  padding: 2%;
}

.acc-stream-txt h2{
    margin: 3% 0;
    font-size: 25px;
    font-family: var(--body-font1);
    text-align: left;
}

.acc-stream-txt p{
  font-size: 20px;
}
.acc-stream-txt a{
  font-size: 20px;
  color: brown;
}

.acc-stream-pic{
  display: flex;
  flex: 1;
  margin: 1%;
  width: auto;
  height: auto;
  align-self: center;
}

.acc-stream-pic img{
  width: 100%;
  border-radius: 7px;
  border: 5px solid rgb(37, 37, 37);
}

.container-acc-stream-reverse{
  width: 96%;
  display: flex;
  background: var(--color3);
  border-radius: 10px;
  margin: 2%;
}

main h1{
    text-align: center;
    margin: 0 2%;
}










/* 
.carte {
    width: 96%;    
    height: auto;      
    border-radius: 12px;
    overflow: hidden;   
    background: var(--color6); 
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: Arial, sans-serif;
}


.carte-header {
    background: var(--color4);
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo {
    height: 170px; 
    object-fit: contain;
    margin-bottom: 20px;
}

.carte-body {
    padding: 20px;
    text-align: left;
}

.carte-body h2 {
    color: var(--color3);
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.carte-body p {
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    font-family: var(--body-font2);
    text-align: justify;
}

.a-la-une{
    padding: 10px 10px 10px 20px;
    background: var(--color4);
    color: var(--color6);
    font-size: 30px;
    font-family: var(--body-font1);
} */


.alaune{
    display: flex;
    justify-content: space-evenly;
    width: auto;
    height: auto;
    flex-wrap: wrap-reverse;
    flex-direction: row-reverse;
}
.alaune img{
    width: auto;
    max-height: 500px;
}

