@import url("https://fonts.cdnfonts.com/css/oswald-4");
@import url("https://fonts.cdnfonts.com/css/roboto");

:root {
  --primary: #7d3f98;
  --light: #f5f5f5;
  --dark: #414141;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: roboto;
}

body {
  background-color: var(--light);
  color: var(--dark);
}

h1 {
  font-size: 40px;
  line-height: 1.5;
}

h2 {
  font-size: 32px;
  line-height: 1.5;
}

h3 {
  font-size: 28px;
  line-height: 1.5;
}

h4 {
  font-size: 22px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: "Oswald Regular", sans-serif;
}

p {
  font-size: 14px;
  line-height: 1.8;
  font-weight: bold;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  h1 {
    font-size: 34px;
    line-height: 1.5;
  }

  h2 {
    font-size: 30px;
    line-height: 1.5;
  }

  h3 {
    font-size: 26px;
    line-height: 1.5;
  }

  h4 {
    font-size: 22px;
    line-height: 1.5;
  }
}

.btn-content {
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  margin-top: 3rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

@media screen and (max-width: 535px) {
  .btn-content {
    font-size: 12px;
  }
}

/* -------------------------------------- */

.container {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container img {
  width: 220px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: white;
  padding: 1.5rem 3rem;
  box-shadow: rgb(0, 0, 0, 0.1) 0 3px 20px;
}

.Hamburger {
  display: block;
  position: relative;
  z-index: 1;
  user-select: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

.Hamburger span {
  display: block;
  width: 33px;
  height: 5px;
  margin-bottom: 5px;
  background-color: var(--dark);
  border-radius: 6px;
  z-index: 1;
  position: relative;
  transform-origin: 0 0;
  transition: 0.4s;
}

.Hamburger:hover span:nth-child(2) {
  transform: translateX(10px);
  background-color: var(--primary);
}

.Hamburger.is-active span:nth-child(1) {
  transform: translate(0px, -2px) rotate(45deg);
}

.Hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(15px);
}

.Hamburger.is-active span:nth-child(3) {
  transform: translate(-3px, 1.5px) rotate(-45deg);
}

.Hamburger.is-active:hover span {
  background-color: var(--primary);
}

.menu {
  display: none;
  flex: 1 1 0%;
  justify-content: end;
  margin: 0 -5px;
}

.menu a {
  color: var(--dark);
  font-weight: 600;
  margin: 0 5px;
  font-size: 14px;
  transition: 0.4s;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
}

.menu a.is-active {
  background-color: var(--primary);
  color: white;
}

.menu a.is-active:hover {
  color: white;
}

.menu a:hover {
  color: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  padding-top: 10rem;
  opacity: 0;
  transform: translateY(-100%);
  background-color: var(--primary);
  color: white;
  transition: 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  height: 100%;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  margin: 0 auto;
  margin-bottom: 3rem;
  color: white;
  text-align: center;
  font-size: 1.25rem;
  transition: 0.3s;
}

.mobile-menu a.is-active {
  width: 400px;
  margin: 0 auto;
  background-color: white;
  color: var(--primary);
  font-weight: 600;
  transition: 0.3s;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
}

.mobile-menu a.is-active:hover {
  color: var(--primary);
}

.mobile-menu a:hover {
  color: #d981ff;
}

@media screen and (min-width: 872px) {
  .Hamburger {
    display: none;
  }
  .menu {
    display: flex;
  }
  .mobile-menu {
    display: none;
  }
}

@media screen and (max-width: 668px) {
  .container img {
    width: 180px;
  }
}

/* ----------------------------------------------------------------- */
/* header-section */

#header-section {
  max-width: 1780px;
  padding: 0 3rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 6.2rem;
}

.left-section {
  width: 50%;
  padding-top: 3rem;
  padding-right: 1rem;
}

.left-section h4 {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.left-section h1 {
  margin-bottom: 2rem;
}

.heading-para {
  font-size: 20px;
  margin-bottom: 2.5rem;
}

.heading-hr {
  width: 50%;
  height: 0.25rem;
  border: none;
  background: var(--primary);
  border-radius: 50px;
  margin-bottom: 2rem;
}

.heading-icons {
  width: 100%;
  display: flex;
  gap: 1.2rem;
}

.heading-icons .left-icon {
  background: white;
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 40%;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: rgb(0, 0, 0, 0.1) 3px 3px 12px;
}

.heading-icons .right-icon {
  background: white;
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 40%;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: rgb(0, 0, 0, 0.1) 3px 3px 12px;
}

.heading-icons p {
  font-size: 16px;
}

.left-icon img {
  width: 3rem;
}

.right-icon img {
  width: 4rem;
}

.right-section {
  width: 50%;
  height: 654px;
  background: url(img/Header-BG.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 3rem;
  position: relative;
  border-radius: 0 0 60px 60px;
}

.right-section form {
  max-width: 550px;
  height: 92%;
  margin: 0 auto;
  background: rgb(255, 255, 255, 0.8);
  border-radius: 15px 15px 0 0;
  padding: 2.5rem;
  position: absolute;
  bottom: 0;
  left: 3rem;
  right: 3rem;
  margin-top: 6rem;
}

form .form-para {
  font-size: 22px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

form .form-para-2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

form .form-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.form-section input {
  width: 100%;
  height: 50px;
  border: 2px solid rgb(125, 63, 152, 0.5);
  font-family: "roboto";
  padding-left: 4rem;
}

.form-section input:nth-child(1) {
  background-image: url(img/input-1.png);
  background-position: calc(1.5rem);
  background-repeat: no-repeat;
  background-size: 18px;
}

.form-section input:nth-child(2) {
  background-image: url(img/input-2.png);
  background-position: calc(1.5rem);
  background-repeat: no-repeat;
  background-size: 22px;
}

.form-section input:nth-child(3) {
  background-image: url(img/input-3.png);
  background-position: calc(1.5rem);
  background-repeat: no-repeat;
  background-size: 22px;
}

.checkbox {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox input {
  cursor: pointer;
}

.checkbox p {
  margin-top: -0.3rem;
}

.header-btn {
  width: 100%;
  border-radius: 4px;
  padding: 1rem 0;
  border: none;
  background: var(--primary);
  font-family: "roboto";
  font-weight: bold;
  color: white;
  cursor: pointer;
}

@media screen and (min-width: 901px) and (max-width: 1245px) {
  .right-section {
    width: 50%;
    height: 780px;
  }
  .heading-icons .left-icon {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-content: flex-start;
  }

  .heading-icons .right-icon {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-content: flex-start;
  }
}

@media screen and (min-width: 867px) and (max-width: 900px) {
  .right-section {
    width: 50%;
    height: 780px;
  }
  .heading-para {
    font-size: 18px;
    margin-bottom: 2.5rem;
  }
  .heading-icons .left-icon {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-content: flex-start;
  }

  .heading-icons .right-icon {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-content: flex-start;
  }
}

@media screen and (min-width: 534px) and (max-width: 868px) {
  #header-section {
    display: block;
    margin-top: 6.2rem;
  }
  .left-section {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .right-section {
    width: 100%;
  }
  .heading-hr {
    width: 10%;
    margin: auto;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
  }
  .heading-icons .left-icon {
    width: 100%;
    justify-content: flex-start;
    text-align: start;
  }

  .heading-icons .right-icon {
    width: 100%;
    justify-content: flex-start;
    text-align: start;
  }
}

@media screen and (max-width: 535px) {
  #header-section {
    display: block;
    margin-top: 9rem;
    padding: 0;
  }
  .left-section {
    width: 100%;
    text-align: center;
    padding: 0 3rem;
    margin-bottom: 2rem;
  }
  .right-section {
    width: 100%;
    height: 620px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .heading-hr {
    width: 10%;
    margin: auto;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
  }

  .heading-icons {
    display: block;
  }
  .heading-icons .left-icon {
    width: 100%;
    justify-content: flex-start;
    text-align: start;
    margin-bottom: 1rem;
  }

  .heading-icons .right-icon {
    width: 100%;
    justify-content: flex-start;
    text-align: start;
  }

  .right-section form {
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 3rem;
    right: 3rem;
  }

  .heading-icons p {
    font-size: 14px;
  }

  .heading-para {
    font-size: 16px;
  }
  .form-section input {
    font-size: 12px;
  }

  .form-section input:nth-child(1) {
    background-size: 16px;
  }

  .form-section input:nth-child(2) {
    background-size: 20px;
  }

  .form-section input:nth-child(3) {
    background-size: 20px;
  }

  .checkbox p {
    font-size: 12px;
  }

  .header-btn {
    font-size: 14px;
  }

  .form-para-2 {
    font-size: 12px;
  }
}

/* -------------------------------------------------- */
/* section-2 */

#section-2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem;
}

.section-hr {
  width: 10%;
  margin: auto;
  height: 0.25rem;
  border: none;
  background: var(--primary);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

#section-2 h2 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.section2-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 20px;
}

.wrap {
  width: 100%;
  background: white;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.slider {
  display: flex;
  height: 100%;
  position: relative;
  top: 0;
  right: 0;
}

.slide-1 {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  background: url(img/Section-1-BG1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.slide-1-content {
  width: 100%;
  height: 200px;
  background: rgb(255, 255, 255, 0.85);
  padding: 1rem 1.5rem;
  position: absolute;
  bottom: 0;
  text-align: center;
}

.slide-2 {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  background: url(img/Section-1-BG2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.slide-2-content {
  width: 100%;
  height: 200px;
  background: rgb(255, 255, 255, 0.85);
  padding: 1rem 1.5rem;
  position: absolute;
  bottom: 0;
  text-align: center;
}

.slide h5 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: var(--primary);
}

@keyframes slide-art {
  0% {
    right: 0;
  }
  25% {
    right: 0%;
  }
  50% {
    right: 100%;
  }
  75% {
    right: 100%;
  }
  100% {
    right: 0;
  }
}
.slider {
  animation: slide-art linear 15s infinite;
}

.dots-wrapper {
  width: 100%;
  margin-top: 1rem;
  border-radius: 0;
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
}

ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

ul.dots li {
  height: 10px;
  width: 10px;
  background: white;
  border-radius: 50%;
  margin-left: 3px;
  margin-right: 3px;
  cursor: pointer;
}

ul li.active {
  background: var(--primary);
}

.content-2 {
  width: 100%;
  padding: 3rem;
  align-self: center;
}

.advantage {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.advantage img {
  width: 60px;
}

.advantage h5 {
  font-size: 20px;
  margin-bottom: 0.6rem;
  color: var(--primary);
}

.advantage-1,
.advantage-2 {
  margin-bottom: 6rem;
}

@media screen and (min-width: 536px) and (max-width: 868px) {
  .section2-content {
    display: block;
  }

  .wrap {
    width: 100%;
    background: white;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }

  .slider {
    display: flex;
    height: 650px;
    position: relative;
    top: 0;
    right: 0;
  }
}

@media screen and (min-width: 451px) and (max-width: 535px) {
  .section2-content {
    display: block;
  }

  .section2-content p {
    font-size: 12px;
  }

  .advantage img {
    margin-bottom: 0.7rem;
  }

  .wrap {
    width: 100%;
    background: white;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }

  .slider {
    display: flex;
    height: 650px;
    position: relative;
    top: 0;
    right: 0;
  }

  .advantage {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 450px) {
  .section2-content {
    display: block;
  }

  .section2-content p {
    font-size: 12px;
  }

  .advantage img {
    margin-bottom: 0.7rem;
  }

  .wrap {
    width: 100%;
    background: white;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }

  .slider {
    display: flex;
    height: 550px;
    position: relative;
    top: 0;
    right: 0;
  }

  .advantage {
    display: block;
    text-align: center;
  }
  .slide-1-content {
    height: 220px;
  }

  .slide-2-content {
    height: 220px;
  }
}

/* ----------------------------------------------- */
/* Avantages */

#section-3 {
  width: 100%;
  padding: 3rem;
  background: white;
  text-align: center;
}

#section-3 h2 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.Avantages-items {
  max-width: 1680px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  text-align: center;
  gap: 1rem;
}

.Avantages-1 {
  width: 100%;
  display: flex;
  gap: 1rem;
}

.Avantages-2 {
  width: 100%;
  display: flex;
  gap: 1rem;
}

.Avantages-items-1 {
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: rgb(0, 0, 0, 0.1) 3px 3px 12px;
  padding: 2rem 1rem;
}

.Avantages-items-2 {
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: rgb(0, 0, 0, 0.1) 3px 3px 12px;
  padding: 2rem 1rem;
}

.Avantages-items-3 {
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: rgb(0, 0, 0, 0.1) 3px 3px 12px;
  padding: 2rem 1rem;
}

.Avantages-items-4 {
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: rgb(0, 0, 0, 0.1) 3px 3px 12px;
  padding: 2rem 1rem;
}

.Avantages-items h6 {
  font-size: 18px;
  margin-bottom: 1rem;
}

.Avantages-items img {
  width: 90px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 536px) and (max-width: 971px) {
  .Avantages-items {
    display: block;
  }

  .Avantages-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 535px) {
  .Avantages-items {
    display: block;
  }

  .Avantages-items p {
    font-size: 12px;
  }

  .Avantages-1 {
    display: block;
    margin-bottom: 1rem;
  }

  .Avantages-2 {
    display: block;
    margin-bottom: 1rem;
  }

  .Avantages-items-1 {
    margin-bottom: 1rem;
  }

  .Avantages-items-3 {
    margin-bottom: 1rem;
  }
}

/* ---------------------------------------- */
/* section-4 */

#section-4 {
  max-width: 1780px;
  padding: 4rem 3rem;
  margin: 0 auto;
}

#section-4-mobile {
  display: none;
}

#section-4 hr {
  width: 13%;
  height: 0.2rem;
  border: none;
  background: var(--primary);
  border-radius: 50px;
  margin-bottom: 1rem;
}

#section-4 p {
  text-align: justify;
}

.section4-1 {
  width: 100%;
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section4-1 img {
  width: 50%;
}

.section4-1 .content-1-para {
  width: 50%;
}

.content-1-para h5 {
  font-size: 22px;
  margin-bottom: 1rem;
}

.section4-2 {
  width: 100%;
  display: flex;
  gap: 2rem;
}

.section4-2 img {
  width: 50%;
}

.section4-2 .content-2-para {
  width: 50%;
}

.content-2-para h5 {
  font-size: 22px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 669px) and (max-width: 971px) {
  #section-4 {
    display: none;
  }

  #section-4-mobile {
    display: block;
    max-width: 1780px;
    padding: 4rem 3rem;
    margin: 0 auto;
  }
  #section-4-mobile .section-mobile {
    width: 100%;
    display: flex;
    gap: 1rem;
  }
  #section-4-mobile hr {
    width: 20%;
    height: 0.2rem;
    border: none;
    background: var(--primary);
    border-radius: 50px;
    margin: auto;
  }

  #section-4-mobile p {
    text-align: justify;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .section4-1-mobile {
    width: 50%;
    background: white;
    padding: 1.2rem;
    border-radius: 20px;
    text-align: center;
  }

  #section-4-mobile .btn-content {
    margin-top: auto;
  }

  .section4-1-mobile img {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .content-1-para h5 {
    font-size: 22px;
    margin-bottom: 1rem;
  }

  .section4-2-mobile {
    width: 50%;
    background: white;
    padding: 1.2rem;
    border-radius: 20px;
    text-align: center;
  }

  .section4-2-mobile img {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .content-2-para h5 {
    font-size: 22px;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 535px) and (max-width: 668px) {
  #section-4 {
    display: none;
  }

  #section-4-mobile {
    display: block;
    max-width: 1780px;
    padding: 4rem 3rem;
    margin: 0 auto;
  }
  #section-4-mobile .section-mobile {
    width: 100%;
    display: block;
  }
  #section-4-mobile hr {
    width: 20%;
    height: 0.2rem;
    border: none;
    background: var(--primary);
    border-radius: 50px;
    margin: auto;
  }

  #section-4-mobile p {
    text-align: justify;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .section4-1-mobile {
    width: 100%;
    background: white;
    padding: 1.2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 1rem;
  }

  #section-4-mobile .btn-content {
    margin-top: auto;
  }

  .section4-1-mobile img {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .content-1-para h5 {
    font-size: 22px;
    margin-bottom: 1rem;
  }

  .section4-2-mobile {
    width: 100%;
    background: white;
    padding: 1.2rem;
    border-radius: 20px;
    text-align: center;
  }

  .section4-2-mobile img {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .content-2-para h5 {
    font-size: 22px;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 535px) {
  #section-4 {
    display: none;
  }

  #section-4-mobile {
    display: block;
    max-width: 1780px;
    padding: 4rem 3rem;
    margin: 0 auto;
  }
  #section-4-mobile .section-mobile {
    width: 100%;
    display: block;
  }
  #section-4-mobile hr {
    width: 20%;
    height: 0.2rem;
    border: none;
    background: var(--primary);
    border-radius: 50px;
    margin: auto;
  }

  #section-4-mobile p {
    text-align: justify;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 12px;
  }

  .section4-1-mobile {
    width: 100%;
    background: white;
    padding: 1.2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 1rem;
  }

  #section-4-mobile .btn-content {
    margin-top: auto;
  }

  .section4-1-mobile img {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .content-1-para h5 {
    font-size: 22px;
    margin-bottom: 1rem;
  }

  .section4-2-mobile {
    width: 100%;
    background: white;
    padding: 1.2rem;
    border-radius: 20px;
    text-align: center;
  }

  .section4-2-mobile img {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .content-2-para h5 {
    font-size: 22px;
    margin-bottom: 1rem;
  }
}

/* ------------------------------------------------------ */
/* section-5 */

#section-5 {
  width: 100%;
  padding: 3rem;
  background: white;
}

