@import url("https://fonts.cdnfonts.com/css/barlow-condensed");
@import url("https://fonts.cdnfonts.com/css/montserrat");

:root {
  --primary: #009266;
  --light: #ebf7f3;
  --dark: #171d14;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  background-color: white;
  color: var(--dark);
}

h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 32px;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  line-height: 1.2;
}

h4 {
  font-size: 22px;
  line-height: 1.2;
}

h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", sans-serif;
}

p {
  font-size: 14px;
  line-height: 1.8;
  font-weight: bold;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  h3 {
    font-size: 26px;
    line-height: 1.2;
  }

  h4 {
    font-size: 22px;
    line-height: 1.2;
  }
}

.header-btn {
  background: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  margin-top: 3rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.content-btn {
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  margin-top: 3rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

@media screen and (max-width: 535px) {
  .header-btn {
    font-size: 14px;
  }

  .content-btn {
    font-size: 12px;
  }
}

/* -------------------------------------- */

.container {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container img {
  width: 220px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: white;
  padding: 1.5rem 3rem;
  box-shadow: rgb(0, 0, 0, 0.1) 0 3px 20px;
}

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;
}

.menu a.is-active {
  border: 2px solid #171d14;
  border-radius: 50px;
  color: var(--dark);
}

.menu a.is-active:hover {
  background: #171d14;
  color: white;
}

.menu a:hover {
  color: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  padding-top: 10rem;
  opacity: 0;
  transform: translateY(-100%);
  background-color: var(--primary);
  color: white;
  transition: 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  height: 100%;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  margin: 0 auto;
  margin-bottom: 3rem;
  color: white;
  text-align: center;
  font-size: 1.25rem;
  transition: 0.3s;
}

.mobile-menu i {
  font-size: 22px;
  margin-right: 0.5rem;
}

.mobile-menu a.is-active {
  width: 300px;
  margin: 0 auto;
  background-color: white;
  color: var(--primary);
  font-weight: 600;
  transition: 0.3s;
  padding: 1rem 1.5rem;
  border-radius: 100px;
}

.mobile-menu a.is-active:hover {
  border: 2px solid white;
  background: none;
  border-radius: 50px;
  color: white;
}

.mobile-menu a:hover {
  color: #00e49f;
}

@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 {
  max-width: 100%;
  background: var(--light);
  height: 100%;
}

.header-sec {
  max-width: 1780px;
  height: 100%;
  padding: 3rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 6.4rem;
}

.left-section {
  width: 50%;
  align-items: center;
}

.left-section p {
  font-size: 18px;
}

.left-section i {
  font-size: 24px;
  color: var(--primary);
}

.first-para {
  margin-bottom: 1rem;
}

.last-para {
  margin-top: 1rem;
}

.heading-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.heading-item-1,
.heading-item-2 {
  margin-bottom: 1rem;
}

.right-section {
  width: 50%;
  display: flex;
  justify-content: end;
}

.right-section img {
  width: 76%;
}

@media screen and (min-width: 921px) and (max-width: 1145px) {
  .right-section img {
    width: 100%;
  }
}

@media screen and (min-width: 669px) and (max-width: 920px) {
  .header-sec {
    display: block;
  }

  .left-section {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }

  .heading-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }

  .right-section {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 668px) {
  .header-sec {
    display: block;
    margin-top: 6rem;
  }

  .left-section {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }

  .heading-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }

  .right-section {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .left-section p {
    font-size: 16px;
  }

  .left-section i {
    font-size: 22px;
    color: var(--primary);
  }
}
/* Form-section */

#Form-section {
  max-width: 1300px;
  height: 100%;
  padding: 3rem;
  margin: 0 auto;
}

.Nos-avantages-para {
  text-align: center;
  position: relative;
  padding: 2.5rem;
}

.Nos-avantages-para p {
  font-size: 24px;
}

.Nos-avantages-para .fa-quote-left {
  font-size: 32px;
  position: absolute;
  top: 1.5rem;
  left: 0;
  color: var(--primary);
}

.Nos-avantages-para .fa-quote-right {
  font-size: 32px;
  position: absolute;
  bottom: 1.5rem;
  left: 91%;
  color: var(--primary);
}

.full-form {
  display: flex;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 20px;
}

.left-form {
  width: 35%;
  height: 700px;
  background: url(img/Devis-BG.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem;
  border-radius: 20px 0 0 20px;
}

.left-form h2 {
  padding: 0 1rem;
  border-left: 8px solid #009266;
  margin-bottom: 8rem;
  text-transform: uppercase;
}

.right-form {
  width: 65%;
  background: var(--light);
  border-radius: 0 20px 20px 0;
  padding: 2rem;
}

.right-form p {
  font-size: 14px;
  text-align: justify;
  font-weight: 600;
}

.para-form {
  margin-bottom: 1rem;
}

.form-section {
  margin-bottom: 1.5rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1rem;
}

.checkbox input {
  cursor: pointer;
}

.checkbox p {
  margin-top: -0.3rem;
}

.form-container {
  display: flex;
  margin-bottom: 2%;
  gap: 2%;
}

.right-form .form-container input {
  color: var(--dark);
  background: white;
  border: 2px solid #009266;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  width: 100%;
  height: 55px;
  padding-left: 1rem;
}

.right-form .form-container select {
  color: var(--dark);
  background: white;
  border: 2px solid #009266;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  width: 100%;
  height: 55px;
  padding-left: 1rem;
}

.content-form {
  width: 100%;
  padding: 1.2rem 0;
  border: none;
  border-radius: 5px;
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-family: "montserrat";
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 950px) {
  .Nos-avantages-para p {
    font-size: 20px;
  }
}

@media screen and (max-width: 900px) {
  .full-form {
    display: block;
  }
  .left-form {
    width: 100%;
    height: 500px;
    border-radius: 20px 20px 0 0;
  }

  .left-form h2 {
    padding: 0 1rem;
    border-left: 8px solid #009266;
    margin-bottom: 8rem;
    text-transform: uppercase;
  }

  .right-form {
    width: 100%;
    background: var(--light);
    padding: 2rem;
    border-radius: 0 0 20px 20px;
  }
}

@media screen and (max-width: 535px) {
  #Form-section {
    padding: 3rem 1rem;
  }
  .full-form {
    display: block;
  }
  .left-form {
    width: 100%;
    height: 500px;
  }

  .left-form h2 {
    padding: 0 1rem;
    border-left: 8px solid #009266;
    margin-bottom: 5rem;
    text-transform: uppercase;
  }

  .Nos-avantages-para p {
    font-size: 20px;
  }

  .right-form {
    width: 100%;
    background: var(--light);
    padding: 2rem;
  }

  .form-container {
    display: block;
    margin-bottom: 0.5rem;
  }

  .number-1 {
    margin-bottom: 0.5rem;
  }
}

/* Articles */

#NOS-ARTICLES {
  max-width: 100%;
  background: var(--light);
  height: 100%;
}

