@font-face {
    font-family: 'Arial';
    src: url('../assets/fonts/arial/arial.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Arial';
    src: url('../assets/fonts/arial/arialbold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family:"archer-pro";
    src: url('../assets/fonts/archer/ArcherBoldPro.otf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family:"archer-pro";
    src: url('../assets/fonts/archer/ArcherSemiboldPro.otf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family:"archer-pro";
    src: url('../assets/fonts/archer/ArcherMediumPro.otf') format('truetype');
    font-weight: 500;
}

:root {
    --primary-color: #262626;
    --secondary-color: #ffffff;;
    --tertiary-color: #FF0099;
    --quaternary-color: #FF6600;
}

/* General CSS Start */
* {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Arial";
    font-weight: 400;
  }
  
  body {
    text-align: center;
    color:var(--primary-color);
  }
  a {
    color: inherit;
    text-decoration: none;
    outline: none !important;
  }
  a:hover {
    color: inherit;
    text-decoration: none;
  }
  button:focus,
  input:focus {
    outline: none;
  }
h1,
h2,
h3,
h4,
h5,
h6,
h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 *{
    font-family:"archer-pro";
    font-weight: 700;
}
h1{
    font-size: 3.6rem;
}
h2{
    font-size: 3.4rem;
}
h3{
    font-size: 2.6rem;
}
h4{
    font-size: 2.4rem;
}
h5{
    font-size: 2.2rem;
}
h6{
    font-size: 2rem;
}
p {
    font-size: 1.8rem;
}

section{
    position: relative;
}
.section_container {
    margin: 0 auto;
    width: 100%;
    max-width: 144rem;
}
.primary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.8rem;
    background-color: var(--secondary-color);
    width: 29rem;
    height: 5.5rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border: none;
}
.primary-btn,
.primary-btn * {
    font-family:"archer-pro";
    text-transform: uppercase;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--quaternary-color);
}
.primary-btn span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.primary-btn-style2 {
    background-color: var(--tertiary-color);
}
.primary-btn-style2,
.primary-btn-style2 * {
    color: var(--secondary-color);
}
.primary-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgba(255, 102, 0, 1) 0%, rgba(255, 0, 153, 1) 100%);
    z-index: 1;
}
.primary-btn span.img img {
    width: 100%;
    display: block;
    z-index: 1;
}
.primary-btn span.img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}
.primary-btn,
.primary-btn *,
.primary-btn::after {
    transition-duration: 0.5s;
}
.trigger {
    position: absolute;
    width: 100%;
    z-index: 99;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    opacity: 0;
    z-index: -1;
}
#trigger1 {
    top: 70rem;
}
/* General CSS End */
/* Header Start */
header {
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 3.8rem;
    transform: translateX(-50%);
    width: 32.4rem;
}
header a,
header a img {
    display: block;
    width: 100%;
}
header a svg {
    width: 100%;
    height: auto;
}
main {
    position: relative;
    z-index: 1;
}
.header_bare {
    position: fixed;
    z-index: 11;
    background-color: var(--secondary-color);
    width: 100%;
    height: 10.3rem;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.15);
    left: 0;
    transition-duration: 0.6s;
    top: -11rem;
}
.header_bare.show {
    top: 0;
}
.header_container {
    display: flex;
    margin: 0 auto;
    width: 173.4rem;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}
