@import url(angel.css);
@import url(rabie.css);


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;800&display=swap");

@font-face {
    font-family: 'MetricHpe';
    src: url("MetricHPE-Bold.otf") format("truetype"), url("../font/MetricHPE-Bold.otf") format("truetype"), url("../font/MetricHPE-Bold.otf") format("truetype");
  }
  @font-face {
    font-family: 'MetricHpeRegular';
    src: url("MetricHPE-Regular.otf") format("truetype"), url("../font/MetricHPE-Regular.otf") format("truetype"), url("../font/MetricHPE-Regular.otf") format("truetype");
  }
  * {
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
  }
  h1 {
    font-family: 'Source Sans 3', sans-serif !important;
    font-size: 56px;
    font-weight: 700;
    color: #020F99;
    font-family: "Source Sans 3", sans-serif;
  }
  h3 {
    font-family: 'Source Sans 3', sans-serif !important;
    font-size: 25px;
    font-weight: 700;
    color: #020F99;
  }
  p {
    font-family: 'Source Sans 3', sans-serif !important;
  }
  a{
    cursor: pointer;
  }
  .blue {
    color: #000E9C;
  }
  .bgblue {
    background: #000E9C;
  }
  .deco {
    background: url("../images/deco.webp") no-repeat;
    background-size: cover;
    height: 40px;
    width: 100%;
  }
  /* MENU */
  .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .btnModalLoginForm{
    color: #ffffff;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
    text-align: center;
    display: block;
    padding: .5rem;
    white-space: nowrap;
  }
  .navbar-light .navbar-nav .nav-link:hover {
    color: #b4b4b4;
  }
  
  .navbar{
    background: #020F99;
  }
  .navbar .nav_content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .navbar .nav_content ul{
    display: flex;
    flex-direction: row;
  }
  

header button.navbar_toggler {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  position: relative;
  width: 30px;
  height: 30px;
  overflow: hidden;
  display: none;
  z-index: 999;
}

.main_header{
  background-size: cover;
  background-image: url("https://clubediteurs.ovh/assets/images/header_bg.jpg");
}

.main_header section{
  padding-top: 120px;
  height: 500px;
  display: flex;
}
.main_header section div{
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-right: 100px;
}
.main_header section img{
  width: 50%;
  object-fit: contain;
}

.accueil{
  display: none;
}

@media screen and (max-width: 1100px) {
  header button.navbar_toggler {
      display: block;
  }

  .accueil{
    display: block;
  }

  .navbar-light .navbar-nav .nav-link {
    text-transform: uppercase;
  }
}

header #navbar button.navbar_toggler::before {
  content: '';
  height: 0;
  width: 100%;
  border-top: 2px solid #ffffff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 1px 1px;
  transition: 0.3s ease, -webkit-transform 0.3s ease;
}

header #navbar button.navbar_toggler span {
  height: 0;
  width: 100%;
  border-top: 2px solid #ffffff;
  display: block;
  transition:  0.3s ease, -webkit-transform 0.3s ease;
}

header #navbar button.navbar_toggler::after {
  content: '';
  height: 0;
  width: 100%;
  border-top: 2px solid #ffffff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: 1px 1px;
  transition:  0.3s ease, -webkit-transform 0.3s ease;
}

header #navbar.scrolled button.navbar_toggler::before {
  border-top: 2px solid #000000;
}

header #navbar.scrolled button.navbar_toggler span {
  border-top: 2px solid #000000;
}

header #navbar.scrolled button.navbar_toggler::after {
  border-top: 2px solid #000000;
}

header #navbar button.active_btn::before {
  border-top: 2px solid #000000;
  transform: rotate(45deg);
  width: 138%;
}

header #navbar button.active_btn span {
  border-top: 2px solid #000000;
  transform: rotateY(90deg);
}

header #navbar button.active_btn::after {
  border-top: 2px solid #000000;
  transform: rotate(-45deg);
  width: 138%;
}


#navbar .container #navbarNav ul li a {
  color: rgb(255, 255, 255);
}

#navbar .container #navbarNav ul li a.active, #navbar.scrolled .container #navbarNav ul li a.active {
  color: #019fde;
}

@media screen and (max-width: 1100px) {
  #navbar .container #navbarNav ul li a {
      color: rgb(0, 0, 0);
  }

  #navbar .container #navbarNav .logout {
      border: 1px solid rgb(0, 0, 0) !important;
  }
}

#navbar.scrolled .container #navbarNav ul li a {
  color: rgb(0, 0, 0);
}


#navbar .container {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  align-items: center;
}

#navbar .container #navbarNav {
  transform: translate(0);
}