.NOS-ARTICLES-section {
  max-width: 1780px;
  height: 100%;
  padding: 3rem;
  margin: 0 auto;
}

.Nous-Choisir-content {
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
}

.NOS-ARTICLES-section h2 {
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 1rem;
  border-left: 8px solid #009266;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.icon-content {
  flex: 1 1 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 14px;
  box-shadow: rgb(0, 0, 0, 0.1) 1px 1px 20px;
  padding: 0.5rem 2rem 2rem 2rem;
  align-self: normal;
}

.icon-content img {
  width: 145px;
}
.icon-content h3 {
  margin-bottom: 2rem;
  margin-top: -1rem;
  color: var(--dark);
}

.icon-content p {
  font-weight: bold;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.icon-content .btn {
  display: inline-block;
  margin-top: auto;
  text-align: center;
  font-size: 12px;
  font-family: "montserrat";
  font-weight: bold;
  padding: 0.7rem 1rem;
  appearance: none;
  background-color: var(--primary);
  color: white;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  text-transform: uppercase;
}

@media screen and (max-width: 535px) {
  .NOS-ARTICLES-section {
    padding: 3rem 1rem;
  }
  .icon-content img {
    width: 130px;
  }
}

/* contact */

#contactez-nous {
  max-width: 1780px;
  height: 100%;
  padding: 3rem;
  margin: 0 auto;
}

