@import url('https://fonts.cdnfonts.com/css/roboto-condensed');
@import url('https://fonts.cdnfonts.com/css/roboto');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.Principe-btn {
  background: #448aff;
  border: none;
  border-radius: 50px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  box-shadow: rgb(68, 138, 255, 0.3) 3px 3px 20px;
  cursor: pointer;
}

h1, h2{
  font-family: 'Roboto Condensed', sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button a {
  text-decoration: none;
  color: white;
}

nav {
  background: #26264a;
  padding: 3px 60px;
  position: sticky;
  top: 0;
  z-index: 2;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
nav ul li {
  padding: 10px 0;
  cursor: pointer;
}
nav ul li.items {
  position: relative;
  width: auto;
  margin: 0 16px;
  text-align: center;
  order: 3;
}
nav ul li.items:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 5px;
  height: 2px;
  width: 100%;
  background: #5d9ef2;
  opacity: 0;
  transition: all 0.2s linear;
}
nav ul li.items:hover:after {
  opacity: 1;
  bottom: 8px;
}

nav ul li.logo {
  flex: 1;
  color: white;
  cursor: default;
  user-select: none;
  cursor: pointer;
}

nav ul li.logo img {
  width: 210px;
}

nav ul li a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: 0.4s;
}

nav ul li a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: 0.4s;
}
nav ul li:hover a:not(nav ul li.logo a) {
  color: #5d9ef2;
}
nav ul li i {
  font-size: 23px;
}
nav ul li.btn {
  display: none;
}
nav ul li.btn.hide i:before {
  content: "\f00d";
}
@media all and (max-width: 768px) {
  nav {
    padding: 5px 30px;
  }
  nav ul li.items {
    width: 100%;
    display: none;
  }
  nav ul li.items.show {
    display: block;
    margin-bottom: 20px;
  }
  nav ul li.btn {
    display: block;
  }
  nav ul li.items:hover {
    border-radius: 5px;
    box-shadow: inset 0 0 5px #448aff, inset 0 0 10px #448aff;
  }
  nav ul li.items:hover:after {
    opacity: 0;
  }
}

/* Header */

.BG-heading {
  width: 100%;
  height: 92vh;
  background: url(img/Header.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
}

.leftside {
  width: 50%;
  height: 92vh;
  position: relative;
}

.rightside {
  width: 50%;
  height: 92vh;
  position: relative;
  background: rgb(93, 158, 242, 0.75);
  text-align: center;
}

.leftside-info {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 60px;
}

.rightside-info {
  width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.leftside-info h2 {
  font-family: roboto condensed;
  font-size: 48px;
  color: white;
}

.leftside-info h1 {
  font-family: roboto condensed;
  font-size: 62px;
  color: #5d9ef2;
  margin-bottom: 35px;
}
.leftside-info p {
  font-family: roboto;
  font-size: 18px;
  color: white;
  margin: 35px 0;
  line-height: 1.4;
}

.rightside-info h3 {
  font-family: roboto;
  font-size: 32px;
  text-transform: uppercase;
  color: #26264a;
  background: #fefefe;
  padding: 25px 0;
  border-radius: 14px 14px 0 0;
  margin: 0;
}

.rightside-info .rightsection-form {
  font-family: roboto;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: #26264a;
  background: rgb(223, 237, 255, 0.65);
  padding: 25px 0 35px 0;
  border-radius: 0 0 14px 14px;
}
.Mybtn {
  width: 43%;
  height: 70px;
  background: white;
  border: none;
  font-family: roboto;
  font-size: 22px;
  font-weight: 500;
  color: #26264a;
  margin: 0 5px 15px 5px;
  border-radius: 11px;
  box-shadow: rgb(0, 0, 0, 0.16) 2px 3px 3px;
  text-transform: uppercase;
  cursor: pointer;
}

@media screen and (min-width: 901px) and (max-width: 1228px) {
  .leftside-info h2 {
    font-size: 40px;
    margin: -5px;
  }

  .leftside-info h1 {
    font-size: 52px;
    margin-bottom: 25px;
  }
  .leftside-info p {
    font-size: 16px;
    margin: 25px 0;
  }
  .rightside-info .rightsection-form {
    padding: 25px 0 15px 0;
  }
}

@media screen and (min-width: 668px) and (max-width: 900px) {
  .BG-heading {
    display: block;
  }
  .leftside {
    width: 100%;
    height: 92vh;
    position: relative;
    text-align: center;
  }

  .rightside {
    width: 100%;
    height: 92vh;
    position: relative;
    background: rgb(93, 158, 242);
    text-align: center;
  }
  .leftside-info hr {
    margin: auto;
  }
  #section-1 {
    margin-top: 92vh;
  }
}
@media screen and (min-width: 451px) and (max-width: 667px) {
  .BG-heading {
    display: block;
  }
  .leftside {
    width: 100%;
    height: 92vh;
    position: relative;
    text-align: center;
  }

  .rightside {
    width: 100%;
    height: 92vh;
    position: relative;
    background: rgb(93, 158, 242);
    text-align: center;
  }
  .leftside-info hr {
    margin: auto;
  }
  #section-1 {
    margin-top: 92vh;
  }
  .leftside-info h2 {
    font-size: 40px;
    margin: -5px;
  }

  .leftside-info h1 {
    font-size: 52px;
    margin-bottom: 25px;
  }
  .leftside-info p {
    font-size: 16px;
    margin: 25px 0;
  }
  .rightside-info .rightsection-form {
    padding: 25px 0 15px 0;
  }
}
@media screen and (max-width: 450px) {
  .BG-heading {
    display: block;
  }
  .leftside {
    width: 100%;
    height: 92vh;
    position: relative;
    text-align: center;
  }

  .rightside {
    width: 100%;
    height: 92vh;
    position: relative;
    background: rgb(93, 158, 242);
    text-align: center;
  }
  .leftside-info hr {
    margin: auto;
  }
  #section-1 {
    margin-top: 92vh;
  }
  .leftside-info h2 {
    font-size: 32px;
    margin: -5px;
  }

  .leftside-info h1 {
    font-size: 42px;
    margin-bottom: 25px;
  }
  .leftside-info p {
    font-size: 14px;
    margin: 25px 0;
  }
  .rightside-info .rightsection-form {
    padding: 25px 0 15px 0;
  }
  .rightside-info h3 {
    font-family: roboto;
    font-size: 26px;
    text-transform: uppercase;
    color: #26264a;
    background: #fefefe;
    padding: 20px 0;
    border-radius: 14px 14px 0 0;
    margin: 0;
  }

  .rightside-info .rightsection-form {
    font-family: roboto;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #26264a;
    background: rgb(223, 237, 255, 0.65);
    padding: 20px 5px 10px 5px;
    border-radius: 0 0 14px 14px;
  }
  .Mybtn {
    font-size: 16px;
  }
}

