@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Manrope&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
* {
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  display: flex;
}

main {
  width: 100%;
  flex: 1;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

footer {
  text-align: center;
  padding: 30px;
  border-radius: 30px;
  background: #000000;
  color: #ffffff;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
  text-align: center;
}

h3,
strong {
  color: #2d7bd8;
}

ul {
  list-style: none;
}
ul li::before {
  content: attr(data-icon);
  font-family: "Material Symbols Outlined";
  margin-right: 20px;
  vertical-align: middle;
  color: #0d2237;
}
ul li:not([data-icon])::before {
  content: "arrow_forward";
}

img {
  max-width: 100%;
  z-index: 1;
  padding: 0 20px;
}

button,
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  padding: 10px 18px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #0d2237;
  color: #ffffff;
  border: none;
}
button:focus,
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 34, 55, 0.25);
}
button:hover,
.btn:hover {
  background-color: rgb(3.25, 8.5, 13.75);
}
button:active,
.btn:active {
  background-color: black;
}
button:disabled,
.btn:disabled {
  background-color: #eee !important;
  cursor: not-allowed;
}
button.submit,
.btn.submit {
  background: #000000;
  color: #ffffff;
  width: 100%;
  position: sticky;
  bottom: 20px;
}

form {
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-checkbox {
  display: flex;
  gap: 1ch;
  flex-direction: row-reverse;
  padding: 10px;
  border-radius: 10px;
  background: #f7f8fb;
  width: max-content;
}
.form-checkbox label {
  width: 100%;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 100%;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #0d2237;
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 34, 55, 0.15);
}
input:disabled,
select:disabled,
textarea:disabled {
  background-color: #f7f8fb;
  cursor: not-allowed;
}
input.error,
select.error,
textarea.error {
  border-color: #ff842b;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #333;
  opacity: 0.6;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.ui,
icon {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  user-select: none;
  vertical-align: middle;
}

.div_popup_body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  right: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  touch-action: none;
  overscroll-behavior: contain;
}
.div_popup_body .container {
  max-width: 1200px;
  border-radius: 20px;
  padding: 20px;
  background: #f7f8fb;
  max-height: 90%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.div_popup_body .container-action {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.div_popup_body .container-action button {
  flex: 1 max-content;
  background: #eee;
  color: #000000;
}
.div_popup_body .container-action button.refus {
  color: #ffffff;
  background: #000000;
  text-transform: uppercase;
}
.div_popup_body.popup_imgs {
  flex-direction: column;
}
.div_popup_body.popup_imgs .grand_img {
  max-width: 90%;
  max-height: 80%;
  user-select: none;
  touch-action: none;
  transition: transform 0.3s ease;
}
.div_popup_body.popup_imgs .popup_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border-radius: 28px;
  background: #f7f8fb;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.div_popup_body.popup_imgs .popup_actions button {
  flex: 1 max-content;
  max-width: 100%;
  cursor: pointer;
}

.home {
  padding: 20px;
}
.home .section-intro {
  width: 100%;
  padding: 30px;
  color: rgb(230.8, 232.9, 235);
  background: #0d2237;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}
.home .section-intro span.vous {
  padding: 5px 20px;
  border-radius: 20px;
  background: rgb(255, 242.7, 233.8);
  color: #ff842b;
  font-weight: 900;
}
.home .section-remerciment {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  align-self: center;
}
.home .section-remerciment h3 {
  text-align: center;
}
.home .section-remerciment .image-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}
.home .section-remerciment .image-flex .image {
  flex: 1 0;
  display: flex;
  justify-content: center;
}
.home .section-remerciment .image-flex .image img {
  height: 100px;
  object-fit: contain;
}
.home .section-features {
  max-width: 1200px;
  width: 100%;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.home .section-features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.home .section-features ul li {
  flex: 1 0 250px;
  max-width: 100%;
  padding: 30px;
  border-radius: 30px;
  background: #f7f8fb;
}
.home .section-features ul li::before {
  background: #0d2237;
  color: #f7f8fb;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .home .section-features ul li {
    flex: 1 0 150px;
    max-width: 100%;
  }
}
.home .section-gallery {
  max-width: 1200px;
  width: 100%;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.home .section-gallery .image-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.home .section-gallery .image-flex .image {
  flex: 1 0 300px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.home .section-gallery .image-flex .image img {
  max-width: 100%;
  z-index: 1;
  padding: 0 20px;
}
.home .section-gallery .image-flex .image-info {
  padding: 30px;
  border-radius: 30px;
  color: rgb(230.8, 232.9, 235);
  background: #0d2237;
  padding-top: 50px;
  top: -40px;
  text-align: center;
  font-weight: 900;
}
.home .section-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1200px;
  align-self: center;
}
.home .section-contact form {
  background: #f7f8fb;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  align-self: center;
}

/*# sourceMappingURL=style.css.map */
