:root {
  /* Official colors - style guide */
  --afp-blue: #325aff;
  --afp-black: #000;
  --afp-white: #fff;

  /* sub main colors */
  --afp-pink: #ff6e6e;
  --afp-yellow: #ffd223;
  --afp-orange: #ffa050;
  --afp-turquoise: #7dfaaf;
  --afp-purple: #cd73fa;
  --afp-light-blue: #87ebfa;

  /* secondary colors */
  --afp-secondary-grey-100: #9b9187;
  --afp-secondary-grey-80: #afa79f;
  --afp-secondary-grey-60: #c3bdb7;
  --afp-secondary-grey-40: #d7d3cf;
  --afp-secondary-grey-20: #ebe9e7;
  --afp-secondary-grey-10: #f5f4f3;

  /* Additional colors - custom */
  --afp-blue-darker: #2544bf;
  --afp-darker-pink: #d96e6e;
  --extremely-light-gray: rgba(0, 0, 0, 0.1);

  /* Font-size and lengths */
  --font-size: 22px;
  --line-height: 1.5;
  --base-length: var(--font-size);
  --afp-h2: calc(1.5 * var(--font-size));
  --afp-h3: calc(1.1 * var(--font-size));
  --afp-h2-padding: calc(var(--afp-h2) / 2);
  --afp-h3-padding: calc(var(--afp-h3) / 2);

  /* Other */
  --nav-initial-height: 100px;
  --quote-container-width: 85vw;
  --max-height-landing-presentation-container: 1280px;
  /* Barely used, might me removed */
  --min-height-landing-presentation-container: min(
    var(--max-height-landing-presentation-container),
    min(100vh, 100vw)
  );
  --max-width-presentation-content: 1280px;
}
@media (min-width: 576px) {
  :root {
    --font-size: 22px;
    --quote-container-width: 80vw;
  }
}

@media (min-width: 768px) {
  :root {
    --font-size: 22px;
    --quote-container-width: 55vw;
  }
}

@media (min-width: 992px) {
  :root {
    --font-size: 22px;
  }
}

@media (min-width: 1200px) {
  :root {
    --font-size: 22px;
  }
}

@media (min-width: 1400px) {
  :root {
    --font-size: 22px;
  }
}

html,
body {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;

  margin: 0;
  scroll-behavior: smooth;
}

#main-container {
  font-family: "source-sans-pro", Source Sans Pro, Arial, sans-serif;
  font-size: 22px;
  font-size: var(--font-size);
  background-color: var(--afp-white);
  word-wrap: normal;
}

#main-container,
#main-container * {
  box-sizing: border-box;
}

#main-container h2,
#main-container h3,
#main-container h4 {
  margin-top: 0;
  margin-bottom: 0;
}

.display-none {
  display: none;
}

.presentation-content {
  width: 100%;
  margin: 0 auto;
  padding: 0 2em;
}

/* PRESENTATIONS */

/* Common CSS */

.svg-container {
  position: relative;
  display: flex;
  width: 100%;
}

.video-container {
  position: absolute;
  /* Magic numbers. Sorry. */
  top: 8%;
  left: 14%;
  width: 73%;
  background-color: #000;
  overflow: hidden;
}

.presentation-container {
  padding: 3em 1em 0em;
}

.title-h3 {
  font-size: 2.5em;
  font-weight: bold !important;
}
.h3-subtitle {
  font-size: 2em;
  font-weight: normal;
}
.text-bloc {
  font-size: 1.2em;
}
.central-title {
  text-align: center;
  margin: 0px 10px;
}
.acces-button-block p {
  display: block;
  margin-top: 1em;
  background-color: var(--afp-pink);
  border: 1px solid var(--afp-pink);
  color: var(--afp-white);
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: normal;
  text-align: center;
  justify-content: center;
  width: fit-content;
  width: -moz-fit-content;
  padding: 0.2em 1em;
  cursor: pointer;
}