#section-5 h2 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.FAQ-section {
  max-width: 1680px;
  height: 100%;
  margin: 0 auto;
}

.FAQ-section-1 {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.FAQ-section-2 {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.FAQ-section-3 {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.FAQ {
  width: 100%;
  background: var(--light);
  padding: 2rem;
  border-radius: 20px;
}

.FAQ ul {
  flex-direction: column;
  gap: 0.5rem;
  list-style: disc;
  padding-left: 1rem;
}

.FAQ h4 {
  margin-bottom: 1rem;
}

.FAQ p {
  margin-bottom: 1rem;
  text-align: justify;
}

@media screen and (min-width: 536px) and (max-width: 971px) {
  .FAQ-section-1 {
    display: block;
  }

  .FAQ-section-2 {
    display: block;
  }

  .FAQ-section-3 {
    display: block;
  }

  .FAQ:not(.FAQ-item-6) {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 535px) {
  .FAQ-section-1 {
    display: block;
  }

  .FAQ-section-2 {
    display: block;
  }

  .FAQ-section-3 {
    display: block;
  }

  .FAQ:not(.FAQ-item-6) {
    margin-bottom: 1.5rem;
  }
  #section-5 p {
    font-size: 12px;
  }

  #section-5 ul {
    font-size: 12px;
  }
}

/* ---------------------------------------------- */
/* Contactez-Nous */

#Contactez-Nous {
  width: 100%;
  padding: 4rem 3rem;
  text-align: center;
  background: url(img/Contact-BG.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#Contactez-Nous h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

#Contactez-Nous hr {
  background: white;
}

#Contactez-Nous form {
  max-width: 1168px;
  margin: 0 auto;
}

#Contactez-Nous form {
  background: rgb(255, 255, 255, 0.8);
  padding: 3rem;
  border-radius: 20px;
}

