
@import url('https://fonts.cdnfonts.com/css/lato');
@import url('https://fonts.cdnfonts.com/css/oswald-4');

:root {
  --purple-1: #3d174f;
  --purple-2: #4b2860;
  --white: #fff;
  --black: #041b2d;
  --red: #fea773;
  --lightgray: #cfcfcf;
  --overlay: rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: "lato", sans-serif;
}

html {
  height: 100%;
  font-size: 70%;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
button {
  color: inherit;
}

.no-transition {
  transition: none !important;
}

body {
  height: 100%;
  color: var(--white);
  min-height: 100vh;
}

h1 {
  font-family: "oswald", sans-serif;
  font-size: 52px;
  line-height: 1;
  color: #3d174f;
}
h2 {
  font-family: "oswald", sans-serif;
  font-size: 36px;
  line-height: 1;
  color: #3d174f;
}
h3 {
  font-family: "oswald", sans-serif;
  font-size: 24px;
  line-height: 1.6;
  color: #3d174f;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  color: #3d174f;
}

span {
  color: #3d174f;
  font-size: 16px;
  font-weight: bold;
}

.header-btn {
  background: #3d174f;
  color: white;
  padding: 1.5rem 2.2rem;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: rgb(61, 23, 79, 0.6) 3px 3px 20px;
}

.header-btn-2 {
  border: 3.5px solid #3d174f;
  color: #3d174f;
  padding: 1.5rem 2.2rem;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 4px;
}

.content-btn {
  background: #3d174f;
  color: white;
  padding: 1.5rem 2rem;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: rgb(61, 23, 79, 0.6) 3px 3px 20px;
}

@media screen and (max-width: 415px) {
  .content-btn {
    font-size: 12px;
  }
}

/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */



.page-header {
  position: relative;
  padding: 1.5rem 3rem;
  background: var(--purple-1);
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
}

.page-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header .horizontal-logo,
.page-header .search span {
  display: none;
}

.horizontal-logo {
  max-width: 25rem;
}

.page-header .vertical-logo {
  max-width: 20rem;
}

.page-header .top-menu-wrapper {
  color: var(--black);
}

.page-header .panel,
.page-header .top-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.page-header .panel1 {
  width: 100%;
  background: var(--purple-1);
  transition-delay: 0.3s;
}

.page-header .panel2 {
  width: calc(100% - 3rem);
  background: var(--red);
  transition-delay: 0.1s;
}

.page-header .top-menu {
  display: flex;
  flex-direction: column;
  width: calc(100% - 6rem);
  overflow-y: auto;
  padding: 2rem;
  background: var(--white);
}

.page-header .top-menu-wrapper.show-offcanvas::before {
  background: var(--overlay);
  z-index: 1;
}

.page-header .top-menu-wrapper.show-offcanvas .panel,
.page-header .top-menu-wrapper.show-offcanvas .top-menu {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.7s;
}

.page-header .top-menu-wrapper.show-offcanvas .panel1 {
  transition-delay: 0s;
}

.page-header .top-menu-wrapper.show-offcanvas .panel2 {
  transition-delay: 0.2s;
}

.page-header .top-menu-wrapper.show-offcanvas .top-menu {
  transition-delay: 0.4s;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 4rem 0.5rem;
}

/* TOP MENU
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header .top-menu li + li {
  margin-top: 1.5rem;
}

.fa-times,
.fa-bars {
  font-size: 1.6rem;
}

.page-header .top-menu li:nth-child(1),
.page-header .top-menu li:nth-child(2),
.page-header .top-menu li:nth-child(3),
.page-header .top-menu li:nth-child(4) {
  padding-right: 1rem;
}

.page-header .top-menu > li:last-child {
  margin-top: auto;
}

.page-header ul a {
  display: inline-block;
  font-size: 1.3rem;
  text-transform: uppercase;
  transition: color 0.35s ease-out;
  font-weight: bold;
}

.page-header ul a:hover {
  color: var(--red);
}

.page-header .has-dropdown i {
  display: none;
}

.page-header .sub-menu {
  padding: 1.5rem 2rem 0;
}

.page-header .top-menu .mob-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.page-header .top-menu .mob-block i {
  color: var(--lightgray);
}

.page-header .socials {
  display: flex;
  margin-top: 3rem;
  /* some browsers ignore the padding-bottom: 2rem of the .top-menu because it has overflow-y:auto
  https://bugzilla.mozilla.org/show_bug.cgi?id=748518
  so we add a bottom margin to the .socials
  */
  margin-bottom: 1rem;
}

.page-header .socials li + li {
  margin-top: 0;
}

.page-header .socials .fa-stack {
  font-size: 1.7rem;
}

.page-header .socials .fab {
  font-size: 1.2rem;
}

/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 550px) {
  .page-header .panel1 {
    width: 60%;
  }
  .page-header .panel2 {
    width: calc(60% - 3rem);
  }
  .page-header .top-menu {
    width: calc(60% - 6rem);
  }
}

@media screen and (min-width: 768px) {
  .page-header .top-menu {
    padding: 4rem;
  }

  .page-header ul a {
    font-size: 1.6rem;
  }

  .page-header .search-form input {
    font-size: 2.4rem;
    height: 5rem;
    line-height: 5rem;
  }
}