#navbar .container .active_navbar {
  transform: translate(0) !important;
}


#navbar .container #navbarNav .logout {
  padding: 0.5rem;
  display: flex;
  gap: 10px;
  align-items: center;
  border: none !important;
}

#navbar.scrolled .container #navbarNav .logout:hover {
  border-color: #d12b2b;
}

#navbar.scrolled .container #navbarNav .logout {
  border: 1px solid rgb(0, 0, 0);
}

#navbar .container #navbarNav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}



@media screen and (max-width: 1100px) {
  #navbar {
      max-width: none;
      position: fixed;
      z-index: 999;
  }

  #navbar .container #navbarNav {
      transform: translate(100%);
      position: absolute;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      background: white;
      transition: transform .5s cubic-bezier(0.77, 0, 0.175, 1);
  }

  #navbar .container {
      max-width: 90%;
  }

  #navbar .container #navbarNav ul {
      flex-direction: column;
      height: 100%;
      gap: 20px;
  }

  #navbar .container #navbarNav ul li a {
      font-size: 24px;
  }


}


#navbar .container #navbarNav ul li {
  text-decoration: none;
  list-style: none;
}



  /* HEADER */
  header {
    background-size: cover;
    background-position: center;
  }
  .header-text-container{
    padding-top: 140px;
    background: linear-gradient(0deg, rgba(206, 208, 224, 0.246) 0%, rgba(255,255,255,1) 16%);
    width: 100%;
  }
  .header-text .container{
    padding: 50px 20px;
  }
  .header-text-container .container{
    padding: 100px 2px;
    
  }
  .header-text{
    background: #020F99;
  }
  .header-text .container{
    padding: 50px 20px;
  }
  .header-text .container p{
    color: white;
  }
  #inscription h1 {
    font-size: 38px;
    color: #020F99;
  }
  #inscription h1 b {
    color: #000E9C;
  }
  .trait {
    margin: 30px auto;
    width: 80px;
    height: 3px;
    background: #fff;
  }
  .trait2 {
    margin: 30px auto;
    width: 180px;
    height: 3px;
    background: #fff;
  }
  #inscription h2 {
    font-size: 30px;
    color: #fff;
  }
  #inscription h3 {
    font-size: 26x;
    color: #fff;
  }
  #inscription p {
    font-size: 24px;
    color: #fff;
  }
  /* FORM */
  
  #registrationForm{
    padding: 50px 0;
  }
  form h3 {
    color: #000E9C !important;
  }
  label {
    color: #5A5A5A;
  }
  .star {
    color: #000E9C;
  }
  label a {
    color: #000E9C;
  }
  .btn {
    background: #000E9C;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .btn:hover {
    opacity: 0.5;
    transition: 1s;
    background: #000E9C;
    color: #fff;
  }
  /* EDITO */
  #edito p {
    color: #5A5A5A;
  }
  /* INTERVENANTS */
  .identite {
    font-family: 'Raelway', sans-serif !important;
    font-size: 24px;
    text-align: center !important;
    margin-top: 8px !important;
    margin-bottom: 5px !important;
    font-weight: 700;
    line-height: 1.2;
  }
  .poste {
    font-size: 16px;
    text-align: center !important;
  }
  /* AGENDA */
  .heure {
    font-weight: 600;
  }
  .descriptionAgenda {
    font-weight: 600;
  }
  .speakers a {
    color: #000E9C;
    text-decoration: none;
    font-weight: 600;
  }
  .speakers {
    padding: 0;
    margin: 0;
  }
  .speakers li {
    list-style: none;
  }
  /* PARTENAIRE */
  #partenaire {
    background: #fbfbfb;
  }
  /* FOOTER */
  footer p {
    font-weight: 600;
  }
  #edito {
    margin-top: 50px;
  }
  #edito h2 {
    font-size: 26px;
  }
  .edito {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 30px auto;
    max-width: 1500px;
    min-width: 300px;
  }
  #edito .container {
    max-width: 900px !important;
  }
  .edito p {
    text-align: left;
    margin: 20px 0;
  }
  .edito b {
    font-weight: 600;
    color: black;
  }
  .edito ul {
    display: flex;
    flex-direction: column;
  }
  .edito li {
    text-align: left;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  #lieu{
      background: #fbfbfb;
  }
  

  
  
  #themes{
    background: white;
    padding: 5% 0;
  }
  #themes h1{
    font-size: 48px;
  }
  #themes .container{
    display: flex;
    flex-direction: row;
  }
  #themes .container .div{
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  #themes .container .div h4{
    color: #4D5693;
    font-weight: bold;
  }
  #themes .container .div a{
    color: #4D5693;
    font-weight: bold;
    text-decoration: underline;
  }
  #themes .container .div p{
    color: #4D5693;
  }
  
  #themes .container .form_div{
    border-radius: 15px;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 2rem;
    -webkit-box-shadow: 5px 5px 30px -5px rgba(0,0,0,0.5); 
    box-shadow: 5px 5px 30px -5px rgba(0,0,0,0.5);
    width: 400px;
  }
  
  #inscriptions{
    color: white;
    font-size: 38px;
    font-weight: bold;
  }
  
  #form_registration label{
    color: white;
    font-size: 16px;
  }

