/*Fonts*/
/*Transitions*/
/*Image fit*/
/*Box Shadow*/
/*Multiply*/
/*Render frame*/
/* arrow generator */
/*
.arr{
  background:#ff0000;
  display:block;
  float:left;
}

.arr-up{
  // @include arrow(direction(deg), size, stroke width, bgcolor);
  @include arrow(0,50px,2px,#fff);
}

.arr-down{
  @include arrow(180,50px,2px,#fff);
}

.arr-prev{
  @include arrow(90,50px,2px,#fff);
}

.arr-next{
  @include arrow(270,50px,2px,#fff);
}

*/
/*Mobile*/
/*Normal tablets (including ipad)*/
/*Tablets with retina displays (including ipad pro)*/
/* Responsive Mixins */
/* Base */
button,
textarea,
input,
select,
.bootstrap-select .dropdown-toggle:focus {
  -moz-outline-style: none;
  outline: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button:focus, button.hover-mobile,
textarea:focus,
textarea.hover-mobile,
input:focus,
input.hover-mobile,
select:focus,
select.hover-mobile,
.bootstrap-select .dropdown-toggle:focus:focus,
.bootstrap-select .dropdown-toggle:focus.hover-mobile {
  -moz-outline-style: none;
  outline: none;
}

input::-ms-clear {
  display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color: white;
}

/* iOS hack */
textarea,
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="date"] {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="date"] {
  background: #ffffff;
}

.form-required:after {
  background: none;
  position: relative;
  margin: 0;
  top: 4px;
  content: "*";
}

label.error:before, label.error:after {
  display: none;
}
.form-radios label.error {
  position: absolute;
  bottom: -18px;
  left: -37px;
}

input[type="password"],
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"] {
  width: 100%;
  border-radius: 0;
  height: 35px;
  background: #ffffff;
  border: none;
  color: #585858;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 15px 15px;
}

textarea {
  background: #ffffff;
  padding: 15px;
  height: 200px;
  border: 1px solid #dedede;
  width: 100%;
}

input[type="submit"] {
  background: #8E5EF6;
  border-radius: 30px;
  padding: 10px 62px;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "source_sans_probold";
  border: none;
  display: inline-block;
}
input[type="submit"]:hover {
  opacity: 0.8;
}

.field-radio {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.field-radio input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #F5F7FC;
  margin: 0;
  color: #F5F7FC;
  width: 28px;
  height: 28px;
  border: 2px solid #F5F7FC;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  margin-right: 30px;
}
.field-radio input[type="radio"]::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #8E5EF6;
  /* Windows High Contrast Mode */
  background-color: #8E5EF6;
}
.field-radio input[type="radio"]:checked::before {
  transform: scale(1);
}
.field-radio label {
  color: #585858;
  font-size: 18px;
  display: flex;
}
.field-radio li {
  display: flex;
  min-height: 35px;
  padding-bottom: 20px;
}

.name-box {
  width: 60px;
  height: 60px;
  background: rgba(4, 51, 255, 0.22);
  border-radius: 50%;
  text-align: center;
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "sintonybold";
  color: #020659;
  line-height: 60px;
}

.error-msg {
  display: block;
  text-align: center;
  color: #D80404;
  padding: 5px 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.heading_h1,
h1 {
  color: #020659;
  font-family: "source_sans_problack";
  font-size: 50px;
  font-size: 5rem;
}

.heading_h2,
h2 {
  color: #020659;
  font-family: "source_sans_problack";
  font-size: 40px;
  font-size: 4rem;
}

.heading_h3,
h3 {
  color: #020659;
  font-family: "source_sans_problack";
  font-size: 20px;
  font-size: 2rem;
}

.heading_h4,
h4 {
  font-family: "source_sans_problack";
}

.heading_h5,
h5 {
  font-family: "source_sans_problack";
}

.heading_h6,
h6 {
  font-family: "source_sans_problack";
}

a {
  color: #000000;
}
a:hover {
  text-decoration: none;
}
a.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.cta-more {
  color: #020659;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "source_sans_probold";
}
.cta-more:hover {
  opacity: 0.6;
}
.cta-more span {
  display: inline-block;
  background: #020659;
  width: 10px;
  height: 10px;
  margin: 5px;
  margin: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  -o-transform: rotate(135deg);
  cursor: pointer;
  vertical-align: baseline;
  margin: 0 0 0 5px;
}
.cta-more span:after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 10px;
  height: 10px;
  background: #F9F9FC;
}

.view-large {
  display: block;
  width: 18px;
  height: 14px;
  position: relative;
  margin-right: 15px;
}
.view-large span {
  display: none;
}
.view-large:after {
  content: "\e9ce";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "icomoon";
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 14px;
}
.view-large.view:after {
  content: "\e9d1";
}

.selected-action-ellips {
  font-family: "sintonybold";
  font-size: 30px;
  font-size: 3rem;
  display: block;
}

.action-ellips {
  position: relative;
}
.action-ellips .child-ellips {
  position: absolute;
  width: 149px;
  top: -24px;
  left: -157px;
  background: #F5F7FC;
  list-style: none;
  padding: 15px 0;
  margin: 0;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #fbfaff;
  display: none;
}
.action-ellips .child-ellips .lst {
  display: block;
  font-family: "sintonybold";
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 25px;
}
.action-ellips .child-ellips .lst a:hover {
  color: #D80404;
}