/* Pourquoi souscrire une assurance auto provisoire ? */

#section-1 {
  width: 100%;
  background: #f7f7f7;
  text-align: center;
}
.section-1-heading {
  width: 100%;
  margin-bottom: 50px;
}

.section-1-heading h2 {
  font-size: 38px;
  font-family: roboto;
  color: #26264a;
  padding: 35px 60px 20px 60px;
}

.Heading-para {
  font-size: 18px;
  font-family: roboto;
  line-height: 1.6;
  padding: 0 35px;
  color: #707070;
  margin-bottom: 50px;
}

.section-1-cards {
  width: 100%;
  display: grid;
  grid-template-areas: "card-1 card-2 card-3 card-4 card-5 card-6";
  grid-gap: 10px;
  justify-items: center;
  margin-bottom: 50px;
}

.card-1 {
  width: 100%;
  grid-area: card-1;
  background: white;
  padding: 30px 12px;
  position: relative;
}
.card-2 {
  width: 100%;
  grid-area: card-2;
  background: white;
  padding: 30px 12px;
  position: relative;
}
.card-3 {
  width: 100%;
  grid-area: card-3;
  background: white;
  padding: 30px 12px;
  position: relative;
}
.card-4 {
  width: 100%;
  grid-area: card-4;
  background: white;
  padding: 30px 12px;
  position: relative;
}
.card-5 {
  width: 100%;
  grid-area: card-5;
  background: white;
  padding: 30px 12px;
  position: relative;
}
.card-6 {
  width: 100%;
  grid-area: card-6;
  background: white;
  padding: 30px 12px;
  position: relative;
}

.section-1-cards h4 {
  font-family: roboto;
  font-size: 20px;
  color: #26264a;
  margin-bottom: 12px;
}

.section-1-cards p {
  font-family: roboto;
  font-size: 16px;
  color: #26264a;
  margin-bottom: 12px;
}

.card-1::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: #448aff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.card-2::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: #448aff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.card-3::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: #448aff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.card-4::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: #448aff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.card-5::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: #448aff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.card-6::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: #448aff;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 631px) and (max-width: 1228px) {
  .section-1-cards {
    width: 100%;
    display: grid;
    grid-template-areas:
      "card-1 card-2 card-3"
      "card-4 card-5 card-6";
    grid-gap: 10px;
    justify-items: center;
    margin-bottom: 50px;
  }
  .section-1-heading h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 416px) and (max-width: 630px) {
  .section-1-cards {
    width: 100%;
    display: grid;
    grid-template-areas:
      "card-1 card-2"
      "card-3 card-4"
      "card-5 card-6";
    grid-gap: 10px;
    justify-items: center;
    margin-bottom: 50px;
  }
  .Heading-para {
    padding: 0 60px;
  }
  .section-1-heading h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 415px) {
  .section-1-cards {
    width: 100%;
    display: grid;
    grid-template-areas:
      "card-1"
      "card-2"
      "card-3"
      "card-4"
      "card-5"
      "card-6";
    grid-gap: 10px;
    justify-items: center;
    margin-bottom: 35px;
  }
  .Heading-para {
    padding: 0 60px;
  }
  .section-1-heading h2 {
    font-size: 28px;
    padding: 35px 0 20px 0;
  }

  .Heading-para {
    font-size: 16px;
    font-family: roboto;
    line-height: 1.6;
    padding: 0 35px;
    color: #707070;
    margin-bottom: 50px;
  }
}

/* Pourquoi souscrire une assurance auto provisoire ? */

#section-2 {
  width: 100%;
  background: white;
  text-align: center;
  padding: 35px 60px;
}

.section-2-heading {
  width: 100%;
  margin-bottom: 50px;
}

.section-2-heading h2 {
  font-size: 38px;
  font-family: roboto;
  color: #26264a;
  margin-bottom: 20px;
}

.Heading-para-2 {
  font-size: 18px;
  font-family: roboto;
  line-height: 1.6;
  padding: 0 35px;
  color: #707070;
  margin-bottom: 50px;
}