@media screen and (min-width: 995px) {
  .page-header {
    padding: 0 3rem;
  }

  .page-header .panel,
  .page-header .open-mobile-menu,
  .page-header .vertical-logo,
  .page-header .top-menu .mob-block,
  .page-header .top-menu > li:last-child,
  .page-header .top-menu-wrapper::before {
    display: none;
  }

  .page-header .horizontal-logo {
    display: block;
  }

  .page-header .top-menu-wrapper {
    display: flex;
    align-items: center;
    color: var(--white);
  }

  .page-header .top-menu {
    flex-direction: row;
    position: static;
    width: auto;
    background: transparent;
    transform: none;
    padding: 0;
    overflow-y: visible;
    box-shadow: none !important;
  }

  .page-header .top-menu li + li {
    margin-top: 0;
  }

  .page-header .top-menu > li:not(:nth-last-child(2)) {
    margin-right: 3rem;
  }

  .page-header .top-menu > li > a {
    padding: 3rem 0.5rem;
  }

  .page-header ul a {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 994px) {
  .page-header .top-menu .item-1,
  .page-header .top-menu .item-2,
  .page-header .top-menu .item-3,
  .page-header .top-menu .item-4 {
    margin-top: 1.5rem;
    border-bottom: 2px solid rgb(254, 167, 115, 0.3);
    padding-bottom: 1.5rem;
  }
  .mob-block img {
    max-width: 20rem;
  }
}

/* -------------------------------------------------------------- */
/* Top-header */

#intro {
  margin-top: 82px;
  height: 89vh;
}
.top-header {
  width: 100%;
  height: 89vh;
  display: flex;
}

.left {
  width: 100%;
  background: url(img/header.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
}
.left .left-section {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.left-section h1 {
  margin-bottom: 2rem;
  color: #3d174f;
}
.left-section p {
  font-size: 18px;
  margin: 2rem 0;
  font-weight: bold;
  color: #3d174f;
}

.right {
  width: 100%;
  background: linear-gradient(to bottom right, #33ccff 0%, #ff99cc 100%);
  text-align: center;
  position: relative;
}
.right .right-section {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.right-section h1 {
  margin-bottom: 2rem;
  color: #3d174f;
}
.right-section p {
  font-size: 18px;
  margin: 2rem 0;
  font-weight: bold;
  color: #3d174f;
}

@media screen and (min-width: 995px) and (max-width: 1200px) {
  .left-section h1 {
    font-size: 44px;
  }
  .right-section h1 {
    font-size: 44px;
  }
}

@media screen and (min-width: 451px) and (max-width: 994px) {
  #intro {
    margin-top: 55px;
    height: 89vh;
  }
  .top-header {
    width: 100%;
    height: 100%;
    display: block;
  }
  .left {
    height: 50%;
  }
  .right {
    height: 50%;
  }
  .left-section h1 {
    font-size: 40px;
  }
  .right-section h1 {
    font-size: 40px;
  }
  .left-section p {
    font-size: 16px;
    line-height: 1.5;
  }
  .right-section p {
    font-size: 16px;
    line-height: 1.5;
  }
  .header-btn {
    font-size: 14px;
  }

  .header-btn-2 {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  #intro {
    margin-top: 55px;
    height: 89vh;
  }
  .top-header {
    width: 100%;
    height: 100%;
    display: block;
  }
  .left {
    height: 50%;
  }
  .right {
    height: 50%;
  }
  .left-section h1 {
    font-size: 34px;
  }
  .right-section h1 {
    font-size: 34px;
  }
  .left-section p {
    font-size: 14px;
    line-height: 1.5;
  }
  .right-section p {
    font-size: 14px;
    line-height: 1.5;
  }
  .header-btn {
    font-size: 12px;
  }

  .header-btn-2 {
    font-size: 12px;
  }
}

/* ------------------------------------------------- */
/* nous choisir */

#Nous-Choisir {
  width: 100%;
  padding: 6rem 5rem;
  background: white;
}

#Nous-Choisir h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

#Nous-Choisir h2:after,
#Nous-Choisir h2:before {
  content: " ";
  background: #3d174f;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  margin-top: 5px;
}

.Nous-Choisir-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 2rem;
  text-align: center;
}

.icon-content {
  width: 100%;
  background: white;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: rgb(0, 0, 0, 0.1) 1px 1px 20px;
}

.icon-content img {
  width: 140px;
  margin-bottom: 1rem;
}
.icon-content h3 {
  margin-bottom: 2rem;
}

.icon-content p {
  font-size: 18px;
  font-weight: bold;
  color: #041b2d;
  line-height: 1.6;
}

@media screen and (min-width: 417px) and (max-width: 715px) {
  .Nous-Choisir-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  #Nous-Choisir h2 {
    font-size: 28px;
    gap: 1rem;
  }
  #Nous-Choisir h2:after,
  #Nous-Choisir h2:before {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 416px) {
  #Nous-Choisir {
    padding: 6rem 3rem;
  }
  .Nous-Choisir-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  #Nous-Choisir h2 {
    font-size: 28px;
    gap: 1rem;
  }
  .icon-content p {
    font-size: 16px;
  }
  #Nous-Choisir h2:after,
  #Nous-Choisir h2:before {
    width: 10px;
    height: 10px;
  }
}

/* ------------------------------------------------- */
/* Assurance auto annulation de permis */