.form {
  width: 100%;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.form input {
  width: 100%;
  height: 50px;
  border: 2px solid rgb(125, 63, 152);
  font-family: "roboto";
  font-size: 14px;
  padding-left: 1rem;
  background: #fbf6fe;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 1rem;
  border: 2px solid rgb(125, 63, 152);
  font-family: "roboto";
  font-size: 14px;
  background: #fbf6fe;
}

@media screen and (min-width: 536px) and (max-width: 668px) {
  .form {
    display: block;
    margin-bottom: 0;
  }

  .form-1 input {
    margin-bottom: 1rem;
  }

  .form-2 input {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 535px) {
  #Contactez-Nous form {
    padding: 2rem 1rem 3rem 1rem;
  }

  .form {
    display: block;
    margin-bottom: 0;
  }

  .form-1 input {
    margin-bottom: 1rem;
  }

  .form-2 input {
    margin-bottom: 1rem;
  }

  .form input {
    font-size: 12px;
  }

  textarea {
    font-size: 12px;
  }
}

/* ------------------------------------------ */
/* Nos partenaires */

#Nos-partenaires {
  width: 100%;
  padding: 3rem 3rem 4rem 3rem;
  background: var(--light);
  text-align: center;
}

#Nos-partenaires h2 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

#Nos-partenaires .wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1680px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 180px;
  padding: 1.5rem;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 12px;
}