#contactez-nous h2 {
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 1rem;
  border-left: 8px solid #009266;
}

#contactez-nous p {
  text-align: center;
}

.contact-item {
  max-width: 350px;
  margin: 0 auto;
}

#contactez-nous .contact-para {
  font-size: 18px;
}

.contact-info{
  max-width: 350px;
  margin: 0 auto;
}

.contact-item-1 {
  background: var(--primary);
  color: white;
  padding: 0.8rem 0;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.contact-item-2 {
  color: white;
  padding: 0.6rem 0;
  border: 3px solid #009266;
  border-radius: 4px;
  color: #009266;
}

.contact-para {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 535px) {
  #contactez-nous {
    padding: 3rem 1rem;
  }
  #contactez-nous .contact-para {
    font-size: 16px;
  }
}

/* Footer */

.footer-section {
  width: 100%;
  background: var(--primary);
  padding: 3rem;
}

.lists-footer {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}

.footer-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.footer-mark {
  text-align: center;
  font-size: 16px;
  color: white;
}

.lists-footer ul {
  list-style: none;
  margin-bottom: 50px;
}

.lists-footer ul li {
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}

.social-list p {
  list-style: none;
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
  line-height: 1.5;
  margin-top: -5px;
}
.social-list i {
  font-size: 36px;
  padding-right: 7px;
  color: white;
  margin-bottom: 35px;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .footer-section {
    width: 100%;
    background: var(--primary);
    padding: 3rem;
  }
  .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: 701px) and (max-width: 768px) {
  .footer-section {
    width: 100%;
    background: var(--primary);
    padding: 3rem;
  }
  .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: 471px) and (max-width: 700px) {
  .lists-footer {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 20px;
  }
  .footer-section {
    width: 100%;
    background: var(--primary);
    padding: 3rem;
  }
  .lists-footer hr {
    margin: auto;
  }
}
@media screen and (max-width: 470px) {
  .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: var(--primary);
    padding: 3rem;
  }
  .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: white;
  }
}

/* Articles-Préambule */

#Préambule {
  max-width: 100%;
  background: var(--light);
  height: 100%;
}

#Préambule h2 {
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 1rem;
  border-left: 8px solid #009266;
}

.FAQ-section p {
  text-align: justify;
}

.FAQ-section {
  max-width: 1780px;
  height: 100%;
  padding: 3rem;
  margin: 0 auto;
  margin-top: 6.4rem;
}

.FAQ-section-1 {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.FAQ h4 {
  margin-bottom: 1rem;
}

.FAQ-section ul {
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-size: 14px;
}

.FAQ-section ul li:first-child {
  margin-bottom: 0.7rem;
}

.FAQ {
  width: 100%;
  background: white;
  padding: 2rem;
  border-radius: 20px;
}

@media screen and (min-width: 536px) and (max-width: 971px) {
  .FAQ-section-1 {
    display: block;
  }
  .FAQ:not(.FAQ-item-2) {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 668px) {
  .FAQ-section {
    margin-top: 6rem;
  }
}

@media screen and (max-width: 535px) {
  .FAQ-section {
    padding: 3rem 1rem;
  }
  .FAQ-section-1 {
    display: block;
  }

  #Préambule p {
    font-size: 12px;
  }

  #Préambule ul {
    font-size: 12px;
  }

  .FAQ:not(.FAQ-item-2) {
    margin-bottom: 1.5rem;
  }
}

/* Obligation d’assurances */

#Obligation {
  max-width: 100%;
  background: var(--light);
  height: 100%;
}

#Obligation h2 {
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 1rem;
  border-left: 8px solid #009266;
}

.FAQ-section p {
  text-align: justify;
}

.FAQ-section {
  max-width: 1780px;
  height: 100%;
  padding: 3rem;
  margin: 0 auto;
  margin-top: 6.4rem;
}