#connexion{
  width: 100%;
  padding: 20px 0;
}
#connexion button{
  width: 100%;
}

#themes footer a{
  width: 100%;
}

.main-footer{
  background: #020F99;
}
.main-footer div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}
.main-footer p, .main-footer a{
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.parent {
  --gap: 30px;
  display: grid;
  grid-template-columns: repeat(2, calc(33% - var(--gap))) 34%;
  grid-template-rows: repeat(2, 230px);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: var(--gap);
  width: 100%;
}

.parent a{
  background-size: cover;
  background-position: center -30px;
  transition: .2s;
  transition-delay: 0s;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.parent a p{
  width: 100%;
  height: 65px;
  background: rgb(255, 255, 255);
  font-size: 20px;
  color: #000E9C;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  padding: 0 1rem;
  font-weight: bold;
}

.div1, .div2, .div3, .div4, .div5 {
  -webkit-box-shadow: 0px 0px 80px 0px rgba(0,0,0,0.1); 
  box-shadow: 0px 0px 80px 0px rgba(0,0,0,0.1);
}

.div1:hover, .div2:hover, .div3:hover, .div4:hover {
  -webkit-box-shadow: 5px 5px 30px -5px rgba(0, 0, 0, 0.3); 
  box-shadow: 5px 5px 30px -5px rgba(0, 0, 0, 0.3);
  transform: scale(1.01);
}

.div1 { 
  grid-area: 1 / 1 / 2 / 2; 
  background-image: url("https://clubediteurs.ovh/assets/images/forum.jpg");
}

.div2 { 
  grid-area: 2 / 1 / 3 / 2; 
  background-image: url("https://clubediteurs.ovh/assets/images/replay.jpg");
}

.div3 { 
  grid-area: 1 / 2 / 2 / 3; 
  background-image: url("https://clubediteurs.ovh/assets/images/calendar.jpg");
}

.div4 { 
  grid-area: 2 / 2 / 3 / 3; 
  background-image: url("https://clubediteurs.ovh/assets/images/feedback.jpg");
}

.div5 { 
  grid-area: 1 / 3 / 3 / 4; 
  border-radius: 25px;
  overflow: hidden;
}
.div5 *{ 
  scroll-behavior: initial !important;
}

.div5 h2 { 
  width: 100%;
  height: 70px;
  background: #020F99;
  color: white;
  display: flex;
  align-items: center;
  font-size: 22px;
  gap: 10px;
  padding: 0 2rem;
  margin-bottom: 0;
}
.div5 #content { 
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 80px);
  padding: 1rem 0;
  overflow-y: auto;
}
.div5 #content p{ 
  font-size: 16px;
}
.div5 #content h3{ 
  font-size: 18px;
}
.div5 #content a{ 
  font-size: 18px;
}
.div5 #content #feed{ 
  padding: 0 2rem;
  height: 100%;
}


#issend{
  display: flex;
  align-items: center;
}
#issend .success{
  color: white;
  font-size: 18px;
  padding: 1rem 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 90%;
}
#issend .success p{
  text-align: center;
  margin: 0;
}

.show .navbar-nav{
  flex-direction: column !important;
}

.div_left_site_logo{
  display: flex;
  flex-direction: row;
  gap: 15px;
  color: white;
  align-items: center;
}

.div_left_site_logo hr{
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.75);
  margin: 0;

}

.div_left_site_logo p{
  margin: 0;
}

.site-logo-link{
  margin: 0 !important;
}

.form-group h2{
  font-size: 24px;
  color: #000E9C;
  font-weight: bold;
  padding-bottom: 1rem;
}

.login_title{
  color: #000E9C;
  font-size: 16px;
}

.form-control{
  border: none;
  background: #f1f1f1;
  margin-bottom: 0.5rem;
}

#rememberMe{
  color: #000E9C;
}

#frm_login {
  width: 100%;
}

#frm_login .link{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#themes.not_logged{
  padding-top: 150px;
}




/* CALENDAR */

.calendar {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-right: 90px;
  padding: 140px;
  
}