.back {
  position: relative;
  padding: 0 0 55px 35px;
}

.link-back {
  display: block;
  background: #8E5EF6;
  color: #ffffff;
  font-family: "sintonybold";
  font-size: 18px;
  font-size: 1.8rem;
  width: 220px;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  padding: 15px 10px;
  text-decoration: none;
}
.link-back:hover {
  color: #ffffff;
}
.link-back:before {
  content: "\e904";
  font-family: "icomoon";
  font-size: 35px;
  font-size: 3.5rem;
  display: block;
  color: #020659;
  font-weight: normal;
  position: absolute;
  top: 0;
  left: -12px;
}

.arrow-link {
  display: block;
  text-decoration: none;
  width: 30px;
  height: 21px;
  font-size: 0;
  line-height: 25px;
}
.arrow-link:before {
  content: "\e903";
  display: block;
  font-family: "icomoon";
  font-size: 42px;
  font-size: 4.2rem;
  color: #020659;
}

.view-white {
  color: #ffffff;
  display: block;
  width: 143px;
  height: 30px;
  border: 2px solid #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 14px;
  line-height: 25px;
  text-align: center;
  text-transform: capitalize;
}
.view-white:hover {
  color: #0433FF;
  background: #ffffff;
  border-color: #8E5EF6;
}

.delete {
  color: #E93232;
}
.delete:hover {
  color: #E93232;
}

.purple-link {
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  background: #8E5EF6;
  font-family: "source_sans_probold";
  padding: 15px 25px;
  border-radius: 30px;
}
.purple-link:hover {
  color: #ffffff;
  opacity: 0.5;
}

.cta-change {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "source_sans_probold";
  color: #8E5EF6;
}

.cta-purple {
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
  background: #8E5EF6;
  font-family: "source_sans_probold";
  padding: 5px 35px;
  border-radius: 30px;
}
.cta-purple:hover {
  color: #ffffff;
  opacity: 0.5;
}

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

svg {
  vertical-align: baseline;
  display: block;
}

picture {
  display: block;
}

html {
  font-size: 62.5%;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  background: #F9F9FC;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #020659;
  text-decoration: none;
}