#annulation-de-permis {
  width: 100%;
  padding: 6rem 5rem;
  background: #f7f7f7;
  text-align: center;
}

#annulation-de-permis h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 6rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

#annulation-de-permis h2:after,
#annulation-de-permis h2:before {
  content: " ";
  background: #3d174f;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  margin-top: 5px;
}

.annulation-permis-container {
  width: 100%;
  display: flex;
  gap: 3rem;
  margin-bottom: 5rem;
}

.left-content {
  width: 50%;
}

.right-content {
  width: 50%;
}

.right-content img {
  width: 100%;
  border: 6px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(
    to bottom right,
    #33ccff 0%,
    #ff99cc 100%
  );
  padding: 0.5rem 0.5rem 0.35rem 0.5rem;
}

.left-content p {
  text-align: justify;
  margin-bottom: 2rem;
  color: #041b2d;
  line-height: 2;
}

.check {
  width: 100%;
}

.check-items {
  display: flex;
}

.check-items img {
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.left-content .check-items p {
  text-align: start;
}

.buttom-para {
  text-align: justify;
  margin-bottom: 6rem;
  color: #041b2d;
  line-height: 2;
}

@media screen and (min-width: 716px) and (max-width: 1050px) {
  .annulation-permis-container {
    width: 100%;
    display: block;
    background: white;
    padding: 3rem;
    border-radius: 11px;
    box-shadow: rgb(0, 0, 0, 0.1) 1px 1px 20px;
  }
  .left-content {
    width: 100%;
  }

  .right-content {
    width: 100%;
  }
}

@media screen and (min-width: 416px) and (max-width: 715px) {
  .annulation-permis-container {
    width: 100%;
    display: block;
    background: white;
    padding: 3rem;
    border-radius: 11px;
    box-shadow: rgb(0, 0, 0, 0.1) 1px 1px 20px;
  }
  .left-content {
    width: 100%;
  }

  .right-content {
    width: 100%;
  }
  #annulation-de-permis h2 {
    font-size: 28px;
    gap: 1rem;
  }
  #annulation-de-permis p {
    font-size: 14px;
  }
  #annulation-de-permis h2:after,
  #annulation-de-permis h2:before {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 415px) {
  #annulation-de-permis {
    padding: 6rem 3rem;
  }
  .annulation-permis-container {
    width: 100%;
    display: block;
    background: white;
    padding: 1.5rem;
    border-radius: 11px;
    box-shadow: rgb(0, 0, 0, 0.1) 1px 1px 20px;
  }
  .left-content {
    width: 100%;
  }

  .right-content {
    width: 100%;
  }
  #annulation-de-permis h2 {
    font-size: 28px;
    gap: 1rem;
  }
  #annulation-de-permis p {
    font-size: 14px;
  }
  #annulation-de-permis h2:after,
  #annulation-de-permis h2:before {
    width: 10px;
    height: 10px;
  }
}

/* Annulation et suspension de permis */

.suspension-de-permis {
  width: 100%;
  background: url(img/suspension.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 5rem;
  text-align: center;
}

.suspension-auto-content h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: white;
}

.suspension-auto-content h2:after,
.suspension-auto-content h2:before {
  content: " ";
  background: white;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  margin-top: 5px;
}

.BG-para-general {
  width: 100%;
  position: relative;
}

.BG-para {
  width: 80%;
  background: rgba(255, 240, 245, 0.4);
  justify-items: center;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  padding: 3rem 3rem 4rem 3rem;
  border-radius: 11px;
}

.suspension-auto-content p {
  color: #041b2d;
  text-align: justify;
  margin-bottom: 3rem;
}

.suspension-auto-content span {
  color: #041b2d;
}

#myBtn {
  background: #3d174f;
  font-size: 14px;
  font-family: "lato";
  font-weight: bold;
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  box-shadow: rgb(61, 23, 79, 0.6) 3px 3px 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 416px) and (max-width: 715px) {
  .BG-para {
    width: 100%;
  }
  .suspension-auto-content h2 {
    font-size: 28px;
    gap: 1rem;
  }
  .suspension-auto-content p {
    font-size: 14px;
  }
  .suspension-auto-content h2:after,
  .suspension-auto-content h2:before {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 415px) {
  .suspension-de-permis {
    padding: 6rem 3rem;
  }

  .BG-para {
    width: 100%;
  }
  .suspension-auto-content h2 {
    font-size: 28px;
    gap: 1rem;
  }
  .suspension-auto-content p {
    font-size: 14px;
  }
  .suspension-auto-content h2:after,
  .suspension-auto-content h2:before {
    width: 10px;
    height: 10px;
  }
}

/* -------------------------------------------------------- */
/* FAQ */

#FAQ-mobile {
  display: none;
}

#FAQ {
  width: 100%;
  padding: 6rem 5rem;
  background: white;
}

#FAQ h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 6rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

#FAQ h2:after,
#FAQ h2:before {
  content: " ";
  background: #3d174f;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  margin-top: 5px;
}

.FAQ-container {
  width: 100%;
  display: flex;
  gap: 2rem;
}

.FAQ-icon img {
  width: 90px;
}

.vl {
  border-left: 4px solid #f6e5ff;
  height: 75%;
  margin-top: 1.3rem;
  margin-left: 3.6rem;
}