.calendar h1 {
  font-weight: 800;
  margin: 1rem 0 3rem;
  color: #020f99;
  padding-top: 10px;
}

.calendar ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-wrap: wrap;
  list-style: none;
  grid-gap: 2rem; 
  grid-row-gap: 5rem; 
  padding: 0;
}

.calendar ul li {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 15rem;
  height: 16rem;
  margin: 0.25rem;
  border-radius: 32px;
  overflow: hidden;
  font-weight: 300;
  font-size: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background: white;
  box-sizing: border-box;
  transition: 0.3s ease; 
  position: relative;
}

.modal-calendar{
  position: absolute;
  background-color: rgb(255, 255, 255);
  
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0.5;
}
.calendar ul li:hover {
  background: rgb(232, 235, 237);
}


.calendar ul li time {
  background-color: #3A43D0;
  color: white;
  
  padding: 15px 110px 15px 50px ;
  
  font-size: 20px;
  width: 130%; 
  box-sizing: border-box;
  
}


.calendar-body {
  
  color: #160F5B;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column; 
  justify-content: flex-start; 
  padding: 0 20px; 
}

.calendar-body-date {
  font-weight: 500;
  font-size: 15px;
  
  margin-top: 20px;
  
}

.calendar-body-event {
  font-size: 14px;
  margin-bottom: 10px;
  flex-grow: 1;
}

.calendar-body-low {
  font-size: 11px;
  color: #4D5693;
  margin-top: 10px;
}

.calendar-body img {
  padding-top: 30px;
}

.calendar-footer {
  background-color: #E5F4FE;
  color: #160F5B;
  text-align: center;
  padding: 10px 0 ;
  font-size: 13px;
  cursor: pointer;
  width: 1000px;
  text-decoration: none;
  box-sizing: border-box;
  font-weight: 400;
  margin-top:10px;
}

.calendar-footer a {
  color: #002DFF;
  text-decoration: none;
}

.calendar ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: black;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.current-month {
  font-weight: bold;
  color: #020f99;
}

.calendar-body img {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-left: 20px;
  
}





/* END OF CALENDAR */




.container-cards {
  display: flex;
  -webkit-display: flex;
  flex-wrap: wrap;
  padding-top: 140px;
  
}
.cards {
  display: flex;
  padding: 0 10px;
  margin-bottom: 2rem;
  width: 100%;
}
@media (min-width: 600px) {
  .cards {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .cards {
    width: 33.3%;
  }
}
@media (min-width: 1400px) {
  .cards {
    width: 25%;
  }
}
.cards .card-item {
  display: flex;
  flex-direction: column; 
  background-color: #fff;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
}
.cards .card-item:hover .card-image {
  opacity: 1;
}
.cards .card-intro {
  padding-left:15px;
  margin-bottom: 7px;
  color: #4D5693;
} 
.cards .card-info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 12px 7px;
  line-height: 1.5em;
  font-size: 12px;
}
.cards p {
  color: #898989;
}
.cards .card-date {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  padding-left: 15px;
  
}
.cards .card-title {
  font-size: 15px;
  line-height: 1.1em;
  color: #160F5B;
  margin-bottom: 7px;
  padding: 15px;
}
.cards .card-image {
  height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px 6px 0px 0px;
  opacity: 0.91;
  border-radius: 32px;
}
.cards .card-image img {
  width: 510px;
}
.dot {
  height: 7px;
  width: 7px;
  background-color: #DCDCDC;
  border-radius: 50%;
  margin: 0 14px;
  margin-top: 6px;
  
}

/* COOKIES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
  z-index: 1000;
  display: none;
}

.cookie-banner p {
  margin: 0;
  display: inline;
}

.cookie-banner button {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-left: 20px;
  cursor: pointer;
}

/* MOBILE */

@media (max-width: 1200px) {
  .calendar-footer {
    padding: 4%;
    font-size: 0.95em;
  }

  .main_header section {
    height: 400px;
  }
}

@media (max-width:1150px){
  .calendar-footer{
    font-size: 0.85em;
    
  }
}

