@import url("https://fonts.cdnfonts.com/css/ibm-plex-sans-condensed-2");
@import url("https://fonts.cdnfonts.com/css/ibm-plex-sans");

:root {
  --primary: #00ccc2;
  --light: #f5fafc;
  --dark: #12172a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
  background-color: white;
  color: var(--dark);
}

h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 32px;
  line-height: 1.2;
}

h3 {
  font-size: 26px;
  line-height: 1.2;
}

h4 {
  font-size: 20px;
  line-height: 1.2;
}

h5 {
  font-size: 18px;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: bolder;
}

p {
  font-size: 14px;
  line-height: 1.8;
  font-weight: bold;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  h4 {
    font-size: 18px;
    line-height: 1.2;
  }
  h5 {
    font-size: 16px;
    line-height: 1.2;
  }
}

.header-btn {
  font-size: 14px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
  padding: 1rem 2rem;
  margin-top: 2rem;
  appearance: none;
  background-color: var(--dark);
  color: white;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.content-btn {
  font-size: 12px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
  padding: 1rem 2rem;
  margin-top: 2rem;
  appearance: none;
  background-color: var(--primary);
  color: white;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.heading-lines {
  width: 120px;
  height: 5px;
  border: none;
  background: var(--primary);
  border-radius: 50px;
  margin: auto;
}

.témoignage-lines {
  width: 80px;
  height: 3px;
  border: none;
  background: var(--dark);
  border-radius: 50px;
  margin: auto;
}

@media screen and (max-width: 535px) {
  .header-btn {
    font-size: 14px;
  }

  .content-btn {
    font-size: 12px;
  }
  p {
    font-size: 12px;
    line-height: 1.6;
    font-weight: bold;
  }
}

/* -------------------------------------- */
/* Navbar */

.container {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container img {
  width: 250px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: white;
  padding: 1.5rem 3rem;
  box-shadow: rgb(0, 0, 0, 0.1) 0 3px 20px;
}

nav i {
  font-size: 18px;
  margin-right: 0.3rem;
}

.Hamburger {
  display: block;
  position: relative;
  z-index: 1;
  user-select: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

.Hamburger span {
  display: block;
  width: 33px;
  height: 5px;
  margin-bottom: 5px;
  background-color: var(--dark);
  border-radius: 6px;
  z-index: 1;
  position: relative;
  transform-origin: 0 0;
  transition: 0.4s;
}

.Hamburger:hover span:nth-child(1) {
  transform: translateX(10px);
  background-color: var(--primary);
}
.Hamburger:hover span:nth-child(3) {
  transform: translateX(10px);
  background-color: var(--primary);
}

.Hamburger.is-active span:nth-child(1) {
  transform: translate(0px, -2px) rotate(45deg);
}

.Hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(15px);
}

.Hamburger.is-active span:nth-child(3) {
  transform: translate(-3px, 1.5px) rotate(-45deg);
}

.Hamburger.is-active:hover span {
  background-color: var(--primary);
}

.menu {
  display: none;
  flex: 1 1 0%;
  justify-content: end;
  margin: 0 -5px;
}

.menu a {
  color: var(--dark);
  font-weight: 600;
  margin: 0 5px;
  font-size: 14px;
  transition: 0.4s;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
}

.menu a.is-active {
  border: 3px solid var(--primary);
  background: var(--primary);
  border-radius: 50px;
  color: white;
}

.menu a.is-active:hover {
  color: var(--primary);
  box-shadow: rgb(0, 204, 194, 0.6) 0 0 12px;
  border: 3px solid var(--primary);
  background: none;
}

.menu a:hover {
  color: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  padding-top: 8rem;
  opacity: 0;
  transform: translateY(-100%);
  background-color: var(--dark);
  color: white;
  transition: 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  height: 100%;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  color: white;
  text-align: center;
  font-size: 1.25rem;
  transition: 0.3s;
  padding: 1rem 0;
}

.mobile-menu i {
  font-size: 22px;
  margin-right: 0.5rem;
}

.mobile-menu a.is-active {
  width: 300px;
  margin: 0 auto;
  background-color: white;
  color: var(--dark);
  font-weight: 600;
  transition: 0.3s;
  padding: 1rem 1.5rem;
  border-radius: 100px;
}

.mobile-menu a.is-active:hover {
  border: 3px solid white;
  background: none;
  border-radius: 50px;
  color: white;
}

.mobile-menu a:hover {
  color: var(--primary);
  box-shadow: rgb(0, 204, 194, 0.6) 0 0 12px;
}

@media screen and (min-width: 935px) {
  .Hamburger {
    display: none;
  }
  .menu {
    display: flex;
  }
  .mobile-menu {
    display: none;
  }
}

@media screen and (max-width: 668px) {
  .container img {
    width: 180px;
  }
}

/* Header-section */

#Header-section {
  width: 100%;
  height: 100%;
  padding: 5rem 3rem;
  background: url(img/Header-BG.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 6.2rem;
}

.header-container {
  max-width: 1680px;
  margin: 0 auto;
}

.header-container h3 {
  margin-bottom: 1rem;
}

.header-list .lists {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.lists i {
  font-size: 32px;
}

.header-container p {
  font-size: 18px;
}

@media screen and (max-width: 668px) {
  #Header-section {
    width: 100%;
    height: 100%;
    padding: 5rem 3rem;
    background: url(img/Header-BG.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5.5rem;
  }
}

/* form-section */

#form-section {
  max-width: 1780px;
  height: 100%;
  padding: 3rem;
  margin: 0 auto;
}

#form-section h2 {
  text-align: center;
  margin-top: 1rem;
}

#form-section h3 {
  margin-bottom: 3rem;
  text-align: left;
}

.plans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}