.vl-2 {
  border-left: 4px solid #f6e5ff;
  height: 78%;
  margin-top: 1.3rem;
  margin-left: 3.6rem;
}

.FAQ-para {
  width: 100%;
  background: #f6e5ff;
  border-radius: 11px;
  padding: 2rem;
}

.FAQ-para p {
  margin-bottom: 1rem;
  color: #041b2d;
}

.FAQ-para .para {
  margin-bottom: 2rem;
}

.FAQ-container-left {
  width: 50%;
}

.FAQ-container-left-1 {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}
.FAQ-container-left-2 {
  display: flex;
  gap: 2rem;
}

.FAQ-container-right {
  width: 50%;
}
.FAQ-container-right-1 {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}
.FAQ-container-right-2 {
  display: flex;
  gap: 2rem;
}

.FAQ-para i {
  font-size: 2rem;
  color: #fea773;
  padding-right: 1.5rem;
  margin-top: 0.4rem;
}

@media screen and (min-width: 716px) and (max-width: 980px) {
  .FAQ-container {
    width: 100%;
    display: block;
    gap: 2rem;
  }
  .FAQ-container-left {
    width: 100%;
    margin-bottom: 3rem;
  }
  .FAQ-container-right {
    width: 100%;
  }
}

@media screen and (min-width: 601px) and (max-width: 715px) {
  .FAQ-container {
    width: 100%;
    display: block;
    gap: 2rem;
  }
  .FAQ-container-left {
    width: 100%;
    margin-bottom: 3rem;
  }
  .FAQ-container-right {
    width: 100%;
  }
  #FAQ h2 {
    font-size: 28px;
  }
  #FAQ h3 {
    font-size: 20px;
    gap: 1rem;
  }
  .FAQ-para p {
    font-size: 14px;
  }
  #FAQ h2:after,
  #FAQ h2:before {
    width: 10px;
    height: 10px;
  }
}

@media screen and (min-width: 416px) and (max-width: 600px) {
  #FAQ {
    display: none;
  }
  #FAQ-mobile {
    display: block;
    width: 100%;
    padding: 6rem 5rem;
    background: white;
  }
  #FAQ-mobile h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 6rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 28px;
  }

  #FAQ-mobile h2:after,
  #FAQ-mobile h2:before {
    content: " ";
    background: #3d174f;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin-top: 5px;
  }
  #FAQ-mobile h3 {
    font-size: 20px;
  }
  .FAQ-container-mobile p {
    font-size: 14px;
  }
  #FAQ-mobile .FAQ-para {
    width: 100%;
    background: #f6e5ff;
    border-radius: 11px;
    padding: 2rem;
    margin-bottom: 3rem;
  }
  #FAQ-mobile .FAQ-icon {
    text-align: center;
  }
  #FAQ-mobile .FAQ-icon img {
    width: 90px;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 415px) {
  #FAQ {
    display: none;
  }
  #FAQ-mobile {
    display: block;
    width: 100%;
    padding: 6rem 3rem;
    background: white;
  }
  #FAQ-mobile h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 6rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 28px;
  }

  #FAQ-mobile h2:after,
  #FAQ-mobile h2:before {
    content: " ";
    background: #3d174f;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin-top: 5px;
  }
  #FAQ-mobile h3 {
    font-size: 20px;
    text-align: center;
  }
  .FAQ-container-mobile p {
    font-size: 14px;
  }
  #FAQ-mobile .FAQ-para {
    width: 100%;
    background: #f6e5ff;
    border-radius: 11px;
    padding: 2rem;
    margin-bottom: 3rem;
  }
  #FAQ-mobile .FAQ-icon {
    text-align: center;
  }
  #FAQ-mobile .FAQ-icon img {
    width: 90px;
    margin-bottom: 2rem;
  }
}

/* -------------------------------------------------------- */
/* Comment bien choisir son assurance auto ? */

#FAQ-2 {
  width: 100%;
  padding: 6rem 5rem;
  background: #f7f7f7;
}

#FAQ-2 h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

#FAQ-2 h2:after,
#FAQ-2 h2:before {
  content: " ";
  background: #3d174f;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  margin-top: 5px;
}

.FAQ-2-para {
  color: #041b2d;
  text-align: center;
  margin-bottom: 5rem;
}

.FAQ-item {
  width: 100%;
  margin-bottom: 3rem;
}

.FAQ-item p {
  text-align: justify;
  color: #041b2d;
}

@media screen and (max-width: 715px) {
  #FAQ-2 h2 {
    font-size: 28px;
    gap: 1rem;
  }
  #FAQ-2 h2:after,
  #FAQ-2 h2:before {
    content: " ";
    background: #3d174f;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin-top: 5px;
  }
  #FAQ-2 h3 {
    font-size: 20px;
  }
  .FAQ-2-para {
    font-size: 14px;
    color: #041b2d;
  }
  .FAQ-item p {
    font-size: 14px;
    color: #041b2d;
  }
}
/* -------------------------------------------------------- */
/* VOS AVANTAGES */

#VOS-AVANTAGES {
  width: 100%;
  padding: 6rem 5rem;
  background: white;
  text-align: center;
}

#VOS-AVANTAGES h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 6rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