a:hover {
  color: #020659;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #ffffff;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: 'source_sans_problack';
  src: url("../fonts/sourcesanspro-black-webfont.woff2") format("woff2"), url("sourcesanspro-black-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'sintonybold';
  src: url("../fonts/sintony-bold-webfont.woff2") format("woff2"), url("sintony-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'sintonyregular';
  src: url("../fonts/sintony-regular-webfont.woff2") format("woff2"), url("sintony-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'source_sans_probold';
  src: url("../fonts/sourcesanspro-bold-webfont.woff2") format("woff2"), url("sourcesanspro-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  font-family: "sintonyregular", Arial;
  font-weight: 400;
  line-height: 1.5;
  color: #585858;
  font-size: 18px;
}

strong {
  font-weight: 400;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?hrmucu");
  src: url("../fonts/icomoon.eot?hrmucu#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?hrmucu") format("truetype"), url("../fonts/icomoon.woff?hrmucu") format("woff"), url("../fonts/icomoon.svg?hrmucu#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-keyboard_arrow_up:before {
  content: "\e902";
}

.icon-keyboard_arrow_right:before {
  content: "\e903";
}

.icon-keyboard_arrow_left:before {
  content: "\e904";
}

.icon-keyboard_arrow_down:before {
  content: "\e905";
}

.icon-search:before {
  content: "\e900";
}

.icon-zoom:before {
  content: "\e900";
}

.icon-magnifier:before {
  content: "\e900";
}

.icon-magnifying-glass:before {
  content: "\e900";
}

.icon-eye:before {
  content: "\e9ce";
}

.icon-eye-blocked:before {
  content: "\e9d1";
}

.icon-ellipsis-v:before {
  content: "\e901";
}

.icon-close:before {
  content: "\e906";
}

/* Components */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-left: 0;
  padding-right: 0;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1280px;
  }
}
@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}
@media (max-width: 1699px) and (min-width: 1401px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1370px;
  }
}
@media (min-width: 1700px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1370px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

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

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

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

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

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

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

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

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

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

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

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

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

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

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

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

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

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

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

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

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

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

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

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

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.text-center {
  text-align: center;
}

.front-z {
  z-index: 1;
}

.back-z {
  z-index: -1;
}

.custom-transition {
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}

.cta-first {
  color: #0433FF;
  font-size: 18px;
  font-family: "source_sans_probold";
  text-decoration: none;
  display: inline-block;
  height: 60px;
  border-radius: 30px;
  background: #ffffff;
  padding: 13px 35px;
  position: relative;
}
.cta-first:after {
  content: "\e903";
  display: block;
  width: 40px;
  height: 40px;
  background: #0433FF;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 35px;
  font-family: "icomoon";
  color: #ffffff;
  text-align: center;
  line-height: 38px;
  font-size: 28px;
  font-size: 2.8rem;
}
.cta-first span {
  display: block;
  padding-right: 45px;
  padding: 3px 70px 0 0;
}
.cta-first:hover {
  color: #0433FF;
  opacity: 0.8;
}

.cta-second {
  display: block;
  text-align: center;
  border-radius: 30px;
  background: #8E5EF6;
  color: #ffffff;
  padding: 16px 15px;
  font-family: "source_sans_probold";
  font-size: 18px;
  font-size: 1.8rem;
}
.cta-second:hover {
  color: #ffffff;
  opacity: 0.8;
}

.round-status {
  display: inline-block;
  width: 130px;
  height: 30px;
  border-radius: 15px;
  color: #020659;
  font-family: "source_sans_probold";
  background: #35F2DF;
  text-align: center;
}

.round-pause {
  display: inline-block;
  width: 130px;
  height: 30px;
  border-radius: 15px;
  color: #020659;
  font-family: "source_sans_probold";
  background: #FCF9B6;
  text-align: center;
}

.round-close {
  opacity: 0.5;
  display: inline-block;
  width: 130px;
  height: 30px;
  border-radius: 15px;
  color: #020659;
  font-family: "source_sans_probold";
  background: #f1f1f4;
  text-align: center;
}

.round-number {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 50%;
  background: #dfd6f9;
  color: #8E5EF6;
  font-family: "sintonybold";
  text-align: center;
  line-height: 32px;
}

.btn-pink,
input.btn-pink {
  display: block;
  text-align: center;
  background: #F2ACE0;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
  height: 40px;
  border-radius: 5px;
  padding: 10px 0;
  font-family: "sintonybold";
}

.svg-graphic {
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}

.p-rel {
  position: relative;
}

.box-radius {
  padding: 0 15px;
}
.box-radius > div {
  background: #ffffff;
  box-shadow: 0px 0px 10px #f1ebfe;
  border-radius: 10px;
  height: 100%;
}

.box-radius-blue {
  background: transparent linear-gradient(147deg, #0433FF 0%, #35F2DF 100%) 0% 0%;
  border-radius: 10px;
  height: 100%;
  color: #ffffff;
  padding: 30px 30px;
}

.table-responsive table {
  border: none;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.table-responsive th,
.table-responsive td {
  padding: 13px 0.625em;
  border-bottom: 1px solid #e9e9ec;
}
.table-responsive th {
  border-bottom: 1px solid #e9e9ec;
  color: #020659;
  font-family: "source_sans_problack";
  font-size: 20px;
  font-size: 2rem;
  padding: 13px 0.625em;
}
.table-responsive th span {
  display: inline-block;
  background: #020659;
  width: 15px;
  height: 15px;
  margin: 7.5px;
  margin: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
  -o-transform: rotate(225deg);
  cursor: pointer;
  vertical-align: top;
  margin: 3px 0 0 12px;
}
.table-responsive th span:after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  background: #F9F9FC;
}
.table-responsive table[data-order="desc"] th span {
  transform: rotate(45deg);
  margin-top: 10px;
}
.table-responsive td {
  color: #585858;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "sintonybold";
  padding: 13px 0.625em;
  display: block;
  text-align: right;
}
.table-responsive td:before {
  content: attr(data-label);
  float: left;
  font-size: 16px;
  font-size: 1.6rem;
  color: #585858;
}
.table-responsive td:last-child {
  border-bottom: 0;
}
.table-responsive thead {
  display: none;
}
.table-responsive tr {
  border-bottom: 3px solid #F5F7FC;
  display: block;
  margin-bottom: 0.625em;
}
@media (min-width: 992px) {
  .table-responsive thead {
    display: table-header-group;
  }
  .table-responsive tr {
    border-bottom: none;
    display: table-row;
    margin-bottom: 0;
  }
  .table-responsive td {
    display: table-cell;
    text-align: left;
  }
  .table-responsive td:last-child {
    border-bottom: 1px solid #e9e9ec;
  }
  .table-responsive td::before {
    display: none;
  }
}

.table-parameters table {
  border: none;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.table-parameters th,
.table-parameters td {
  border-bottom: 1px solid #e9e9ec;
}
.table-parameters th {
  border-bottom: 1px solid #e9e9ec;
  color: #020659;
  font-family: "source_sans_problack";
  font-size: 20px;
  font-size: 2rem;
  padding: 18px 15px;
}
@media (min-width: 992px) {
  .table-parameters th {
    padding: 18px 0;
  }
}
.table-parameters td {
  color: #585858;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "sintonybold";
  padding: 18px 15px;
}
@media (min-width: 992px) {
  .table-parameters td {
    padding: 18px 0;
  }
}

/* Layout */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  padding-top: 18px;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 0;
  }
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
  width: 45px;
  height: 45px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.navbar-toggler:focus, .navbar-toggler:hover {
  text-decoration: none;
  outline: 0;
}
.navbar-toggler span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #020659;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.navbar-toggler span:nth-child(1) {
  top: 0px;
}
.navbar-toggler span:nth-child(2) {
  top: 18px;
}
.navbar-toggler span:nth-child(3) {
  top: 36px;
}

.open .navbar-toggler span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.open .navbar-toggler span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.open .navbar-toggler span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

ul.social {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 45px 0 15px;
}
ul.social li {
  padding: 0 13px 0 0;
}
ul.social li .fa {
  font-size: 20px;
  font-size: 2rem;
}
@media (max-width: 991.98px) {
  ul.social {
    position: absolute;
    margin: 0;
    top: -5px;
    right: 33px;
  }
}

.nav-users .open-users {
  display: block;
  width: 260px;
  height: 60px;
  background: #c4acf8;
  border-radius: 40px;
  position: relative;
  padding: 16px 36px;
}
.nav-users .open-users span {
  color: #ffffff;
  font-family: "source_sans_probold";
  font-size: 18px;
  font-size: 1.8rem;
}
.nav-users .open-users strong {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  color: #8E5EF6;
  font-family: "sintonybold";
  display: block;
  text-align: center;
  line-height: 48px;
  font-size: 20px;
  font-size: 2rem;
  position: absolute;
  top: 7px;
  right: 11px;
  text-transform: uppercase;
}

.ctn-users {
  position: absolute;
  top: 75px;
  right: 12px;
  width: 398px;
  background: rgba(142, 94, 246, 0.71);
  border-radius: 30px;
  text-align: center;
  color: #ffffff;
  padding: 30px 15px 34px 15px;
  display: none;
  z-index: 9;
}
.ctn-users a {
  color: #ffffff;
}
.ctn-users .user strong {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  color: #8E5EF6;
  font-family: "sintonybold";
  display: block;
  text-align: center;
  line-height: 48px;
  font-size: 20px;
  font-size: 2rem;
  margin: 0 auto;
}
.ctn-users .user span {
  display: block;
  text-align: center;
  font-family: "sintonybold";
  font-size: 18px;
  font-size: 1.8rem;
  padding: 15px 0 35px 0;
}
.ctn-users .border {
  margin: 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "source_sans_probold";
  padding: 10px 0;
  margin-bottom: 30px;
}
.ctn-users .logout {
  margin: 0;
}
.ctn-users .logout a {
  display: inline-block;
  background: #8E5EF6;
  border-radius: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "source_sans_probold";
  padding: 7px 40px;
}

.navbar-collapse .navbar-nav {
  display: none;
}

.navbar {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 991.98px) {
  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.navbar-nav {
  text-align: right;
}
.navbar-nav .nav-link {
  color: #020659;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: "source_sans_probold";
  padding: 5px 0;
  display: block;
}

.navbar-brand img {
  max-width: 280px;
}

.nav-users .open-users {
  width: 60px;
  padding: 0;
  position: absolute;
  top: -6px;
  right: 80px;
}
@media (max-width: 400px) {
  .nav-users .open-users {
    right: 37px;
    width: 56px;
    height: 56px;
  }
}
.nav-users .open-users span {
  display: none;
}
.nav-users .open-users strong {
  top: 7px;
  right: 8px;
}
@media (max-width: 400px) {
  .nav-users .open-users strong {
    width: 40px;
    height: 40px;
    line-height: 43px;
  }
}

.ctn-users {
  width: 290px;
  padding: 20px 15px 25px 15px;
}
.ctn-users .user span {
  padding: 10px 0 20px 0;
}
.ctn-users p.border {
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: flex-end !important;
  }

  .navbar {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar .navbar-toggler {
    display: none;
  }
  .navbar .navbar-nav {
    flex-direction: row;
    display: flex !important;
  }
  .navbar .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar .navbar-nav .nav-link {
    padding-right: 25px;
    padding-left: 25px;
    color: #020659;
    font-size: 15px;
    font-size: 1.5rem;
    font-family: "sintonyregular", Arial;
    text-transform: uppercase;
  }

  .nav-users .open-users {
    width: 260px;
    position: relative;
    padding: 16px 36px;
    right: auto;
    top: auto;
  }
  .nav-users .open-users span {
    display: block;
  }

  .navbar .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    padding-top: 0;
  }
  .navbar .navbar-toggler {
    display: none;
  }

  .navbar .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }

  .navbar-brand img {
    max-width: 100%;
  }
}
@media (max-width: 439.98px) {
  .navbar-brand {
    margin-right: 0;
  }
  .navbar-brand img {
    max-width: 190px;
  }

  .navbar-toggler {
    width: 35px;
    height: 30px;
  }
  .navbar-toggler span {
    height: 3px;
  }
  .navbar-toggler span:nth-child(2) {
    top: 13px;
  }
  .navbar-toggler span:nth-child(3) {
    top: 27px;
  }

  .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar > .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .ctn-users {
    right: 0;
    top: 55px;
  }
}
footer {
  background: #0433FF;
  color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
footer .scroll-top {
  display: none;
}
footer a {
  color: #ffffff;
}
footer .social {
  display: flex;
}
footer .social li {
  padding: 0 30px 0 0;
}
footer .social li a {
  width: 32px;
  height: 32px;
  background: url(../images/linkedin.svg) no-repeat 0 0;
  display: block;
}
footer .social li a span {
  display: none;
}
footer .social li a.twitter {
  background-image: url(../images/twitter.svg);
}
footer .social li a.youtube {
  background-image: url(../images/youtube.svg);
  width: 36px;
  height: 25px;
  margin-top: 5px;
}
footer .titre {
  font-family: "source_sans_problack";
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  padding-bottom: 5px;
}
footer ul li a {
  color: #ffffff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
footer ul li a:hover {
  color: #ffffff;
  font-family: "sintonybold";
}
footer .cols {
  width: 50%;
  margin-bottom: 20px;
}
footer .cols:last-child {
  width: 100%;
}
footer .logo {
  width: 100%;
  margin-bottom: 20px;
}
footer .logo .lg {
  display: block;
  margin-bottom: 30px;
}
footer .logo .lg img {
  max-width: 100%;
}
footer .logo .lg a {
  max-width: 260px;
}
footer .ft-large {
  margin-top: 0;
}
footer .ft-large p {
  margin: 0;
  text-align: center;
  font-weight: 100;
  font-size: 14px;
  font-size: 1.4rem;
}
footer .ft-large p a {
  font-weight: 500;
  text-decoration: none;
  font-family: "sintonybold";
}
footer .ft-large p a:hover {
  font-weight: 900;
  color: #ffffff;
}
@media (min-width: 992px) {
  footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  footer .cols {
    flex: 0 0 auto;
    width: 24%;
    margin-bottom: 0;
  }
  footer .cols:last-child {
    width: 15%;
  }
  footer .cols:nth-child(3) {
    padding-left: 0;
  }
  footer div.logo {
    width: 35%;
    margin-right: 25%;
  }
  footer .titre {
    font-size: 30px;
    font-size: 3rem;
  }
  footer ul li a {
    font-size: 20px;
    font-size: 2rem;
  }
  footer .ft-large {
    margin-top: 65px;
  }
  footer .ft-large p {
    font-size: 20px;
    font-size: 2rem;
  }
}

#page {
  background: #fefefe;
}

.top-banniere .heading_h1 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 60px;
  font-size: 6rem;
  text-align: center;
  padding-top: 150px;
  font-family: "sintonyregular", Arial;
}
.top-banniere .heading_h1 strong {
  font-family: "sintonybold";
}
.top-banniere .txt {
  text-align: center;
  padding-bottom: 190px;
}
.top-banniere .txt p {
  color: #fff;
  text-align: center;
}
.top-banniere .txt .cta {
  display: inline-block;
  border: 2px solid #da3232;
  color: #fff;
  text-transform: uppercase;
  padding: 15px;
  font-size: 14px;
  font-size: 1.4rem;
}
.top-banniere .box {
  text-align: center;
  padding: 0 10px;
  position: relative;
  padding-bottom: 100px;
  background: url(../images/shadow.png) no-repeat bottom center;
}
.top-banniere .box img {
  width: 100%;
}
.top-banniere .box .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: left;
  padding: 75px 25px 0 25px;
}
.top-banniere .box .text h2 {
  color: #fff;
  margin-bottom: 20px;
}
.top-banniere .box .text p {
  margin: 0;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  background: #da3232;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media (max-width: 991.98px) {
  .top-banniere .heading_h1 {
    font-size: 48px;
    font-size: 4.8rem;
  }
  .top-banniere .row:first-child {
    background: url(../images/background-principal.jpg) no-repeat top center;
    background-size: cover;
    position: relative;
  }
  .top-banniere .box {
    max-width: 380px;
    margin: 0 auto;
    padding-bottom: 35px;
    padding-left: 0;
    padding-right: 0;
  }
  .top-banniere .box img {
    width: auto;
  }
}
@media (max-width: 500px) {
  .top-banniere .txt {
    padding-left: 15px;
    padding-right: 15px;
  }
  .top-banniere .box {
    max-width: 100%;
    width: 100%;
  }
  .top-banniere .box img {
    width: 100%;
  }
}