.plans .plan input[type="radio"] {
  width: 0;
  position: absolute;
  opacity: 0;
}

.plans .plan {
  cursor: pointer;
  width: 48.5%;
}

.plans .plan .plan-content {
  padding: 2rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: white;
  box-shadow: rgb(18, 23, 42, 0.1) 0 0 15px;
  border-radius: 10px;
  margin: 0.5rem;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  position: relative;
}

.plans .plan .plan-content:hover {
  transform: scale(1.02);
}
.plans .plan .plan-content:active {
  transform: scale(0.97);
}

.plans .plan .plan-content img {
  width: 120px;
  margin-bottom: 1rem;
}

.container .title {
  font-size: 16px;
  font-weight: 500;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  color: #252f42;
}

.plans .plan .plan-details p {
  color: #646a79;
  font-size: 14px;
  line-height: 18px;
}

.plans .plan .plan-content:hover {
  -webkit-box-shadow: 0px 3px 5px 0px #e8e8e8;
  box-shadow: 0px 3px 5px 0px #e8e8e8;
}

.plans .plan input[type="radio"]:checked + .plan-content:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background: var(--primary);
  right: 20px;
  top: 20px;
  border-radius: 100%;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #00ccc2;
  box-shadow: 0px 0px 0px 2px var(--primary);
}

.plans .plan input[type="radio"]:checked + .plan-content {
  border: 3px solid var(--primary);
  background: white;
  -webkit-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
  box-shadow: rgb(0, 204, 194, 0.6) 0 0 12px;
}

.tab span {
  font-size: 20px;
}

.tab1 span {
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 850px) {
  .plans {
    width: 100%;
    display: block;
  }

  .plans .plan .plan-content {
    border-radius: 10px;
    margin-bottom: 0.8rem;
    margin-left: 0;
    margin-right: 0;
  }
}

#regForm {
  background-color: var(--light);
  margin: 4rem auto 2rem auto;
  padding: 3rem;
  width: 80%;
  border-radius: 20px;
  text-align: center;
}

#regForm span {
  display: inline-block;
  margin-bottom: 1rem;
  text-align: left;
}

.tab input {
  padding: 1rem;
  width: 100%;
  border: 2px solid var(--dark);
  border-radius: 5px;
  margin-bottom: 1rem;
}

.tab select {
  padding: 1rem;
  width: 100%;
  border: 2px solid var(--dark);
  border-radius: 5px;
  margin-bottom: 1rem;
}

input.invalid {
  background-color: #ffdddd;
}

select.invalid {
  background-color: #ffdddd;
}

.tab {
  display: none;
}

.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #c2c2c2;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 1;
}

.step.active {
  opacity: 1;
  background-color: #787878;
}

.step.finish {
  background-color: var(--primary);
}

#prevBtn {
  background: #d6f3ff;
  color: var(--dark);
  font-size: 12px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

#nextBtn {
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