.section-2-cards {
  width: 100%;
  display: flex;
  margin-bottom: 50px;
  gap: 20px;
}

.section-2-card {
  width: 100%;
  background: #f7f7f7;
  border: #e1e1e1 3px solid;
  border-radius: 14px;
  padding: 50px 30px 50px 30px;
}

.section-2-card h4 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26264a;
}

.section-2-card p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 25px;
  color: #26264a;
  line-height: 1.6;
}

@media screen and (min-width: 416px) and (max-width: 960px) {
  .section-2-cards {
    width: 100%;
    display: block;
    margin-bottom: 50px;
    gap: 20px;
  }
  .section-2-card {
    margin-bottom: 20px;
  }
  .Heading-para-2 {
    padding: 0;
  }
  .section-2-heading h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 415px) {
  #section-2 {
    width: 100%;
    background: white;
    text-align: center;
    padding: 35px 35px;
  }
  .section-2-cards {
    width: 100%;
    display: block;
    margin-bottom: 50px;
    gap: 20px;
  }
  .section-2-card {
    margin-bottom: 20px;
  }
  .section-2-heading h2 {
    font-size: 28px;
    padding: 0;
  }

  .Heading-para-2 {
    font-size: 16px;
    font-family: roboto;
    line-height: 1.6;
    padding: 0;
    color: #707070;
    margin-bottom: 50px;
  }
}

/* Quels documents fournir pour être assuré provisoirement ? */

#section-3 {
  width: 100%;
  background: #f7f7f7;
  text-align: center;
  padding: 35px 60px;
}

.section-3-heading {
  width: 100%;
  margin-bottom: 50px;
}

.section-3-heading h2 {
  font-size: 38px;
  font-family: roboto;
  color: #26264a;
  margin-bottom: 20px;
}

.Heading-para-3 {
  font-size: 18px;
  font-family: roboto;
  line-height: 1.6;
  padding: 0 35px;
  color: #707070;
  margin-bottom: 50px;
}

.section-3-cards {
  width: 100%;
  display: flex;
  margin-bottom: 50px;
  gap: 20px;
}

.section-3-card {
  width: 100%;
  background: white;
  border: #dbdbdb 3px solid;
  border-radius: 14px;
  padding: 60px 30px 60px 30px;
}

.section-3-card h4 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26264a;
}

.section-3-card p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 25px;
  color: #26264a;
  line-height: 1.6;
}

.para-secondary {
  font-size: 18px;
  font-family: roboto;
  line-height: 1.6;
  padding: 0 100px;
  color: #707070;
  margin-bottom: 50px;
}

@media screen and (min-width: 416px) and (max-width: 960px) {
  .section-3-cards {
    width: 100%;
    display: block;
    margin-bottom: 50px;
    gap: 20px;
  }
  .section-3-card {
    margin-bottom: 20px;
  }
  .para-secondary {
    font-size: 18px;
    font-family: roboto;
    line-height: 1.6;
    padding: 0 35px;
    color: #707070;
    margin-bottom: 50px;
  }
  .section-3-heading h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 415px) {
  #section-3 {
    width: 100%;
    background: #f7f7f7;
    text-align: center;
    padding: 35px 35px;
  }
  .section-3-cards {
    width: 100%;
    display: block;
    margin-bottom: 50px;
    gap: 20px;
  }
  .section-3-card {
    margin-bottom: 20px;
  }
  .section-3-heading h2 {
    font-size: 28px;
    padding: 0;
  }

  .Heading-para-3 {
    font-size: 16px;
    font-family: roboto;
    line-height: 1.6;
    padding: 0;
    color: #707070;
    margin-bottom: 50px;
  }
  .para-secondary {
    font-size: 18px;
    font-family: roboto;
    line-height: 1.6;
    padding: 0 35px;
    color: #707070;
    margin-bottom: 50px;
  }
}

/* Que propose une assurance auto temporaire ? */

#section-4 {
  width: 100%;
  padding: 35px 60px;
}

.section-4-heading {
  width: 100%;
  margin-bottom: 50px;
}

.section-4-heading h2 {
  font-size: 38px;
  font-family: roboto;
  color: #26264a;
  margin-bottom: 20px;
  text-align: center;
}

.section-content-1 {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}

.section-content-1 img {
  width: 45%;
  padding-right: 45px;
}

.section-content-1 p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2.1;
  color: #707070;
  margin-bottom: 50px;
}

@media screen and (max-width: 1228px) {
  .section-4-heading h2 {
    font-size: 32px;
  }
  .section-content-1 img {
    width: 45%;
    padding-right: 45px;
  }

  .section-content-1 p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    color: #707070;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 901px) and (max-width: 1228px) {
  .section-4-heading h2 {
    font-size: 32px;
  }
  .section-content-1 img {
    width: 45%;
    padding-right: 45px;
  }

  .section-content-1 p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    color: #707070;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 501px) and (max-width: 900px) {
  .section-content-1 {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    background: #f7f7f7;
    padding: 35px 35px;
    border-radius: 14px;
    box-shadow: -5px -5px 5px #dcdcdc73, 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .section-content-1 img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }
  .section-content-1 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #707070;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 500px) {
  #section-4 {
    width: 100%;
    padding: 35px 35px;
  }
  .section-content-1 {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    background: #f7f7f7;
    padding: 20px 20px;
    border-radius: 14px;
    box-shadow: -5px -5px 5px #dcdcdc73, 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .section-content-1 img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }
  .section-content-1 p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    color: #707070;
    margin-bottom: 35px;
  }
  .section-4-heading h2 {
    font-size: 28px;
  }
}