#VOS-AVANTAGES h2:after,
#VOS-AVANTAGES h2:before {
  content: " ";
  background: #3d174f;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  margin-top: 5px;
}

.VOS-AVANTAGES-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
  justify-items: center;
  margin-bottom: 5rem;
}
#VOS-AVANTAGES h3 {
  font-size: 20px;
}

.advantages-items {
  width: 100%;
  background: #fcf5ff;
  padding: 2rem;
  border-radius: 11px;
  box-shadow: rgb(0, 0, 0, 0.1) 1px 1px 20px;
}

.advantages-items img {
  width: 140px;
  margin-bottom: 1rem;
}

.advantages-items p {
  color: #041b2d;
}

@media screen and (min-width: 716px) and (max-width: 1150px) {
  .VOS-AVANTAGES-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 3rem;
    justify-items: center;
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 416px) and (max-width: 715px) {
  .VOS-AVANTAGES-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 3rem;
    justify-items: center;
    margin-bottom: 5rem;
  }
  #VOS-AVANTAGES h2 {
    font-size: 28px;
    gap: 1rem;
  }

  #VOS-AVANTAGES h2:after,
  #VOS-AVANTAGES h2:before {
    width: 10px;
    height: 10px;
  }
  .advantages-items img {
    width: 120px;
  }

  .advantages-items p {
    font-size: 14px;
  }
}

@media screen and (max-width: 415px) {
  #VOS-AVANTAGES {
    padding: 6rem 3rem;
  }
  .VOS-AVANTAGES-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 3rem;
    justify-items: center;
    margin-bottom: 5rem;
  }
  #VOS-AVANTAGES h2 {
    font-size: 28px;
    gap: 1rem;
  }

  #VOS-AVANTAGES h2:after,
  #VOS-AVANTAGES h2:before {
    width: 10px;
    height: 10px;
  }
  .advantages-items img {
    width: 120px;
  }

  .advantages-items p {
    font-size: 14px;
  }
}

/* -------------------------------------------------------- */
/* Contact */

#CONTACTEZ-NOUS {
  width: 100%;
  padding: 6rem 5rem;
  background: #f7f7f7;
}

#CONTACTEZ-NOUS h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

#CONTACTEZ-NOUS h2:after,
#CONTACTEZ-NOUS h2:before {
  content: " ";
  background: #3d174f;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  margin-top: 5px;
}

#CONTACTEZ-NOUS h3 {
  text-align: center;
  color: #041b2d;
  margin-bottom: 3rem;
}

.contact-para {
  color: #041b2d;
  text-align: center;
  margin-bottom: 5rem;
}

.form-general {
  width: 100%;
  height: 100%;
  display: flex;
  background: transparent;
  border-radius: 11px;
  box-shadow: rgb(0, 0, 0, 0.1) 1px 1px 20px;
}

.contact_form {
  width: 60%;
  max-width: 100%;
  background: white;
  padding: 4rem 4rem;
  border-radius: 11px 0 0 11px;
}

.contact_form .contact-boxes {
  width: 100%;
}

.contact-boxes .contact-item {
  display: flex;
  gap: 1.5rem;
}

.contact-boxes .contact-item input {
  width: 100%;
  height: 60px;
  padding-left: 1.5rem;
  font-family: "lato";
  font-size: 16px;
  font-weight: 500;
  background: white;
  outline-color: #3d174f;
  border: 2px solid #3d174f;
  border-radius: 4px;
}

.contact-boxes .contact-item input:focus {
  background: white;
  border: 3px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(
    to bottom right,
    #33ccff 0%,
    #ff99cc 100%
  );
}

.contact-boxes-1 {
  margin-bottom: 1.5rem;
}

.contact-boxes-2 {
  margin-bottom: 0.4rem;
}

.textarea {
  width: 100%;
  height: 250px;
  margin-bottom: 4rem;
  padding: 1.5rem;
  font-family: roboto;
  font-size: 16px;
  font-weight: 500;
  background: white;
  outline-color: #3d174f;
  border: 2px solid #3d174f;
  border-radius: 4px;
  resize: none;
}

.textarea:focus {
  background: white;
  border: 3px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(
    to bottom right,
    #33ccff 0%,
    #ff99cc 100%
  );
}

.envoyez-message {
  text-align: center;
}

.contact-container-2 {
  width: 40%;
  background: #fcf5ff;
  padding: 4rem 4rem;
  border-radius: 0 11px 11px 0;
}

.contact-para-2 {
  margin-bottom: 3rem;
  color: #041b2d;
  text-align: center;
  margin-top: -1.5rem;
}