.bottom-cats {
  max-width: 1200px;
  margin: 0 auto;
}

.top-cats {
  text-align: center;
  background: url(../images/bg-femme.jpg) no-repeat bottom center;
  background-size: 100% auto;
  height: 1000px;
}
.top-cats h2 {
  text-align: center;
  color: #333;
}
.top-cats .txt {
  padding-bottom: 45px;
}
.top-cats .txt p {
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 991.98px) {
  .top-cats {
    height: auto;
  }
  .top-cats h2 br {
    display: none;
  }
  .top-cats .txt p br {
    display: none;
  }
}

.service-cats .col-lg-4 {
  background: #fff;
  padding: 45px;
}
.service-cats .row {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -75px;
  margin-bottom: 150px;
}
.service-cats h3 {
  color: #333;
  margin-bottom: 10px;
}
.service-cats p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 175%;
}
.service-cats a {
  margin: 0;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  background: #da3232;
  border-radius: 2px;
  padding: 5px 15px;
  font-size: 12px;
  font-size: 1.2rem;
}
.service-cats .gris {
  background: #efefef;
}
.service-cats .noir {
  background: #232323;
  color: #fff;
}
.service-cats .noir h3 {
  color: #fff;
}
@media (max-width: 991.98px) {
  .service-cats .row {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.content {
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .content {
    padding-bottom: 150px;
  }
}

#page .bg-home {
  background: url(../images/background-principal.jpg) no-repeat top center;
}
@media (max-width: 991.98px) {
  #page .bg-home {
    background: none;
  }
}