#Nos-partenaires .wrapper img {
  width: 190px;
}
#Nos-partenaires .item {
  width: 100%;
  animation: animate 25s alternate linear infinite;
}
#Nos-partenaires .container:hover .item {
  animation-play-state: paused;
}
@keyframes animate {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-580%, 0, 0);
  }
}

/* --------------------------------------- */
/* footer */

footer {
  width: 100%;
  padding: 3rem 3rem 4rem 3rem;
  background: var(--primary);
}

.footer-section {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.footer-section h5 {
  font-size: 20px;
  color: white;
  margin-bottom: 1.2rem;
}

.footer-section p {
  color: white;
  font-weight: normal;
}

.footer-section p:not(.last-child) {
  margin-bottom: 0.7rem;
}

.footer-section-1 {
  width: 30%;
}

.footer-section-1 img {
  width: 220px;
  margin-bottom: 1.5rem;
}

.footer-section-1 p {
  color: white;
}

.footer-section-1 i {
  font-size: 36px;
  color: white;
  padding-right: 0.4rem;
  margin-top: 1.5rem;
}

.contact-1 {
  margin-bottom: 1rem;
  background: white;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
}

.contact-1 span {
  font-family: "roboto";
  font-weight: bold;
  font-size: 14px;
  color: var(--primary);
}

.contact-2 {
  margin-bottom: 1rem;
  background: var(--primary);
  border: 2px solid white;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
}

.contact-2 span {
  font-family: "roboto";
  font-weight: bold;
  font-size: 14px;
  color: white;
}

.copyright {
  color: white;
  text-align: center;
  font-weight: normal;
}

@media screen and (min-width: 536px) and (max-width: 820px) {
  .footer-section {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    text-align: center;
  }

  .contact-1 {
    width: 300px;
  }
  .contact-2 {
    width: 300px;
  }
  .footer-section-1 {
    width: 40%;
  }

  .footer-section-1 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media screen and (max-width: 535px) {
  .footer-section {
    display: flex;
    flex-direction: column;
  }

  .contact-1 {
    width: 250px;
  }
  .contact-2 {
    width: 250px;
  }
  .footer-section-1 {
    width: 100%;
  }
}

/* -------------------------------------------------- */
/* Confirmation */

#confirmation {
  max-width: 1780px;
  padding: 0 3rem;
  margin: 0 auto;
  margin-bottom: 4rem;
  margin-top: 9.5rem;
  text-align: center;
}

#confirmation h2 {
  margin-bottom: 4rem;
}

.confirmation-section img {
  width: 200px;
  margin-bottom: 2rem;
}

.confirmation-section p {
  font-size: 20px;
}

@media screen and (max-width: 535px) {
  .confirmation-section img {
    width: 160px;
  }

  .confirmation-section p {
    font-size: 18px;
  }
}