/* Comment trouver une assurance auto pas chère ? */

#section-5-mobile {
  display: none;
}

#section-5 {
  width: 100%;
  padding: 35px 60px;
  background: #f7f7f7;
}

.section-5-heading {
  width: 100%;
  margin-bottom: 50px;
}

.section-5-heading h2 {
  font-size: 38px;
  font-family: roboto;
  color: #26264a;
  margin-bottom: 20px;
  text-align: center;
}

.section-content-2 {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}

.section-content-2 img {
  width: 45%;
}

.section-content-2 p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2.1;
  color: #707070;
  padding-right: 60px;
  margin-bottom: 50px;
}

@media screen and (min-width: 901px) and (max-width: 1228px) {
  .section-5-heading h2 {
    font-size: 32px;
  }
  .section-content-2 img {
    width: 45%;
    padding-left: 45px;
  }

  .section-content-2 p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    padding-right: 0;
    color: #707070;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 501px) and (max-width: 900px) {
  #section-5 {
    display: none;
  }
  #section-5-mobile {
    display: block;
    width: 100%;
    padding: 35px 60px;
    background: #f7f7f7;
  }
  .section-content-2-mobile {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    background: #f7f7f7;
    padding: 35px 35px;
    border-radius: 14px;
    box-shadow: -5px -5px 5px #dcdcdc73, 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .section-content-2-mobile img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }
  .section-5-heading-mobile {
    width: 100%;
    margin-bottom: 50px;
  }

  .section-5-heading-mobile h2 {
    font-size: 32px;
    font-family: roboto;
    color: #26264a;
    margin-bottom: 20px;
    text-align: center;
  }
  .section-content-2-mobile p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2.1;
    color: #707070;
    padding-right: 0;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 500px) {
  #section-5 {
    display: none;
  }
  #section-5-mobile {
    display: block;
    width: 100%;
    padding: 35px 35px;
    background: #f7f7f7;
  }
  .section-content-2-mobile {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    background: #f7f7f7;
    padding: 20px 20px;
    border-radius: 14px;
    box-shadow: -5px -5px 5px #dcdcdc73, 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .section-content-2-mobile img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }
  .section-5-heading-mobile {
    width: 100%;
    margin-bottom: 50px;
  }

  .section-5-heading-mobile h2 {
    font-size: 28px;
    font-family: roboto;
    color: #26264a;
    margin-bottom: 20px;
    text-align: center;
  }
  .section-content-2-mobile p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2.1;
    color: #707070;
    padding-right: 0;
    margin-bottom: 35px;
  }
}

/* Quelles villes de France sont les plus demandées ? */

#section-6 {
  width: 100%;
  padding: 35px 60px;
}

.section-6-heading {
  width: 100%;
  margin-bottom: 50px;
}

.section-6-heading h2 {
  font-size: 38px;
  font-family: roboto;
  color: #26264a;
  margin-bottom: 20px;
  text-align: center;
}

.section-content-3 {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}

.section-content-3 img {
  width: 45%;
  padding-right: 45px;
}

.section-content-3 p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2.1;
  color: #707070;
  margin-bottom: 50px;
}

.villes-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.villes-list ul {
  padding-bottom: 50px;
}

.villes-list ul li {
  font-size: 20px;
  font-weight: 500;
  color: #707070;
  padding-bottom: 20px;
}
@media screen and (min-width: 901px) and (max-width: 1228px) {
  .section-6-heading h2 {
    font-size: 32px;
  }
  .section-content-3 img {
    width: 50%;
    padding-right: 45px;
  }

  .section-content-3 p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    color: #707070;
    margin-bottom: 35px;
  }
  .villes-list ul {
    padding-bottom: 35px;
  }

  .villes-list ul li {
    font-size: 14px;
    font-weight: 500;
    color: #707070;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 900px) {
  .section-content-3 {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    background: #f7f7f7;
    padding: 35px 35px;
    border-radius: 14px;
    box-shadow: -5px -5px 5px #dcdcdc73, 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .section-6-heading h2 {
    font-size: 32px;
  }
  .section-content-3 img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }
  .section-content-3 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #707070;
    margin-bottom: 35px;
  }
  .villes-list ul {
    padding-bottom: 35px;
  }

  .villes-list ul li {
    font-size: 16px;
    font-weight: 500;
    color: #707070;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  #section-6 {
    width: 100%;
    padding: 35px 35px;
  }
  .section-content-3 {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    background: #f7f7f7;
    padding: 20px 20px;
    border-radius: 14px;
    box-shadow: -5px -5px 5px #dcdcdc73, 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .section-6-heading h2 {
    font-size: 28px;
  }
  .section-content-3 img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }
  .section-content-3 p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    color: #707070;
    margin-bottom: 35px;
  }
  .villes-list ul {
    padding-bottom: 35px;
  }

  .villes-list ul li {
    font-size: 14px;
    font-weight: 500;
    color: #707070;
    padding-bottom: 20px;
  }
}

/* Quels pays sont couverts par les assurances auto temporaires ? */

#section-7-mobile {
  display: none;
}

#section-7 {
  width: 100%;
  padding: 35px 60px;
  background: #f7f7f7;
}

.section-7-heading {
  width: 100%;
  margin-bottom: 50px;
}

.section-7-heading h2 {
  font-size: 38px;
  font-family: roboto;
  color: #26264a;
  margin-bottom: 20px;
  text-align: center;
}