@media (max-width:1100px){
  .calendar ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .calendar-footer {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  


  .calendar-footer {
    font-size: 12px;
  }

}

@media (max-width: 900px) {
  .calendar ul {
    grid-template-columns: repeat(2, 1fr);
  }

  

  .calendar-footer {
    padding: 3%;
    font-size: 0.9em;
  }

  .calendar {
    padding: 50px;
  }
}

@media (max-width: 630px) {

  .calendar {
    padding: 20px; /* réduit le padding pour les petits écrans */
  }

  .calendar ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .calendar ul li {
    height: 20rem;
    max-width: 100%;
  }

  .calendar-footer {
    padding: 2%;
    font-size: 0.8em;
  }

  .calendar-body img {
    width: 50%;
  }

  .calendar ul li time {
    margin-left: 100px;
    width: 130%;
}

  .calendar-body-date {
    margin-left: 4px;
}

  .calendar-body-event{
    margin-left: 4px;
}

  .calendar-body-low{
    margin-left: 4px;
}

}

@media (max-width: 550px) {

  
  .calendar ul li {
    height: 15rem;
    max-width: 100%;
  }

  .calendar-footer {
    padding: 1.5%;
    font-size: 0.75em;
  }

  .calendar-body {
    padding: 20px 0;
  }

  .calendar ul li time {
    
    width: 130%;
}
  .calendar-body-date {
    margin-left: 25px;
  }
  
  .calendar-body-event{
    margin-left: 25px;
  }

  .calendar-body-low{
    margin-left: 25px;
  }

}

@media (max-width:530px){
  .calendar-body-date {
    margin-left: 30px;
  }
  
  .calendar-body-event{
    margin-left: 30px;
  }

  .calendar-body-low{
    margin-left: 30px;
  }
}

@media (max-width: 480px) {

  .calendar ul li time {
    
    width: 130%;
}
  
  .calendar ul li {
    height: 15rem;
    max-width: 100%;
  }

  .calendar-footer {
    padding: 1%;
    font-size: 0.7em;
  }

  .main-footer div{
    justify-content: space-around;
  }

  .calendar-body-date {
    margin-left: 40px;
  }
  
  .calendar-body-event{
    margin-left: 40px;
  }

  .calendar-body-low{
    margin-left: 40px;
  }
}

@media (max-width: 450px) {

  .calendar ul li time {
    
    width: 130%;
    margin-right:50px ;
}

.calendar-body-date {
  margin-left: 20px;
}

.calendar-body-event{
  margin-left: 20px;
}

.calendar-body-low{
  margin-left: 20px;
}

}
@media (max-width: 410px) {
  .calendar ul li {
    height: 15rem;
    max-width: 100%;
  }


  .calendar-footer {
    padding: 0.5%;
    font-size: 0.65em;
  }
}





@media screen and (max-width: 990px) {
  .edito br {
    display: none;
  }

  #inscription h1 {
    font-size: 34px;
  }

  .navbar-brand img {
    width: 100px;
  }

  #themes .container {
    flex-direction: column;
  }

  #themes .container .form_div {
    min-height: 150px;
    width: 90%;
  }

  #themes .container .div {
    width: 90%;
  }

  .parent {
    --gap: 20px;
    grid-template-columns: repeat(2, calc(50% - (var(--gap) / 2)));
    grid-template-rows: repeat(4, 250px);
    gap: var(--gap);
  }

  .div1 {
    grid-area: 1 / 1 / 2 / 2;
  }

  .div2 {
    grid-area: 2 / 1 / 3 / 2;
  }

  .div3 {
    grid-area: 1 / 2 / 2 / 3;
  }

  .div4 {
    grid-area: 2 / 2 / 3 / 3;
  }

  .div5 {
    grid-area: 3 / 1 / 5 / 3;
  }

  h1 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .main_header section {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .main_header section img{
    display: none;
  }

  .main_header section div{
    width: 100%;
    text-align: center;
    padding: 0 1rem;
  }

  .main_header section {
    height: 270px;
  }

  
  #themes.not_logged h1{
    font-size: 40px;
  }
  #themes.not_logged h4{
    font-size: 20px;
  }
}


@media screen and (max-width: 500px) {
  #inscription h1 {
    font-size: 30px;
  }

  .parent {
    --gap: 20px;
    grid-template-columns: 100%;
    grid-template-rows: repeat(6, 250px);
    gap: var(--gap);
  }

  .div1 {
    grid-area: 1 / 1 / 2 / 2;
  }

  .div2 {
    grid-area: 2 / 1 / 3 / 2;
  }

  .div3 {
    grid-area: 3 / 1 / 4 / 2;
  }

  .div4 {
    grid-area: 4 / 1 / 5 / 2;
  }

  .div5 {
    grid-area: 5 / 1 / 7 / 2;
  }

  h1 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  .div_left_site_logo p {
    display: none;
  }
}

.form-submition {
  text-align: center;
  margin-top: 50px;
}
form .form-label{
  color: #160F5B;
}

.form-control {
  background: transparent;
  margin-bottom: 0.5rem;
  border-bottom:solid 0.75px #000E9C;
  border-radius: 0;
}

  /* ********************************************************* */