.FAQ-section-1 {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.FAQ h4 {
  margin-bottom: 1rem;
}

.FAQ-section ul {
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-size: 14px;
}

.list-articles {
  list-style: lower-alpha;
}

.FAQ-section .list-articles li {
  color: #009266;
}

.list-articles p {
  list-style: lower-alpha;
  margin-bottom: 1rem;
}

.FAQ-section ul li {
  margin-bottom: 0.7rem;
}

.FAQ {
  width: 100%;
  background: white;
  padding: 2rem;
  border-radius: 20px;
}

@media screen and (min-width: 536px) and (max-width: 971px) {
  .FAQ-section-1 {
    display: block;
  }
  .FAQ:not(.FAQ-item-2) {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 668px) {
  .FAQ-section {
    margin-top: 6rem;
  }
}

@media screen and (max-width: 535px) {
  .FAQ-section {
    padding: 3rem 1rem;
  }
  .FAQ-section-1 {
    display: block;
  }

  #Obligation p {
    font-size: 12px;
  }

  #Obligation ul {
    font-size: 12px;
  }

  .FAQ:not(.FAQ-item-2) {
    margin-bottom: 1.5rem;
  }
}

/* Devis-assurances */

#Devis-assurances {
  max-width: 100%;
  background: var(--light);
  height: 100%;
}

#Devis-assurances h2 {
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 1rem;
  border-left: 8px solid #009266;
}

.FAQ-section p {
  text-align: justify;
}

.FAQ-section {
  max-width: 1780px;
  height: 100%;
  padding: 3rem;
  margin: 0 auto;
  margin-top: 6.4rem;
}

.FAQ-section-1 {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.FAQ h4 {
  margin-bottom: 1rem;
}

.FAQ-section ul {
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-size: 14px;
}

.FAQ-section ul li {
  margin-bottom: 0.7rem;
}

.FAQ {
  width: 100%;
  background: white;
  padding: 2rem;
  border-radius: 20px;
}

@media screen and (min-width: 536px) and (max-width: 971px) {
  .FAQ-section-1 {
    display: block;
  }
  .FAQ:not(.FAQ-item-2) {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 668px) {
  .FAQ-section {
    margin-top: 6rem;
  }
}

@media screen and (max-width: 535px) {
  .FAQ-section {
    padding: 3rem 1rem;
  }
  .FAQ-section-1 {
    display: block;
  }

  #Devis-assurances p {
    font-size: 12px;
  }

  #Devis-assurances ul {
    font-size: 12px;
  }

  .FAQ:not(.FAQ-item-2) {
    margin-bottom: 1.5rem;
  }
}

/* Confirmation */

#confirmation {
  max-width: 100%;
  background: white;
  height: 100%;
  padding: 3rem;
  margin-top: 6.4rem;
}

#confirmation h2 {
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 1rem;
  border-left: 8px solid #009266;
}

.confirmation-content {
  max-width: 1780px;
  height: 100%;
  padding: 3rem;
  margin: 0 auto;
  text-align: center;
  background: var(--light);
  border-radius: 20px;
}

.confirmation-content i {
  font-size: 12rem;
  color: var(--primary);
}

.confirmation-content p {
  color: var(--dark);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  margin: 2rem 0;
}

@media screen and (max-width: 535px) {
  #confirmation {
    padding: 3rem 1rem;
    margin-top: 6rem;
  }
  .confirmation-content i {
    font-size: 8rem;
  }
  .confirmation-content p {
    font-size: 16px;
    line-height: 1.6;
  }
}


/* Cookies */

.cookiealert {
  position: fixed;
  bottom: 20px;
  right: -420px;
  max-width: 400px;
  width: 100%;
  background: #009266;
  border-radius: 20px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.cookiealert.show {
  right: 20px;
}

.cookiealert h4,
.cookiealert p {
  text-align: left;
}

.second-heading {
  margin-top: 1rem;
}

.cookiealert a {
  text-decoration: underline;
}

.cookiealert .acc-content {
  border: none;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background: white;
  color: #009266;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  margin-top: 1.5rem;
}

.cookiealert .ref-content {
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
}

.top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.cookies-content p {
  font-size: 14px;
  margin-top: 1rem;
  color: white;
}

.cookies-content h4 {
  color: white;
  font-size: 24px;
}

.cookies-content i {
  color: white;
  font-size: 32px;
}

@media screen and (max-width: 415px) {
  .cookiealert {
    max-width: 340px;
  }
}