#nextBtn.actived {
  background: var(--light);
  color: var(--dark);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  #form-section {
    max-width: 1780px;
    height: 100%;
    padding: 3rem 1.5rem;
  }

  #regForm {
    background-color: var(--light);
    margin: 4rem auto 2rem auto;
    padding: 2rem;
    width: 100%;
    border-radius: 20px;
  }
}

/* articles */

#articles {
  width: 100%;
  padding: 3rem 3rem 5rem 3rem;
  background: var(--light);
}

#articles h2 {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 1rem;
}

#articles h4 {
  margin-bottom: 1rem;
}

#articles p {
  text-align: justify;
  margin-bottom: 1.5rem;
}

.article-container {
  width: 1680px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card {
  flex: 1 1 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 15px;
  box-shadow: rgb(0, 204, 194, 0.2) 3px 3px 15px;
  padding: 0.5rem 2rem 2rem 2rem;
  align-self: normal;
}

.card img {
  width: 120px;
}

.card .btn {
  display: inline-block;
  margin-top: auto;
  text-align: center;
  font-size: 12px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
  padding: 1rem 1.8rem;
  appearance: none;
  background-color: var(--primary);
  color: white;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  #articles {
    padding: 3rem 1.5rem;
  }

  .article-container {
    width: 100%;
  }
}

/* témoignage */

#témoignage {
  width: 100%;
  padding: 3rem 3rem 5rem 3rem;
  background: white;
}

#témoignage h2 {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 1rem;
  text-transform: uppercase;
}

#témoignage .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.testimonial {
  flex: 1 1 21rem;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: rgb(0, 204, 194, 0.2) 3px 3px 15px;
  border-right: 4px solid var(--dark);
  padding: 30px 30px 30px 130px;
  position: relative;
  align-self: normal;
}

.testimonial:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -25px;
  border-top: 40px solid var(--primary);
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  transform: rotate(45deg);
  border-radius: 100%;
}
.testimonial:after {
  content: "";
  position: absolute;
  top: -5px;
  left: -25px;
  border-top: 40px solid var(--primary);
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  transform: rotate(135deg);
  border-radius: 100%;
}
.testimonial .pic {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 60px;
  left: 20px;
}

.testimonial .pic img {
  width: 100%;
  height: auto;
}

.testimonial .pic1 img {
  width: 140px;
  height: auto;
  margin-top: 0.5rem;
}
.testimonial .description {
  letter-spacing: 1px;
  color: var(--dark);
  line-height: 25px;
  margin-bottom: 15px;
}

.testimonial .title {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
  margin: 0;
}
@media only screen and (min-width: 601px) and (max-width: 767px) {
  .testimonial {
    padding: 30px;
    text-align: center;
  }
  .testimonial .pic {
    display: block;
    position: static;
    margin: 0 auto 15px;
  }
}

@media screen and (max-width: 600px) {
  .testimonial {
    padding: 30px;
    text-align: center;
  }
  .testimonial .pic {
    display: block;
    position: static;
    margin: 0 auto 15px;
  }
  #témoignage {
    padding: 3rem 1.5rem;
  }
}

/* -------------------------------------------------------- */
/* Contact */

#CONTACTEZ-NOUS {
  width: 100%;
  padding: 3rem 3rem 5rem 3rem;
  background: var(--light);
}

#CONTACTEZ-NOUS h2 {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
  text-transform: uppercase;
}

#CONTACTEZ-NOUS h3 {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.contact-para {
  text-align: center;
  margin-bottom: 4rem;
}

.form-general {
  max-width: 1680px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  background: transparent;
  border-radius: 20px;
  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: 20px 0 0 20px;
}

.contact_form .contact-boxes {
  width: 100%;
}

.contact-boxes .contact-item {
  display: flex;
  gap: 1.5rem;
}

.contact-boxes .contact-item input {
  width: 100%;
  height: 52px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
  padding-left: 1.5rem;
  font-weight: 500;
  background: white;
  outline-color: #00ccc2;
  border: 2px solid #3d174f;
  border-radius: 50px;
}

.contact-boxes .contact-item input:focus {
  background: white;
  border: 2px solid #00ccc2;
  box-shadow: rgb(0, 204, 194, 0.3) 0 0 10px;
}

.contact-boxes-1 {
  margin-bottom: 1.5rem;
}

.contact-boxes-2 {
  margin-bottom: 0.6rem;
}

.textarea {
  width: 100%;
  height: 220px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
  padding: 1.5rem;
  font-weight: 500;
  background: white;
  outline-color: #00ccc2;
  border: 2px solid #3d174f;
  border-radius: 20px;
  resize: none;
}