.section-content-4 {
  width: 100%;
  display: flex;
  margin-bottom: 50px;
}

.section-content-4 img {
  width: 45%;
  padding-right: 0;
}

.section-content-4 p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2.1;
  color: #707070;
  padding-right: 60px;
  margin-bottom: 50px;
}

.pays-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.pays-list ul {
  padding-bottom: 50px;
  padding-right: 60px;
}

.pays-list ul li {
  font-size: 20px;
  font-weight: 500;
  color: #707070;
  padding-bottom: 20px;
}

.last-para {
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.1;
  color: #707070;
  margin-bottom: 50px;
  margin-top: -35px;
}

.last-button {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 901px) and (max-width: 1228px) {
  .section-7-heading h2 {
    font-size: 32px;
  }
  .section-content-4 img {
    width: 50%;
    padding-left: 45px;
  }

  .section-content-4 p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    padding-right: 0;
    color: #707070;
    margin-bottom: 35px;
  }
  .pays-list ul {
    padding-bottom: 0;
  }

  .pays-list ul li {
    font-size: 14px;
    font-weight: 500;
    color: #707070;
    padding-bottom: 20px;
  }
  .last-para {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    color: #707070;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 501px) and (max-width: 900px) {
  #section-7 {
    display: none;
  }

  #section-7-mobile {
    display: block;
    width: 100%;
    padding: 35px 60px;
    background: #f7f7f7;
    text-align: center;
  }

  .section-content-4-mobile {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    background: #f7f7f7;
    padding: 35px 35px;
    border-radius: 14px;
    box-shadow: -5px -5px 5px #dcdcdc73, 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .section-content-4-mobile img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }

  .section-7-heading-mobile {
    width: 100%;
    margin-bottom: 50px;
  }

  .section-7-heading-mobile h2 {
    font-size: 32px;
    color: #26264a;
  }

  .section-content-4-mobile p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    padding-right: 0;
    color: #707070;
    margin-bottom: 35px;
  }
  .pays-list ul {
    padding-bottom: 50px;
    padding-right: 0;
  }

  .pays-list ul li {
    font-size: 16px;
    font-weight: 500;
    color: #707070;
    padding-bottom: 20px;
  }
  .last-para-mobile {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #707070;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 500px) {
  #section-7 {
    display: none;
  }

  #section-7-mobile {
    display: block;
    width: 100%;
    padding: 35px 35px;
    background: #f7f7f7;
    text-align: center;
  }

  .section-content-4-mobile {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    background: #f7f7f7;
    padding: 20px 20px;
    border-radius: 14px;
    box-shadow: -5px -5px 5px #dcdcdc73, 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .section-content-4-mobile img {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }

  .section-7-heading-mobile {
    width: 100%;
    margin-bottom: 50px;
  }

  .section-7-heading-mobile h2 {
    font-size: 28px;
    color: #26264a;
  }

  .section-content-4-mobile p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    padding-right: 0;
    color: #707070;
    margin-bottom: 35px;
  }
  .pays-list ul {
    padding-bottom: 50px;
    padding-right: 0;
  }

  .pays-list ul li {
    font-size: 14px;
    font-weight: 500;
    color: #707070;
    padding-bottom: 20px;
  }
  .last-para-mobile {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    color: #707070;
    margin-bottom: 35px;
  }
}

/* Guide sur l'assurance auto temporaire */

#section-8 {
  width: 100%;
  padding: 35px 60px;
  background: white;
}

.section-8-heading {
  width: 100%;
  margin-bottom: 50px;
}

.section-8-heading h2 {
  font-size: 38px;
  font-family: roboto;
  color: #26264a;
  margin-bottom: 20px;
  text-align: center;
}

.section-content-5 {
  width: 100%;
  display: flex;
  background: #ebf3ff;
  margin-bottom: 50px;
  border-radius: 14px;
  padding: 35px 35px;
  box-shadow: rgb(0, 0, 0, 0.3) 2px 2px 20px;
}

.section-content-5 img {
  width: 47%;
  height: auto;
  margin-right: 50px;
}

.FAQ-accordion {
  width: 100%;
}

.FAQ-para p {
  font-family: roboto;
  font-size: 20px;
  font-weight: 500;
  color: #707070;
  margin-bottom: 15px;
}

.FAQ-accordion-item {
  background: white;
  border-radius: 0.4rem;
  border: 3px solid rgb(68, 138, 255, 0.5);
  margin-bottom: 1rem;
  padding: 1rem;
  box-shadow: 0.5rem 2px 0.5rem rgba(0, 0, 0, 0.05);
}