.acces-button-block p:hover {
  background-color: var(--afp-darker-pink);
  border-color: var(--afp-darker-pink);
}

@media screen and (max-width: 992px) {
  .acces-button-block p {
    margin: auto;
    margin-top: 1em;
  }
}

/*Animations*/
.slide-right {
  animation: myAnimeSlideR 1s ease 0s 1 normal forwards;
}
@keyframes myAnimeSlideR {
  0% {
    opacity: 0;
    transform: translateX(-250px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*Nav Bar*/
#nav-bar {
  display: flex;
  width: 100%;
  background-color: var(--afp-blue);
  color: var(--afp-white);
  justify-content: space-between;
  padding: 1em;
  align-items: baseline;
  height: 100px;
}

#nav-bar ul {
  list-style-type: none;
  display: flex;
  margin-left: 3em;
  padding: 0;
}
#nav-bar ul li {
  margin: 0 10px;
  cursor: pointer;
  font-size: 1em;
}
#nav-bar ul li:hover {
  color: var(--afp-yellow);
}
.connect-button {
  cursor: pointer;
  display: flex;
}
.connect-button a {
  text-decoration: none;
  color: var(--afp-white);
}

.connect-button a:hover {
  color: var(--afp-yellow);
}

@media screen and (max-width: 1136px) {
  #nav-bar ul {
    display: none;
  }
  #nav-bar {
    justify-content: space-between;
  }
}

/*landing content */
#landing-content {
  background-color: var(--afp-blue);
}
#landing-bloc {
  display: flex;
  color: var(--afp-white);
}
#h1-landing {
  font-size: 4em;
  margin: 2px;
  font-weight: bold !important;
}

#h2-landing {
  font-weight: 400;
  font-size: 1.5em !important;
}
.landing-text {
  margin-bottom: 3em;
}
.laptop {
  width: 100%;
  margin: auto;
  overflow: hidden;
}
#landing-button p {
  background-color: var(--afp-pink);
  border: 2px solid var(--afp-pink);
  border-radius: 40px;
  font-size: 1.5em;
  font-weight: normal;
  text-align: center;
  width: fit-content;
  width: -moz-fit-content;
  padding: 0.2em 1em;
  cursor: pointer;
}

#landing-button p:hover {
  background: var(--afp-darker-pink);
  border-color: var(--afp-darker-pink);
}

#discover-bloc {
  width: 100%;
  margin: 1.5em auto;
}
#align-button {
  width: auto;
  margin: auto;
}
.bounce-animation {
  text-align: center;
  font-size: 1.5em;
  animation: myBounceAnim 3300ms ease 0s both running infinite;
}
@keyframes myBounceAnim {
  0% {
    transform: translateY(Opx);
  }
  45% {
    transform: translateY(0px);
  }
  67% {
    transform: translateY(-30px);
  }
  73% {
    transform: translateY(0px);
  }
  78% {
    transform: translateY(-15px);
  }
  89% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Individual variations */
#presentation-container-1 {
  background-color: var(--afp-white);
  display: flex;
  align-items: end;
  padding: 3em 0em;
}

#presentation-container-2 {
  background-color: var(--afp-white);
  display: flex;
  align-items: end;
  padding: 3em 0em;
}

#laptop-foot {
  background: url("/sites/default/files/football1.png") no-repeat center;
  background-size: 71%;
  background-position: 51% 54%;
}

#presentation-container-3 {
  background-color: var(--afp-white);
  display: flex;
  align-items: end;
  padding: 3em 0em;
}

#presentation-container-4 {
  position: relative;
  padding-bottom: calc(2 * var(--base-length));
}

#presentation-container-5 {
  background-color: var(--afp-blue);
  padding-bottom: calc(3 * var(--base-length));
  color: var(--afp-white);
  scroll-margin-top: 145px;
}