.textarea:focus {
  background: white;
  border: 2px solid #00ccc2;
  box-shadow: rgb(0, 204, 194, 0.3) 0 0 10px;
}

.envoyez-message {
  text-align: center;
}

.contact-container-2 {
  width: 40%;
  background: var(--primary);
  padding: 4rem 4rem;
  border-radius: 0 20px 20px 0;
}

.contact-para-2 {
  margin-bottom: 3rem;
  color: white;
  text-align: center;
  margin-top: -1.5rem;
}

.Contact-detail-1,
.Contact-detail-2,
.Contact-detail-3 {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  color: white;
}

.Contact-detail img {
  width: 3.5rem;
}

@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: 3.5rem;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 415px) 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: 3.5rem;
    margin-bottom: 1rem;
  }
  #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 -0.8rem 0;
  }
  .contact-para-2 {
    font-size: 14px;
  }
  .right-Contact-detail p {
    font-size: 14px;
  }
}

@media screen and (max-width: 415px) {
  .form-general {
    display: block;
  }
  .contact-boxes .contact-item {
    display: block;
    gap: 1.5rem;
  }
  .contact_form {
    width: 100%;
    padding: 4rem 2rem;
    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: 3.5rem;
    margin-bottom: 1rem;
  }
  #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 -0.8rem 0;
  }
  .contact-para-2 {
    font-size: 14px;
  }
  .right-Contact-detail p {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  #CONTACTEZ-NOUS {
    padding: 3rem 1.5rem;
  }
}

/* --------------------------------------- */
/* footer */

footer {
  width: 100%;
  padding: 8rem 3rem 4rem 3rem;
  background: url(img/footer-BG.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--light);
}

.footer-section {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.footer-section h5 {
  font-size: 20px;
  color: white;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.footer-section p {
  color: white;
  font-weight: normal;
}

.footer-section p:not(.last-child) {
  margin-bottom: 0.7rem;
}

.footer-section-1 {
  width: 30%;
}

.footer-section-1 img {
  width: 220px;
  margin-bottom: 1.5rem;
}

.footer-section-1 p {
  color: white;
}

.footer-section-1 i {
  font-size: 36px;
  color: white;
  padding-right: 0.4rem;
  margin-top: 1.5rem;
  transition: all 0.3s ease-in-out;
}

.footer-section-1 i:hover {
  color: #00ccc2;
  transition: all 0.3s ease-in-out;
}

.contact-1 {
  margin-bottom: 1rem;
  background: white;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
}

.footer-section-2 p {
  transition: all 0.3s ease-in-out;
}

.footer-section-2 p:hover {
  color: #00ccc2;
  transition: all 0.3s ease-in-out;
}

.contact-1 span {
  font-size: 14px;
  color: var(--dark);
}

.contact-2 {
  margin-bottom: 1rem;
  background: var(--dark);
  border: 2px solid white;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
}

.contact-2 span {
  font-size: 14px;
  color: white;
}

.copyright {
  color: white;
  text-align: center;
  font-weight: normal;
}

@media screen and (min-width: 536px) and (max-width: 820px) {
  .footer-section {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    text-align: center;
  }

  .contact-1 {
    width: 300px;
  }
  .contact-2 {
    width: 300px;
  }
  .footer-section-1 {
    width: 40%;
  }

  .footer-section-1 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media screen and (max-width: 535px) {
  .footer-section {
    display: flex;
    flex-direction: column;
  }

  footer {
    width: 100%;
    padding: 8rem 1.5rem 4rem 1.5rem;
  }

  .contact-1 {
    width: 300px;
  }
  .contact-2 {
    width: 300px;
  }
  .footer-section-1 {
    width: 100%;
  }
}

/* -------------------------------------------------- */
/* Confirmation */

#confirmation {
  max-width: 1780px;
  background: var(--light);
  padding: 10rem 3rem 3rem 3rem;
  margin: 0 auto;
  text-align: center;
}

#confirmation h2 {
  text-align: center;
  margin-top: 1rem;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.confirmation-section img {
  width: 200px;
  margin-bottom: 2rem;
}

.confirmation-section p {
  font-size: 20px;
}

@media screen and (max-width: 535px) {
  .confirmation-section img {
    width: 160px;
  }

  .confirmation-section p {
    font-size: 18px;
  }
}