.FAQ-links {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: rgb(38, 38, 74);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.FAQ-links i {
  padding: 0.5rem;
  font-size: 25px;
}

.FAQ-links .fa-sort-up {
  display: none;
}

.answer {
  max-height: 0;
  overflow: hidden;
  position: relative;
  background-color: #f2f2f2;
  transition: max-height 650ms;
}

.answer::before {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 90%;
  background-color: #5d9ef2;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.answer p {
  font-size: 16px;
  font-weight: normal;
  color: #26264a;
  padding: 2rem;
  line-height: 1.4;
}

.FAQ-accordion-item:target .answer {
  max-height: 20rem;
}

.FAQ-accordion-item:target .FAQ-links .fa-sort-down {
  display: none;
}

.FAQ-accordion-item:target .FAQ-links .fa-sort-up {
  display: block;
}

@media screen and (max-width: 1019px) and (max-width: 1228px) {
  .section-8-heading h2 {
    font-size: 32px;
  }
  .section-content-5 img {
    width: 45%;
  }

  .section-content-5 p {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    padding-right: 0;
    color: #707070;
    margin-bottom: 20px;
  }
  .FAQ-para p {
    font-size: 18px;
  }

  .FAQ-accordion-item {
    padding: 0.7rem 1rem 0.7rem 1rem;
  }

  .FAQ-links {
    font-size: 16px;
  }

  .FAQ-links i {
    font-size: 20px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1018px) {
  .section-content-5 {
    width: 100%;
    display: block;
    background: #ebf3ff;
    margin-bottom: 50px;
    border-radius: 14px;
    padding: 35px 35px;
    box-shadow: -5px -5px 5px #dcdcdc73, 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .section-8-heading h2 {
    font-size: 32px;
  }
  .section-content-5 img {
    width: 100%;
  }

  .section-content-5 p {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    padding-right: 0;
    color: #707070;
    margin-bottom: 20px;
    text-align: left;
    margin-top: 20px;
  }
  .FAQ-para p {
    font-size: 22px;
  }

  .FAQ-accordion-item {
    padding: 0.7rem 1rem 0.7rem 1rem;
  }

  .FAQ-links {
    font-size: 16px;
  }

  .FAQ-links i {
    font-size: 20px;
  }
  .FAQ-para hr {
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  #section-8 {
    width: 100%;
    padding: 35px 35px;
    background: white;
  }
  .section-content-5 {
    width: 100%;
    display: block;
    background: #ebf3ff;
    margin-bottom: 50px;
    border-radius: 14px;
    padding: 20px 20px;
    box-shadow: -5px -5px 5px #dcdcdc73, 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .section-8-heading h2 {
    font-size: 28px;
  }
  .section-content-5 img {
    width: 100%;
  }

  .section-content-5 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    padding-right: 0;
    color: #707070;
    margin-bottom: 20px;
    text-align: left;
    margin-top: 15px;
  }
  .FAQ-para p {
    font-size: 18px;
  }

  .FAQ-accordion-item {
    padding: 0.5rem 1rem 0.5rem 1rem;
  }

  .FAQ-links {
    font-size: 14px;
  }

  .FAQ-links i {
    font-size: 18px;
  }
  .FAQ-para hr {
    margin: auto;
  }
}

/* final section */

#final-section {
  width: 100%;
  padding: 50px 60px;
  background: #448aff;
  text-align: center;
}

#final-section p {
  font-family: roboto;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  margin-bottom: 35px;
}

.Principe-btn-final {
  background: white;
  border: none;
  border-radius: 50px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: bold;
  color: #448aff;
  box-shadow: rgb(255, 255, 255, 0.3) 3px 3px 20px;
  cursor: pointer;
}
@media screen and (min-width: 501px) and (max-width: 1228px) {
  #final-section {
    width: 100%;
    padding: 50px 35px;
    background: #448aff;
    text-align: center;
  }
  #final-section p {
    font-family: roboto;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 500px) {
  #final-section {
    width: 100%;
    padding: 50px 35px;
    background: #448aff;
    text-align: center;
  }
  #final-section p {
    font-family: roboto;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin-bottom: 35px;
  }
}

/* Footer */

.footer-section {
  width: 100%;
  background: white;
  padding: 40px 100px;
}

.lists-footer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}

.footer-title {
  font-family: roboto;
  font-size: 26px;
  font-weight: bold;
  color: #26264a;
}

.footer-mark {
  text-align: center;
  font-size: 18px;
  color: #707070;
}

.lists-footer ul {
  list-style: none;
  margin-bottom: 50px;
}

.lists-footer ul li {
  font-family: roboto;
  font-size: 18px;
  font-weight: 500;
  color: #707070;
  margin-bottom: 20px;
}

.social-list p {
  list-style: none;
  margin-bottom: 50px;
  font-family: roboto;
  font-size: 18px;
  font-weight: 500;
  color: #707070;
  margin-bottom: 20px;
  line-height: 2;
  margin-top: -5px;
}
.social-list i {
  font-size: 36px;
  padding-right: 7px;
  color: #26264a;
  margin-bottom: 35px;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .footer-section {
    width: 100%;
    background: white;
    padding: 40px 60px;
  }
  .footer-title {
    font-size: 22px;
  }
  .lists-footer ul li {
    font-size: 16px;
  }

  .social-list p {
    font-size: 16px;
  }
  .social-list i {
    font-size: 32px;
  }
}
@media screen and (min-width: 601px) and (max-width: 768px) {
  .footer-section {
    width: 100%;
    background: white;
    padding: 40px 35px;
  }
  .footer-title {
    font-size: 20px;
  }
  .lists-footer ul li {
    font-size: 14px;
  }

  .social-list p {
    font-size: 14px;
  }
  .social-list i {
    font-size: 26px;
  }
}
@media screen and (min-width: 416px) and (max-width: 600px) {
  .lists-footer {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 20px;
  }
  .footer-section {
    width: 100%;
    background: white;
    padding: 40px 20px;
  }
  .lists-footer hr {
    margin: auto;
  }
}
@media screen and (max-width: 415px) {
  .lists-footer {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 20px;
  }
  .lists-footer hr {
    margin: auto;
  }
  .lists-footer ul {
    list-style: none;
    margin-bottom: 35px;
  }
  .footer-section {
    width: 100%;
    background: white;
    padding: 40px 20px;
  }
  .footer-title {
    font-size: 20px;
  }
  .lists-footer ul li {
    font-size: 14px;
  }

  .social-list p {
    font-size: 14px;
  }
  .social-list i {
    font-size: 26px;
  }
  .footer-mark {
    text-align: center;
    font-size: 16px;
    color: #707070;
  }
}