#presentation-container-6 {
  padding-bottom: calc(3 * var(--base-length));
}

#presentation-container-7 {
  background-color: var(--afp-blue);
}

.presentation-container-body {
  display: flex;
  width: 95%;
  justify-content: space-between;
}

.presentation-text-container {
  max-width: 45%;
  min-width: 300px;
}

@media (min-width: 992px) {
  #presentation-2-text-container {
    order: 2;
  }
}

/* CSS on AFP.com breaks ul and li, so we have to use this instead to avoid conflicts*/

.custom-list {
  display: flex;
  flex-direction: column;
}

.list-text {
  display: inline-flex;
}

.list-text::before {
  display: flex;
  flex-shrink: 0;
  justify-content: start;
  content: "·";
  font-weight: bolder;
  width: var(--base-length);
  font-size: calc(1.5 * var(--base-length));
  line-height: 1;
}

.presentation-button-container {
  display: flex;
  width: fit-content;
  width: -moz-fit-content;
  align-items: center;
  gap: 0.5em;

  font-size: calc(1.25 * var(--font-size));
  margin-bottom: var(--base-length);

  cursor: pointer;
}

.presentation-text-title-container {
  margin-bottom: calc(2 * var(--base-length));
}

.presentation-illustration-container {
  width: 50%;
  min-width: 680px;
}
@media (max-width: 1270px) {
  .presentation-illustration-container {
    min-width: 500px;
  }
  #h1-landing {
    font-size: 3.2em;
  }
}
@media (max-width: 992px) {
  .presentation-illustration-container {
    min-width: 0;
  }
}

.presentation-central-header {
  margin-bottom: calc(2 * var(--base-length));

  display: flex;
  justify-content: center;
}

/* PRESENTATION - OFFER */

@media (min-width: 992px) {
  #h3-central-header-offers {
    display: none;
  }
}

/* OFFER COLUMNS */

#offers-container {
  position: relative;
  margin-bottom: calc(3 * var(--base-length));

  display: flex;
  width: 100%;
}

@media (min-width: 992px) {
  #offers-container {
    justify-content: space-between;
    padding: calc(2 * var(--base-length)) 0;
  }
}
@media screen and (max-width: 992px) {
  #offers-container {
    display: block;
  }
  .offer-column-hidden {
    border: 1px solid var(--afp-secondary-grey-100);
    margin: 1em auto;
  }
}

.offer-column {
  display: flex;

  width: 100%;
  box-shadow: 0px 0px calc(0.5 * var(--base-length)) 0px
    var(--afp-secondary-grey-10);

  flex-direction: column;
  align-items: center;

  text-align: center;

  padding: calc(1.5 * var(--base-length));
  background-color: var(--afp-white);
  cursor: pointer;
}

#offer-column-standard {
  border: 1px solid var(--afp-blue);
}

.offer-title-container {
  padding: var(--base-length);
}

.offer-title-container h4 {
  word-spacing: 100vw;
  text-transform: uppercase;
  font-weight: bold;
  font-size: calc(1.5 * var(--font-size));
}

.offer-title-container h4 {
  color: var(--afp-blue);
}

.offer-condition-container {
  margin-bottom: var(--base-length);

  padding: var(--base-length);

  text-transform: uppercase;
  font-size: calc(1.2 * var(--font-size));
  font-weight: bold;
  color: var(--afp-white);
}

#offer-column-discovery .offer-condition-container,
#offer-column-illimited .offer-condition-container {
  background-color: var(--afp-black);
}

#offer-column-standard .offer-condition-container {
  background-color: var(--afp-blue);
}

.offer-price-container {
  margin-bottom: var(--base-length);
  font-size: calc(1.25 * var(--font-size));
  font-weight: bold;
}

.offer-sections-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-section {
  text-align: center;
  margin-bottom: var(--base-length);
}

.offer-footer {
  font-size: calc(1.25 * var(--font-size));
}

