@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
body {
  background-image: linear-gradient(135deg, rgba(226, 227, 241, 0.4039215686) 20%, rgba(133, 112, 230, 0.2549019608) 80%);
  overflow-x: hidden;
}

header {
  width: 100%;
  position: relative;
  display: flex;
  padding-top: 35px;
}

nav {
  display: flex;
  height: 10vh;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  width: 100%;
}

nav .menu-icon {
  display: none;
  cursor: pointer;
  color: rgb(49, 16, 126);
}

nav .nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
  justify-content: space-around;
}

nav .nav-links li {
  margin: 0 1em;
  font-family: "Mitr", sans-serif;
  font-weight: 600;
  transition: 0.3S;
}

nav .nav-links li a {
  color: rgb(54, 49, 49);
  text-decoration: none;
}

nav .nav-links li a:hover {
  color: rgb(38, 12, 131);
  transition: 0.3S;
}

@media (max-width: 768px) {
  nav .menu-icon {
    display: block;
  }
  nav nav {
    padding: 0 1rem;
  }
  nav .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 5em;
    right: 0;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    z-index: 1;
  }
  nav .nav-links.show {
    display: flex;
  }
  nav .nav-links li {
    margin: 0;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    width: 100%;
    height: 100%;
  }
  nav .nav-links li a {
    padding: 1em;
    display: block;
    text-align: center;
  }
}
.contact-btn {
  margin: 0px 25px;
  background-color: #8b91e0;
  color: #ffffff;
  padding: 8px 15px;
  border: 3px solid #e4deff;
  border-radius: 5px;
  font-weight: 900;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

.contact-btn a {
  text-decoration: none;
  color: white;
}

.contenu1 {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  color: #576975;
}

.section-size {
  width: 50%;
  min-width: 320px;
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.section-size img {
  border-radius: 5px;
  width: 100%;
  max-width: 500px;
  min-width: 300px;
}

h1 {
  font-size: 6rem;
  line-height: 5.5rem;
  padding: 1rem;
  font-weight: bolder;
  max-width: -moz-max-content;
  max-width: max-content;
  flex-grow: 2;
  color: #19008a;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 4rem;
    line-height: 3.5rem;
  }
}

p {
  padding: 1rem;
  max-width: 35rem;
}

.reserve-ticket-btn {
  background-color: #8BC6EC;
  background-image: linear-gradient(135deg, #8b91e0 20%, #19008a 80%);
  color: white;
  max-width: 300px;
  min-width: 300px;
  padding: 10px 20px;
  border-radius: 5px;
  border: 3px solid #8b91e0;
  display: flex;
  justify-content: center;
}

.memory {
  position: relative;
  background-color: #8BC6EC;
  background-image: linear-gradient(135deg, #8b91ec 0%, #19008a 100%);
  height: -moz-max-content;
  height: max-content;
  width: 100%;
  padding: 2rem;
  display: flex;
  color: white;
  justify-content: space-around;
}

.memory h2 {
  font-size: 2rem;
  line-height: 2.3rem;
  text-align: center;
  font-weight: bolder;
}

.memory p {
  text-align: center;
}

.memory-btn {
  border: 3px solid white;
  color: white;
  background-color: #8BC6EC;
  background-image: linear-gradient(135deg, #8b91ec 20%, #19008a 80%);
  font-weight: bolder;
  border-radius: 5px;
  padding: 15px 20px;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 300px;
}

button:hover {
  border: 3px solid rgba(98, 73, 212, 0.2549019608);
}

.blog-bg {
  margin-top: 1.1rem;
}

.blog {
  max-width: 1400px;
  display: flex;
  padding: 2.5rem 0 0;
  justify-content: space-between;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .blog {
    justify-content: flex-start;
    overflow-x: scroll;
    scroll-behavior: auto;
  }
}

.box-blog {
  min-width: 300px;
  max-width: 300px;
  height: -moz-max-content;
  height: max-content;
  margin: 0.5rem;
  transition: 0.2s ease-out;
  cursor: pointer;
}

.separation {
  width: 33%;
  border: 2px solid #8BC6EC;
  border-radius: 5px;
  margin: 5px 0;
}

.content-img-blog {
  max-width: 300px;
  max-height: 300px;
}
.content-img-blog img {
  width: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog h3 {
  font-weight: bolder;
  color: #576975;
}

.blog p {
  color: #576975;
}

.carousel-container {
  overflow: hidden;
  height: 50vh;
}

#myCarousel {
  width: 100%;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  flex: 0 0 33%;
  box-sizing: border-box;
  text-align: center;
  height: 100%;
  display: block;
}
.carousel-item:not(:last-child) {
  margin-right: 10px;
}

.contact-box {
  background-color: #19008a;
  padding: 4rem 0 4rem;
  display: flex;
  justify-content: space-around;
  background-image: linear-gradient(135deg, #8b91ec 0%, #19008a 100%);
}

.form-content {
  width: 980px;
}
@media screen and (max-width: 768px) {
  .form-content {
    width: 100%;
  }
}

.container2 {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
}
form label {
  margin-bottom: 8px;
}
form input, form textarea, form select {
  margin-bottom: 16px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
form button {
  background-color: #3498db;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}
form button:hover {
  background-color: #19008a;
}

.contact-text {
  font-size: 4rem;
  line-height: 3.5rem;
  margin: 2rem 0 4rem;
  color: white;
  font-weight: bolder;
}
.contact-text:hover {
  cursor: pointer;
}

.mailto {
  text-decoration: none;
  background-color: #3498db;
  background-image: linear-gradient(135deg, #19008a 80%, #8b91ec 20%);
  color: #fff;
  border: 3px solid #19008a;
  padding: 10px 20px;
  border-radius: 4px;
  display: flex;
}
.mailto:hover {
  cursor: pointer;
  color: #def1fd;
  border: 3px solid rgba(98, 73, 212, 0.2549019608);
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
  }
}
footer .container .sitemap,
footer .container .etablissements,
footer .container .logo {
  flex: 1;
  padding: 10px 0;
}
footer .container .sitemap h4,
footer .container .etablissements h4,
footer .container .logo h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #8b91e0;
}
footer .container .sitemap ul,
footer .container .etablissements ul,
footer .container .logo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .container .sitemap ul li,
footer .container .etablissements ul li,
footer .container .logo ul li {
  margin-bottom: 8px;
}
footer .container .sitemap ul li a,
footer .container .etablissements ul li a,
footer .container .logo ul li a {
  color: #fff;
  text-decoration: none;
}
footer .container .sitemap ul li a:hover,
footer .container .etablissements ul li a:hover,
footer .container .logo ul li a:hover {
  text-decoration: underline;
}

.bottom-jg {
  color: #5b5e5f;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: -18px;
}

* {
  box-sizing: border-box;
}

#site {
  max-width: 1200px;
  min-width: 320px;
  margin: auto;
}

body {
  line-height: 18px;
  overflow-x: hidden;
  font-family: "Libre Baskerville", serif;
}

.content-size {
  height: -moz-max-content;
  height: max-content;
  max-width: 1400px;
  min-width: 320px;
  margin: auto;
}

.content-bg {
  background-size: cover;
  background-repeat: no-repeat;
  height: -moz-max-content;
  height: max-content;
}/*# sourceMappingURL=style.css.map */