.service-perfect .row {
  align-items: center;
}
.service-perfect .img img {
  max-width: 590px;
  position: relative;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.service-perfect .txt {
  background: #f1f1f1;
  padding: 120px 100px;
  border-radius: 3px;
}
.service-perfect h2 {
  margin-bottom: 35px;
}
.service-perfect h2 em {
  color: #333;
  font-weight: 600;
  font-family: "sintonyregular", Arial;
}
.service-perfect p.info {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 25px;
  line-height: 145%;
}
.service-perfect p.uses {
  font-size: 14px;
  font-size: 1.4rem;
}
.service-perfect p.uses strong {
  font-family: "sintonybold";
}
@media (max-width: 991.98px) {
  .service-perfect .img {
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
  }
  .service-perfect .img img {
    max-width: 100%;
  }
  .service-perfect .txt {
    padding: 25px 40px;
  }
}

.listing-news ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 25px 0;
  margin: 0;
}
.listing-news ul li {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.listing-news ul strong {
  font-family: "source_sans_problack";
  color: #da3232;
  font-size: 37px;
  font-size: 3.7rem;
  margin-right: 15px;
  float: left;
  line-height: 100%;
  padding-top: 3px;
}
.listing-news ul h3 {
  margin: 0;
}
.listing-news ul p {
  font-size: 14px;
  font-size: 1.4rem;
}
@media (max-width: 991.98px) {
  .listing-news ul {
    display: block;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  .listing-news ul li {
    width: 100%;
  }
}

.service-more {
  padding-top: 75px;
  padding-bottom: 75px;
}
.service-more .titre {
  text-align: center;
  padding-bottom: 35px;
}
.service-more .titre h2 {
  color: #333;
}
.service-more .titre p {
  font-size: 16px;
  font-size: 1.6rem;
}
.service-more .bx {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.service-more .bx h3 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #333;
}
.service-more .bx p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 165%;
  color: #999;
}
.service-more .bx span.price {
  display: block;
  text-align: center;
  color: #333;
  font-family: "sintonybold";
}
.service-more .inner-box {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  margin-bottom: 15px;
}
.service-more .inner-box img {
  width: 100%;
}
@media (max-width: 991.98px) {
  .service-more {
    padding-top: 45px;
    padding-bottom: 0;
  }
  .service-more .bx {
    margin-bottom: 25px;
  }
  .service-more .inner-box {
    max-width: 378px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .service-more .inner-box img {
    width: auto;
  }
}

.service-carabine {
  background: url(../images/sunset.jpg) no-repeat top center;
  height: 795px;
  padding-top: 175px;
  margin-top: -125px;
}
.service-carabine div.txt {
  padding-top: 65px;
}
.service-carabine div.txt span.price {
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  background: #da3232;
  border-radius: 2px;
  padding: 5px 15px;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 25px;
}
.service-carabine div.txt h2 {
  color: #333;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 105%;
}
.service-carabine div.txt p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 175%;
  margin-bottom: 45px;
}
.service-carabine div.txt a {
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  background: #3d56e4;
  border-radius: 4px;
  padding: 8px 15px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "source_sans_probold";
}
@media (max-width: 991.98px) {
  .service-carabine {
    margin-top: 0;
    padding-top: 0;
    height: auto;
    min-height: 680px;
    background-size: cover;
  }
  .service-carabine .row {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.service-cats.bef {
  margin-top: -100px;
}

.service-perfect.right .img img {
  box-shadow: none;
  margin-left: -75px;
}
@media (max-width: 991.98px) {
  .service-perfect.right .img img {
    max-width: 100%;
    margin-left: 0;
  }
}

.service-notes {
  padding-top: 100px;
}
.service-notes .titre {
  text-align: center;
  padding-bottom: 35px;
}
.service-notes .titre h2 {
  color: #333;
}
.service-notes .titre p {
  font-size: 16px;
  font-size: 1.6rem;
}
.service-notes .bx .usr {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  float: left;
}
.service-notes .bx .txt {
  float: left;
  width: calc( 100% - 90px );
  padding: 0 15px;
}
.service-notes .bx .txt p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 175%;
}
.service-notes .bx .txt p strong {
  font-family: "source_sans_probold";
}
.service-notes .bx ul {
  clear: both;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 25px;
}
.service-notes .bx ul li {
  padding: 0 5px;
}
@media (max-width: 991.98px) {
  .service-notes {
    padding-top: 50px;
  }
  .service-notes .col-sm-12 {
    padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .service-notes .bx .txt {
    padding-right: 0;
    width: calc( 100% - 80px );
  }
}

.service-forms {
  padding-top: 150px;
  background: url(../images/bg-contact.jpg) no-repeat bottom center;
  height: 1025px;
}
.service-forms h2 {
  color: #333;
  text-align: center;
}
.service-forms p {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}
.service-forms .form {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #020659;
}
.service-forms .form .row .col {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.service-forms .form .row .col:last-child {
  border-right: none;
}
.service-forms .form textarea {
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
  border: none;
  border-top: 1px solid #ddd;
}
.service-forms .sub {
  max-width: 580px;
  margin: 0 auto;
  padding-top: 15px;
}
.service-forms .sub input {
  background: #da3232;
  color: #fff;
  border-radius: 0;
  display: block;
  border: none;
  text-align: center;
  width: 100%;
  height: 45px;
}
@media (max-width: 991.98px) {
  .service-forms {
    padding-top: 50px;
  }
}

.top-concept .row {
  align-items: center;
  position: relative;
}
.top-concept h1 {
  font-size: 74px;
  font-size: 7.4rem;
  color: #231f20;
  line-height: 105%;
}
.top-concept h1 strong {
  display: block;
  color: #36ba83;
}
.top-concept p {
  position: absolute;
  bottom: 45px;
  left: 0;
  font-size: 30px;
  font-size: 3rem;
  font-family: "sintonyregular", Arial;
}
.top-concept p strong {
  display: block;
  color: #e23d3f;
  font-weight: 700;
  font-family: "source_sans_problack";
  font-size: 40px;
  font-size: 4rem;
  text-align: right;
}
@media (max-width: 991.98px) {
  .top-concept {
    padding-left: 15px;
    padding-right: 15px;
  }
  .top-concept p {
    position: static;
  }
  .top-concept p strong {
    text-align: left;
  }
  .top-concept h1 {
    font-size: 40px;
    font-size: 4rem;
  }
}

.bc-propos {
  background: url(../images/img-propos.jpg) no-repeat 0 0;
  background-size: auto 100%;
  margin-top: 75px;
  margin-bottom: 75px;
}
.bc-propos .img img {
  display: none;
}
.bc-propos .txt {
  text-align: center;
  padding: 45px 15px;
  background-color: rgba(255, 255, 255, 0.9);
}
.bc-propos h2 {
  color: #000;
  font-size: 48px;
  font-size: 4.8rem;
  margin-bottom: 45px;
  text-align: left;
  padding-left: 10%;
}
.bc-propos h3 {
  color: #000;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "source_sans_problack";
}
.bc-propos p.top {
  margin-bottom: 25px;
  text-align: left;
  padding-left: 10%;
  font-size: 22px;
  font-size: 2.2rem;
}
.bc-propos .inner-bx {
  display: flex;
  flex-wrap: wrap;
}
.bc-propos .inner-bx > div {
  flex: 0 0 auto;
  width: 50%;
  padding-top: 75px;
}
.bc-propos .inner-bx p {
  font-size: 20px;
  font-size: 2rem;
}
@media (max-width: 991.98px) {
  .bc-propos {
    background: none;
  }
  .bc-propos .img img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .bc-propos h2 {
    text-align: center;
    padding-left: 0;
  }
  .bc-propos p.top {
    padding-left: 0;
    text-align: center;
  }
  .bc-propos p.top br {
    display: none;
  }
  .bc-propos .inner-bx h3 {
    font-size: 20px;
    font-size: 2rem;
  }
  .bc-propos .inner-bx > div {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
  }
  .bc-propos .inner-bx > div p {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .bc-propos .inner-bx > div p br {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .bc-propos {
    margin-bottom: 0;
  }
  .bc-propos .inner-bx > div {
    width: 100%;
  }
  .bc-propos h2 {
    font-size: 40px;
    font-size: 4rem;
  }
}

.multiple-float {
  padding-bottom: 75px;
}
.multiple-float .first {
  align-items: center;
}
.multiple-float .first .txt {
  background: #c6433d;
  padding: 45px 65px;
  color: #fff;
}
.multiple-float .first h2 {
  text-align: right;
  padding: 0 60px;
  color: #000;
  font-size: 48px;
  font-size: 4.8rem;
}
.multiple-float .first h2 span {
  display: block;
  text-align: right;
  font-family: "Myriad Pro";
  font-style: italic;
  font-weight: bold;
}
.multiple-float .second .img {
  padding-bottom: 45px;
}
.multiple-float .second .img img {
  max-width: 720px;
  position: relative;
  z-index: 1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
@media (max-width: 1400px) {
  .multiple-float .second .img img {
    max-width: 680px;
  }
}
@media (max-width: 1260px) {
  .multiple-float .second .img img {
    max-width: 100%;
  }
}
.multiple-float .second .desc {
  background: #c6433d;
  padding: 45px 65px;
  color: #fff;
}
.multiple-float .second h3 {
  color: #fff;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: "sintonyregular", Arial;
  font-family: "sintonybold";
  margin-bottom: 25px;
}
.multiple-float .second .price {
  display: block;
  font-size: 30px;
  font-size: 3rem;
  font-family: "sintonybold";
  margin: 10px 0 35px 0;
}
.multiple-float .second .departure {
  border: 1px solid #FFF;
  padding: 10px 25px;
  display: inline-block;
}
.multiple-float .second .departure strong {
  font-family: "sintonybold";
  display: inline-block;
  vertical-align: middle;
}
.multiple-float .second .departure strong.last {
  padding-left: 15px;
}
@media (max-width: 991.98px) {
  .multiple-float .first h2 {
    text-align: center;
    padding: 0 25px;
  }
  .multiple-float .first .txt {
    padding: 35px 25px;
  }
  .multiple-float .second .img {
    padding-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .multiple-float .first h2 {
    font-size: 37px;
    font-size: 3.7rem;
    padding: 0 15px;
    text-align: center;
  }
  .multiple-float .first h2 span {
    text-align: center;
  }
  .multiple-float .first .txt {
    padding: 35px 15px;
  }
  .multiple-float .first .txt p br {
    display: none;
  }
  .multiple-float .second .img {
    padding-bottom: 0;
  }
  .multiple-float .second .desc {
    padding: 35px 15px;
  }
}

.carbone-concept {
  background: url(../images/bg-wood.png) no-repeat top right;
  background-size: auto 100%;
  padding-bottom: 75px;
  padding-left: 15px;
}
.carbone-concept h2 {
  color: #000;
  width: 100%;
  margin-bottom: 45px;
}
.carbone-concept ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.carbone-concept ul li {
  margin-bottom: 15px;
}
.carbone-concept ul span {
  border-radius: 50%;
  color: #fff;
  background: #c6433d;
  width: 25px;
  height: 25px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  padding-top: 2px;
  margin-right: 10px;
}
.carbone-concept .txt {
  position: relative;
}
.carbone-concept .txt ul {
  position: absolute;
  bottom: 0;
  left: 15%;
}
@media (max-width: 991.98px) {
  .carbone-concept {
    padding-right: 15px;
  }
  .carbone-concept .txt {
    padding-top: 20px;
  }
  .carbone-concept .txt ul {
    position: static;
  }
}

.green-concept {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 15px;
  padding-right: 15px;
}
.green-concept .img {
  padding-top: 100px;
}
.green-concept h2 {
  color: #000;
  margin-bottom: 155px;
}
.green-concept h2 strong {
  color: #c6433d;
}
.green-concept h2 span {
  font-family: "Myriad Pro";
  font-style: italic;
  font-weight: bold;
}
.green-concept .txt p {
  margin-bottom: 75px;
}
@media (max-width: 991.98px) {
  .green-concept h2 {
    margin-bottom: 45px;
  }
  .green-concept .txt p {
    margin-bottom: 25px;
  }
  .green-concept .txt p br {
    display: none;
  }
  .green-concept .img {
    padding-top: 0;
  }
}

.green-thanks h2 {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 48px;
  font-size: 4.8rem;
  margin-bottom: 75px;
}
.green-thanks h2 span {
  font-family: "Myriad Pro";
  font-style: italic;
  font-weight: bold;
  font-size: 55px;
  font-size: 5.5rem;
}
.green-thanks .first {
  background: #c6433d;
  padding: 65px 35px 25px 65px;
  color: #fff;
}
.green-thanks .first .img {
  padding-bottom: 50px;
}
.green-thanks .first .img img {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.green-thanks .first .txt {
  padding: 25px 0 25px 75px;
}
.green-thanks .first .txt p {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 25px;
}
.green-thanks .second {
  padding-top: 45px;
  padding-bottom: 50px;
  padding-left: 125px;
}
.green-thanks .second h3 {
  color: #000;
  font-size: 48px;
  font-size: 4.8rem;
  margin-bottom: 35px;
}
.green-thanks .second h3 strong {
  font-family: "Myriad Pro";
  font-style: italic;
  font-weight: bold;
  font-size: 55px;
  font-size: 5.5rem;
}
.green-thanks .second p {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 25px;
}
@media (max-width: 991.98px) {
  .green-thanks {
    padding-left: 15px;
    padding-right: 15px;
  }
  .green-thanks h2 {
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 35px;
  }
  .green-thanks .first {
    padding: 40px 35px;
  }
  .green-thanks .first .txt {
    padding: 0;
  }
  .green-thanks .first .txt p br {
    display: none;
  }
  .green-thanks .second {
    padding: 40px 35px;
  }
  .green-thanks .second h3 {
    font-size: 40px;
    font-size: 4rem;
  }
  .green-thanks .second h3 strong {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media (max-width: 575.98px) {
  .green-thanks .second {
    padding: 40px 20px;
  }
}

.voyage-row .text {
  background: #fff;
  width: 88%;
  position: relative;
  top: -24px;
  padding: 25px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.voyage-row .text h2 {
  color: #000;
  font-size: 30px;
  font-size: 3rem;
  margin: 15px 0;
}
.voyage-row .text p {
  margin: 0;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  background: #da3232;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 12px;
  font-size: 1.2rem;
}
.voyage-row .box {
  padding: 0 15px;
  padding-bottom: 45px;
}
@media (max-width: 991.98px) {
  .voyage-row .text {
    width: 100%;
  }
  .voyage-row .box {
    padding-bottom: 25px;
  }
}

.top-titre {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 75px;
}
.top-titre .row {
  align-items: center;
  position: relative;
  background: url(../images/concept-voyage.png) no-repeat top right;
  height: 450px;
  background-size: auto 100%;
}
.top-titre h1 {
  font-size: 124px;
  font-size: 12.4rem;
  color: #231f20;
  line-height: 105%;
  text-align: right;
  color: #000;
}
.top-titre h1 strong {
  display: block;
  color: #36ba83;
}
.top-titre img {
  display: none;
}
@media (max-width: 991.98px) {
  .top-titre {
    padding-left: 15px;
    padding-right: 15px;
  }
  .top-titre p {
    position: static;
  }
  .top-titre p strong {
    text-align: left;
  }
  .top-titre h1 {
    font-size: 40px;
    font-size: 4rem;
  }
  .top-titre .row {
    height: auto;
    background: none;
  }
  .top-titre .row img {
    display: block;
  }
}

.contact-forms {
  padding-bottom: 150px;
}
.contact-forms .row {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-forms .form-control,
.contact-forms textarea {
  color: #000;
  border: 2px solid #000;
  padding: 35px 25px;
  border-radius: 40px;
  font-size: 24px;
  font-size: 2.4rem;
}
.contact-forms .col-lg-6 {
  padding: 0 15px 25px 15px;
}
.contact-forms .sub {
  text-align: right;
}
.contact-forms .sub input {
  background: #000;
  width: 200px;
  height: 55px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
}

/*# sourceMappingURL=light.css.map */