.acces-button p {
  display: block;
  margin: 0 auto;
  background-color: var(--afp-blue);
  color: var(--afp-white);
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: normal;
  text-align: center;
  justify-content: center;
  width: fit-content;
  width: -moz-fit-content;
  padding: 0.2em 1em;
  cursor: pointer;
}

.acces-button p:hover {
  background-color: var(--afp-blue-darker);
}

@media (min-width: 576px) {
  .offer-column {
    width: calc(80% - 2 * var(--base-length));
    padding: var(--base-length);
    margin: 1em auto;
  }

  .offer-title-container h4 {
    font-size: calc(1.6 * var(--font-size));
  }

  .offer-condition-container {
    font-size: calc(1.2 * var(--font-size));
  }

  .offer-price-container {
    font-size: calc(1.2 * var(--font-size));
  }

  .offer-section {
    font-size: calc(1.2 * var(--font-size));
  }

  .offer-footer {
    font-size: calc(1.2 * var(--font-size));
  }
}

@media (min-width: 992px) {
  .offer-column {
    width: 33.333333333%;
    margin: unset;

    box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 4px 0px;

    padding: var(--base-length);
    background-color: var(--afp-white);
  }

  .offer-column-hidden {
    display: block;
  }

  #offer-column-discovery {
    border-style: solid none solid solid;
    border-color: var(--afp-blue);
    border-width: 2px;
  }

  #offer-column-standard {
    position: absolute;
    top: 0;
    height: 100%;
    left: 33.33333333%;

    border: unset;
  }

  #offer-column-illimited {
    border-style: solid solid solid none;
    border-color: var(--afp-blue);
    border-width: 2px;
  }

  .offer-title-container h4 {
    font-size: calc(2 * var(--font-size));
  }

  .offer-condition-container {
    font-size: calc(1.3 * var(--font-size));
  }

  .offer-price-container {
    font-size: calc(1.3 * var(--font-size));
  }

  .offer-section {
    font-size: calc(1.3 * var(--font-size));
  }

  .offer-footer {
    font-size: calc(1.3 * var(--font-size));
  }
}

/* PRESENTATION - QUOTES */

.quotes-container {
  max-width: var(--quote-container-width);
  margin: auto;
  margin-bottom: var(--base-length);

  display: flex;
  align-items: center;
}

.quote-container {
  width: 0;
  order: 1;
}

.quote {
  margin-bottom: var(--base-length);
  width: var(--quote-container-width);
  text-align: center;
  font-size: calc(1.75 * var(--base-length));
}
@media screen and (max-width: 500px) {
  .quote {
    font-size: 1em;
  }
}

.quote-attribution {
  width: var(--quote-container-width);
  display: flex;
  align-items: center;
  flex-direction: column;
}

.quote-logo {
  width: 100%;
  max-height: 110px;
}

.quote-attribution-company-name {
  text-align: center;
  font-size: calc(1.2 * var(--base-length));
  font-style: italic;
  font-weight: bold;
}

.quotes-small-buttons-container {
  max-width: 650px;
  margin: auto;

  padding-bottom: var(--base-length);

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
}

input.quote-small-button {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: unset;
  /* Not removed via appearance */
  margin: 0;

  font: inherit;
  color: var(--afp-secondary-grey-100);
  width: calc(2 * var(--base-length));
  height: calc(2 * var(--base-length));
  border: calc(0.15 * var(--base-length)) solid #68b7c0;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
}

input.quote-small-button::before {
  content: "";
  flex-shrink: 0;
  width: calc(0.5 * var(--base-length));
  height: calc(0.5 * var(--base-length));
  border-radius: 50%;
  border: calc(0.8 * var(--base-length)) solid var(--afp-blue);
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset calc(2 * var(--base-length)) calc(2 * var(--base-length))
    var(--afp-white);
}

.quote-small-button:checked::before {
  transform: scale(1);
}

/* PRESENTATION - STATS */