/* ---------------------------------------------- */
/* Tarifs */

.BG-heading-tarif {
  width: 100%;
  height: auto;
  background: url(img/Tarif-Header.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding: 100px 0;
}

.tarif-section {
  width: 100%;
}

.tarif-section h1 {
  font-family: 'Roboto Condensed', sans-serif;

  font-size: 48px;
  color: white;
}

.tarif-section h2 {
  font-family: 'Roboto Condensed', sans-serif;

  font-size: 42px;
  color: #5d9ef2;
  margin-bottom: 10px;
}

.tarif-section p {
  font-family: roboto;
  font-size: 18px;
  color: white;
}

/* Tarif-section */

.site {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #26264a;
}

.site h1,
h2,
h3 {
  font-size: 2.1em;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0 0 0.5em;
}

.site img {
  max-width: 100%;
  vertical-align: middle;
}

.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2em;
  margin-bottom: 70px;
}

.form-box {
  display: flex;
  flex-direction: column;
  margin-top: 5em;
  background: #f7f7f7;
  border-radius: 15px;
  box-shadow: rgb(0, 0, 0, 0.3) 2px 2px 8px;
}

/* ======> progress */

.form-box .progress {
  position: relative;
  padding: 1em;
}

.form-heading {
  font-size: 1.75em;
  font-weight: 800;
  color: #26264a;
  padding: 40px 0;
  text-align: center;
}

.form-heading span {
  color: #5d9ef2;
}

/* ======> progress steps */

.progress ul.progress-steps {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2em;
}

.progress ul.progress-steps li {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2em;
}

.progress ul.progress-steps li > span {
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.7em;
  border-radius: 50%;
  background-color: #dbebfe;
  z-index: 1;
}

.progress ul.progress-steps li.active > span {
  color: white;
  background-color: #26264a;
  border: 4px solid #9e9eb7;
  z-index: 1;
}

.progress ul.progress-steps li p span {
  font-size: 14px;
  font-weight: 500;
  color: #707070;
  display: none;
}

.progress ul li p {
  position: absolute;
  top: -2em;
  font-size: 12px;
}

/* ======> form */

.form-box form {
  width: 100%;
  padding: 3em 1em;
  background-color: #e9f2ff;
  border-radius: 30px 30px 15px 15px;
}

form > div {
  max-width: 800px;
  margin: 0 auto;
}

form > div p {
  color: #707070;
  margin-bottom: 2em;
}

form > div > div:not(.checkbox) {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5em;
}

form :where(input[type="text"], select) {
  height: 70px;
  padding: 0 1em;
  border-radius: 7px;
  outline-color: #448aff;
  border: 2px solid #448aff;
  font-size: 16px;
}

form :where(input[type="date"], select) {
  height: 70px;
  padding: 0 1em;
  border-radius: 7px;
  outline-color: #448aff;
  border: 2px solid #448aff;
  font-size: 16px;
}

form :where(input[type="number"], select) {
  height: 70px;
  padding: 0 1em;
  border-radius: 7px;
  outline-color: #448aff;
  border: 2px solid #448aff;
  font-size: 16px;
}

form :where(input[type="file"]) {
  height: 70px;
  padding: 0 1em;
  border-radius: 7px;
  border: 2px solid #448aff;
  font-size: 16px;
   background-color: #fff;
   text-align: center;
}
form :where(input[type="file"] , span) {
  height: 70px;
  padding: 0 1em;
  border-radius: 7px;
  border: 2px solid #448aff;
  font-size: 16px;
   background-color: #fff;
   text-align: center;
}

.inputfile-1 + label {
  color: #f1e5e6;
  background-color: #26264a;
  border-radius: 7px;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
  background-color: #1d1d39;
}

.inputfile + label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  /* 4px */
  margin-right: 0.25em;
  /* 4px */
}

.inputfile + label {
  font-family: "roboto";
  max-width: 80%;
  font-size: 16px;
  /* 20px */
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  /* 10px 20px */
}



form label {
  font-size: 16px;
  margin-bottom: 0.5em;
  font-weight: 600;
}

form .checkbox input {
  height: auto;
}

