<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ctaBloc {
  padding: 109px 24px 96px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 88px;
}

@media (max-width: 767px) {
  .ctaBloc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}

.ctaBloc__text {
  -ms-flex-preferred-size: 41%;
  flex-basis: 41%;
}

@media (max-width: 767px) {
  .ctaBloc__text {
    text-align: center;
  }
}

.ctaBloc__text h1 {
  font-size: 40px;
  line-height: 48px;
  margin: 16px 0;
}

@media (max-width: 767px) {
  .ctaBloc__text .uptitle {
    font-size: 10px;
    line-height: 13px;
  }

  .ctaBloc__text h1 {
    font-size: 24px;
    line-height: 28px;
  }
}


.ctaBloc__text h2 {
  margin-bottom: 24px;
}

.ctaBloc__text .button {
  height: initial;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  background: #00BCBB;
}

.ctaBloc__text .button:hover {
  background: #1E9F9F;
}

@media (max-width: 767px) {
  .ctaBloc__text .button {
    margin: auto;
  }
}


.ctaBloc__text .button::before {
  content: url(../images/icon-download.svg);
}

.ctaBloc__text .button::after {
  display: none;
}

.ctaBloc__text .subtitle {
  font-size: 16px;
  line-height: 150%;
}

.ctaBloc__text p, .ctaBloc__text .single .singleContent li, .single .singleContent .ctaBloc__text li {
  margin-bottom: 24px;
}

.ctaBloc__text ul {
  font-size: 14px;
}

.ctaBloc__text ul li {
  list-style: disc;
  margin-left: 20px;
}

.ctaBloc__image {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

@media (max-width: 767px) {
  .ctaBloc__image {
    max-width: 400px;
  }
}

.ctaBloc .pdfViewer {
  background-color: #00bcbb;
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 50px;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  cursor: pointer;
}

/* PDF RENDERER */
.ctaBloc .my-pdf-viewer {
  display: none;
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 110px);
  background-color: #FFFFFF;
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.ctaBloc .my-pdf-viewer.show {
  display: flex;
}

/* .my-pdf-viewer #canvas_container {
  width: auto;
  height: 100%;
  text-align: center;
} */

.ctaBloc .my-pdf-viewer #pdf_render {
  /* width: auto;
  height: 100%; */
  max-width: 100%;
}

.ctaBloc .my-pdf-viewer #navigation_controls {
  position: fixed;
  height: 110px;
  max-height: 110px;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1E3246;
  color: #FFFFFF;
  padding: 0 32px;
}

.ctaBloc .my-pdf-viewer #navigation_controls button {
  cursor: pointer;
}

/* ZOOM CONTROLS */
.ctaBloc .my-pdf-viewer #navigation_controls #zoom_controls {
  display: flex;
  height: 46px;
  justify-content: center;
  align-items: center;
  border: 1px solid #D7E3EE;
  border-radius: 4px;
}

.ctaBloc .my-pdf-viewer #navigation_controls #zoom_controls button {
  color: #00bcbb;
}

.ctaBloc .my-pdf-viewer #navigation_controls #zoom_controls button#zoom_in,
.ctaBloc .my-pdf-viewer #navigation_controls #zoom_controls button#zoom_out {
  height: 100%;
  padding: 0 10px;
}

.ctaBloc .my-pdf-viewer #navigation_controls #zoom_controls button#zoom_in {
  border-left: 1px solid #D7E3EE;
}

.ctaBloc .my-pdf-viewer #navigation_controls #zoom_controls button#zoom_out {
  border-right: 1px solid #D7E3EE;
}

.ctaBloc .my-pdf-viewer #navigation_controls #zoom_controls #current_zoom {
  padding: 0 25px;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation .pdf-current-page,
.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation .pdf-total-page {
  width: 70px;
  height: 48px; 
  opacity: 1;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  transition: none;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation #go_first,
.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation #go_last {
  background: url(../images/cta-navigation-2.svg) no-repeat;
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation #go_last {
  transform: rotate(180deg);
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation #go_previous,
.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation #go_next {
  background: url(../images/cta-navigation.svg) no-repeat;
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation #go_next {
  transform: rotate(180deg);
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation #go_previous:hover,
.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation #go_next:hover,
.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation #go_first:hover,
.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation #go_last:hover {
  opacity: 1;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation .pdf-current-page {
  background-color: #000000;
  border-radius: 4px !important;
  text-align: center;       
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation .pdf-total-page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 70px;
  border-left: 1px solid #FFFFFF;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-navigation .pdf-total-page:hover {
  background: transparent;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-cta-tools {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-btn-navigation,
.ctaBloc .my-pdf-viewer #navigation_controls .pdf-btn-close {
  background-color: transparent;
  border-radius: 0;
  padding: 0 4px;
  font-size: 20px;
  line-height: 22px;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-cta-tools .pdf-cta {
  display: block;
  position: relative;
  background-color: #00bcbb;
  color: #FFFFFF;
  padding: 12px 52px 12px 20px;
  border-radius: 50px;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  cursor: pointer;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-cta-tools .pdf-cta::after {
  position: absolute;
  content: url(../images/pdf-cta-download.svg);
  width: 16px;
  height: 16px;
  right: 20px;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-cta-tools .pdf-cta:focus {
  outline: none;
  outline-offset: 0;
  text-decoration: none;
}

.ctaBloc .my-pdf-viewer #navigation_controls .pdf-btn-close {
  background: url(../images/pdf-close.svg) no-repeat;
  width: 40px;
  height: 40px;
}</pre></body></html>