.stats-column {
  display: flex;

  width: 100%;

  padding: var(--base-length) calc(3 * var(--base-length));

  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .stats-column {
    max-width: 40%;
  }
}

.stats-column > * {
  margin: calc(0.5 * var(--base-length)) 0;
  font-size: calc(1.4 * var(--font-size));
}

.stats-number {
  padding: calc(0.5 * var(--base-length)) var(--base-length);
  background-color: var(--afp-light-blue);

  white-space: nowrap;
  text-transform: uppercase;
  font-weight: bold;
}

.stats-text {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

.stats-column-separator {
  border-top: 1px solid var(--afp-secondary-grey-40);

  width: 80%;
}

@media (min-width: 768px) {
  .stats-column-separator {
    border-top: unset;
    border-left: 1px solid var(--afp-secondary-grey-40);
    padding: 0;
    width: 0px;
  }
}

/*part 5 : review navigation slider*/
.slider {
  width: 100%;
  height: fit-content;
  height: -moz-fit-content;

  border-radius: 10px;
  overflow: hidden;
}

.imgs_slides {
  width: 500%;
  height: fit-content;
  height: -moz-fit-content;
  display: flex;
  align-items: center;
}

/* We have to set display: none;
If not, all of our images would 
be visible at the same time */
.imgs_slides input {
  display: none;
}

.slide {
  width: 20%;
  transition: 2s;
}

/* css for slide navigation */
.navigation {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}

.navigation-btn {
  border: 1px solid var(--afp-black);
  padding: 10px;
  height: 25px;
  border-radius: 20px;
  cursor: pointer;
  transition: 1s;
}

.navigation-btn:not(:last-child) {
  margin-right: 30px;
}

.navigation-btn:hover {
  background: var(--afp-white);
}

/* The checked attribute is used with
reference to <input type="radio">, 
when radio button is clicked the 
class will shift w.r.t  left margin 
as mentioned which results in image 
slider */
#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -20%;
}

#radio3:checked ~ .first {
  margin-left: -40%;
}

#radio4:checked ~ .first {
  margin-left: -60%;
}

#radio5:checked ~ .first {
  margin-left: -80%;
}

/* Straight from https://loading.io/css/ */

/* latest coverage */
.sect4-content {
  width: 90%;
  margin: auto;
  padding: 3rem 10px;
}
#main-container .gradient {
  font-size: 2rem;
  text-transform: uppercase;
  background: linear-gradient(
    to bottom,
    rgba(50, 90, 255, 1) 0%,
    rgba(108, 227, 171, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 900;
  margin-bottom: 2rem;
}
.mosaik {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.mosaik .img-coverage {
  width: 29%;
  /* max-width: 300px; */
  position: relative;
}
.img-coverage img {
  max-width: 100%;
  border-radius: 15px;
}
.img-title {
  position: absolute;
  bottom: 11%;
  left: 5%;
  color: white;
  text-transform: uppercase;
  max-width: 90%;
}
.img-title p,
.img-title h4 {
  margin: -1px 0;
  line-height: 1.5;
  width: fit-content;
  width: -moz-fit-content;
  padding: 7px 10px;
  font-size: 14px;
}
.black-pack {
  background-color: #000;
}
.blue-pack {
  background-color: var(--afp-blue);
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/*@media screen and (min-width: 1500px) {
  .img-title p, .img-title h4 {
      font-size: 20px;
  }
}*/
@media screen and (max-width: 768px) {
  .mosaik .img-coverage {
    width: 45%;
  }
  #main-container .gradient {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 560px) {
  .mosaik .img-coverage {
    width: 100%;
  }
}

#presentation-container-7 {
  padding-bottom: var(--base-length);
  padding-top: var(--base-length);
}

#presentation-7-content {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: auto;
  padding: var(--base-length);
  background-color: var(--afp-white);
}

#form-container {
  position: relative;
  margin-top: 5px;
  min-height: 650px;
  width: 100%;
}