.Contact-detail-1,
.Contact-detail-2,
.Contact-detail-3 {
  width: 100%;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.Contact-detail img {
  width: 8rem;
}

@media screen and (min-width: 716px) and (max-width: 1245px) {
  .form-general {
    display: block;
  }
  .contact_form {
    width: 100%;
    border-radius: 11px 11px 0 0;
  }
  .contact-container-2 {
    width: 100%;
    border-radius: 0 0 11px 11px;
  }
  .Contact-detail-info {
    width: 100%;
    display: flex;
    gap: 2rem;
    text-align: center;
  }
  .Contact-detail-1,
  .Contact-detail-2,
  .Contact-detail-3 {
    width: 100%;
    display: block;
  }
  .Contact-detail img {
    width: 8rem;
    margin-bottom: 1.5rem;
  }
}

@media screen and (min-width: 416px) and (max-width: 715px) {
  .form-general {
    display: block;
  }
  .contact-boxes .contact-item {
    display: block;
    gap: 1.5rem;
  }
  .contact_form {
    width: 100%;
    border-radius: 11px 11px 0 0;
  }
  .contact-container-2 {
    width: 100%;
    border-radius: 0 0 11px 11px;
  }
  .Contact-detail-info {
    width: 100%;
    display: block;
    gap: 2rem;
    text-align: center;
  }
  .Contact-detail-1,
  .Contact-detail-2,
  .Contact-detail-3 {
    width: 100%;
    display: block;
  }
  .Contact-detail img {
    width: 8rem;
    margin-bottom: 1.5rem;
  }
  #CONTACTEZ-NOUS h2 {
    font-size: 28px;
    gap: 1rem;
  }

  #CONTACTEZ-NOUS h2:after,
  #CONTACTEZ-NOUS h2:before {
    width: 10px;
    height: 10px;
  }

  #CONTACTEZ-NOUS h3 {
    font-size: 20px;
  }
  .contact-para {
    font-size: 14px;
  }
  .contact-boxes .contact-item input {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }
  .contact-boxes-2 {
    margin: -1.5rem 0 -1.3rem 0;
  }
  .contact-para-2 {
    font-size: 14px;
  }
  .right-Contact-detail p {
    font-size: 14px;
  }
}

@media screen and (max-width: 415px) {
  #CONTACTEZ-NOUS {
    padding: 6rem 3rem;
  }
  .form-general {
    display: block;
  }
  .contact-boxes .contact-item {
    display: block;
    gap: 1.5rem;
  }
  .contact_form {
    width: 100%;
    border-radius: 11px 11px 0 0;
  }
  .contact-container-2 {
    width: 100%;
    border-radius: 0 0 11px 11px;
  }
  .Contact-detail-info {
    width: 100%;
    display: block;
    gap: 2rem;
    text-align: center;
  }
  .Contact-detail-1,
  .Contact-detail-2,
  .Contact-detail-3 {
    width: 100%;
    display: block;
  }
  .Contact-detail img {
    width: 8rem;
    margin-bottom: 1.5rem;
  }
  #CONTACTEZ-NOUS h2 {
    font-size: 28px;
    gap: 1rem;
  }

  #CONTACTEZ-NOUS h2:after,
  #CONTACTEZ-NOUS h2:before {
    width: 10px;
    height: 10px;
  }

  #CONTACTEZ-NOUS h3 {
    font-size: 20px;
  }
  .contact-para {
    font-size: 14px;
  }
  .contact-boxes .contact-item input {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }
  .contact-boxes-2 {
    margin: -1.5rem 0 -1.3rem 0;
  }
  .contact-para-2 {
    font-size: 14px;
  }
  .right-Contact-detail p {
    font-size: 14px;
  }
}

/* -------------------------------------------------------- */
/* NOS PARTENAIRES ASSUREURS AUTO */

#PARTENAIRES {
  width: 100%;
  padding: 6rem 5rem;
  background: white;
  align-items: center;
  justify-content: center;
}

#PARTENAIRES h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 10rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

#PARTENAIRES h2:after,
#PARTENAIRES h2:before {
  content: " ";
  background: #3d174f;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  margin-top: 5px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}

.slider .slider-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slider .slide {
  height: 100px;
  width: 250px;
}

.slide img {
  width: 200px;
}

@media screen and (min-width: 416px) and (max-width: 715px) {
  #PARTENAIRES h2 {
    font-size: 28px;
    gap: 1rem;
  }

  #PARTENAIRES h2:after,
  #PARTENAIRES h2:before {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 415px) {
  #PARTENAIRES {
    padding: 6rem 3rem;
  }
  #PARTENAIRES h2 {
    font-size: 28px;
    gap: 1rem;
  }

  #PARTENAIRES h2:after,
  #PARTENAIRES h2:before {
    width: 10px;
    height: 10px;
  }
}

/* ------------------------------------------------- */
/* footer */

.footer-section-responsive {
  display: none;
}

.footer-section-responsive-2 {
  display: none;
}

.footer-section {
  width: 100%;
  padding: 6rem 5rem 4rem 5rem;
  background: #3d174f;
}

.footer-lists {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
  margin-bottom: 5rem;
}

.list h3 {
  font-family: "lato";
  font-size: 20px;
  color: white;
  margin-bottom: 1rem;
}

.list ul {
  list-style: active;
  list-style-type: disc;
  color: white;
}

.list ul li {
  font-size: 16px;
  line-height: 2.1;
  font-weight: 500;
}

.list ul li a {
  font-size: 16px;
  line-height: 2.1;
  color: white;
  transition: all 0.3s ease-in-out;
}

.list ul li a:hover {
  color: #fea773;
  transition: all 0.3s ease-in-out;
}

.list-4 .list-4-1 {
  margin-bottom: 2rem;
}

.list-4-2 i {
  font-size: 40px;
  margin-right: 0.5rem;
  color: white;
  transition: all 0.3s ease-in-out;
}

.list-4-2 i:hover {
  font-size: 40px;
  margin-right: 0.5rem;
  color: #fea773;
  transition: all 0.3s ease-in-out;
}

