@charset "UTF-8";
/* Variables */
:root {
  --padding:2px;
  --border-size:2px;
  --gap-form:1rem;
  --light-green:#56dbcb;
  --medium-green:#009a90;
  --dark-green:#006158;
  --dark-color:#333;
  --primary-color:var(--light-green);
  --secondary-color:white;
  --background-color:transparent;
  --radius:2rem;
  --transition:all .3s ease-in-out;
}

/*BOOTSTRAP GRID*/
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*, ::after, ::before {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1400px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1600px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 13;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

@font-face {
  font-family: "DIN Pro";
  src: url("../font/DINPro-Light.eot");
  src: local("DIN Pro Light"), local("DINPro-Light"), url("../font/DINPro-Light.eot?#iefix") format("embedded-opentype"), url("../font/DINPro-Light.woff2") format("woff2"), url("../font/DINPro-Light.woff") format("woff"), url("../font/DINPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Pro";
  src: url("../font/DINPro.eot");
  src: local("DIN Pro"), local("DINPro"), url("../font/DINPro.eot?#iefix") format("embedded-opentype"), url("../font/DINPro.woff2") format("woff2"), url("../font/DINPro.woff") format("woff"), url("../font/DINPro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Pro";
  src: url("../font/DINPro-Bold.eot");
  src: local("DIN Pro Bold"), local("DINPro-Bold"), url("../font/DINPro-Bold.eot?#iefix") format("embedded-opentype"), url("../font/DINPro-Bold.woff2") format("woff2"), url("../font/DINPro-Bold.woff") format("woff"), url("../font/DINPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Pro Cond";
  src: url("../font/DINPro-CondensedMedium.eot");
  src: local("DIN Pro Condensed Medium"), local("DINPro-CondensedMedium"), url("../font/DINPro-CondensedMedium.eot?#iefix") format("embedded-opentype"), url("../font/DINPro-CondensedMedium.woff2") format("woff2"), url("../font/DINPro-CondensedMedium.woff") format("woff"), url("../font/DINPro-CondensedMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Pro";
  src: url("../font/DINPro-Medium.eot");
  src: local("DIN Pro Medium"), local("DINPro-Medium"), url("../font/DINPro-Medium.eot?#iefix") format("embedded-opentype"), url("../font/DINPro-Medium.woff2") format("woff2"), url("../font/DINPro-Medium.woff") format("woff"), url("../font/DINPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Pro Cond";
  src: url("../font/DINPro-CondensedBold.eot");
  src: local("DIN Pro Condensed Bold"), local("DINPro-CondensedBold"), url("../font/DINPro-CondensedBold.eot?#iefix") format("embedded-opentype"), url("../font/DINPro-CondensedBold.woff2") format("woff2"), url("../font/DINPro-CondensedBold.woff") format("woff"), url("../font/DINPro-CondensedBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN Pro Cond";
  src: url("../font/DINPro-CondensedRegular.eot");
  src: local("DIN Pro Condensed Regular"), local("DINPro-CondensedRegular"), url("../font/DINPro-CondensedRegular.eot?#iefix") format("embedded-opentype"), url("../font/DINPro-CondensedRegular.woff2") format("woff2"), url("../font/DINPro-CondensedRegular.woff") format("woff"), url("../font/DINPro-CondensedRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "square";
  src: url("../font/square721bold.eot"); /* IE9 Compat Modes */
  src: url("../font/square721bold.eot?#iefix") format("embedded-opentype"), url("../font/square721bold.woff2") format("woff2"), url("../font/square721bold.woff") format("woff"), url("../font/square721bold.ttf") format("truetype"), url("../font/square721bold.svg") format("svg"); /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "DIN Pro", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1d1d1b;
  max-width: 100vw;
}

html, body {
  overflow-x: hidden;
  position: relative;
  left: 0;
}

p strong {
  font-weight: 500;
}

p {
  line-height: 1.4;
}
p a {
  font-weight: 500;
}

*, :before, :after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  user-select: none;
}

section {
  padding: 5rem 5vw 0 5vw;
}

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

.btn {
  padding: 0.7rem 2rem 0.7rem 2rem;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  cursor: pointer;
  position: relative;
  border-radius: 2rem;
  background: #56dbcb;
  font-family: "square", sans-serif;
  text-transform: uppercase;
  border: none;
  outline: none;
  line-height: 1.2;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.btn:hover {
  background: #006158;
}
.btn.border {
  background-color: transparent;
  color: #56dbcb;
  border: 2px solid #56dbcb;
}
.btn.border:hover {
  background: #56dbcb;
  color: #fff;
}
.btn.white {
  background-color: #fff;
  color: #56dbcb;
}
.btn.white:hover {
  background: #1d1d1b;
  color: #fff;
}

.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  font-size: 1.8rem;
  font-family: "square", sans-serif;
  text-transform: uppercase;
  text-wrap: balance;
}
.title.center {
  text-align: center;
  align-items: center;
}
.title.sub p:last-child {
  font-size: 1.1rem;
}
.title.white {
  color: #fff;
}
.title.white p:nth-child(2) {
  color: #56dbcb;
}
.title.green {
  color: #56dbcb;
}
.title.green p:nth-child(2) {
  color: #1d1d1b;
}

.secondTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  font-size: 1.4rem;
  font-family: "square", sans-serif;
  text-transform: uppercase;
}
.secondTitle.center {
  text-align: center;
  align-items: center;
}
.secondTitle.sub p:last-child {
  font-size: 1.1rem;
}
.secondTitle.white {
  color: #fff;
}
.secondTitle.white p:nth-child(2) {
  color: #56dbcb;
}
.secondTitle.green {
  color: #56dbcb;
}
.secondTitle.green p:nth-child(2) {
  color: #1d1d1b;
}

.block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.coverImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.roundedImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
  border-radius: 2rem;
}

.text {
  margin: 1.5rem 0;
  max-width: 100%;
}
.text p {
  width: 750px;
  max-width: 100%;
  margin: 0.75rem 0;
}
.text p strong {
  text-decoration: underline;
}
.text ul, .text ol {
  margin: 1rem 0;
  list-style: disc;
  padding-left: 2rem;
}
.text ul li, .text ol li {
  margin: 1.1rem 0;
  line-height: 1.2;
}
.text.center p {
  text-align: center;
  margin: 0.75rem auto;
}
.text.center ul {
  text-align: center;
}
.text.center ul li {
  margin: 1.1rem auto;
}
.text.justify p {
  text-align: justify;
}

ol {
  counter-reset: list-counter;
}
ol > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 4rem;
  margin: 1rem 0;
}
ol > li strong {
  font-family: "square", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
}
ol > li::before {
  content: "0" counter(list-counter);
  position: absolute;
  left: 0;
  top: -.5rem;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  font-weight: bold;
  color: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  font-family: "square", sans-serif;
  background-color: #56dbcb;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

/*Swiper common*/
.swiper {
  width: 100%;
}
.swiper:not(.swiper-initialized) .tranding-slider-control {
  display: none;
}
.swiper.swiper-initialized {
  padding-bottom: 4rem;
}

.tranding-slider-control {
  position: absolute;
  bottom: 0;
  height: 3rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.swiper-button-next {
  position: initial;
  width: 2rem;
  height: 2rem;
  margin-top: 0;
  margin: 0 1rem;
}
.swiper-button-next svg {
  width: 2rem;
  height: 2rem;
  stroke: #1d1d1b;
  stroke-width: 1px;
}
.swiper-button-next:after {
  content: none;
}

.swiper-button-prev {
  position: initial;
  width: 2rem;
  height: 2rem;
  margin-top: 0;
  margin: 0 1rem;
}
.swiper-button-prev svg {
  width: 2rem;
  height: 2rem;
  stroke: #1d1d1b;
  stroke-width: 1px;
}
.swiper-button-prev:after {
  content: none;
}

.swiper-pagination {
  position: initial;
  display: flex;
  align-items: center;
}

.swiper-pagination:not(.swiper-pagination-bullets-dynamic){
  width: auto !important;
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #1d1d1b;
  transform: scale(0.8);
  transition: background-color 0.2s cubic-bezier(0, 0.07, 0.57, 0.99), transform 0.4s cubic-bezier(0, 0.07, 0.57, 0.99);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1d1d1b;
  transform: scale(1);
}

.basicAppear {
  opacity: 0;
}
.basicAppear.-y {
  transform: translate(0, 50px);
}
.basicAppear.noOpaq {
  opacity: 1;
}
.basicAppear.-xLeft {
  transform: translate(-200px, 0);
}
.basicAppear.-xRight {
  transform: translate(200px, 0);
}

.stickyAppear.toScaleImg {
  transform: scale(1.2);
}
.stickyAppear.toScale {
  transform: scale(0.7);
}
.stickyAppear.fromBtm {
  transform: translate(0, 50px);
}
.stickyAppear.fromBtm.increase {
  transform: translate(0, 100px);
}
.stickyAppear.fromTop {
  transform: translate(0, -50px);
}
.stickyAppear.fromTop.increase {
  transform: translate(0, -100px);
}
.stickyAppear.fromLeft {
  transform: translate(-50px, 0);
}
.stickyAppear.fromLeft.increase {
  transform: translate(-100px, 0);
}
.stickyAppear.fromRight {
  transform: translate(50px, 0);
}
.stickyAppear.fromRight.increase {
  transform: translate(100px, 0);
}

.loading::before,
.loading::after {
  content: "";
  position: fixed;
  z-index: 4000;
}

.loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: #1d1d1b;
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
/*HEADER*/
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 2rem 5%;
  width: 100%;
  z-index: 10;
  position: fixed;
  background-color: rgba(255, 255, 255, 0);
}

.logo {
  width: 400px;
}

.header_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
}

.topLinks {
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}
.topLinks p {
  text-transform: uppercase;
  font-weight: bold;
}
.topLinks p strong {
  color: #56dbcb;
  font-weight: bold;
}

.menuContainer{
  max-width: 100%;
  & nav{
    max-width: 100%;
  }
}
.menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.menu li {
  margin: 0 0.5rem;
  padding: 0.5rem 0;
}
.menu li a {
  padding: 0.5rem 2rem;
  color: #fff;
  background-color: #56dbcb;
  border-radius: 2rem;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  font-family: "square", sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.menu li a:hover {
  background-color: #1d1d1b;
  color: #fff;
}
.menu li.secondary {
  display: none;
}

#menuTrigger {
  visibility: hidden;
  position: absolute;
  right: -100000px;
  opacity: 0;
}

.btnMenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background-color: #56dbcb;
  border-radius: 50%;
  position: fixed;
  right: calc(5% - 2.5rem);
  top: 4.3rem;
}
.btnMenu span {
  display: block;
  width: calc(100% - 1rem);
  height: 2px;
  background-color: #1d1d1b;
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.btnMenu.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.btnMenu.open span:nth-child(2) {
  opacity: 0;
}
.btnMenu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.langContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  right: calc(5% - 2.5rem);
  top: 1.65rem;
}
.langContainer span {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  padding: 0.25rem;
  margin: 0.2rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-transform: uppercase;
  background-color: #56dbcb;
  border-radius: 50%;
}
.langContainer span, .langContainer a {
  width: 2rem;
  height: 2rem;
  color: #1d1d1b;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.langContainer a{
  color: #fff;
}
.langContainer.open #langSwitch {
  -webkit-user-select: initial;
     -moz-user-select: initial;
          user-select: initial;
  pointer-events: initial;
}

#langSwitch {
  position: absolute;
  width: 2rem;
  height: auto;
  opacity: 0;
  top: calc(100% + 5px);
  right: 0;
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 12;
  background-color: #56dbcb;
  border-radius: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
#langSwitch li {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0.2rem 0;
  transform: translate(0, 5px);
  opacity: 0;
}

body.menuOpen #langSwitch {
  background-color: #006058;
  position: fixed;

}body.menuOpen .langContainer span{
  border: 1px solid #1d1d1b;
}
body.menuOpen .topLinks {
  display: none;
}
body.menuOpen .header_right {
  background-color: #56dbcb;
  padding: 6rem 5% 2rem 5%;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  opacity: 0;
}
body.menuOpen .header_right:before {
  content: "";
  width: 80%;
  height: 80%;
  display: block;
  position: absolute;
  left: 10%;
  top: 10%;
  background-image: url("../img/ripack-pastille.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.05;
}
body.menuOpen .menu {
  width: 500px;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
}
body.menuOpen .menu li {
  width: 100%;
  transform: translate(0, 20px);
  opacity: 0;
}
body.menuOpen .menu li a {
  background-color: #006158;
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}
body.menuOpen .menu li.secondary {
  display: flex;
}
body.menuOpen .btnMenu {
  background-color: #1d1d1b;
}
body.menuOpen .btnMenu span {
  background-color: #fff;
}

/* HERO SECTION */
.heroSection {
  padding: 15rem 5vw 10rem 5vw;
  position: relative;
}

.heroBackground {
  background-image: url("../img/texture-craft-test-2.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
}

.page-template-page-accueil .heroTitle {
  font-size: 4rem;
}
.page-template-page-accueil .heroTitle p strong {
  font-size: 4rem;
}

.heroTitle {
  color: #56dbcb;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.heroTitle p {
  transform: translate(-50px, 0);
  opacity: 0;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.heroTitle p > strong {
  color: transparent;
  font-size: 3rem;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #1d1d1b;
}
.heroTitle em {
  font-style: italic;
  color: #1d1d1b;
  font-size: 1rem;
  line-height: 1.3;
}
.heroTitle em strong {
  text-decoration: underline;
}

.heroBtn {
  background-color: #56dbcb;
  padding: 0.6rem 2rem 0.6rem 3rem;
  color: #1d1d1b;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: "square", sans-serif;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin: 1rem 0;
  border-radius: 3rem;
  position: relative;
  transform: translate(-50px, 0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.heroBtn p:nth-child(2) {
  font-size: 1.2rem;
}
.heroBtn svg {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 1rem;
  top: calc(50% - 10px);
}
.heroBtn:hover {
  background-color: #006158;
  color: #fff;
}

.heroVisual {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.heroVisualContainer {
  position: relative;
  width: 570px;
  max-width: 100%;
}
.heroVisualContainer .pistoletRipack {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
}
.heroVisualContainer .logoAndCircle {
  width: 100%;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: rotate(45deg);
}
.heroVisualContainer .leaf {
  opacity: 0;
}
.heroVisualContainer .leafTop {
  position: absolute;
  top: -3rem;
  left: 10%;
  width: 220px;
  height: auto;
  z-index: 2;
  transform: translate(-50px, -40px);
}
.heroVisualContainer .leafBtm {
  position: absolute;
  bottom: -5rem;
  left: calc(50% - 150px);
  width: 300px;
  height: auto;
  z-index: 2;
  transform: translate(50px, 40px);
}
.heroVisualContainer .leafRight {
  position: absolute;
  top: calc(50% - 60px);
  right: -4rem;
  width: 140px;
  height: auto;
  z-index: 2;
  transform: translate(50px, 0);
}
.heroVisualContainer .shape {
  position: absolute;
  width: 380px;
  height: calc(100% + 10rem);
  top: -4rem;
  left: calc(50% - 190px);
  z-index: 0;
  background-color: #56dbcb;
  border-radius: 3rem 0 3rem 0;
  mix-blend-mode: multiply;
  transform: scaleY(0);
  transform-origin: 100% 100%;
}

.videoBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 2;
  left: 2.5rem;
  bottom: 10%;
  cursor: pointer;
  transform: scale(0.8);
  opacity: 0;
}
.videoBtn div {
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.videoBtn div svg {
  fill: #56dbcb;
  width: 100%;
  height: 100%;
}
.videoBtn p {
  text-transform: uppercase;
  color: #009f94;
  font-size: 0.9rem;
  font-weight: bold;
}
.videoBtn:hover div {
  transform: scale(1.1);
}

.swiperProcess {
  margin-bottom: 1rem;
}
.swiperProcess:not(.swiper-initialized) .swiper-wrapper {
  justify-content: center;
}
.swiperProcess:not(.swiper-initialized) .swiper-slide {
  width: 370px;
  margin: 0 2rem;
  padding: 1rem 0;
}
.swiperProcess:not(.swiper-initialized) .swiper-slide:first-child .processCardImg {
  margin-bottom: -2rem;
}
.swiperProcess:not(.swiper-initialized) .swiper-slide:last-child:after {
  content: none;
}
.swiperProcess:not(.swiper-initialized) .swiper-slide:after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: calc(50% - 1rem);
  right: -3rem;
  background-color: #56dbcb;
  border-radius: 50%;
  z-index: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNOSAxOGw2LTYtNi02Ii8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.swiperProcess{
  & .swiper-pagination-bullet {
      width: 2rem;
      height: 2rem;
      background-color: #fff;
      border: 1px solid #fff;
      font-family: 'square', sans-serif;
      font-size: .9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      &.swiper-pagination-bullet-active {
        background-color: #1d1d1b;
        color: #fff;
        border: 1px solid #1d1d1b;
      }
  }
}

.processCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  align-items: stretch;
  background-color: #56dbcb;
  border-radius: 3rem;
  padding: 1rem;
}

.processCardContent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  flex: 1;
  margin-bottom: 1rem;
}
.processCardContent h3 {
  font-family: "square", sans-serif;
  text-transform: uppercase;
}
.processCardContent p {
  font-family: "square", sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #fff;
}

.processCardImg {
  height: 250px;
  padding: 0 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.fonctionnement {
  padding-top: 20rem;
  margin-top: -16rem;
  background-image: url("../img/texture-craft-green-test.jpg");
  background-size: cover;
  background-position: center;
}
.fonctionnement .row {
  justify-content: center;
}
.fonctionnement .col-12:first-child {
  margin-bottom: 5rem;
}

.visualAndVideoBtnContainer {
  width: 360px;
  position: relative;
}
.visualAndVideoBtnContainer .pistoletVideo {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visualAndVideoBtnContainer .logoAndCircle {
  width: 100%;
  position: relative;
  z-index: 1;
}
.visualAndVideoBtnContainer .leafTop {
  position: absolute;
  top: -1rem;
  left: 10%;
  width: 140px;
  height: auto;
  z-index: 2;
  transform: rotate(-20deg);
}
.visualAndVideoBtnContainer .leafBtm {
  position: absolute;
  bottom: -6rem;
  left: calc(50% - 100px);
  width: 300px;
  height: auto;
  z-index: 2;
}
.visualAndVideoBtnContainer .videoBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 2;
  width: 7rem;
  height: 7rem;
  left: calc(50% - 3.5rem);
  bottom: calc(50% - 3.5rem);
  cursor: pointer;
  opacity: 1;
  transform: none;
}
.visualAndVideoBtnContainer .videoBtn div {
  width: 100%;
  height: 100%;
}
.visualAndVideoBtnContainer .videoBtn div svg {
  fill: #fff;
}

.fonctionnementList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: initial;
  flex-grow: initial;
  width: 900px;
  max-width: 100%;
  & li{
    margin: 2rem 0;
    & strong{
      text-wrap: balance;
      display: inline-block;
    }
  }
  & ul{
    padding-left: 20px;
    list-style: disc;
    & li{
      margin: .5rem 0;
    }
  }
}

.buyPistolTitle {
  background-color: #006158;
  color: #fff;
  padding-top: 10rem;
  padding-bottom: 15rem;
  margin-top: -1rem;
}

.buyPistol {
  margin-top: -17.5rem;
}

.swiperPistol {
  margin-bottom: 3rem;
}
.swiperPistol:not(.swiper-initialized) .swiper-wrapper {
  justify-content: center;
}
.swiperPistol:not(.swiper-initialized) .swiper-slide {
  width: 370px;
  margin: 0 2rem;
  padding: 1.5rem 0;
}

.pistolCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  background-color: #56dbcb;
  border-radius: 3rem;
  padding: 2rem 1rem;
  transition: background-color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  position: relative;
}
.pistolCard .productItemGrade {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 4rem;
  height: 4rem;
  z-index: 2;
}
.pistolCard .btn {
  margin-bottom: -3rem;
  background-color: #006158;
  color: #56dbcb;
  transition: transform 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.pistolCard:hover {
  background-color: #48beb0;
}
.pistolCard:hover .btn {
  transform: scale(1.1);
}
.pistolCard:hover .pistolCardVisual > img {
  transform: scale(1);
  transition: transform 2s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.pistolCard:hover .pistolCardBack {
  transform: rotate(45deg);
  transition: transform 2s cubic-bezier(0, 0.07, 0.57, 0.99);
}

.pistolCardVisual {
  position: relative;
  padding: 1rem;
  flex: 1;
  width: 300px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.pistolCardVisual > img {
  position: relative;
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  user-select: none;
  aspect-ratio: 1;
  object-fit: contain;
}

.pistolCardBack {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.pistolCardBack img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.pistolInfos {
  display: flex;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 1rem;
  &.renewPistolInfo{
    & .pistolName{
      & > span{
        display: flex;
        flex-direction: column;
      }
    }
    

  }
}

.pistolName {
  background-color: #fff;
  color: #1d1d1b;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border-radius: 2rem 0 0 2rem;
  width: calc(100% - (100px - 2.5rem));
}
.pistolName span {
  font-family: "square", sans-serif;
  color: #56dbcb;
  text-transform: uppercase;
  &.pistolGrade{
    font-size: 0.7rem;
    color: #006158;
  }
}
.pistolName p {
  font-family: "square", sans-serif;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #006158;
}

.pistolPrice {
  padding: 0.5rem 1rem;
  background-color: #006158;
  color: #56dbcb;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 2rem;
  margin-left: -2rem;
  width: 100px;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faqHome .col-12 {
  margin-bottom: 3rem;
  &:last-child {
    margin-top: 3rem;
    margin-bottom: 0;
  }
}

.partenaires .col-12 {
  margin-bottom: 3rem;
}

.swiperPartners .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.partnerCard {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 1rem;
  background-color: #e6e6e6;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.greenPart {
  padding: 0;
  position: relative;
  margin-top: 5rem;
}
.greenPart .greenPartBack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #56dbcb;
}
.greenPart .greenPartBack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}
.greenPart .greenPartBack:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #006158 50%, rgba(0, 95, 89, 0) 100%);
  z-index: 1;
}
.greenPart .container-fluid {
  padding: 5rem 5%;
  position: relative;
  z-index: 1;
}

.greenPartList {
  color: #fff;
  width: 580px;
  max-width: 100%;
}
.greenPartList ol {
  padding-left: 5%;
}
.greenPartList ol li {
  margin: 2rem 0;
}
.greenPartList ol li:before {
  top: calc(50% - 1.5rem);
}

.greenPartIndexContainer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 2rem;
}

.greenPartIndex {
  border: 6px solid #56dbcb;
  border-radius: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

.indexItem {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin: 1.5rem;
}
.indexItem .number {
  width: 6rem;
  height: 6rem;
  background-color: #56dbcb;
  color: #fff;
  font-family: "square", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-right: 0.5rem;
}
.indexItem p {
  color: #fff;
}

.indexTitle {
  color: #56dbcb;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-family: "square", sans-serif;
  margin: 1.5rem 2rem 1.5rem 1.5rem;
}
.indexTitle p {
  line-height: 1.1;
}
.indexTitle p:last-child {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}

/* PAGE RECYCLER*/
.page-template-page-recycler .heroSection {
  padding-bottom: 5rem;
  padding-top: 12.5rem;
}
.page-template-page-recycler .heroSection .col-12 {
  align-items: center;
  text-align: center;
}
.page-template-page-recycler .heroTitle {
  align-items: center;
  text-align: center;
}
.page-template-page-recycler .heroContentText > .btn {
  margin-top: 1rem;
}
.page-template-page-recycler .partenaires {
  margin-bottom: 3rem;
}

.steps {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  text-align: center;
  margin: 2rem 0;
}
.steps .step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  border: 2px solid var(--dark-color);
  color: var(--dark-color);
  border-radius: 2rem;
  padding: 1rem;
  width: 360px;
  margin: 0.5rem 2rem;
}
.steps .step i {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark-green);
  color: #fff;
  font-family: "square", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.steps .step p {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0.5rem;
  text-wrap: balance;
}
.steps .step:not(:last-child):after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: calc(50% - 1rem);
  right: -3rem;
  background-color: var(--dark-green);
  border-radius: 50%;
  z-index: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNOSAxOGw2LTYtNi02Ii8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.formRecycler {
  background: #006158;
  color: #fff;
  padding-bottom: 5rem;
}
.formRecycler .title.green p:last-child {
  color: #fff;
}
.formRecycler .title:after {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNMTIgNXYxM001IDEybDcgNyA3LTciLz48L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.envoiGratuit {
  height: 70px;
  margin: -7rem auto 3rem auto;
  display: flex;
  justify-content: center;
  position: relative;
}

/* PAGE PROJET*/
[name=list-pays] {
  display: none;
}

.page-template-page-projet .heroSection {
  padding-bottom: 12.5rem;
}

.heroContentText{
  max-width: 100%;
}
.heroContentText .text {
  padding-left: 5vw;
}
.heroContentText ul {
  padding-left: 2rem;
}
.heroContentText ul li {
  margin: 1.1rem 0;
  line-height: 1.2;
  position: relative;
  list-style: none;
  font-weight: bold;
}
.heroContentText ul li:before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: -1.5rem;
  top: 2px;
  background-image: url("../img/liImg.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.heroEclateVisual {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.heroEclateVisualContainer {
  position: relative;
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
.heroEclateVisualContainer .vueEclate {
  position: relative;
  z-index: 3;
}
.heroEclateVisualContainer .leaf {
  opacity: 0;
}
.heroEclateVisualContainer .leafTop {
  position: absolute;
  top: -3rem;
  left: 10%;
  width: 220px;
  height: auto;
  z-index: 2;
  transform: translate(-50px, -40px);
}
.heroEclateVisualContainer .leafBtm {
  position: absolute;
  bottom: -5rem;
  left: calc(50% - 150px);
  width: 300px;
  height: auto;
  z-index: 2;
  transform: translate(50px, 40px);
}
.heroEclateVisualContainer .leafRight {
  position: absolute;
  top: calc(50% - 60px);
  right: -4rem;
  width: 140px;
  height: auto;
  z-index: 2;
  transform: translate(50px, 0);
}
.heroEclateVisualContainer .shape {
  position: absolute;
  width: 380px;
  height: calc(100% + 4rem);
  top: -2rem;
  left: calc(50% - 190px);
  z-index: 0;
  background-color: #56dbcb;
  border-radius: 3rem 0 3rem 0;
  mix-blend-mode: multiply;
  transform: scaleY(0);
  transform-origin: 100% 100%;
}

.organisationBlock {
  margin-top: 4rem;
}

.organisationSwiper:not(.swiper-initialized) .swiper-wrapper {
  justify-content: center;
}
.organisationSwiper:not(.swiper-initialized) .swiper-slide {
  width: 250px;
}
.organisationSwiper.swiper-initialized {
  padding-bottom: 3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.organisationSwiper.swiper-initialized .swiper-slide {
  padding: 0;
}
.organisationSwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding: 2rem 1rem;
}
.organisationSwiper .picto {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}
.organisationSwiper .picto img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.organisationSwiper p {
  text-align: center;
}

.groupeSefmat {
  background-image: url("../img/texture-craft-green-test.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 25rem;
  color: #fff;
}
.groupeSefmat .title {
  color: #56dbcb;
}

.videoContainer {
  margin-top: -15rem;
  margin-bottom: 3rem;
}

.videoScreenshot {
  position: relative;
  width: 700px;
  max-width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.videoScreenshot .videoBtn {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  padding-bottom: 2rem;
}
.videoScreenshot .videoBtn div {
  width: 7rem;
  height: 7rem;
}
.videoScreenshot img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  vertical-align: middle;
}

.bubblesContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 3rem;
}

.bubble {
  border-radius: 50%;
  width: 190px;
  height: 190px;
  margin: 1rem 2rem;
  background-color: #56dbcb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-family: "square", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}
.bubble span {
  font-size: 2rem;
}
.bubble p {
  font-size: 1rem;
}
.bubble:nth-child(2) {
  width: 240px;
  height: 240px;
}

.sefmatLogo {
  width: 300px;
  margin-bottom: 2rem;
}

.logoTeamPlanet {
  width: 300px;
}

.iceVisual {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  mix-blend-mode: soft-light;
}

/* PAGE SOCIETE*/
.heroContent img {
  width: 300px;
  margin-bottom: 1rem;
}

.carteMonde {
  margin-top: 3rem;
  margin-bottom: -22rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.carteMonde .carte {
  width: 800px;
  max-width: 100%;
  border-radius: 2rem;
  padding: 2rem;
  background-color: #56dbcb;
}
.carteMonde .citation {
  position: absolute;
  width: 345px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 45%;
  left: calc(50% - 162.5px);
}
.carteMonde .citation div {
  width: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}
.carteMonde .citation div:before {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: -2.5rem;
  background-image: url("../img/quote.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.carteMonde .citation div:after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  right: 0;
  bottom: -1.6rem;
  background-image: url("../img/quote.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
.carteMonde .citation span {
  font-weight: 500;
}
.carteMonde .citation strong {
  font-size: 2rem;
  font-family: "square", sans-serif;
  margin: 0.25rem 0;
  margin-left: -0.5rem;
}
.carteMonde .citation p {
  font-size: 1.2rem;
  font-family: "square", sans-serif;
}

.securiteContent {
  background-image: url("../img/texture-craft-green-test.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 15rem;
  padding-bottom: 5rem;
  color: #fff;
}
.securiteContent .row {
  justify-content: center;
}
.securiteContent .block {
  width: 750px;
  padding-right: 2rem;
  max-width: 60%;
}

.schemaSecuriteBlock {
  width: 400px;
  max-width: 40%;
}
.schemaSecuriteBlock div {
  width: 400px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.valeurs {
  padding-bottom: 3rem;
}
.valeurs .col-12 {
  width: 800px;
  max-width: 100%;
  flex: 0 0 800px;
  margin: 0 auto;
}

.listeValeur {
  display: flex;
  align-items: center;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.listeValeur .pictoContain {
  min-width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #56dbcb;
  border-radius: 50%;
  padding: 1.5rem;
  margin-right: 1rem;
  position: relative;
}
.listeValeur .pictoContain img {
  max-height: 100%;
}
.listeValeur .text{
  max-width: calc(100% - 160px);
}
.listeValeur .text strong {
  color: #56dbcb;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-decoration: none;
}

.engagementsRespect {
  background-color: #006158;
  color: #fff;
}
.engagementsRespect .row {
  margin-bottom: 3rem;
}
.engagementsRespect .linksContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.engagementsRespect .linksContainer .btn {
  margin: 0.5rem;
}

.directorWord .col-lg-8 {
  margin-top: 4rem;
}
.directorWord .text p {
  width: 100%;
}
.directorWord .text p em {
  font-style: italic;
}

.timelineContainer {
  overflow: hidden;
  height: 0;
}
.timelineContainer .col-12 .title {
  opacity: 0;
  transform: translate(0, 40px);
}

.timeline {
  position: relative;
  justify-content: space-between;
  opacity: 0;
  transform: translate(0, 40px);
}
.timeline .timeLineIndicator {
  height: calc(100% - 7rem);
  width: 2px;
  position: absolute;
  right: calc(50% - 1px);
  top: 0;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  background-color: #56dbcb;
}
.timeline .block {
  justify-content: flex-start;
}
.timeline .historyBlock {
  width: calc(50% - 2rem);
  color: #fff;
  opacity: 0;
}
.timeline .historyBlock .title {
  position: relative;
  color: #56dbcb;
}
.timeline .historyBlock .secondTitle {
  color: #fff;
  font-size: 1.1rem;
}
.timeline .historyBlock .text p {
  width: 500px;
  max-width: 100%;
}
.timeline .historyBlock .text p a {
  color: #fff;
}
.timeline .historyBlock img {
  max-width: 300px;
  max-height: 250px;
}
.timeline .historyBlock.left {
  align-items: flex-end;
  transform: translate(-100px, 0);
  text-align: right;
}
.timeline .historyBlock.left .secondTitle {
  text-align: right;
  align-items: flex-end;
}
.timeline .historyBlock.right {
  margin-top: 12rem;
  transform: translate(100px, 0);
}

/* PAGE FAQ HOME ET RECYCLER */

.page-template-page-recycler

/* PAGE FAQ*/
.page-template-page-faq .heroSection {
  padding-bottom: 3rem;
}

.faq {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.faq .faqTitle {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 2rem auto;
}
.faq:nth-child(even) {
  background-image: url("../img/texture-craft-green-test.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.faqContainer_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 900px;
  max-width: 100%;
  margin: 0.75rem auto;
}

.faqContainer_item_ask {
  background: #56dbcb;
  padding: 1rem 2rem 1rem 3rem;
  border-radius: 3rem;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  color: #fff;
  font-family: "square", sans-serif;
  font-size: 0.9rem;
}
.faqContainer_item_ask p {
  position: relative;
  text-wrap: balance;
}
.faqContainer_item_ask p:before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: -1.5rem;
  top: calc(50% - 0.5rem);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNOSAxOGw2LTYtNi02Ii8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease-in-out;
}
.faqContainer_item_ask.active p:before {
  transform: rotate(90deg);
}

.faqContainer_item_response {
  height: 0;
  overflow: hidden;
  color: #1d1d1b;
}
.faqContainer_item_response > div {
  background-color: #f8f8f8;
  padding: 2rem 4rem;
  border-radius: 1rem;
  margin: 2rem 0;
  box-shadow: 0px 5px 20px -20px rgba(0, 0, 0, 0.7);
}
.faqContainer_item_response p a {
  text-decoration: underline;
}
.faqContainer_item_response p .btn {
  text-decoration: none;
  margin-top: 1rem;
}
.faqContainer_item_response ul {
  margin: 0.75rem 0;
  padding-left: 1rem;
}
.faqContainer_item_response ul li {
  margin: 0.25rem 0;
}

/* PAGE PRODUITS*/
.page-template-page-boutique .heroTitle, .page-template-page-produits-neufs .heroTitle {
  align-items: center;
  text-align: center;
}
.page-template-page-boutique .heroTitle p, .page-template-page-produits-neufs .heroTitle p {
  transform: none;
  opacity: 1;
}
.page-template-page-boutique .heroContentText .text, .page-template-page-produits-neufs .heroContentText .text {
  padding-left: 0;
}

.gradeItem {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  width: calc(33.33% - 2rem);
  margin: 0 1rem;
}
.gradeItem .text {
  margin-top: 0;
}
.gradeItem .text strong {
  text-decoration: none;
  color: #009a90;
  font-size: 1.2rem;
  font-family: "square", sans-serif;
  text-transform: uppercase;
}

.gradePicto {
  width: 6rem;
  height: 6rem;
  position: relative;
}
.gradeInfoIcon{
  position: absolute;
  z-index: 2;
  right: -1rem;
  top: calc(25% - 1rem);
  width: 2rem;
  height: 2rem;
  background-color: #1d1d1b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  & span{
    display: none;
  }
  & svg{
    width: 1.5rem;
    height: 1.5rem;
  }
}
.gradeInfo{
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: -10000px;
  z-index: -100;
  user-select: none;
  pointer-events: none;
  background-color: #1d1d1b;
  color: #fff;
  padding: 1rem;
  border-radius: 0 2rem 2rem 2rem;
  width: 500px;
  max-width: 100%;
  & ul{
    padding-left: 20px;
  }
  & li{
    margin: 0.5rem 0;
    list-style: disc;
  }
  &.active{
    z-index: 3;
  }
  &.reversed{
    border-radius: 2rem 0 2rem 2rem;
  }
  
}

.gradeItem{
  &.fancybox__content{
    border-radius: 1rem;
    width: 600px;
    max-width: 100%;
    background-image: url('../img/texture-craft-test-2.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    & .text{
      display: block;
    }
    & .gradeInfoIcon{
      display: none;
    }
    & .gradeInfo{
      position: static;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
      transform: none !important;
      z-index: 1;
      border-radius: 1rem;
      padding: 0;
      background-color: transparent;
      color: var(--dark-color);
    }
  }
}
.fancybox__backdrop{
  background-color: rgba(0, 0, 0, 0.6);
}
.fancybox__slide{
  justify-content: center;
}


.gradeFilterContainer{
  display: flex;
}

#grade-filter-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  & label{
    font-family: "square", sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-right: 2rem;
  }
  & .selectize-control{
    width: 250px;
    &.single .selectize-input{
      height: 2.5rem;
      background-color: var(--dark-green);
      & input{
        color: #fff;
        &::placeholder{
          color: #fff;
          font-size: 16px;
        }
      }
    }
  }
  
}
#grade-filter {
  width: fit-content;
  color: var(--dark-color);
  text-transform: uppercase;
  height: 2rem;
  line-height: 3;
  font-size: .9rem;
  box-shadow: none;
  max-height: 100%;
  resize: none;
  border-radius: var(--radius);
  background: var(--background-color);
  padding: 0 1rem;
  margin: 0;
  border: 2px solid var(--dark-color);
}

.productList {
  justify-content: center;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-template-rows: auto;
  grid-gap: 3rem 2rem;
  width: 100%;
  margin-top: 2rem;
}


/* SINGLE PRODUIT*/
.productPrice {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "DIN Pro", sans-serif;
  color: #009a90;
}

.heroProduct {
  padding: 12rem 5vw 5rem 5vw;
}

.productImgContainer{
  aspect-ratio: 1;
}
.swiperProduct{
  height: 100%;
}
.swiperProduct .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.swiperProduct .swiper-slide:first-child {
  background-color: #56dbcb;
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  overflow: hidden;
}
.swiperProduct .swiper-slide:first-child picture {
  min-height: 400px;
  margin: 0 auto;
}
.swiperProduct .swiper-slide:first-child picture img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.swiperProduct .swiper-slide picture {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.swiperProduct .swiper-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}
.swiperProduct .pistolCardBack {
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
}

 
.swiperProduct .swiper-pagination{
  transform: none !important;
}
.swiperProduct .swiper-pagination-bullet {
  width: 3rem !important;
  min-width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  border: none;
  overflow: hidden;
  background-color: var(--dark-green);
  opacity: 0.6;
}
.swiperProduct .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiperProduct .swiper-pagination-bullet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}
.swiperProduct .swiper-button-next svg, .swiperProduct .swiper-button-prev svg {
  stroke: none;
}
.swiperProduct .swiper-button-next circle, .swiperProduct .swiper-button-prev circle {
  fill: #009a90;
}
.swiperProduct .swiper-button-next polygon, .swiperProduct .swiper-button-prev polygon {
  fill: #fff;
}

.productPictoAndPrice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #009a90;
}
.productPictoAndPrice{
  & .grade{
    & > div{
      position: relative;
      & .gradeInfoIcon{
        width: 2rem;
        min-width: 2rem;
        height: 2rem;
        position: absolute;
        top: calc(15% - 1rem);
      }
      & .gradeInfo{
        & .text{
          & p{
            color: #fff;
          }
        }
      }
    }
  }
}

.grade{
  &.fancybox__content{
    border-radius: 1rem;
    width: 600px;
    max-width: 100%;
    background-image: url('../img/texture-craft-test-2.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    & > p{
      display: none;
    }
    & > div{
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    & img{
      width: 6rem;
      height: 6rem;
    }
    & .text{
      display: block;
    }
    & .gradeInfoIcon{
      display: none;
    }
    & .gradeInfo{
      position: static;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
      transform: none !important;
      z-index: 1;
      border-radius: 1rem;
      padding: 0;
      background-color: transparent;
      color: var(--dark-color);
    }
  }
}
.productPictoAndPrice > div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.productPictoAndPrice > div > div {
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  margin-right: 0.5rem;
}
.productPictoAndPrice > div img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.productPictoAndPrice > div p {
  font-family: "square", sans-serif;
  font-size: 0.7rem;
  line-height: 1.1;
  color: #009a90;
  text-transform: uppercase;
}
.productPictoAndPrice > div.priceInRow {
  justify-content: flex-end;
}
.productPictoAndPrice > div.priceInRow p {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "DIN Pro", sans-serif;
}

.infosSwitcher {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 2rem;
}
.infosSwitcher .btn {
  opacity: 0.7;
  margin: .5rem 0;;
}
.infosSwitcher .btn.border {
  border-color: #009a90;
  color: #009a90;
}
.infosSwitcher .btn.border:hover {
  background-color: #009a90;
  color: #fff;
  opacity: 1;
}
.infosSwitcher .btn.active {
  opacity: 1;
  background-color: #009a90;
  color: #fff;
}
.infosSwitcher .btn:first-child {
  margin-right: 1rem;
}

.descriptionContainer {
  color: #009a90;
}

.tableContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.tableRow {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  border-bottom: 2px solid #1d1d1b;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 40px);
}
.tableRow .titleRow {
  width: 200px;
  font-weight: bold;
  padding: 0.5rem;
}
.tableRow .valueRow {
  width: calc(100% - 200px);
  text-align: right;
  padding: 0.5rem;
}
.tableRow:first-child {
  margin-top: 1.5rem;
}
.tableRow:last-child {
  margin-bottom: 1.5rem;
}

.certificationsProduct {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}
.certificationsProduct img {
  width: 190px;
}

.productActions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 1rem;
  border-top: 2px solid #009a90;
}
.productActions .productPrice {
  margin-right: 1rem;
}

.swiperRelatedProducts{
  &.swiper.swiper-initialized{
    padding-bottom: 5.5rem;
  }
}

.moreProducts .col-12 {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.moreProductItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #56dbcb;
  border-radius: 2rem;
  padding: 1rem;
  margin: 1rem;
  text-align: center;
  width: calc(33.33% - 2rem);
}
.moreProductItem p {
  text-transform: uppercase;
  font-family: "square", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin: 0.5rem 0;
}
.moreProductItem .btn {
  background-color: #006158;
  width: 100%;
  margin-top: 0.5rem;
}
.moreProductItem .btn:hover {
  background-color: #1d1d1b;
}

.moreProductItemImg {
  height: 250px;
  max-width: 240px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.productVideoBtn {
  max-width: 100%;
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  text-transform: uppercase;
  font-family: "square", sans-serif;
  color: #56dbcb;
  background-color: #fff;
  text-align: center;
  line-height: 1.2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border-radius: 2rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0, 0, 0.18, 0.99);
}
.productVideoBtn i {
  margin-left: 1rem;
  width: 25px;
  height: 25px;
}
.productVideoBtn i svg {
  width: 100%;
  height: 100%;
}
.productVideoBtn i svg circle {
  fill: #56dbcb;
  transition: stroke 0.3s cubic-bezier(0, 0, 0.18, 0.99);
}
.productVideoBtn i svg polygon {
  fill: #fff;
  transition: stroke 0.3s cubic-bezier(0, 0, 0.18, 0.99);
}
.productVideoBtn:hover {
  background-color: #1d1d1b;
}

/*FORM*/
.wpcf7 {
  max-width: 100%;
  width: 800px;
  margin: 2rem auto;
}

.wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  width: 1000px;
  max-width: 100%;
  margin: 1rem auto;
}
.wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.wpcf7-form label {
  width: calc(50% - 1.5rem);
  margin: 0.75rem;
  position: relative;
}
.wpcf7-form label .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form label input, .wpcf7-form label textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 1rem;
  border: 1px solid #fff;
  color: #fff;
  resize: none;
  display: block;
  border-radius: 2rem;
  font-size: 16px;
  caret-color: #56dbcb;
}
.wpcf7-form label input::-moz-placeholder, .wpcf7-form label textarea::-moz-placeholder {
  font-family: "DIN Pro", sans-serif;
  color: #fff;
  opacity: 0.6;
  -moz-transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  font-size: 16px;
}
.wpcf7-form label input::placeholder, .wpcf7-form label textarea::placeholder {
  font-family: "DIN Pro", sans-serif;
  color: #fff;
  opacity: 0.6;
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  font-size: 16px;
}
.wpcf7-form label input:focus, .wpcf7-form label input:hover, .wpcf7-form label textarea:focus, .wpcf7-form label textarea:hover {
  outline: none;
}
.wpcf7-form label input:focus::-moz-placeholder, .wpcf7-form label input:focus::-moz-placeholder, .wpcf7-form label input:hover::-moz-placeholder, .wpcf7-form label input:hover::-moz-placeholder, .wpcf7-form label textarea:focus::-moz-placeholder, .wpcf7-form label textarea:focus::-moz-placeholder, .wpcf7-form label textarea:hover::-moz-placeholder, .wpcf7-form label textarea:hover::-moz-placeholder {
  opacity: 1;
}
.wpcf7-form label input:focus::placeholder, .wpcf7-form label input:focus::placeholder, .wpcf7-form label input:hover::placeholder, .wpcf7-form label input:hover::placeholder, .wpcf7-form label textarea:focus::placeholder, .wpcf7-form label textarea:focus::placeholder, .wpcf7-form label textarea:hover::placeholder, .wpcf7-form label textarea:hover::placeholder {
  opacity: 1;
}
.wpcf7-form label input:focus + i, .wpcf7-form label input:hover + i, .wpcf7-form label textarea:focus + i, .wpcf7-form label textarea:hover + i {
  opacity: 1;
}
.wpcf7-form label input:focus::-webkit-contacts-auto-fill-button, .wpcf7-form label textarea:focus::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.wpcf7-form label input:not(:-moz-placeholder-shown) + i, .wpcf7-form label textarea:not(:-moz-placeholder-shown) + i {
  opacity: 1;
}
.wpcf7-form label input:not(:placeholder-shown) + i, .wpcf7-form label textarea:not(:placeholder-shown) + i {
  opacity: 1;
}
.wpcf7-form label input:not(:-moz-placeholder-shown) + i svg path, .wpcf7-form label textarea:not(:-moz-placeholder-shown) + i svg path {
  fill: #56dbcb;
}
.wpcf7-form label input:not(:placeholder-shown) + i svg path, .wpcf7-form label textarea:not(:placeholder-shown) + i svg path {
  fill: #56dbcb;
}
.wpcf7-form label input.wpcf7-not-valid, .wpcf7-form label textarea.wpcf7-not-valid {
  padding: 0.5rem 1rem 1.5rem 1rem;
}
.wpcf7-form label input.wpcf7-not-valid + i svg path, .wpcf7-form label textarea.wpcf7-not-valid + i svg path {
  fill: #ef7a4b;
}
.wpcf7-form label textarea {
  border-radius: 1.5rem;
}
.wpcf7-form label.big {
  width: 100%;
}
.wpcf7-form label.big i {
  top: 1rem;
}
.wpcf7-form label.adresse {
  width: calc(45% - 1.5rem);
}
.wpcf7-form label.ville {
  width: calc(30% - 1.5rem);
}
.wpcf7-form label.codePostal {
  width: calc(25% - 1.5rem);
}
.wpcf7-form label.marqueLabel {
  width: 100%;
}
.wpcf7-form label i {
  position: absolute;
  right: 1rem;
  top: calc(50% - 0.5rem);
  width: 1rem;
  height: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form label i svg path {
  fill: #fff;
  transition: fill 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form [data-class=wpcf7cf_group] {
  width: 100%;
  flex-wrap: wrap;
}
.wpcf7-form [data-class=wpcf7cf_group]:not(.wpcf7cf-hidden) {
  display: flex;
}
.wpcf7-form [data-orig_data_id=numeroSerieGroup] label {
  width: 100%;
}
.wpcf7-form [data-orig_data_id=revendeurInfo] .nomRevendeur {
  width: 100%;
}
.wpcf7-form [data-orig_data_id=revendeurInfo] .ville {
  width: calc(50% - 1.5rem);
}
.wpcf7-form [data-orig_data_id=revendeurInfo] .codePostal {
  width: calc(50% - 1.5rem);
}
.wpcf7-form .contenuGroup {
  width: 100%;
  display: none;
  flex-wrap: wrap;
}
.wpcf7-form .choixRecompense {
  width: 100%;
  margin-bottom: 1rem;
}
.wpcf7-form .choixRecompense .wpcf7-checkbox .wpcf7-list-item {
  width: calc(50% - 1.5rem);
  margin: 0 0.75rem;
}
.wpcf7-form .choixRecompense .wpcf7-checkbox .wpcf7-list-item label {
  width: 100%;
  height: 100%;
}
.wpcf7-form .choixRecompense .wpcf7-checkbox .wpcf7-list-item [type=checkbox]:not(:checked):hover + .wpcf7-list-item-label {
  padding-left: 1rem;
  background-color: #56dbcb;
  border-color: #024b43;
}
.wpcf7-form .choixRecompense .wpcf7-checkbox .wpcf7-list-item [type=checkbox]:checked + .wpcf7-list-item-label {
  padding-left: 1rem;
  background-color: #56dbcb;
  border-color: #024b43;
}
.wpcf7-form .choixRecompense .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-family: "square", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
  background-color: #014b43;
  color: #fff;
  border: 2px solid transparent;
}
.wpcf7-form .choixRecompense .wpcf7-checkbox .wpcf7-list-item.first .wpcf7-list-item-label:before {
  content: "sélectionnée par Ripacycle";
  font-family: "square", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  background: none;
  opacity: 1;
  transform: none;
  position: initial;
  width: 100%;
  height: auto;
  order: 2;
  margin-top: 8rem;
  z-index: 2;
}
.wpcf7-form .choixRecompense .wpcf7-checkbox .wpcf7-list-item.first .wpcf7-list-item-label:after {
  content: "";
  width: 150px;
  height: 169px;
  background-image: url("../img/don-association.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% - 75px);
  bottom: 0;
}
.wpcf7-form .choixRecompense .wpcf7-checkbox .wpcf7-list-item.last .wpcf7-list-item-label:before {
  content: "Sur un pistolet neuf de la gamme Ripack";
  font-family: "square", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  background: none;
  opacity: 1;
  transform: none;
  position: initial;
  width: 100%;
  height: auto;
  order: 2;
  margin-top: 8rem;
  z-index: 2;
}
.wpcf7-form .choixRecompense .wpcf7-checkbox .wpcf7-list-item.last .wpcf7-list-item-label:after {
  content: "";
  width: 200px;
  height: 120px;
  background-image: url("../img/bon-achat.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% - 100px);
  bottom: calc(50% - 60px);
}
.wpcf7-form .legend {
  margin: 0.75rem;
  text-align: center;
  font-family: "square", sans-serif;
  color: #56dbcb;
  font-size: 1.3rem;
  text-transform: uppercase;
  width: 100%;
}
.wpcf7-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0.5rem 0;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item:not(.last) label {
  margin-right: 1rem;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=checkbox] {
  visibility: hidden;
  position: absolute;
  left: -100000px;
  opacity: 0;
  z-index: -10000;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  background-color: #fff;
  color: #006158;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  position: relative;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 5px center;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDYxNTgiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNMjIgMTEuMDhWMTJhMTAgMTAgMCAxIDEtNS45My05LjE0Ij48L3BhdGg+PHBvbHlsaW5lIHBvaW50cz0iMjIgNCAxMiAxNC4wMSA5IDExLjAxIj48L3BvbHlsaW5lPjwvc3ZnPg==");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=checkbox]:not(:checked):hover + .wpcf7-list-item-label {
  padding-left: 2rem;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=checkbox]:not(:checked):hover + .wpcf7-list-item-label:before {
  opacity: 1;
  transform: scale(1);
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=checkbox]:checked + .wpcf7-list-item-label {
  background-color: #56dbcb;
  padding-left: 2rem;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item [type=checkbox]:checked + .wpcf7-list-item-label:before {
  opacity: 1;
  transform: scale(1);
}
.wpcf7-form .wpcf7-checkbox + .wpcf7-not-valid-tip {
  display: none !important;
}
.wpcf7-form [data-name=pays] {
  width: 100%;
  margin: 0.75rem;
}

/*Checkbox*/
span[data-name=rgpd-consent] {
  background-color: rgba(47, 35, 204, 0);
  border-radius: 0.25rem;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  width: 100%;
}
.wpcf7-acceptance .wpcf7-list-item > label {
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  visibility: visible;
  opacity: 1;
  transform: none;
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-block;
  width: 34px;
  min-width: 34px;
  margin: 0;
  visibility: visible;
  opacity: 1;
  transform: none;
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx:not(:last-child) {
  margin-right: 6px;
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx:hover {
  background: rgba(0, 0, 0, 0.2);
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx:hover span:first-child {
  border-color: #fff;
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #fff;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.wpcf7-acceptance .wpcf7-list-item > label .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}
.wpcf7-acceptance .wpcf7-list-item > label .inp-cbx {
  position: absolute;
  visibility: hidden;
  width: 0;
  padding: 0;
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item > label .inp-cbx:checked + .wpcf7-list-item-label .cbx span:first-child {
  animation: wave-4 0.4s ease;
  background-color: #56dbcb;
  border-color: #fff;
}
.wpcf7-acceptance .wpcf7-list-item > label .inp-cbx:checked + .wpcf7-list-item-label .cbx span:first-child svg {
  stroke-dashoffset: 0;
  stroke: #fff;
}
.wpcf7-acceptance .wpcf7-list-item > label .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.wpcf7-acceptance .checkbox__text {
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 300;
  text-align: left;
  padding-right: 8px;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 1rem auto;
  padding: 0.5rem 1rem;
  border: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 600px;
  height: 300px;
  max-width: 100%;
  max-height: 100%;
  top: calc(50% - 150px);
  left: calc(50% - 300px);
  z-index: 100;
  background-color: #56dbcb;
  border-radius: 1rem;
  color: #fff;
  box-shadow: 0px 0px 50px -40px #fff;
  opacity: 0;
  transform: translate(0, 50px);
}
.wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  color: #fff;
  background-color: #ef7a4b;
}
.wpcf7 .endForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wpcf7 .submitContainer {
  margin-top: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.wpcf7 .novalidate {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  color: #fff;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #ef7a4b;
  font-size: 0.8rem;
  position: absolute;
  bottom: 5px;
  left: 1rem;
  transition: opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
  z-index: 1;
}

/* SELECTIZE */

/* forcer le placeholder */
.selectizeLabel{
  & .selectize-control.single .selectize-input{
    &::before {
      content: "Votre pays*";
      pointer-events: none;
      position: absolute;
      background: transparent;
      top: 0;
      bottom: auto;
      right: auto;
      height: auto;
      line-height: 3.1;
      font-size: .9rem;
      left: 1rem;
      font-weight: normal;
      transition: var(--transition);
      color: var(--primary-color);
      opacity: 1;
      border-radius: var(--radius);
    }
    &.has-items::before, &.dropdown-active::before {
      content:"Votre pays*";
      top: -.5rem !important;
      background: var(--secondary-color);
      color: var(--dark-green) !important;
      font-size: .8rem !important;
      line-height: 1.6 !important;
      padding-inline: 1rem;
      opacity: 1;
    }
    
  }
}
html{
  &[lang="en"]{
    .selectizeLabel{
      & .selectize-control.single .selectize-input{
        &::before {
          content: "Your country*";
        }
        &.has-items::before, &.dropdown-active::before {
          content:"Your country*";
        }
        
      }
    }
  }
}
html{
  &[lang="de"]{
    .selectizeLabel{
      & .selectize-control.single .selectize-input{
        &::before {
          content: "Ihr Land*";
        }
        &.has-items::before, &.dropdown-active::before {
          content:"Ihr Land*";
        }
        
      }
    }
  }
}
html{
  &[lang="es"]{
    .selectizeLabel{
      & .selectize-control.single .selectize-input{
        &::before {
          content: "Su país*";
        }
        &.has-items::before, &.dropdown-active::before {
          content:"Su país*";
        }
        
      }
    }
  }
}


.selectizeLabel, .gradeFilterContainer{
  & > span{
    display: none;
  }
  & .selectize-control {
    height: 100%;
    width: 100%;
  }
  & .selectize-control.single .selectize-input {
    background-color: transparent;
    background-image: none;
    padding: 0 1rem;
    height: 3rem;
    box-shadow: none;
    border-color: var(--light-green);
    &.has-items{
      border-color: #fff;
    }
  }
  & .selectize-control.single .selectize-input.input-active {
    display: flex;
    background-color: transparent;
  }
  & .selectize-control.single .selectize-input.dropdown-active:after {
    border-color: transparent transparent var(--light-green) transparent;
  }
  & .selectize-control.single .selectize-input:after {
    border-color: var(--light-green) transparent transparent transparent;
  }
  & .selectize-control.wpcf7-not-valid input {
    margin-top: -10px !important;
  }
  & .selectize-input {
    height: 100%;
    box-shadow: none;
    border: 2px solid var(--light-green);
    border-radius: 2rem;
    padding: 8px 1rem;
    display: flex;
    align-items: center;
    &.dropdown-active::before{
      content: none;
    }
  }
  & .selectize-input input {
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    &::placeholder {
      color: var(--light-green);
      font-size: 16px;
      visibility: visible !important;
      opacity: 1 !important;

    }
  }
  
  & .selectize-input input::-moz-placeholder {
    color: var(--light-green);
  }
  & .selectize-input input::placeholder {
    color: var(--light-green);
  }
  & .selectize-input .item {
    color: #fff;
    font-size: 16px;
  }
  & .selectize-dropdown {
    box-shadow: none;
    border: 2px solid var(--light-green);
    background-color: #006158;
    color: #fff;
    margin-top: .3rem;
    border-radius: 4px;
  }
  & .selectize-dropdown .active:not(.selected) {
    background-color: #006158;
    color: #fff;
  }
  & .selectize-dropdown .option {
    cursor: pointer;
    padding: 7.5px 1rem 5px 1rem;
  }
  & .selectize-dropdown .option.selected, & .selectize-dropdown .option:hover {
    background-color: #56dbcb;
  }
}

/* PAGE CONTACT */

.heroContact{
  padding-top: 10rem;
  padding-bottom: 5rem;
  & .container-fluid{
    padding: 4rem 2rem 2rem 2rem;
    border-radius: 2rem;
    background-color: var(--dark-green);
  }
  & .row{
    justify-content: center;
    align-items: stretch;
  }
}
.contactBlock{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  height: auto;
  margin-right: 2rem;
  & .text{
    width: 100%;
    & > ul{
      padding-left: 0;
    }
  }
  & strong{
    font-weight: bolder;
  }
  & ul{
    width: 100%;
    list-style: none;
    padding-left: 0;
    & li{
      margin: .3rem 0;
    }
  }
}
.contactForm{
  & .wpcf7{
    margin-top: 0;
    width: 100%;
  }
  & .wpcf7-form{
    margin-top: 0;
    width: 100%;
  }
  & form.wpcf7-form {
      & label {
          &.fullwidth, &.big {
              flex-basis: calc(100% - var(--gap-form));
          }
          &.selectizeLabel {
              flex-basis: calc(100% - var(--gap-form));
          }
      }
  }
}

footer {
  background-color: #006158;
  padding: 5rem 5vw;
  color: #fff;
}
footer .row {
  display: grid;
  grid-template-columns: 320px 180px repeat(2, auto);
  grid-template-rows: repeat(2, auto);
}

.logoFooter {
  width: 300px;
  margin-right: 1rem;
  grid-area: 1/1/3/2;
}

.footerAdress {
  grid-area: 1/2/3/4;
}

.blogLink {
  grid-area: 1/4/2/6;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}

.mentionsContainer {
  grid-area: 2/4/3/6;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}
.mentionsContainer p, .mentionsContainer a {
  margin: 0.5rem 1rem;
  cursor: pointer;
}

/* PAGE MENTIONS */

.mentions{
  padding-top: 15rem;
  padding-bottom: 5rem;
}
.mentions > div {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.mentions strong{
  font-weight: bold;
}
.mentions p {
  margin: 0.75rem 0;
}

.mentions p a {
  text-decoration: underline;
}

.mentions h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  margin: 1rem 0;
}

.mentions h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: bold;
  margin: 1rem 0;
}
.mentions ul{
  list-style: disc;
}
.mentions ul, .mentions ol{
  margin: 1rem 0;
  padding-left: 2rem;
  & strong{
    font-weight: bold;
    font-family: "Din Pro", sans-serif;
    text-transform: initial;
  }
  & > li{
    padding-left: 0;
    &:before{
      content: none;
    }
  }
}
.cgvContent li{
  margin: .5rem 0;
}

.mentions ul li, .mentions ol li {
  margin: 0.75rem 0;
}

.mentions ul li a, .mentions ol li a {
  text-decoration: underline;
}

/* PAGE CGV */

.cgvContent{
  padding-top: 15rem;
  padding-bottom: 5rem;
  & .cgvContentContainer{
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.cgvContent h1, .cgvContent h2, .cgvContent h3, .cgvContent h4{
  margin-top: 2rem;
  font-weight: bold;
}
.cgvContent h2{
  font-size: 1.4rem;
}
.cgvContent h3{
  font-size: 1.1rem;
}
.cgvContent p{
  margin: .5rem 0;
  & strong{
    font-weight: bold;

  }
}
.cgvContent ul{
  list-style: disc;
}
.cgvContent ul, .cgvContent ol{
  margin: 1rem 0;
  padding-left: 2rem;
  & strong{
    font-weight: bold;
    font-family: "Din Pro", sans-serif;
    text-transform: initial;
  }
  & > li{
    padding-left: 0;
    &:before{
      content: none;
    }
  }
}
.cgvContent li{
  margin: .5rem 0;
}

#cmplz-manage-consent .cmplz-manage-consent{
  display: none;
}

/* PAGE BLOG */
.topPageBlog{
  padding-top: 12.5rem;
  padding-bottom: 10rem;
  position: relative;
}
.postList{
  margin-top: -13rem;
  padding-bottom: 3rem;
}
.postBlock{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(50% - 4rem);
  margin: 2rem;
}
.postBlock_img{
  border-radius: 2rem;
  overflow: hidden;
  width: 240px;
  height: 240px;
  & div{
    width: 100%;
    height: 100%;
  }
  & img{
    vertical-align: middle;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease-in-out;
  }
  &:hover{
    & img{
      transform: scale(1.05);
      transition: transform 1s ease-in-out;
    }
  }
}
.postBlock_content{
  padding: 1rem;
  margin-top: 1rem;
  & .secondTitle{
    margin: .75rem 0;
  }
}
.postBlock_btn{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: .75rem;
}
.postArrow{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
}

/* SINGLE POST */


.singleContent {
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  padding-top: 150px;
  padding-bottom: 3rem;
}
.singleContent .postPanel {
  width: 380px;
  position: absolute;
  right: 5%;
  z-index: 2;
}
.singleContent .postPanel .contactPanel {
  background-color: #f0f0f3;
  color: #1d1d1b;
  border-radius: 3rem;
  padding: 2rem;
  margin-bottom: 1rem;
}
.singleContent .postPanel .contactPanel .title {
  line-height: 1;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
}
.singleContent .postPanel .stickyPanel {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.singleContent .postPanel .stickyPanel > div {
  padding: 2rem;
  margin-bottom: 1rem;
  border-radius: 3rem;
  background-color: #006158;
}
.singleContent .otherPost {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.singleContent .otherPost p {
  display: inline-block;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: bold;
}
.singleContent .otherPost a {
  margin: 0.3rem 0;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
  margin-left: 1rem;
}
.singleContent .otherPost a br {
  display: none;
}
.singleContent .anchor-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  margin-bottom: 1rem;
  border-radius: 3rem;
  background-color: #006158;
  width: calc(80% - 380px);
  margin-left: 10%;
  margin-right: calc(10% + 380px);
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  color: #fff;
}
.singleContent .anchor-container p {
  display: inline-block;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: bold;
}
.singleContent .anchor-container a {
  margin: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-decoration: none;
}
.singleContent .anchor-container a br {
  display: none;
}
.singleContent .anchor-container a i {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  margin-top: 3px;
  margin-right: 0.5rem;
  transform: translateX(0);
  transition: transform 0.2s ease-in-out;
}
.singleContent .anchor-container a svg {
  width: 100%;
}
.singleContent .anchor-container a path, .singleContent .anchor-container a circle {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: #fff;
}
.singleContent .anchor-container a:hover i {
  animation: bounceIt 1s infinite alternate;
}
.singleContent .content {
  width: 100%;
}
.singleContent .content > * {
  padding-left: 10%;
  padding-right: calc(10% + 380px);
}
.singleContent .content > ul {
  padding-left: calc(10% + 20px);
}
.singleContent .content > .wp-block-group.gradientBack {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.singleContent .content > .wp-block-group.gradientBack > div {
  position: relative;
  z-index: 1;
}
.singleContent h1 {
  margin: 2rem 0;
  font-size: 2.5rem;
  font-weight: bold;
}
.singleContent h2 {
  margin: 2rem 0;
  font-weight: bolder !important;
  font-size: 2rem;
}
.singleContent h2 span {
  font-weight: bolder !important;
}
.singleContent h3 {
  margin: 1.5rem 0;
  font-weight: bolder !important;
  font-size: 1.4rem;
}
.singleContent h3 span {
  font-weight: bolder !important;
}
.singleContent h4 {
  margin: 1rem 0;
  font-weight: bolder !important;
  font-size: 1.1rem;
}
.singleContent h4 span {
  font-weight: bolder !important;
}
.singleContent p {
  margin: 0.5rem 0;
}
.singleContent strong {
  font-weight: bold;
}
.singleContent ul {
  margin: 0.5rem 0;
  padding-left: 1rem;
  list-style: disc;
}
.singleContent ul li {
  margin: 0.5rem 0;
}
.singleContent ol {
  margin: 0.5rem 0;
  padding-left: 1rem;
  list-style-type: decimal;
}
.singleContent ol li {
  margin: 0.5rem 0;
}
.singleContent .wp-block-media-text figure {
  border-radius: 2rem;
  overflow: hidden;
}
.singleContent .wp-block-gallery figure {
  padding: 0.3rem;
}
.singleContent figure.is-style-rounded img {
  border-radius: 2rem;
}
.singleContent .wp-block-button__link.wp-element-button {
  padding: 0.6rem 1.5rem 0.4rem 1.5rem;
  border-radius: 1rem;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: background-position 1s cubic-bezier(0, 0, 0.18, 0.99);
  background-image: linear-gradient(45deg, #00adff 15%, #006cff 50%, #00adff 100%);
  background-position: 0;
  background-size: 200%;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
}
.singleContent .wp-block-button__link.wp-element-button:hover {
  background-position: 100%;
}

@keyframes bounceIt {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}
.wp-block-image {
  margin: 2rem 0;
}

.wp-block-media-text {
  margin: 2rem 0;
}

body.noHover.can-touch * {
  cursor: default !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -moz-tap-highlight-color: rgba(255, 255, 255, 0);
}