#form-container form {
  position: relative;
  z-index: 3;
}

@media (min-width: 768px) {
  #presentation-7-content {
    margin: auto;
    width: 768px;
  }
}
/* mktoForm style */

#mktoStyleLoaded {
  /* css load detection, do not remove */
  color: #171717;
}

#mktoForm_4776.mktoHasWidth {
  width: 100% !important;
}

#mktoForm_4776 * {
  font-family: "Source Sans Pro", sans-serif;
}

#mktoForm_4776 fieldset {
  border: 2px solid #ddd;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding-bottom: 0;
}

#mktoForm_4776 fieldset legend {
  padding: 0;
}

#mktoForm_4776 input[type="text"],
#mktoForm_4776 input[type="url"],
#mktoForm_4776 input[type="email"],
#mktoForm_4776 input[type="tel"],
#mktoForm_4776 input[type="number"],
#mktoForm_4776 input[type="date"],
#mktoForm_4776 select.mktoField,
#mktoForm_4776 textarea.mktoField {
  box-shadow: none;
  font-size: 16px;
  color: #000;
  border: 2px solid #ddd;
  border-radius: 0;
  padding: 12px 16px;
  line-height: 20px;
}

#mktoForm_4776 input.mktoField.mktoInvalid,
#mktoForm_4776 select.mktoField.mktoInvalid,
#mktoForm_4776 textarea.mktoField.mktoInvalid,
#mktoForm_4776 div.mktoLogicalField.mktoInvalid {
  border: 2px solid #d0021b;
}

#mktoForm_4776 input[type="text"]:focus,
#mktoForm_4776 input[type="url"]:focus,
#mktoForm_4776 input[type="email"]:focus,
#mktoForm_4776 input[type="tel"]:focus,
#mktoForm_4776 input[type="number"]:focus,
#mktoForm_4776 input[type="date"]:focus,
#mktoForm_4776 select.mktoField:focus,
#mktoForm_4776 textarea.mktoField:focus,
#mktoForm_4776 input.mktoField.mktoValid,
#mktoForm_4776 select.mktoField.mktoValid,
#mktoForm_4776 textarea.mktoField.mktoValid,
#mktoForm_4776 div.mktoLogicalField.mktoValid {
  border: 2px solid #000;
}

#mktoForm_4776 input[type="text"]::placeholder,
#mktoForm_4776 input[type="url"]::placeholder,
#mktoForm_4776 input[type="email"]::placeholder,
#mktoForm_4776 input[type="tel"]::placeholder,
#mktoForm_4776 input[type="number"]::placeholder,
#mktoForm_4776 input[type="date"]::placeholder,
#mktoForm_4776 select.mktoField::placeholder,
#mktoForm_4776 textarea.mktoField::placeholder {
  color: #666;
  font-size: 16px;
  line-height: 20px;
}

#mktoForm_4776 input[type="text"],
#mktoForm_4776 select,
#mktoForm_4776 textarea {
  height: 48px;
  padding: 0 16px;
  border-radius: 0;
}

#mktoForm_4776 input[type="url"],
#mktoForm_4776 input[type="email"] {
  height: 48px;
  padding: 0 16px;
  border-radius: 0;
}

#mktoForm_4776 input[type="tel"] {
  height: 48px;
  padding: 0 16px;
  border-radius: 0;
}

#mktoForm_4776 input[type="number"] {
  height: 48px;
  padding: 0 16px;
  border-radius: 0;
}

#mktoForm_4776 input[type="date"] {
  height: 48px;
  padding: 0 16px;
  border-radius: 0;
}

#mktoForm_4776 select.mktoField {
  height: 48px;
  padding: 0 16px;
  border-radius: 0;
}

#mktoForm_4776 input[type="button"] {
  height: 48px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid;
  border-radius: 4px;
  resize: vertical;
  margin-right: 120px;
  margin-bottom: 10px;
}