footer p {
  color: white;
  font-weight: 500;
}

@media screen and (min-width: 826px) and (max-width: 1055px) {
  .footer-section-responsive {
    display: block;
    width: 100%;
    padding: 3rem 4rem 2.5rem 4rem;
    background: #3d174f;
  }

  .footer-section-responsive-2 {
    display: none;
  }

  .footer-section {
    display: none;
  }
  .footer-section-responsive .footer-lists {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    margin-bottom: 3rem;
  }
  .list h3 {
    font-size: 18px;
  }

  .list ul li {
    font-size: 14px;
  }

  .list-3 ul {
    margin-bottom: 1.5rem;
  }
  .list-3 .list-4-2 {
    margin-bottom: 1.5rem;
  }

  .list-3 .list-4-3 i {
    font-size: 40px;
    margin-right: 0.5rem;
    color: white;
    transition: all 0.3s ease-in-out;
  }

  .list-3 .list-4-3 i:hover {
    font-size: 38px;
    margin-right: 0.3rem;
    color: #fea773;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (min-width: 586px) and (max-width: 825px) {
  .footer-section-responsive {
    display: none;
  }

  .footer-section-responsive-2 {
    display: block;
    width: 100%;
    padding: 3rem 4rem 2.5rem 4rem;
    background: #3d174f;
  }

  .footer-section {
    display: none;
  }
  .footer-section-responsive-2 .footer-lists {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
    margin-bottom: 3rem;
  }
  .list h3 {
    font-size: 18px;
  }

  .list ul li {
    font-size: 14px;
  }

  .list-3 ul {
    margin-bottom: 1.5rem;
  }
  .list-3 .list-4-2 {
    margin-bottom: 1.5rem;
  }

  .list-1-2 .list-1 {
    margin-bottom: 1.5rem;
  }

  .list-3 .list-4-3 i {
    font-size: 40px;
    margin-right: 0.5rem;
    color: white;
    transition: all 0.3s ease-in-out;
  }

  .list-3 .list-4-3 i:hover {
    font-size: 38px;
    margin-right: 0.3rem;
    color: #fea773;
    transition: all 0.3s ease-in-out;
  }
}

@media screen and (min-width: 501px) and (max-width: 585px) {
  .footer-lists {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    justify-items: start;
    margin-bottom: 3rem;
    text-align: start;
  }
}

@media screen and (max-width: 500px) {
  .footer-section {
    width: 100%;
    padding: 4rem 3rem 2.5rem 3rem;
    background: #3d174f;
  }
  .footer-lists {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    justify-items: start;
    margin-bottom: 3rem;
    text-align: start;
  }
}

/* -------------------------------------------- */
/* Top-Header-Tarif */

#intro-heading {
  margin-top: 83px;
  width: 100%;
  height: 40vh;
  background: linear-gradient(to bottom right, #33ccff 0%, #ff99cc 100%);
  position: relative;
  text-align: center;
}

#intro-heading h1 {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -47%);
}

@media screen and (min-width: 714px) and (max-width: 994px) {
  #intro-heading {
    margin-top: 50px;
  }
}

@media screen and (max-width: 715px) {
  #intro-heading {
    margin-top: 50px;
  }
  #intro-heading h1 {
    font-size: 40px;
  }
}

/* Tarif */

#Tarif {
  width: 100%;
  padding: 6rem 5rem;
  background: #f7f7f7;
}

#Tarif .contact-para {
  color: #041b2d;
  text-align: center;
  margin-bottom: 5rem;
}

#Tarif .form-general {
  width: 100%;
  height: 100%;
  display: flex;
  background: transparent;
  border-radius: 11px;
  box-shadow: rgb(0, 0, 0, 0.1) 1px 1px 20px;
}

#Tarif .contact_form {
  width: 60%;
  max-width: 100%;
  background: white;
  padding: 4rem 4rem;
  border-radius: 11px 0 0 11px;
}

#Tarif .contact_form .contact-boxes {
  width: 100%;
}

#Tarif .contact-boxes .contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

#Tarif .contact-boxes .contact-item input {
  width: 100%;
  height: 60px;
  padding-left: 1.5rem;
  font-family: "lato";
  font-size: 16px;
  font-weight: 500;
  background: white;
  outline-color: #3d174f;
  border: 2px solid #3d174f;
  border-radius: 4px;
}

#Tarif .contact-boxes .contact-item input:focus {
  background: white;
  border: 3px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(
    to bottom right,
    #33ccff 0%,
    #ff99cc 100%
  );
}

#Tarif .envoyez-message {
  text-align: center;
  margin-top: 4rem;
}

#Tarif .contact-container-2 {
  width: 40%;
  background: url(img/Form.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 11px 11px 0;
}

.checkbox {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.checkbox span {
  margin-left: 1rem;
}

@media screen and (min-width: 716px) and (max-width: 1245px) {
  #Tarif .form-general {
    display: block;
  }
  #Tarif .contact_form {
    width: 100%;
    border-radius: 11px 0 0 11px;
  }
  #Tarif .contact-container-2 {
    width: 100%;
    height: 70vh;
    border-radius: 0 0 11px 11px;
  }
}