form > div:not(.btn-group) {
  display: none;
  -webkit-animation: fadeIn 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fadeIn 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

form > div.active {
  display: block;
}

/* ======> button */

.form-two,
.form-three,
.form-foor {
  display: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 2em;
}

.btn-group [class*="btn-"] {
  background: #448aff;
  border: none;
  border-radius: 50px;
  padding: 1em 2.5em;
  font-size: 14px;
  font-weight: bold;
  color: white;
  box-shadow: rgb(68, 138, 255, 0.3) 3px 3px 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.btn-group [class*="btn-"]:disabled {
  background: #c0d7ff;
  cursor: text;
}

.btn-group [class*="btn-"]:hover:not(:disabled) {
  background-color: #26264a;
}

.btn-group .btn-Soumettre {
  display: none;
}

.form-foor.active ~ .btn-group .btn-Soumettre {
  display: block;
}

.form-foor.active ~ .btn-group .btn-Suivant {
  display: none;
}

@media screen and (min-width: 760px) {
  .form-box {
    flex-direction: row;
  }
  .form-box .progress {
    flex: 1 0 35%;
    min-width: 360px;
    padding: 3em;
  }
  .form-heading {
    margin: -48px -48px 48px;
  }

  .progress ul.progress-steps {
    flex-direction: column;
    gap: 0;
  }

  .progress ul.progress-steps li:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 30px;
    width: 2px;
    height: 65px;
    background-color: #d7d7d7;
  }
  .form-box form {
    padding: 3em;
    border-radius: 0 15px 15px 0;
  }

  .progress ul li p {
    position: relative;
    top: auto;
    font-size: inherit;
  }

  .progress ul.progress-steps li p span {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .BG-heading-tarif {
    padding: 100px 35px;
  }
  .tarif-section h1 {
    font-family: roboto condensed;
    font-size: 36px;
    color: white;
  }

  .tarif-section h2 {
    font-family: roboto condensed;
    font-size: 32px;
    color: #5d9ef2;
    margin-bottom: 10px;
  }

  .tarif-section p {
    font-family: roboto;
    font-size: 16px;
    color: white;
  }
}

/* -------------------------------------------------- */
/* BG-heading-contact */

.BG-heading-contact {
  width: 100%;
  height: auto;
  background: url(img/contact-BG.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding: 100px 0;
}

.contact-section {
  width: 100%;
}

.contact-section h1 {
  font-family: roboto condensed;
  font-size: 48px;
  color: white;
}

/* <!-- Contactez-Nous --> */

#Contactez-Nous-form {
  width: 100%;
  padding: 35px 60px;
  text-align: center;
}

.Contactez-Nous-heading {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  color: #26264a;
  margin-bottom: 50px;
}

.contact_form {
  max-width: 1920px;
  background: #dfedff;
  padding: 80px 80px;
  border-radius: 14px;
}

.contact_form .contact-boxes {
  width: 100%;
}

.contact-boxes .contact-item {
  display: flex;
  gap: 30px;
}

.contact-boxes .contact-item input {
  width: 100%;
  height: 80px;
  padding-left: 20px;
  font-family: roboto;
  font-size: 16px;
  font-weight: 500;
  background: white;
  outline-color: #448aff;
  border: 2px solid #448aff;
  border-radius: 11px;
}

.contact-boxes-1 {
  margin-bottom: 30px;
}

.contact-boxes-2 {
  margin-bottom: 30px;
}

.textarea {
  width: 100%;
  height: 250px;
  margin-bottom: 40px;
  padding: 20px 20px;
  font-family: roboto;
  font-size: 16px;
  font-weight: 500;
  background: white;
  outline-color: #448aff;
  border: 2px solid #448aff;
  border-radius: 11px;
  resize: none;
}

@media screen and (min-width: 416px) and (max-width: 800px) {
  #Contactez-Nous-form {
    width: 100%;
    padding: 35px 35px;
    text-align: center;
  }
  .contact-boxes .contact-item {
    display: block;
  }
  .contact_form {
    max-width: 1920px;
    background: #dfedff;
    padding: 40px 40px;
    border-radius: 14px;
  }
  .contact-boxes-1 {
    margin-bottom: 0;
  }
  
  .contact-boxes-2 {
    margin-bottom: 0;
  }
  .contact-boxes-1 input {
    margin-bottom: 20px;
  }
  .contact-boxes-2 input {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 415px) {
  #Contactez-Nous-form {
    width: 100%;
    padding: 35px 35px;
    text-align: center;
  }
  .contact-boxes .contact-item {
    display: block;
  }


  .contact-section h1 {
    font-family: roboto condensed;
    font-size: 38px;
    color: white;
  }


  .contact_form {
    max-width: 1920px;
    background: #dfedff;
    padding: 40px 40px;
    border-radius: 14px;
  }
  .contact-boxes-1 {
    margin-bottom: 0;
  }
  
  .contact-boxes-2 {
    margin-bottom: 0;
  }
  .contact-boxes-1 input {
    margin-bottom: 20px;
  }
  .contact-boxes-2 input {
    margin-bottom: 20px;
  }
  #Contactez-Nous-form {
    width: 100%;
    padding: 35px 30px;
    text-align: center;
  }
  .contact-section h1 {
    font-family: roboto condensed;
    font-size: 38px;
    color: white;
  }
  .Contactez-Nous-heading {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #26264a;
    margin-bottom: 50px;
  }

  .contact_form .Principe-btn{
    font-size: 14px;
  }
}



/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}


/* Make circles that indicate the steps of the form: */

.step.active {
  opacity: 1;
}


/* ------------------------------------------------------------- */
/* Confirmation */

#confirmation {
  background: white;
  width: 100%;
  height: auto;
  padding: 35px 60px;
}

.confirmation-section {
  margin-bottom: 60px;
}

.confirmation-section h2 {
  font-family: roboto condensed;
  font-size: 36px;
  color: #182032;
  margin-bottom: 15px;
  text-align: center;
}

.confirmation-content {
  background: #e6f5ff;
  border-radius: 11px;
  padding: 30px 25px 50px 25px;
  text-align: center;
  margin-bottom: 35px;
}

.confirmation-content i {
  font-size: 9rem;
  color: #448aff;
}

.confirmation-content p {
  font-family: roboto;
  color: #182032;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  padding: 40px 0;
}

@media screen and (max-width: 415px) {
  #confirmation {
    padding: 35px 35px;
  }
  .confirmation-content p {
    font-family: roboto;
    color: #182032;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    padding: 40px 0;
  }
}