#mktoForm_4776 .mktoButtonRow {
  margin-right: 150px;
  margin-bottom: 10px;
  font-size: 1.2em;
  text-align: center;
  margin-top: 5px;
  height: 48px;
}

#mktoForm_4776 .mktoFormCol {
  float: none;
}

#mktoForm_4776 .mktoFieldWrap {
  float: none;
}

#mktoForm_4776 #FirstName {
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  height: 48px;
  width: 100% !important;
}

#mktoForm_4776 #LastName {
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  height: 48px;
  width: 100% !important;
}

#mktoForm_4776 #Email {
  margin-top: 5px;
  height: 48px;
  width: 100% !important;
}

#mktoForm_4776 #Company {
  margin-top: 5px;
  height: 48px;
  width: 100% !important;
}

#mktoForm_4776 #Country {
  margin-top: 5px;
  height: 48px;
  width: 100% !important;
}

#mktoForm_4776 #Phone {
  margin-top: 5px;
  height: 48px;
  width: 100% !important;
}

#mktoForm_4776 #Title {
  margin-top: 5px;
  height: 48px;
  width: 100% !important;
}

#mktoForm_4776 #typeofrequest {
  margin-top: 10px;
  margin-bottom: 5px;
  height: 48px;
  width: 100% !important;
}

#mktoForm_4776 #MktoPersonNotes {
  height: 92px;
  width: 100% !important;
  margin-top: 5px;
}

#mktoForm_4776 #afpcomoptin {
  height: 48px;
  width: 100% !important;
}

#mktoForm_4776 #LblPref_Optin_global {
  width: 100% !important;
}

#mktoForm_4776 #Pref_Optin_global {
  width: 100% !important;
  margin-top: 12px;
}

#mktoForm_4776 .mktoAsterix {
  float: none;
  color: #d0021b;
  padding-left: 5px;
  position: absolute;
  left: -16px;
  top: 24px;
}

#mktoForm_4776 #LblPref_Optin_global .mktoAsterix {
  top: auto;
  bottom: 15px;
}

#mktoForm_4776 [style="text-align: justify;"] {
  text-align: left !important;
}

#mktoForm_4776 span[style="font-size: 10px; color: #ffffff;"] {
  font-size: 16px !important;
  color: #000 !important;
  font-weight: 600;
  line-height: 20px;
}

#mktoForm_4776 span[style="font-size: 10px; color: #ffffff;"] a {
  color: #325aff !important;
  cursor: pointer;
  outline: none;
}

#mktoForm_4776 span[style="font-size: 10px; color: #ffffff;"] a:hover {
  color: #2848cc !important;
  text-decoration: underline;
}

#mktoForm_4776 span[style="font-size: 10px; color: #ffffff;"] a:active,
#mktoForm_4776 span[style="font-size: 10px; color: #ffffff;"] a:focus {
  color: #2039a3 !important;
}

#mktoForm_4776 .mktoButtonRow {
  width: 100%;
  text-align: center;
}

#mktoForm_4776 .mktoButtonRow .mktoButtonWrap {
  margin-left: auto !important;
}

#mktoForm_4776 .mktoButtonWrap.mktoRound .mktoButton {
  font-size: 18px;
  line-height: 23px;
  background: #325aff;
  border: none;
  font-weight: 600;
  border-radius: 36px;
  padding: 6px 32px 7px;
  height: 36px;
  margin-top: 30px;
  margin-bottom: 40px;
}

#mktoForm_4776 .mktoButtonWrap.mktoRound .mktoButton:hover {
  border: none;
  background: #2848cc;
}

#mktoForm_4776 .mktoButtonWrap.mktoRound .mktoButton:active,
#mktoForm_4776 .mktoButtonWrap.mktoRound .mktoButton:focus {
  border: none;
  background: #2039a3;
}