@media screen and (min-width: 416px) and (max-width: 715px) {
  #Tarif .contact-para {
    font-size: 14px;
  }

  #Tarif .form-general {
    display: block;
  }
  #Tarif .contact_form {
    width: 100%;
    border-radius: 11px 0 0 11px;
  }
  #Tarif .contact-container-2 {
    width: 100%;
    height: 70vh;
    border-radius: 0 0 11px 11px;
  }
  #Tarif .contact-boxes .contact-item {
    display: block;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .contact-boxes-3 {
    margin-top: -1.5rem;
  }
  .contact-boxes-4 {
    margin-top: -1.5rem;
  }
  .contact-boxes-5 {
    margin-top: -1.5rem;
  }
  #Tarif .contact-boxes .contact-item input {
    font-size: 14px;
  }
  #Tarif span {
    font-size: 14px;
  }
  #Tarif p {
    font-size: 14px;
  }
  #Tarif .content-btn {
    font-size: 12px;
  }
}

@media screen and (max-width: 415px) {
  #Tarif {
    padding: 6rem 3rem;
  }
  #Tarif .contact-para {
    font-size: 14px;
  }

  #Tarif .form-general {
    display: block;
  }
  #Tarif .contact_form {
    width: 100%;
    border-radius: 11px 0 0 11px;
  }
  #Tarif .contact-container-2 {
    width: 100%;
    height: 70vh;
    border-radius: 0 0 11px 11px;
  }
  #Tarif .contact-boxes .contact-item {
    display: block;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .contact-boxes-3 {
    margin-top: -1.5rem;
  }
  .contact-boxes-4 {
    margin-top: -1.5rem;
  }
  .contact-boxes-5 {
    margin-top: -1.5rem;
  }
  #Tarif .contact-boxes .contact-item input {
    font-size: 14px;
  }
  #Tarif span {
    font-size: 14px;
  }
  #Tarif p {
    font-size: 14px;
  }
  #Tarif .content-btn {
    font-size: 12px;
  }
}

/* Assurance auto suspension permis */

.Les-durées-de-suspension {
  width: 100%;
  display: flex;
  padding-top: 3rem;
  gap: 2rem;
  text-align: center;
}

.Les-durées-de-suspension p {
  text-align: center;
}

.Les-durées {
  width: 100%;
  background: white;
  padding: 2.5rem;
  border-radius: 11px;
  box-shadow: rgb(0, 0, 0, 0.1) 1px 1px 20px;
}

h4 {
  color: #fea773;
  margin-bottom: 1.7rem;
  font-size: 22px;
}

@media screen and (min-width: 416px) and (max-width: 680px) {
  .Les-durées-de-suspension {
    display: block;
  }
  .Les-durées:not(.Les-durées-de-suspension-3) {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 415px) {
  .Les-durées-de-suspension {
    display: block;
  }
  .Les-durées:not(.Les-durées-de-suspension-3) {
    margin-bottom: 2rem;
  }
  h4 {
    font-size: 18px;
  }
}

/* Malus assurance auto */

.Malus-assurance-auto {
  width: 100%;
  display: flex;
  padding-top: 3rem;
  gap: 2rem;
  text-align: center;
}

.Malus-assurance-auto p {
  text-align: center;
}

.Malus {
  width: 100%;
  background: white;
  padding: 2.5rem;
  border-radius: 11px;
  box-shadow: rgb(0, 0, 0, 0.1) 1px 1px 20px;
}

h4 {
  color: #fea773;
  margin-bottom: 1.7rem;
  font-size: 22px;
}

@media screen and (min-width: 416px) and (max-width: 1080px) {
  .Malus-assurance-auto {
    display: block;
  }
  .Malus:not(.Les-durées-de-suspension-4) {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 415px) {
  .Malus-assurance-auto {
    display: block;
  }
  .Malus:not(.Les-durées-de-suspension-4) {
    margin-bottom: 2rem;
  }
  h4 {
    font-size: 18px;
  }
}

/* TRAITEMENT DES DONNÉES PERSONNELLES */

.TRAITEMENT-DES-DONNÉES {
  text-align: center;
  margin-top: 80px;
}

@media screen and (max-width: 994px) {
  .TRAITEMENT-DES-DONNÉES {
    text-align: center;
    margin-top: 50px;
  }
}

#confirmation {
  background: white;
  width: 100%;
  height: auto;
  padding: 35px 60px;
}

.confirmation-section {
  margin-bottom: 60px;
}

#confirmation h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 6rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 80px;
}

#confirmation h2:after,
#confirmation h2:before {
  content: " ";
  background: #3d174f;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  margin-top: 5px;
}

.confirmation-content {
  background: #fcf5ff;
  border-radius: 11px;
  padding: 30px 25px 50px 25px;
  text-align: center;
  margin-bottom: 35px;
}

.confirmation-content i {
  font-size: 12rem;
  color: #3d174f;
}

.confirmation-content p {
  color: #182032;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  padding: 40px 0;
}

@media screen and (min-width: 416px) and (max-width: 715px) {
  #confirmation h2 {
    font-size: 28px;
    gap: 1rem;
  }
  #confirmation h2:after,
  #confirmation h2:before {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 415px) {
  #confirmation {
    padding: 35px 35px;
  }
  .confirmation-content p {
    color: #182032;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    padding: 40px 0;
  }
}

@media screen and (max-width: 994px) {
  #confirmation h2 {
    margin-top: 50px;
  }
}