.header_container .btns_holder {
    margin: 0;
    width: 60rem;
}
.header_container a {
    width: 23.2rem;
    display: block;
}
.header_container a img {
    width: 100%;
    display: block;
}
.wchf {
    margin: 0 auto 0 6.8rem;
    display: block;
    width: 25.9rem;
}
.header_container .btns_holder .primary-btn:nth-child(1) {
    background-color: var(--quaternary-color);
}
.header_container .btns_holder .primary-btn:nth-child(1) * {
    color: var(--secondary-color);
}
.header_container .btns_holder .primary-btn:nth-child(1) span.img {
    width: 3.3rem;
    margin-right: 0.91rem;
}
.header_container .btns_holder .primary-btn:nth-child(2) span.img {
    width: 1.8rem;
    margin-right: 0.74rem;
}
/* Header 1 End */
/* Section 1 Start */
.section1 {
    height: 90rem;
    background-image: url(../images/sec1.jpg);
    background-position: top center;
    background-size: cover;
    max-height: 100vh;
}
.section1 .section_container {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.sec1_content {
    width: 75rem;
    text-align: left;
    color: var(--secondary-color);
}
.sec1_content h1 {
    color: var(--tertiary-color);
    margin-bottom: 3rem;
}
.sec1_content h1,
.sec1_content h1 span {
    font-size: 8.4rem;
    line-height: 7.6rem;
    font-weight: 600;
}
.sec1_content h1 span {
    color: var(--quaternary-color);
}
.sec1_content p{
    font-size: 1.9rem;
    line-height: 2.8rem;
    font-weight: 400;
    margin: 0 auto 4rem 0;
    width: 72.6rem;
}
.btns_holder {
    margin: 0 auto 0 0;
    width: 62rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sec1_content .primary-btn:nth-child(1) span.img {
    width: 3.3rem;
    margin-right: 0.91rem;
}
.sec1_content .primary-btn:nth-child(2) span.img {
    width: 1.8rem;
    display: block;
    margin-right: 0.74rem;
}
.scroll-bottom {
    position: absolute;
    bottom: 2.9rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    width: 2.4rem;
    animation: jumpInfinite 1.5s infinite;
    margin-top: -20px;
}
@keyframes jumpInfinite {
  0% {
    bottom: 2.9rem;
  }
  50% {
    bottom: 1.9rem;
  }
  100% {
    bottom: 2.9rem;
  }
}
/* Section 1 End */
/* Section 2 Start */
.section2 {
    z-index: 2;
    background: linear-gradient(90deg,rgba(255, 102, 0, 1) 0%, rgba(255, 0, 153, 1) 100%);
    padding: 4.3rem 0 0 0;
    color: var(--secondary-color);
    height: 44.2rem;
}
.section2 .section_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.sec2_text_holder {
    text-align: left;
    width: 38.2rem;
}
.sec2_text_holder h2 {
    margin-bottom: 1.5rem;
}
.sec2_text_holder h2,
.sec2_text_holder h2 span {
    font-size: 5.2rem;
    line-height: 5.4rem;
}
.sec2_text_holder h2 span {
    background-color: var(--secondary-color);
    color: var(--quaternary-color);
    margin-top: 0.5rem;
    display: inline-block;
    padding: 0 0.5rem;
}
.sec2_text_holder h3,
.sec2_text_holder h3 span {
    font-size: 4.1rem;
    line-height: 4.6rem;
}
.sec2_slick {
    width: 100rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sec2_slide {
    margin: 0 auto;
    width: 25.3rem;
    height: 25.3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.13);
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.3s;
    cursor: context-menu;
}
.sec2_slide:hover {
    background-color: rgba(255, 255, 255, 0.23);
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.01);
}
.sec2_slide p {
    font-size: 2.9rem;
    line-height: 4rem;
    font-family:"archer-pro";
    font-weight: 500;
    color: var(--secondary-color);
}
.sec2_slide p span {
    font-size: 4.4rem;
    line-height: 4rem;
    font-family:"archer-pro";
    font-weight: 900;  
}
.sec2_slide p span sup {
    font-size: 3rem;
    line-height: 3rem;
    font-family:"archer-pro";
}
.sec2_slick div:nth-child(3) .sec2_slide {
    padding-bottom: 2.5rem;
}
/* Section 2 End */
/* Section 3 Start */
.section3 {
    background-color: #EFF2F4;
    padding: 7.3rem 0 14.4rem 0;
    z-index: 3;
}
.section3 .section_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.sec3_form {
    width: 72rem;
}
.sec3_text {
    width: 60rem;
    text-align: left;
    color: var(--quaternary-color);
}
.sec3_form-top,
.sec3_form-bottom {
    background-color: var(--secondary-color);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.sec3_text h2 {
    font-size: 3.8rem;
    line-height: 2.9rem;
    color: var(--quaternary-color);
    font-family:"archer-pro";
    font-weight: 700;
    margin-bottom: 3rem;
}
.sec3_text h2:nth-child(3){
    margin-top: 7rem;
}
.sec3_text ul {
    list-style: none;
}
.sec3_text li {
    font-size: 1.9rem;
    line-height: 2.8rem;
    color: var(--primary-color);
    font-family: 'Arial';
    font-weight: 400;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3.7rem;
}
.sec3_text li::after {
    content: '';
    position: absolute;
    width: 2.1rem;
    height: 1.7rem;
    background-image: url(../images/coeur_2.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: 0.7rem;
}
.sec3_form-top {
    padding: 5.8rem 3.9rem 3.4rem 3.9rem;
    text-align: left;
    margin-bottom: 1.3rem;
}
.sec3_form-top h2 {
    font-size: 5.3rem;
    line-height: 5.5rem;
    font-family:"archer-pro";
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.sec3_form-top p,
.sec3_form-top p b {
    font-size: 1.9rem;
    line-height: 2.8rem;
    font-family: 'Arial';
}
.sec3_form-top p {
    font-weight: 400;
    margin-bottom: 0;
}
.sec3_form-top p b {
    font-weight: 700;
}
.sec3_form-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 46.8rem;
    margin: 4rem auto 3.5rem auto;
}
.sec3_form-top-perso {
    width: 17.4rem;
}
.sec3_form-top-perso img {
    width: 100%;
    display: block;
    margin: 0 auto 1.5rem auto;
}
.sec3_form-top-perso p,
.sec3_form-top-perso p b {
    font-family: 'Arial';
}
.sec3_form-top-perso p {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 500;
}
.sec3_form-top-perso p b{
    font-size: 1.7rem;
    font-weight: 700;
    display: block;
}
.sec3_form{
    margin-top: -15.8rem;
}
.sec3_form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3.4rem 2rem 3.9rem;
}
.sec3_form-bottom .primary-btn {
    background-color: var(--quaternary-color);
}
.sec3_form-bottom .primary-btn, .sec3_form-bottom .primary-btn *{
    color: var(--secondary-color);
}
.sec3_form-bottom .primary-btn span.img img {
    width: 100%;
    display: block;
    z-index: 1;
}
.sec3_form-bottom .primary-btn span.img img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}
.sec3_form-bottom .primary-btn span.img {
    width: 3.3rem;
    margin-right: 0.91rem;
}
.jauge_holder h3,
.jauge_holder h3 span{
    font-family:"archer-pro";
    font-weight: 700;
    font-size: 3rem;
    line-height: 3rem;
    color: var(--primary-color);
}
.jauge_holder h3 span{
    color: var(--quaternary-color);
}
.jauge {
    width: 27.8rem;
    height: 1rem;
    border-radius: 0.6rem;
    background-color: rgba(60, 60, 60, 0.23);
    overflow: hidden;
    margin: 1rem auto;
}
.jauge-progress{
    margin: 0 auto 0 0;
    height: 100%;
    background-color: var(--quaternary-color);
}
.jauge_holder p,
.jauge_holder p span{
    font-family: 'Arial';
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: var(--primary-color);
}
/* Section 3 End */
/* Section 4 Start */
.section4 {
    z-index: 4;
    background: linear-gradient(90deg,rgba(255, 102, 0, 1) 0%, rgba(255, 0, 153, 1) 100%);
    padding: 5.6rem 0 8rem 0;
}
.section4 .section_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.sec4_text {
    width: 64.2rem;
    text-align: left;
    color: var(--secondary-color);
}
.sec4_text h2 {
    font-size: 4.6rem;
    line-height: 5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}
.sec4_text p {
    font-weight: 400;
    margin-bottom: 0;
}
.sec4_text p b {
    font-weight: 700;
}
.sec4_text p,
.sec4_text p b {
    font-size: 1.9rem;
    line-height: 2.8rem;
}
.sec4_slick {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 73.3rem;
    margin-top: auto;
    margin-bottom: -12.9rem;
}
.sec4_slide {
    width: 18.5rem;
    height: 18.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--secondary-color);
    box-shadow: 0 0 1.5rem rgba(255, 0, 153, 0.15);
}
.sec4_slide h3 {
    font-family:"archer-pro";
    font-size: 5.4rem;
    line-height: 5.4rem;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 0.5rem;
}
.sec4_slide p {
    font-family:"archer-pro";
    font-size: 1.8rem;
    line-height: 1.9rem;
    font-weight: 700;
}
.sec4_slick div:nth-child(2) .sec4_slide{
    padding-bottom: 2rem;
}
.sec4_img {
    width: 62rem;
    display: block;
    position: absolute;
    top: -18.4rem;
    right: 0;
}
/* Section 4 End */
/* Section 5 Start */
.section5 {
    overflow: hidden;
    background-color: var(--secondary-color);
    position: relative;
    padding: 12.5rem 0 8.6rem 0;
    z-index: 3;
}
.section5 .section_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
}
.trame {
    position: absolute;
    width: 124.2rem;
    display: block;
    z-index: 1;
    left: -49.4rem;
    top: -15.9rem;
}
.sec5_txt1 {
    width: 38.7rem;
    position: relative;
    margin-top: -10rem;
}
.sec5_txt2 {
    width: 77.1rem;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sec5_txt2 h2 {
    font-family:"archer-pro";
    font-weight: 700;
    font-size: 5.3rem;
    line-height: 5.5rem;
    margin-bottom: 3rem;
    width: 100%;
}
.sec5_txt2 p {
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 2.8rem;
    margin-bottom: 2rem;
    width: 100%;
}
.sec5_txt2 p,
.sec5_txt2 p b {
    font-family: 'Arial';
}
.sec5_txt2 p b {
    font-weight: 700;
}
.rose {
    color: var(--tertiary-color) !important;
}
.sec5_txt2 ul {
    list-style: none;
    padding-left: 3.5rem;
}
.sec5_txt2 li {
    font-size: 1.9rem;
    line-height: 2.8rem;
    color: var(--primary-color);
    font-family: 'Arial';
    font-weight: 400;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3.7rem;
}
.sec5_txt2 li b {
    font-weight: 700;
}
.sec5_txt2 li::after {
    content: '';
    position: absolute;
    width: 2.1rem;
    height: 1.7rem;
    background-image: url(../images/coeur_3.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: 0.7rem;
}
.sec5_txt2 .primary-btn {
    margin-top: 4rem;
}
.sec5_txt1-union {
    width: 25.2rem;
    height: 22.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    z-index: 2;
}
.sec5_txt1-union svg {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    z-index: 1;
}
.sec5_txt1-union p {
    font-family: 'Arial';
    font-size: 2.2rem;
    line-height: 2.2rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}
.sec5_txt1-union h3 {
    font-family:"archer-pro";
    font-size: 6.2rem;
    line-height: 6rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}
/*  */
.sec5_txt1-circle {
    width: 15.9rem;
    height: 15.9rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: -1rem auto 0 auto;
    z-index: 1;
    padding-top: 1rem;
}
.sec5_txt1-circle svg {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.sec5_txt1-circle p {
    font-family: 'Arial';
    font-size: 1.8rem;
    line-height: 1.8rem;
    text-transform: uppercase;
    color: var(--tertiary-color);
    font-weight: 700;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}
.sec5_txt1-circle h3 {
    font-family:"archer-pro";
    font-size: 5.8rem;
    line-height: 4.5rem;
    color: var(--tertiary-color);
    font-weight: 700;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}
.sec5_txt1-circle h5 {
    font-family: 'Arial';
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: var(--tertiary-color);
    font-weight: 700;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}
/* Section 5 End */
/* Section 6 Start */
.section6 {
    z-index: 6;
    background-image: url(../images/sec6.png);
    background-position: center;
    background-size: cover;
    padding: 16.3rem 0 5.9rem 0;
}
.section6 .section_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.slide6_box {
    width: 34.5rem;
    height: 41.3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-right: 8.7rem;
    background-color: var(--secondary-color);
    padding: 8rem 1rem 3.4rem 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
}
.slide6_box h2 {
    font-family:"archer-pro";
    font-weight: 700;
    font-size: 6.2rem;
    line-height: 5.6rem;
    color: var(--quaternary-color);
    margin-bottom: 1.1rem;
}
.slide6_box h5 {
    font-family: 'Arial';
    font-size: 1.7rem;
    line-height: 1.7rem;
    color: var(--quaternary-color);
    font-weight: 700;
    margin-bottom: 2rem;
}
.slide6_box p {
    font-family: 'Arial';
    font-size: 1.9rem;
    line-height: 2.8rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: auto;
}
.slide6_box .primary-btn {
    height: 5.5rem;
}
.sec5_txt2 .primary-btn span.img,
.slide6_box .primary-btn span.img  {
    width: 1.8rem;
    display: block;
    margin-right: 0.74rem;
}
.sec6_ico {
    display: block;
    width: 15.7rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10.3rem;
}
/* Section 6 End */
/* Section 7 Start */
.section7 {
    z-index: 7;
    background: linear-gradient(90deg, rgba(255, 102, 0, 1) 0%, rgba(255, 0, 153, 1) 100%);
    padding: 6rem 0 7rem 0;
}
.section7 .section_container {
    max-width: 89.2rem;
}
.section7 h2 {
    font-family:"archer-pro";
    font-weight: 700;
    font-size: 4.6rem;
    line-height: 4.4rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
}
.section7 p {
    font-family: 'Arial';
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 2.9rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
}
.sec7_holder {
     display: flex;
    justify-content: space-between;
    align-items: center;  
    width: 100%; 
}
.sec7_media {
    width: 29.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sec7_media-box {
    width: 6.2rem;
    position: relative;
}
.sec7_media-box img {
    display: block;
    width: 100%;
    transition-duration: 0.3s;
}
.sec7_media-box img:nth-child(1) {
    position: relative;
    z-index: 1;
}
.sec7_media-box img:nth-child(2) {
    position: absolute;
    opacity: 0;
    z-index: 2;
    top: 0;
    left: 0;
}
.sec7_form {
    width: 57.6rem;
    border-radius: 1.1rem;
    background-color: var(--secondary-color);
    height: 6.2rem;
    position: relative;
    /* overflow: hidden; */
}
.sec7_form input {
    width: 100%;
    height: 100%;
    padding: 1.1rem 25.1rem 1.1rem 1.1rem;
    font-family: 'Arial';
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.9rem;
    color: var(--primary-color);
    background-color: transparent;
}
.sec7_form .primary-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.1rem;
    height: 4.7rem;
    width: 22.7rem;
}
/* Section 7 End */
/* Footer Start */
footer {
    background-color: #453E3E;
    color: var(--secondary-color);
    height: 4.3rem;
}
.footer_container {
    width: 100%;
    max-width: 144rem;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
footer a,
footer span {
    font-family: 'Arial';
    font-size: 1.2rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    font-weight: 400;
}
footer span {
    display: block;
    padding: 0 3.4rem;
    cursor: context-menu;
    font-size: 1.6rem;
}
footer p,
footer p span {
    font-family: 'Arial';
    font-size: 1.2rem;
    line-height: 1.2rem;
    text-transform: initial;
    font-weight: 400;
    display: initial;
    text-align: left;
    padding: 0;
}
footer p{
    text-transform: uppercase;
}
/* Footer End */
.header_container a.primary-btn {
    display: flex;
}

#popup-overlay {
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:rgba(0,0,0,0.6); 
    z-index:9999; 
}
#popup-content {
    display: flex;
    justify-content:center; 
    align-items:center;
    width:100%; 
    height:100%; 
    position: relative;
}
#popup-close {
    position:absolute;
    top:2rem;
    right:2rem;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    font-size: 3rem;
    cursor: pointer;
    line-height: 4.8rem;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}
#popup-content iframe {
    width: 540px;
    height: 564px;
}
.sib-form {
    padding: 0;
    background-color: transparent;
}
.label-error{
    position: absolute;
    top: calc(100% + 1rem);
    left: calc(calc(100% - 20.7rem) / 2);
    background-color: var(--secondary-color);
    border-radius: 1rem;
    font-family: 'Arial';
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: 400;
    padding: 1rem;
    transform: translateX(-50%);
    color: red;
    opacity: 0;
    transition-duration: 0.3s;
}
.label-error.active {
    top: calc(100% + 1.5rem);
    opacity: 1;
}