#mktoForm_4776 .mktoError .mktoErrorMsg {
  background: #d0021b;
  box-shadow: none;
  border: none;
  text-shadow: none;
  border-radius: 0;
}

#mktoForm_4776 .mktoError .mktoErrorArrow {
  border: none;
  background: #d0021b;
}

#mktoForm_4776 .mktoGutter,
#mktoForm_4776 .mktoOffset {
  height: 0;
}

@media only screen and (max-width: 480px) {
  #mktoForm_4776,
  #mktoForm_4776 * {
    padding: 0;
  }

  #mktoForm_4776 .mktoFormRow .mktoRequiredField .mktoAsterix {
    left: -10px;
    top: 18px;
  }

  #mktoForm_4776 #FirstName,
  #mktoForm_4776 #LastName,
  #mktoForm_4776 #Email,
  #mktoForm_4776 #Company,
  #mktoForm_4776 #Country,
  #mktoForm_4776 #Phone,
  #mktoForm_4776 #Title,
  #mktoForm_4776 #typeofrequest,
  #mktoForm_4776 #afpcomoptin {
    height: 40px;
    margin-top: 0;
  }

  #mktoForm_4776 select.mktoField {
    height: 40px;
  }

  #mktoForm_4776 #MktoPersonNotes {
    height: 152px;
    margin-top: 0;
  }
}
#form-container option:nth-child(1),
#form-container select {
  color: rgb(51, 51, 51) !important;
}
#form-container select.mktoValid,
#form-container option:not(:nth-child(1)) {
  color: var(--afp-black) !important;
  font-style: normal;
}

/*responsive title and text*/
@media screen and (max-width: 992px) {
  .presentation-container-body {
    flex-wrap: wrap;
    justify-content: center;
  }
  .presentation-text-container {
    width: 90%;
    max-width: none;
    margin-bottom: 3em;
  }
  .presentation-illustration-container {
    width: 80%;
  }
  .landing-text {
    width: auto;
    margin: auto;
    margin-bottom: 3em;
  }
  #h1-landing {
    font-size: 2em;
    text-align: center;
  }
  .presentation-container {
    padding: 0;
  }
  #landing-button p {
    font-size: 1em;
    text-align: center;
    margin: auto;
  }
  .bounce-animation {
    font-size: 1.1em;
  }
  #h2-landing {
    font-size: 1.1em;
    text-align: center;
  }
  .title-h3 {
    font-size: 1.8em;
    text-align: center;
  }
  .h3-subtitle {
    font-size: 1.3em;
    text-align: center;
  }
  .text-bloc {
    font-size: 1em;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .acces-button-pink p {
    padding: 0.2em;
  }
}

@media screen and (max-width: 430px) {
  .presentation-button-text {
    display: none;
  }
  .presentation-content {
    padding: 0;
  }
  .central-title {
    font-size: 35px;
  }
}

/*Css drupal adaptation*/
#main-container img {
  margin: 0 !important;
}
#h3-central-header-offers {
  font-weight: bold;
  font-size: 1.17em;
  text-align: center;
}
.list_dotted li:before {
  display: none;
}
.list_dotted li {
  padding: 0;
}
#navbar-administration .navbar-tray-vertical > .navbar-lining {
  display: none !important;
}
.node-type-afp-produit
  .panel-pane.pane-entity-view.pane-node
  .line.mb1.bgblue.line.relative.mb2.pt1.pb2.pa0m {
  display: none;
}
.info_social.mb2 {
  display: none;
}
#form-container-double .mktoRequired input[type="checkbox"],
#form-container-double .mktoRequired input[type="radio"],
#form-container .mktoRequired input[type="checkbox"],
#form-container .mktoRequired input[type="radio"] {
  -webkit-appearance: auto;
}

/*For mozilla*/
#breadcrumb.line.hidem {
  display: none;
}

.arrow svg {
  margin: auto;
}
