.home{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#banner {
    position: relative;
    width: 100%;
    height: calc(100vw / 2.4);
    max-height: 250px;
}

#imageBanner{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 50%;
    top: 0;
    left: 0;
    z-index: 0;
}

.titlesBanner{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
    background-color: rgba(237,198,191,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #932013;
}

.title{
    font-family: 'Aboreto';
    background-color: transparent;
    color: #932013;
    font-size: 50px;
}

.subTitle{
    font-family: 'Alex Brush';
    background-color: transparent;
    color: #932013;
    font-size: 30px;
}

.navbar {
  position: sticky;
  top: 0;
  /* overflow: hidden; */
  background-color: #932013;
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: center;
  flex-wrap:wrap;
  z-index: 4;
}

.navbar a {
  float: left;
  font-size: 20px;
  font-family: 'Aboreto';
  color: #EDC6BF;
  text-align: center;
  padding: 20px 20px;
  text-decoration: none;
  background-color: #932013;
}

.dropdown {
  float: left;
  overflow: hidden;
  background-color: #932013;
}

.dropdown .dropbtn {
  font-size: 20px;  
  border: none;
  outline: none;
  color: #E4C5BE;
  padding: 20px 20px;
  background-color: inherit;
  font-family: 'Aboreto';
  margin: 0;
}


.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #9A2E22;
  /* color: #DA9086; */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #932013;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 4;
}

.dropdown-content a {
  float: none;
  color: #E4C5BE;
  padding: 12px 16px;
  text-decoration: none;
  background-color: #9A2E22;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #932013;
}

.dropdown:hover .dropdown-content {
  display: block;
}


.presentation{
  width: 100%;
  max-width: 790px;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

.titlePresentation{
  font-size: 20px;
  font-family: 'Abhaya Libre';
  text-align: center;
  padding: 10px 10px;
}

.textPresentation{
  font-size: 16px;
  font-family: 'Abhaya Libre';
  text-align: center;
}

.textPresentationContact{
  width: calc(100% - 50px);
  font-size: 16px;
  font-family: 'Abhaya Libre';
  text-align: center;
}

.textImageLeft{
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.srcImageTI{
  /* max-width: 390px; */
  width: 100vw;
  height: 460px;
  /* width: 100%; */
  object-fit: cover;
  z-index: 1;
}

.boxTextTI{
  position: relative;
  height: min-content;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  justify-content: center;
  gap: 20px;
  text-align: justify;
}

.titleTI{
  font-family: 'Aboreto';
  color: #932013;
  background-color: transparent;
  font-size: 20px;
  z-index: 1;

}

.textTI{
  width: calc(100vw - 40px);
  max-width: 350px;
  background-color: transparent;
  z-index: 1;
}

.buttonTI{
  font-family: 'Alex Brush';
  background-color: transparent;
  color: #932013;
  font-size: 25px;
  z-index: 1;
  text-decoration: none;
}

.backgroundTextImage{
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    z-index: 0;
}

.backgroundTextImageRight{
  background: #F9E6E0;
}

.backgroundTextImageLeft{
  background: #FBEFE9;
}

@media screen and (min-width: 795px){

  .backgroundTextImageRight{
    right: -50vw;
  }
  .backgroundTextImageLeft{
    left: 0;
    transform: translate(-50%);
  }
  .srcImageTI{
    max-width: 390px;
  }
}

.textImageRight{
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.space{
  height: 30px;
  width: 30px;
}

.buttonMenu {
    display: none;
    font-size: 35px;
    padding-left: 20px;
    color: #FBEFE9;
    background-color: transparent;
}

.backgroundButtonMenu{
    display: none;

    position: sticky;
    top: 0;
    background-color: #932013;
    width: 100%;
    min-height: 60px;
    justify-content: center;
    flex-wrap:wrap;
    z-index: 4;
}

@media screen and (max-width: 960px) {
    #sideMenu {
        position: fixed;
        top: 0;
        right: -250px; /* caché */
        height: 100%;
        width: 250px;
        transition: right 0.4s ease;
        display: flex;
        flex-direction: column;
    }
    #sideMenu.open {
        right: 0;
    }
    .navbar {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        justify-content: flex-start;
        padding-top: 20px;
    }

    .buttonMenu {
        display: block;
    }

    .backgroundButtonMenu{
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }
    .dropdown .dropbtn {
      width: 100%; 
    }
    .navbar a{
      width: 100%;
    }
    .dropdown-content{
      width: 100%;
    }
}

@media screen and (min-width: 960px) {

  .navbar {
    position: sticky;
    top: 0;
    /* overflow: hidden; */
    background-color: #932013;
    width: 100%;
    min-height: 60px;
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
    z-index: 4;
  }

  .navbar a {
    float: left;
    font-size: 20px;
    font-family: 'Aboreto';
    color: #EDC6BF;
    text-align: center;
    padding: 20px 20px;
    text-decoration: none;
    background-color: #932013;
  }

  .dropdown {
    float: left;
    overflow: hidden;
    background-color: #932013;
  }

  .dropdown .dropbtn {
    font-size: 20px;  
    border: none;
    outline: none;
    color: #E4C5BE;
    padding: 20px 20px;
    background-color: inherit;
    font-family: 'Aboreto';
    margin: 0;
    width: 100%;
  }


  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #9A2E22;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #932013;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 4;
  }

  .dropdown-content a {
    float: none;
    color: #E4C5BE;
    padding: 12px 16px;
    text-decoration: none;
    background-color: #9A2E22;
    display: block;
    text-align: left;
    width: 100%;
  }

  .dropdown-content a:hover {
    background-color: #932013;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}


@media screen and (max-width: 480px) {
    .title{
      font-size: 40px;
    }

    .subTitle{
      font-size: 25px;
    }
}

@media screen and (max-width: 400px) {
    .title{
      font-size: 30px;
    }

    .subTitle{
      font-size: 20px;
    }
}

.logo{
  width: 40px;
}