.wf-loading {
  color: transparent !important;
}

/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  background: none;
  resize: none;
  margin: 0;
  border: none;
}

input:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 0.5;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: black;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: black;
}

button {
  border: none;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
  border-radius: 0;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

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

img,
audio,
video {
  height: auto;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
  text-align: left;
}

.overflow-hidden {
  overflow: hidden;
}

.fixed {
  position: fixed;
}

.s-only {
  display: none !important;
}
@media (max-width: 767px) {
  .s-only {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .s-hide {
    display: none !important;
  }
}

.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.pos-static {
  position: static;
}

.dspl-block {
  display: block;
}

.dspl-none {
  display: none;
}

.dspl-inline {
  display: inline;
}

.dspl-inline-block {
  display: inline-block;
}

.dspl-flex {
  display: flex;
}

.dspl-inline-flex {
  display: inline-flex;
}

@media (max-width: 1280px) {
  .l-dspl-block {
    display: block;
  }

  .l-dspl-none {
    display: none;
  }

  .l-dspl-inline {
    display: inline;
  }

  .l-dspl-inline-block {
    display: inline-block;
  }

  .l-dspl-flex {
    display: flex;
  }

  .l-dspl-inline-flex {
    display: inline-flex;
  }
}
@media (max-width: 992px) {
  .m-dspl-block {
    display: block;
  }

  .m-dspl-none {
    display: none;
  }

  .m-dspl-inline {
    display: inline;
  }

  .m-dspl-inline-block {
    display: inline-block;
  }

  .m-dspl-flex {
    display: flex;
  }

  .m-dspl-inline-flex {
    display: inline-flex;
  }
}
@media (max-width: 767px) {
  .s-dspl-block {
    display: block;
  }

  .s-dspl-none {
    display: none;
  }

  .s-dspl-inline {
    display: inline;
  }

  .s-dspl-inline-block {
    display: inline-block;
  }

  .s-dspl-flex {
    display: flex;
  }

  .s-dspl-inline-flex {
    display: inline-flex;
  }
}
.column {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
}
.column.m-dspl-none {
  display: none;
}

.row {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
}
.row.m-dspl-none {
  display: none;
}

.column-reverse {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column-reverse;
}

.row-reverse {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row-reverse;
}

.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

.shrink {
  flex-wrap: initial;
}

.no-shrink {
  flex-shrink: 0;
}

.flex-1 {
  flex: 1;
  min-width: 0;
}

.flex-2 {
  flex: 2;
  min-width: 0;
}

.flex-3 {
  flex: 3;
  min-width: 0;
}

.flex-4 {
  flex: 4;
  min-width: 0;
}

.justc-start {
  justify-content: flex-start;
}

.justc-center {
  justify-content: center;
}

.justc-end {
  justify-content: flex-end;
}

.justc-space-b {
  justify-content: space-between;
}

.justc-space-a {
  justify-content: space-around;
}

.alitems-start {
  align-items: flex-start;
}

.alitems-end {
  align-items: flex-end;
}

.alitems-center {
  align-items: center;
}

.alitems-stretch {
  align-items: stretch;
}

.aliself-start {
  align-self: flex-start;
}

.aliself-end {
  align-self: flex-end;
}

.aliself-center {
  align-self: center;
}

.aliself-stretch {
  align-self: stretch;
}

@media (max-width: 1280px) {
  .l-row {
    flex-direction: row;
  }

  .l-column {
    flex-direction: column;
  }

  .l-column-reverse {
    flex-direction: column-reverse;
  }

  .l-row-reverse {
    flex-direction: row-reverse;
  }

  .l-wrap {
    flex-wrap: wrap;
  }

  .l-no-wrap {
    flex-wrap: nowrap;
  }

  .l-flex-1 {
    flex: 1;
  }

  .l-justc-start {
    justify-content: flex-start;
  }

  .l-justc-center {
    justify-content: center;
  }

  .l-justc-end {
    justify-content: flex-end;
  }

  .l-justc-space-b {
    justify-content: space-between;
  }

  .l-justc-space-a {
    justify-content: space-around;
  }

  .l-alitems-start {
    align-items: flex-start;
  }

  .l-alitems-end {
    align-items: flex-end;
  }

  .l-alitems-center {
    align-items: center;
  }

  .l-alitems-stretch {
    align-items: stretch;
  }

  .l-aliself-start {
    align-self: flex-start;
  }

  .l-aliself-end {
    align-self: flex-end;
  }

  .l-aliself-center {
    align-self: center;
  }

  .l-aliself-stretch {
    align-self: stretch;
  }
}
@media (max-width: 992px) {
  .m-row {
    flex-direction: row;
  }

  .m-column {
    flex-direction: column;
  }

  .m-column-reverse {
    flex-direction: column-reverse;
  }

  .m-row-reverse {
    flex-direction: row-reverse;
  }

  .m-wrap {
    flex-wrap: wrap;
  }

  .m-no-wrap {
    flex-wrap: nowrap;
  }

  .m-flex-1 {
    flex: 1;
  }

  .m-justc-start {
    justify-content: flex-start;
  }

  .m-justc-center {
    justify-content: center;
  }

  .m-justc-end {
    justify-content: flex-end;
  }

  .m-justc-space-b {
    justify-content: space-between;
  }

  .m-justc-space-a {
    justify-content: space-around;
  }

  .m-alitems-start {
    align-items: flex-start;
  }

  .m-alitems-end {
    align-items: flex-end;
  }

  .m-alitems-center {
    align-items: center;
  }

  .m-alitems-stretch {
    align-items: stretch;
  }

  .m-aliself-start {
    align-self: flex-start;
  }

  .m-aliself-end {
    align-self: flex-end;
  }

  .m-aliself-center {
    align-self: center;
  }

  .m-aliself-stretch {
    align-self: stretch;
  }
}
@media (max-width: 767px) {
  .s-row {
    flex-direction: row;
  }

  .s-column {
    flex-direction: column;
  }

  .s-column-reverse {
    flex-direction: column-reverse;
  }

  .s-row-reverse {
    flex-direction: row-reverse;
  }

  .s-wrap {
    flex-wrap: wrap;
  }

  .s-no-wrap {
    flex-wrap: nowrap;
  }

  .s-flex-1 {
    flex: 1;
  }

  .s-justc-start {
    justify-content: flex-start;
  }

  .s-justc-center {
    justify-content: center;
  }

  .s-justc-end {
    justify-content: flex-end;
  }

  .s-justc-space-b {
    justify-content: space-between;
  }

  .s-justc-space-a {
    justify-content: space-around;
  }

  .s-alitems-start {
    align-items: flex-start;
  }

  .s-alitems-end {
    align-items: flex-end;
  }

  .s-alitems-center {
    align-items: center;
  }

  .s-alitems-stretch {
    align-items: stretch;
  }

  .s-aliself-start {
    align-self: flex-start;
  }

  .s-aliself-end {
    align-self: flex-end;
  }

  .s-aliself-center {
    align-self: center;
  }

  .s-aliself-stretch {
    align-self: stretch;
  }
}
.mg-0 {
  margin: 0;
}

.mg-xs {
  margin: 0.3125rem;
}

.mg-s {
  margin: 0.625rem;
}

.mg-m {
  margin: 1.25rem;
}

.mg-l {
  margin: 1.875rem;
}

.mg-xl {
  margin: 2.5rem;
}

.mgt-0 {
  margin-top: 0;
}

.mgt-xs {
  margin-top: 0.3125rem;
}

.mgt-s {
  margin-top: 0.625rem;
}

.mgt-m {
  margin-top: 1.25rem;
}

.mgt-l {
  margin-top: 1.875rem;
}

.mgt-xl {
  margin-top: 2.5rem;
}

.mgr-0 {
  margin-right: 0;
}

.mgr-xs {
  margin-right: 0.3125rem;
}

.mgr-s {
  margin-right: 0.625rem;
}

.mgr-m {
  margin-right: 1.25rem;
}

.mgr-l {
  margin-right: 1.875rem;
}

.mgr-xl {
  margin-right: 2.5rem;
}

.mgb-0 {
  margin-bottom: 0;
}

.mgb-xs {
  margin-bottom: 0.3125rem;
}

.mgb-s {
  margin-bottom: 0.625rem;
}

.mgb-m {
  margin-bottom: 1.25rem;
}

.mgb-l {
  margin-bottom: 1.875rem;
}

.mgb-xl {
  margin-bottom: 2.5rem;
}

.mgl-0 {
  margin-left: 0;
}

.mgl-xs {
  margin-left: 0.3125rem;
}

.mgl-s {
  margin-left: 0.625rem;
}

.mgl-m {
  margin-left: 1.25rem;
}

.mgl-l {
  margin-left: 1.875rem;
}

.mgl-xl {
  margin-left: 2.5rem;
}

.mg-vertical-xs {
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;
}

.mg-vertical-s {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

.mg-vertical-m {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.mg-vertical-l {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.mg-vertical-xl {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.mg-horizontal-xs {
  margin-left: 0.3125rem;
  margin-right: 0.3125rem;
}

.mg-horizontal-s {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.mg-horizontal-m {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.mg-horizontal-l {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
}

.mg-horizontal-xl {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.pd-0 {
  padding: 0;
}

.pd-xs {
  padding: 0.3125rem;
}

.pd-s {
  padding: 0.625rem;
}

.pd-m {
  padding: 1.25rem;
}

.pd-l {
  padding: 1.875rem;
}

.pd-xl {
  padding: 2.5rem;
}

.pdt-0 {
  padding-top: 0;
}

.pdt-xs {
  padding-top: 0.3125rem;
}

.pdt-s {
  padding-top: 0.625rem;
}

.pdt-m {
  padding-top: 1.25rem;
}

.pdt-l {
  padding-top: 1.875rem;
}

.pdt-xl {
  padding-top: 2.5rem;
}

.pdr-0 {
  padding-right: 0;
}

.pdr-xs {
  padding-right: 0.3125rem;
}

.pdr-s {
  padding-right: 0.625rem;
}

.pdr-m {
  padding-right: 1.25rem;
}

.pdr-l {
  padding-right: 1.875rem;
}

.pdr-xl {
  padding-right: 2.5rem;
}

.pdb-0 {
  padding-bottom: 0;
}

.pdb-xs {
  padding-bottom: 0.3125rem;
}

.pdb-s {
  padding-bottom: 0.625rem;
}

.pdb-m {
  padding-bottom: 1.25rem;
}

.pdb-l {
  padding-bottom: 1.875rem;
}

.pdb-xl {
  padding-bottom: 2.5rem;
}

.pdl-0 {
  padding-left: 0;
}

.pdl-xs {
  padding-left: 0.3125rem;
}

.pdl-s {
  padding-left: 0.625rem;
}

.pdl-m {
  padding-left: 1.25rem;
}

.pdl-l {
  padding-left: 1.875rem;
}

.pdl-xl {
  padding-left: 2.5rem;
}

.pd-vertical-xs {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}

.pd-vertical-s {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.pd-vertical-m {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.pd-vertical-l {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.pd-vertical-xl {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.pd-horizontal-xs {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}

.pd-horizontal-s {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.pd-horizontal-m {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.pd-horizontal-l {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.pd-horizontal-xl {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media (max-width: 1280px) {
  .l-mg-0 {
    margin: 0;
  }

  .l-mg-xs {
    margin: 0.3125rem;
  }

  .l-mg-s {
    margin: 0.625rem;
  }

  .l-mg-m {
    margin: 1.25rem;
  }

  .l-mg-l {
    margin: 1.875rem;
  }

  .l-mg-xl {
    margin: 2.5rem;
  }

  .l-mgt-0 {
    margin-top: 0;
  }

  .l-mgt-xs {
    margin-top: 0.3125rem;
  }

  .l-mgt-s {
    margin-top: 0.625rem;
  }

  .l-mgt-m {
    margin-top: 1.25rem;
  }

  .l-mgt-l {
    margin-top: 1.875rem;
  }

  .l-mgt-xl {
    margin-top: 2.5rem;
  }

  .l-mgr-0 {
    margin-right: 0;
  }

  .l-mgr-xs {
    margin-right: 0.3125rem;
  }

  .l-mgr-s {
    margin-right: 0.625rem;
  }

  .l-mgr-m {
    margin-right: 1.25rem;
  }

  .l-mgr-l {
    margin-right: 1.875rem;
  }

  .l-mgr-xl {
    margin-right: 2.5rem;
  }

  .l-mgb-0 {
    margin-bottom: 0;
  }

  .l-mgb-xs {
    margin-bottom: 0.3125rem;
  }

  .l-mgb-s {
    margin-bottom: 0.625rem;
  }

  .l-mgb-m {
    margin-bottom: 1.25rem;
  }

  .l-mgb-l {
    margin-bottom: 1.875rem;
  }

  .l-mgb-xl {
    margin-bottom: 2.5rem;
  }

  .l-mgl-0 {
    margin-left: 0;
  }

  .l-mgl-xs {
    margin-left: 0.3125rem;
  }

  .l-mgl-s {
    margin-left: 0.625rem;
  }

  .l-mgl-m {
    margin-left: 1.25rem;
  }

  .l-mgl-l {
    margin-left: 1.875rem;
  }

  .l-mgl-xl {
    margin-left: 2.5rem;
  }

  .l-mg-vertical-xs {
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
  }

  .l-mg-vertical-s {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .l-mg-vertical-m {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .l-mg-vertical-l {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }

  .l-mg-vertical-xl {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .l-mg-horizontal-xs {
    margin-left: 0.3125rem;
    margin-right: 0.3125rem;
  }

  .l-mg-horizontal-s {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .l-mg-horizontal-m {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .l-mg-horizontal-l {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
  }

  .l-mg-horizontal-xl {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .l-pd-0 {
    padding: 0;
  }

  .l-pd-xs {
    padding: 0.3125rem;
  }

  .l-pd-s {
    padding: 0.625rem;
  }

  .l-pd-m {
    padding: 1.25rem;
  }

  .l-pd-l {
    padding: 1.875rem;
  }

  .l-pd-xl {
    padding: 2.5rem;
  }

  .l-pdt-0 {
    padding-top: 0;
  }

  .l-pdt-xs {
    padding-top: 0.3125rem;
  }

  .l-pdt-s {
    padding-top: 0.625rem;
  }

  .l-pdt-m {
    padding-top: 1.25rem;
  }

  .l-pdt-l {
    padding-top: 1.875rem;
  }

  .l-pdt-xl {
    padding-top: 2.5rem;
  }

  .l-pdr-0 {
    padding-right: 0;
  }

  .l-pdr-xs {
    padding-right: 0.3125rem;
  }

  .l-pdr-s {
    padding-right: 0.625rem;
  }

  .l-pdr-m {
    padding-right: 1.25rem;
  }

  .l-pdr-l {
    padding-right: 1.875rem;
  }

  .l-pdr-xl {
    padding-right: 2.5rem;
  }

  .l-pdb-0 {
    padding-bottom: 0;
  }

  .l-pdb-xs {
    padding-bottom: 0.3125rem;
  }

  .l-pdb-s {
    padding-bottom: 0.625rem;
  }

  .l-pdb-m {
    padding-bottom: 1.25rem;
  }

  .l-pdb-l {
    padding-bottom: 1.875rem;
  }

  .l-pdb-xl {
    padding-bottom: 2.5rem;
  }

  .l-pdl-0 {
    padding-left: 0;
  }

  .l-pdl-xs {
    padding-left: 0.3125rem;
  }

  .l-pdl-s {
    padding-left: 0.625rem;
  }

  .l-pdl-m {
    padding-left: 1.25rem;
  }

  .l-pdl-l {
    padding-left: 1.875rem;
  }

  .l-pdl-xl {
    padding-left: 2.5rem;
  }

  .l-pd-vertical-xs {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }

  .l-pd-vertical-s {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .l-pd-vertical-m {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .l-pd-vertical-l {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }

  .l-pd-vertical-xl {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .l-pd-horizontal-xs {
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
  }

  .l-pd-horizontal-s {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .l-pd-horizontal-m {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .l-pd-horizontal-l {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .l-pd-horizontal-xl {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 992px) {
  .m-mg-0 {
    margin: 0;
  }

  .m-mg-xs {
    margin: 0.3125rem;
  }

  .m-mg-s {
    margin: 0.625rem;
  }

  .m-mg-m {
    margin: 1.25rem;
  }

  .m-mg-l {
    margin: 1.875rem;
  }

  .m-mg-xl {
    margin: 2.5rem;
  }

  .m-mgt-0 {
    margin-top: 0;
  }

  .m-mgt-xs {
    margin-top: 0.3125rem;
  }

  .m-mgt-s {
    margin-top: 0.625rem;
  }

  .m-mgt-m {
    margin-top: 1.25rem;
  }

  .m-mgt-l {
    margin-top: 1.875rem;
  }

  .m-mgt-xl {
    margin-top: 2.5rem;
  }

  .m-mgr-0 {
    margin-right: 0;
  }

  .m-mgr-xs {
    margin-right: 0.3125rem;
  }

  .m-mgr-s {
    margin-right: 0.625rem;
  }

  .m-mgr-m {
    margin-right: 1.25rem;
  }

  .m-mgr-l {
    margin-right: 1.875rem;
  }

  .m-mgr-xl {
    margin-right: 2.5rem;
  }

  .m-mgb-0 {
    margin-bottom: 0;
  }

  .m-mgb-xs {
    margin-bottom: 0.3125rem;
  }

  .m-mgb-s {
    margin-bottom: 0.625rem;
  }

  .m-mgb-m {
    margin-bottom: 1.25rem;
  }

  .m-mgb-l {
    margin-bottom: 1.875rem;
  }

  .m-mgb-xl {
    margin-bottom: 2.5rem;
  }

  .m-mgl-0 {
    margin-left: 0;
  }

  .m-mgl-xs {
    margin-left: 0.3125rem;
  }

  .m-mgl-s {
    margin-left: 0.625rem;
  }

  .m-mgl-m {
    margin-left: 1.25rem;
  }

  .m-mgl-l {
    margin-left: 1.875rem;
  }

  .m-mgl-xl {
    margin-left: 2.5rem;
  }

  .m-mg-vertical-xs {
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
  }

  .m-mg-vertical-s {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .m-mg-vertical-m {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .m-mg-vertical-l {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }

  .m-mg-vertical-xl {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .m-mg-horizontal-xs {
    margin-left: 0.3125rem;
    margin-right: 0.3125rem;
  }

  .m-mg-horizontal-s {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .m-mg-horizontal-m {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .m-mg-horizontal-l {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
  }

  .m-mg-horizontal-xl {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .m-pd-0 {
    padding: 0;
  }

  .m-pd-xs {
    padding: 0.3125rem;
  }

  .m-pd-s {
    padding: 0.625rem;
  }

  .m-pd-m {
    padding: 1.25rem;
  }

  .m-pd-l {
    padding: 1.875rem;
  }

  .m-pd-xl {
    padding: 2.5rem;
  }

  .m-pdt-0 {
    padding-top: 0;
  }

  .m-pdt-xs {
    padding-top: 0.3125rem;
  }

  .m-pdt-s {
    padding-top: 0.625rem;
  }

  .m-pdt-m {
    padding-top: 1.25rem;
  }

  .m-pdt-l {
    padding-top: 1.875rem;
  }

  .m-pdt-xl {
    padding-top: 2.5rem;
  }

  .m-pdr-0 {
    padding-right: 0;
  }

  .m-pdr-xs {
    padding-right: 0.3125rem;
  }

  .m-pdr-s {
    padding-right: 0.625rem;
  }

  .m-pdr-m {
    padding-right: 1.25rem;
  }

  .m-pdr-l {
    padding-right: 1.875rem;
  }

  .m-pdr-xl {
    padding-right: 2.5rem;
  }

  .m-pdb-0 {
    padding-bottom: 0;
  }

  .m-pdb-xs {
    padding-bottom: 0.3125rem;
  }

  .m-pdb-s {
    padding-bottom: 0.625rem;
  }

  .m-pdb-m {
    padding-bottom: 1.25rem;
  }

  .m-pdb-l {
    padding-bottom: 1.875rem;
  }

  .m-pdb-xl {
    padding-bottom: 2.5rem;
  }

  .m-pdl-0 {
    padding-left: 0;
  }

  .m-pdl-xs {
    padding-left: 0.3125rem;
  }

  .m-pdl-s {
    padding-left: 0.625rem;
  }

  .m-pdl-m {
    padding-left: 1.25rem;
  }

  .m-pdl-l {
    padding-left: 1.875rem;
  }

  .m-pdl-xl {
    padding-left: 2.5rem;
  }

  .m-pd-vertical-xs {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }

  .m-pd-vertical-s {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .m-pd-vertical-m {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .m-pd-vertical-l {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }

  .m-pd-vertical-xl {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .m-pd-horizontal-xs {
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
  }

  .m-pd-horizontal-s {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .m-pd-horizontal-m {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .m-pd-horizontal-l {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .m-pd-horizontal-xl {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .s-mg-0 {
    margin: 0;
  }

  .s-mg-xs {
    margin: 0.3125rem;
  }

  .s-mg-s {
    margin: 0.625rem;
  }

  .s-mg-m {
    margin: 1.25rem;
  }

  .s-mg-l {
    margin: 1.875rem;
  }

  .s-mg-xl {
    margin: 2.5rem;
  }

  .s-mgt-0 {
    margin-top: 0;
  }

  .s-mgt-xs {
    margin-top: 0.3125rem;
  }

  .s-mgt-s {
    margin-top: 0.625rem;
  }

  .s-mgt-m {
    margin-top: 1.25rem;
  }

  .s-mgt-l {
    margin-top: 1.875rem;
  }

  .s-mgt-xl {
    margin-top: 2.5rem;
  }

  .s-mgr-0 {
    margin-right: 0;
  }

  .s-mgr-xs {
    margin-right: 0.3125rem;
  }

  .s-mgr-s {
    margin-right: 0.625rem;
  }

  .s-mgr-m {
    margin-right: 1.25rem;
  }

  .s-mgr-l {
    margin-right: 1.875rem;
  }

  .s-mgr-xl {
    margin-right: 2.5rem;
  }

  .s-mgb-0 {
    margin-bottom: 0;
  }

  .s-mgb-xs {
    margin-bottom: 0.3125rem;
  }

  .s-mgb-s {
    margin-bottom: 0.625rem;
  }

  .s-mgb-m {
    margin-bottom: 1.25rem;
  }

  .s-mgb-l {
    margin-bottom: 1.875rem;
  }

  .s-mgb-xl {
    margin-bottom: 2.5rem;
  }

  .s-mgl-0 {
    margin-left: 0;
  }

  .s-mgl-xs {
    margin-left: 0.3125rem;
  }

  .s-mgl-s {
    margin-left: 0.625rem;
  }

  .s-mgl-m {
    margin-left: 1.25rem;
  }

  .s-mgl-l {
    margin-left: 1.875rem;
  }

  .s-mgl-xl {
    margin-left: 2.5rem;
  }

  .s-mg-vertical-xs {
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
  }

  .s-mg-vertical-s {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .s-mg-vertical-m {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .s-mg-vertical-l {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }

  .s-mg-vertical-xl {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .s-mg-horizontal-xs {
    margin-left: 0.3125rem;
    margin-right: 0.3125rem;
  }

  .s-mg-horizontal-s {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .s-mg-horizontal-m {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .s-mg-horizontal-l {
    margin-left: 1.875rem;
    margin-right: 1.875rem;
  }

  .s-mg-horizontal-xl {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .s-pd-0 {
    padding: 0;
  }

  .s-pd-xs {
    padding: 0.3125rem;
  }

  .s-pd-s {
    padding: 0.625rem;
  }

  .s-pd-m {
    padding: 1.25rem;
  }

  .s-pd-l {
    padding: 1.875rem;
  }

  .s-pd-xl {
    padding: 2.5rem;
  }

  .s-pdt-0 {
    padding-top: 0;
  }

  .s-pdt-xs {
    padding-top: 0.3125rem;
  }

  .s-pdt-s {
    padding-top: 0.625rem;
  }

  .s-pdt-m {
    padding-top: 1.25rem;
  }

  .s-pdt-l {
    padding-top: 1.875rem;
  }

  .s-pdt-xl {
    padding-top: 2.5rem;
  }

  .s-pdr-0 {
    padding-right: 0;
  }

  .s-pdr-xs {
    padding-right: 0.3125rem;
  }

  .s-pdr-s {
    padding-right: 0.625rem;
  }

  .s-pdr-m {
    padding-right: 1.25rem;
  }

  .s-pdr-l {
    padding-right: 1.875rem;
  }

  .s-pdr-xl {
    padding-right: 2.5rem;
  }

  .s-pdb-0 {
    padding-bottom: 0;
  }

  .s-pdb-xs {
    padding-bottom: 0.3125rem;
  }

  .s-pdb-s {
    padding-bottom: 0.625rem;
  }

  .s-pdb-m {
    padding-bottom: 1.25rem;
  }

  .s-pdb-l {
    padding-bottom: 1.875rem;
  }

  .s-pdb-xl {
    padding-bottom: 2.5rem;
  }

  .s-pdl-0 {
    padding-left: 0;
  }

  .s-pdl-xs {
    padding-left: 0.3125rem;
  }

  .s-pdl-s {
    padding-left: 0.625rem;
  }

  .s-pdl-m {
    padding-left: 1.25rem;
  }

  .s-pdl-l {
    padding-left: 1.875rem;
  }

  .s-pdl-xl {
    padding-left: 2.5rem;
  }

  .s-pd-vertical-xs {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }

  .s-pd-vertical-s {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .s-pd-vertical-m {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .s-pd-vertical-l {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }

  .s-pd-vertical-xl {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .s-pd-horizontal-xs {
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
  }

  .s-pd-horizontal-s {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .s-pd-horizontal-m {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .s-pd-horizontal-l {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .s-pd-horizontal-xl {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.fill-red {
  fill: #F95959;
}
.fill-red * {
  fill: #F95959;
}

.fill-orange {
  fill: #F9903F;
}
.fill-orange * {
  fill: #F9903F;
}

.fill-yellow {
  fill: #FFCD5D;
}
.fill-yellow * {
  fill: #FFCD5D;
}

.fill-green {
  fill: #2DB277;
}
.fill-green * {
  fill: #2DB277;
}

.fill-teal {
  fill: #48B9AA;
}
.fill-teal * {
  fill: #48B9AA;
}

.fill-blue {
  fill: #4C88E6;
}
.fill-blue * {
  fill: #4C88E6;
}

.fill-pink {
  fill: #F978A5;
}
.fill-pink * {
  fill: #F978A5;
}

.fill-purple {
  fill: #7B4FE2;
}
.fill-purple * {
  fill: #7B4FE2;
}

.full-width {
  width: 100%;
}

.half-width {
  width: 50%;
}

.third-width {
  width: 33%;
}

.quarter-width {
  width: 25%;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #404559;
  /* Adjust font size */
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  /* Font varient */
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  /* Smoothing */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
body.locked {
  overflow: hidden;
}

a, a:visited {
  color: #23273a;
}
a:hover, a:visited:hover {
  color: #4C88E6;
}

h1 {
  font-size: 34px;
}
h1 strong {
  font-weight: 900;
}

h2 {
  font-size: 28px;
  font-weight: 900;
  color: #23273a;
}

.grey-text {
  color: #404559;
}

.grey-light-text {
  color: #A5B3C8;
}

.site-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-wrapper {
  width: 100%;
  min-height: 95vh;
  padding-top: 64px;
}

.container {
  padding: 0 5rem;
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
}
.container.small {
  max-width: 1080px;
}
@media (max-width: 1280px) {
  .container {
    max-width: 1440px;
    padding: 0 3.75rem;
  }
}
@media (max-width: 992px) {
  .container {
    padding: 0 1.25rem;
  }
}

.content-wrapper {
  min-height: 80vh;
}

.container-full-width {
  padding: 0 1.25rem;
  width: 100%;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.625rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  z-index: 30;
  border-bottom: solid 1px #e9ecf5;
}
@media (max-width: 1280px) {
  .header {
    padding: 0.625rem 1.25rem;
  }
}

.header-logo-link {
  text-decoration: none;
  display: inline-flex;
  cursor: pointer;
}
.header-logo-link img {
  display: block;
  height: 40px;
}

@media (max-width: 1280px) {
  .hide-on-medium {
    display: none;
  }
}

.header-link {
  color: inherit;
  text-decoration: none;
}
.header-link:hover {
  opacity: 0.8;
}
@media (max-width: 992px) {
  .header-link {
    display: inline;
  }
}

.header-divider {
  width: 2px;
  border-radius: 1px;
  height: 40px;
  background-color: #e9ecf5;
}

.nav-desktop {
  display: flex;
}
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
}

.nav-mobile {
  display: none;
}
@media (max-width: 992px) {
  .nav-mobile {
    display: flex;
    position: relative;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 80px;
  right: 1.25rem;
  left: 1.25rem;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  z-index: 20;
  text-align: center;
}
.mobile-menu .header-link {
  text-decoration: underline;
}
.mobile-menu.active {
  display: flex;
}

.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
  pointer-events: none;
}
.menu-overlay.active {
  pointer-events: all;
}

.footer {
  background-color: #e9ecf5;
  padding: 40px 0;
}

.footer-logo {
  width: 150px;
}
.footer-logo img {
  width: 100%;
}

.footer-links-wrapper {
  width: 30%;
  padding: 1.25rem 0;
}
@media (max-width: 767px) {
  .footer-links-wrapper {
    text-align: center;
    width: 100%;
  }
}
.footer-links-wrapper a {
  display: block;
  width: 100%;
  color: #23273a;
  margin-bottom: 0.625rem;
}
@media (max-width: 767px) {
  .footer-links-wrapper a {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}

.button {
  padding: 0.625rem 0.9375rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}
.button:hover {
  transform: scale(1.04);
}
.button.fill-green {
  background-color: #2DB277;
  color: #ffffff;
}
.button.fill-green:hover {
  color: #ffffff;
}
.button.stroke-green {
  border: solid 1px #2DB277;
  color: #2DB277;
}
.button.stroke-green:hover {
  color: #2DB277;
}
.button.fill-blue {
  background-color: #4C88E6;
  color: #ffffff;
}
.button.fill-blue:hover {
  color: #ffffff;
}
.button.stroke-blue {
  border: solid 1px #4C88E6;
  color: #4C88E6;
}
.button.stroke-blue:hover {
  color: #4C88E6;
}
.button.stroke-blue-wbg {
  border: solid 1px #4C88E6;
  color: #4C88E6;
  background-color: white;
}
.button.transparent-blue {
  background-color: rgba(76, 136, 230, 0.1);
  color: #4C88E6;
}
.button.transparent-blue:hover {
  background-color: #4C88E6;
  color: white;
}
.button.transparent-grey {
  background-color: #e9ecf5;
}
.button.transparent-grey svg path {
  fill: #404559;
}
.button.transparent-grey:hover {
  background-color: rgba(76, 136, 230, 0.1);
  color: #4C88E6;
}
.button.transparent-grey:hover svg path {
  fill: #4C88E6;
}
.button.icon-left, .button.icon-right {
  display: flex;
  align-items: center;
}

.fill-white path {
  fill: white;
}

.setup-help-banner {
  border: dotted 4px #e9ecf5;
  padding: 1.875rem;
  border-radius: 12px;
  margin: 30px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .setup-help-banner {
    margin: 50px 0 30px;
  }
}
.setup-help-banner span {
  display: block;
  background-color: white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  margin-top: -60px;
  margin-bottom: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}
.setup-help-banner .button {
  margin-bottom: -53px;
  margin-top: 20px;
}

.hero {
  margin-top: 60px;
  padding: 2.5rem 0;
}
@media (max-width: 767px) {
  .hero {
    padding: 0.625rem 0;
    margin-top: 40px;
  }
}

.hero-title {
  font-size: 38px;
  text-align: center;
  max-width: 1000px;
  color: #23273a;
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 24px;
  }
}

.hero-subtitle {
  max-width: 600px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .hero-subtitle {
    font-size: 18px;
  }
}

.hero-illustration-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .hero-illustration-wrapper {
    flex-direction: column;
  }
}

.hero-devices {
  margin: 40px -50px 0;
  flex: 1;
  position: relative;
  z-index: 11;
}
.hero-devices img {
  width: 100%;
}

.hero-accountant-wrapper,
.hero-freelancer-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 33%;
}
@media (max-width: 767px) {
  .hero-accountant-wrapper,
.hero-freelancer-wrapper {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .hero-accountant-wrapper {
    align-self: flex-start;
    margin-left: 1.25rem;
  }
}

@media (max-width: 767px) {
  .hero-freelancer-wrapper {
    align-self: center;
    margin-left: 3.75rem;
  }
}

.hero-shape-pic {
  width: 100%;
}

.hero-wave {
  position: absolute;
  width: 60%;
  left: 20%;
}
@media (max-width: 767px) {
  .hero-wave {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-devices {
    display: none;
  }
}

.desktop-ui {
  position: absolute;
  width: 55%;
  left: 80%;
  display: none;
}
@media (max-width: 767px) {
  .desktop-ui {
    display: block;
    width: 70%;
  }
}

.mobile-ui {
  position: absolute;
  width: 25%;
  right: 85%;
  display: none;
}
@media (max-width: 767px) {
  .mobile-ui {
    display: block;
    width: 35%;
  }
}

.floating-shape {
  position: absolute;
}

.hero-stick-bg {
  left: -5%;
  top: -10%;
  transform: rotate(-115deg);
  z-index: 9;
  width: 18%;
}
@media (max-width: 767px) {
  .hero-stick-bg {
    width: 30%;
    top: -5%;
  }
}

.hero-stick-fg {
  left: 0%;
  top: 1%;
  transform: rotate(-78deg);
  z-index: 12;
  width: 10%;
}
@media (max-width: 767px) {
  .hero-stick-fg {
    width: 20%;
    left: 5%;
  }
}

.hero-circle-bg {
  left: 20%;
  top: 3%;
  z-index: 9;
  width: 7%;
}

.hero-circle-fg {
  left: 25%;
  top: 3%;
  z-index: 12;
  width: 3%;
}

@media (max-width: 767px) {
  .hero-circle-bg, .hero-circle-fg {
    display: none;
  }
}

.hero-triangle-bg {
  left: 13%;
  bottom: -12%;
  transform: rotate(-20deg);
  z-index: 9;
  width: 7%;
}

.hero-triangle-fg {
  left: 11%;
  bottom: -4%;
  transform: rotate(12deg);
  z-index: 12;
  width: 4%;
}

.hero-pentagone-bg {
  right: 25%;
  top: 2%;
  transform: rotate(-20deg);
  z-index: 9;
  width: 7%;
}
@media (max-width: 767px) {
  .hero-pentagone-bg {
    right: 10%;
    top: 2%;
  }
}

.hero-pentagone-fg {
  right: 25%;
  top: 15%;
  transform: rotate(12deg);
  z-index: 12;
  width: 4%;
}
@media (max-width: 767px) {
  .hero-pentagone-fg {
    right: 10%;
    top: 5%;
  }
}

.hero-square-bg {
  right: -3%;
  bottom: -2%;
  transform: rotate(-40deg);
  z-index: 9;
  width: 7%;
}
@media (max-width: 767px) {
  .hero-square-bg {
    right: 12%;
    bottom: 0%;
    width: 12%;
  }
}

.hero-square-fg {
  right: 3%;
  bottom: 5%;
  transform: rotate(12deg);
  z-index: 12;
  width: 4%;
}
@media (max-width: 767px) {
  .hero-square-fg {
    right: 14%;
    width: 6%;
  }
}

.hero-call-to-action-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 60px 120px 20px;
}
@media (max-width: 767px) {
  .hero-call-to-action-wrapper {
    display: none;
  }
}

.clients-wrapper h2 {
  font-size: 24px;
}

.client-carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-animated-wrapper {
  transform: translateX(0);
  animation: carousel-slide 82s infinite linear;
}

@keyframes carousel-slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.client-image-wrapper {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  margin-right: 80px;
}
@media (max-width: 767px) {
  .client-image-wrapper {
    width: 120px;
    height: 120px;
    margin-right: 40px;
  }
}
.client-image-wrapper img {
  width: 80%;
  object-fit: contain;
  max-height: 100%;
}

.features-section {
  padding: 120px 5rem;
  position: relative;
}
@media (max-width: 767px) {
  .features-section {
    padding: 40px 40px;
  }
}

.feature-title {
  font-size: 38px;
}
@media (max-width: 767px) {
  .feature-title {
    font-size: 30px;
  }
}

.freelancer-features {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .freelancer-features {
    margin-top: 30px;
  }
}

.features-text-section {
  padding: 0 40px;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (max-width: 767px) {
  .features-text-section {
    padding: 0;
    width: 100%;
  }
}

.feature-list li {
  padding: 0.9375rem 0 0.9375rem 40px;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.feature-list li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #4C88E6;
  left: 0px;
  border-radius: 40px;
  outline: solid 8px rgba(76, 136, 230, 0.1);
  background-image: url("../assets/images/check.svg");
  background-size: 100%;
}

.features-illu {
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .features-illu {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}

.store-links-wrapper {
  display: flex;
  align-items: center;
}
.store-links-wrapper .store-link {
  display: block;
}
.store-links-wrapper .store-link img {
  display: block;
  height: 50px;
}

.accountant-losange-bg {
  left: 14%;
  bottom: -2%;
  transform: rotate(38deg);
  z-index: 9;
  width: 16%;
}

.accountant-losange-fg {
  left: 13%;
  bottom: 5%;
  transform: rotate(50deg);
  z-index: 12;
  width: 10%;
}

.accountant-circle-bg {
  right: 4%;
  top: 32%;
  transform: rotate(38deg);
  z-index: 9;
  width: 8%;
}

.accountant-circle-fg {
  right: 10%;
  top: 38%;
  transform: rotate(50deg);
  z-index: 12;
  width: 4%;
}

.freelancer-hexagone-bg {
  right: 40%;
  bottom: 8%;
  transform: rotate(-20deg);
  z-index: 9;
  width: 7%;
}
@media (max-width: 767px) {
  .freelancer-hexagone-bg {
    display: none;
  }
}

.freelancer-hexagone-fg {
  right: 44%;
  bottom: 12%;
  transform: rotate(12deg);
  z-index: 12;
  width: 4%;
}
@media (max-width: 767px) {
  .freelancer-hexagone-fg {
    display: none;
  }
}

.freelancer-triangle-bg {
  right: 10%;
  top: 5%;
  transform: rotate(-20deg);
  z-index: 9;
  width: 5%;
}
@media (max-width: 767px) {
  .freelancer-triangle-bg {
    right: 8%;
    width: 8%;
  }
}

.freelancer-triangle-fg {
  right: 8%;
  top: 10%;
  transform: rotate(12deg);
  z-index: 12;
  width: 3%;
}
@media (max-width: 767px) {
  .freelancer-triangle-fg {
    right: 10%;
    width: 6%;
  }
}

.freelancer-stick-bg {
  left: 10%;
  top: -5%;
  transform: rotate(-42deg);
  z-index: 9;
  width: 15%;
}
@media (max-width: 767px) {
  .freelancer-stick-bg {
    top: 8%;
  }
}

.freelancer-stick-fg {
  left: 10%;
  top: -2%;
  transform: rotate(68deg);
  z-index: 12;
  width: 10%;
}
@media (max-width: 767px) {
  .freelancer-stick-fg {
    top: 10%;
  }
}

.dark-container {
  background: linear-gradient(45deg, #1A2639 0%, #2D4263 100%);
  width: 100%;
  padding: 60px 0;
}

.numbers-section {
  position: relative;
  z-index: 20;
}
.numbers-section h2 {
  text-align: center;
  color: white;
  margin-bottom: 2.5rem;
}

.number-card {
  width: calc(25% - 1.25rem);
  border: solid 1px white;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1.875rem 1.25rem;
  margin: 0 0.625rem;
  text-align: center;
}
@media (max-width: 992px) {
  .number-card {
    width: 100%;
    margin: 0 0 0.625rem;
    padding: 1.25rem 0.625rem;
  }
}
.number-card h3 {
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 0.625rem;
}

.integration-section {
  max-width: 900px;
}
.integration-section h2 {
  position: relative;
  text-align: center;
  margin: 60px 0 30px;
  z-index: 11;
}

.integration-bg-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.integration-circle {
  position: absolute;
}
.integration-circle * {
  fill: rgba(175, 197, 220, 0.15);
}
.integration-circle.small {
  z-index: 4;
  width: 260px;
}
.integration-circle.medium {
  z-index: 3;
  width: 440px;
}
.integration-circle.large {
  z-index: 2;
  width: 620px;
}
.integration-circle.xlarge {
  z-index: 1;
  width: 780px;
}
@media (max-width: 767px) {
  .integration-circle.small {
    width: 180%;
  }
  .integration-circle.medium {
    width: 220%;
  }
  .integration-circle.large {
    width: 280%;
  }
  .integration-circle.xlarge {
    width: 360%;
  }
}
@media (max-width: 375px) {
  .integration-circle.small {
    width: 140%;
  }
  .integration-circle.medium {
    width: 170%;
  }
  .integration-circle.large {
    width: 200%;
  }
  .integration-circle.xlarge {
    width: 240%;
  }
}

.ytems-card {
  padding: 0.625rem 1.25rem;
  background: linear-gradient(45deg, #1A2639 0%, #2D4263 100%);
  border-radius: 6px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .ytems-card {
    margin: 0 0.625rem;
  }
}
.ytems-card img {
  width: 120px;
}
@media (max-width: 992px) {
  .ytems-card img {
    width: 90px;
  }
}
@media (max-width: 767px) {
  .ytems-card img {
    width: 80px;
  }
}

.integration-third-party {
  width: 150px;
  height: 150px;
  border-radius: 150px;
  background-color: white;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 1.25rem;
}
@media (max-width: 992px) {
  .integration-third-party {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 767px) {
  .integration-third-party {
    width: 90px;
    height: 90px;
    margin: 0.625rem;
  }
}
@media (max-width: 375px) {
  .integration-third-party {
    width: 70px;
    height: 70px;
    margin: 0.3125rem;
  }
}
.integration-third-party img {
  width: 80%;
}

.go-left {
  transform: translate(-90px, 0);
}
@media (max-width: 992px) {
  .go-left {
    transform: translate(0, 0);
  }
}

.go-right {
  transform: translate(90px, 0);
}
@media (max-width: 992px) {
  .go-right {
    transform: translate(0, 0);
  }
}

.go-up {
  transform: translate(0, -40px);
}
@media (max-width: 992px) {
  .go-up {
    transform: translate(0, 0);
  }
}

.go-down {
  transform: translate(0, 40px);
}
@media (max-width: 992px) {
  .go-down {
    transform: translate(0, 0);
  }
}

@media (max-width: 992px) {
  .s-go-up {
    transform: translate(0, -10px);
  }
}

@media (max-width: 992px) {
  .s-go-down {
    transform: translate(0, 10px);
  }
}

.skew-wrapper {
  position: relative;
  width: 100%;
  margin: 80px 0 240px;
}
@media (max-width: 767px) {
  .skew-wrapper {
    margin: 110px 0;
  }
}

.skew-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(45deg, #1A2639 0%, #2D4263 100%);
  transform: skewY(-3deg);
}
@media (max-width: 767px) {
  .skew-bg {
    transform: skewY(-5deg);
  }
}
.skew-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 150%;
  top: -25%;
  background-color: rgba(165, 179, 200, 0.1);
  transform: skewY(-1deg);
}
@media (max-width: 767px) {
  .skew-bg::before {
    height: 120%;
    top: -10%;
    transform: skewY(-2deg);
  }
}

.testimonials-section {
  padding: 120px 0 0;
  position: relative;
  z-index: 10;
}
.testimonials-section h2 {
  color: white;
}
@media (max-width: 767px) {
  .testimonials-section {
    padding: 120px 0.625rem 0;
  }
}

.main-testimonial {
  background-color: white;
  border-radius: 200px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-top: -150px;
  padding: 1.25rem;
  max-width: 850px;
  height: 100px;
  position: relative;
}
@media (max-width: 767px) {
  .main-testimonial {
    border-radius: 20px;
    height: auto;
    margin-top: -120px;
  }
}

.testimonial-picture {
  width: 70px;
  height: 70px;
  border-radius: 500px;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-picture img {
  height: 100%;
}

.testimonial-name {
  color: #23273a;
  font-size: 1.2rem;
}

.testimonial-position {
  color: #A5B3C8;
}

.testimonial-content {
  font-style: italic;
  color: #404559;
}

.testimonial-list {
  max-width: 1200px;
  margin-bottom: -120px;
}
@media (max-width: 767px) {
  .testimonial-list {
    margin-bottom: -135px;
  }
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
}

.rating {
  width: 140px;
}
.rating img {
  width: 100%;
}

.offres {
  padding-top: 80px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offres h2 {
  text-align: center;
  font-size: 38px;
}
@media (max-width: 992px) {
  .offres h2 {
    font-size: 30px;
  }
}

.offres-cards-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
}

.offre-card {
  position: relative;
  z-index: 10;
  text-align: left;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 1.875rem;
}
.offre-card h5 {
  font-size: 28px;
  font-weight: 900;
  color: #23273a;
}
@media (max-width: 1280px) {
  .offre-card {
    padding: 1.25rem;
  }
}
@media (max-width: 992px) {
  .offre-card {
    display: none;
  }
  .offre-card.active {
    display: flex;
    flex-direction: column;
  }
}

.offres-tab-wrapper {
  display: none;
  justify-content: center;
}
@media (max-width: 992px) {
  .offres-tab-wrapper {
    display: flex;
  }
}

.offre-tab {
  padding: 0.625rem;
  border: solid 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.offre-tab.active {
  background-color: #4C88E6;
  color: white;
}
.offre-tab:first-child {
  border-radius: 4px 0 0 4px;
  border-right: none;
}
.offre-tab:last-child {
  border-radius: 0 4px 4px 0;
  border-left: none;
}

.offre-header {
  border-bottom: solid 1px #e9ecf5;
}

.offre-feature-list li {
  padding-left: 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.offre-feature-list li:not(:last-child) {
  padding-bottom: 1.5625rem;
}
.offre-feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: 100%;
  background-position: center;
}
.offre-feature-list li:nth-child(6n+1):before {
  background-image: url("../assets/images/list-pentagone.svg");
}
.offre-feature-list li:nth-child(6n+2):before {
  background-image: url("../assets/images/list-stick.svg");
}
.offre-feature-list li:nth-child(6n+3):before {
  background-image: url("../assets/images/list-circle.svg");
}
.offre-feature-list li:nth-child(6n+4):before {
  background-image: url("../assets/images/list-triangle.svg");
}
.offre-feature-list li:nth-child(6n+5):before {
  background-image: url("../assets/images/list-losange.svg");
}
.offre-feature-list li:nth-child(6n+6):before {
  background-image: url("../assets/images/list-square.svg");
}

.offers-square-bg {
  left: 28%;
  top: -8%;
  transform: rotate(38deg);
  z-index: 9;
  width: 7%;
}
@media (max-width: 767px) {
  .offers-square-bg {
    left: 0%;
    top: 5%;
    width: 12%;
  }
}

.offers-square-fg {
  left: 23%;
  top: -3%;
  transform: rotate(50deg);
  z-index: 12;
  width: 4%;
}
@media (max-width: 767px) {
  .offers-square-fg {
    left: 10%;
    top: -2%;
    width: 6%;
  }
}

.offers-circle-bg {
  right: 26%;
  bottom: -12%;
  transform: rotate(38deg);
  z-index: 9;
  width: 8%;
}
@media (max-width: 767px) {
  .offers-circle-bg {
    right: 0%;
    bottom: -6%;
    width: 12%;
  }
}

.offers-circle-fg {
  right: 24%;
  bottom: -4%;
  transform: rotate(50deg);
  z-index: 12;
  width: 3%;
}
@media (max-width: 767px) {
  .offers-circle-fg {
    right: 10%;
    bottom: -3%;
    width: 6%;
  }
}

.newsletter-wrapper {
  position: relative;
  max-width: 1100px;
}

.newsletter-section {
  background: linear-gradient(45deg, #1A2639 0%, #2D4263 100%);
  border-radius: 40px;
  padding: 40px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}
.newsletter-section h2 {
  color: white;
  text-align: center;
}

.newsletter-pentagone-bg {
  width: 10%;
  bottom: -8%;
  right: 2%;
  transform: rotate(-28deg);
  z-index: 9;
}

.newsletter-pentagone-fg {
  width: 5%;
  bottom: -10%;
  right: 9%;
  transform: rotate(22deg);
  z-index: 12;
}

.form-wrapper {
  padding: 1.25rem;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-form input, .demo-form input, .newsletter-form input {
  background-color: white;
  border: solid 1px #A5B3C8;
  border-radius: 8px;
  height: 50px;
  min-height: 50px;
  font-size: 16px;
  padding: 0 1.25rem;
}
@media (max-width: 767px) {
  .contact-form input, .demo-form input, .newsletter-form input {
    width: 100%;
    min-height: 50px;
  }
}
.contact-form textarea, .demo-form textarea, .newsletter-form textarea {
  background-color: white;
  border: solid 1px #A5B3C8;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  padding: 0.78125rem 1.25rem;
  width: 100%;
  height: 150px;
  resize: none;
}
.contact-form button, .demo-form button, .newsletter-form button {
  width: 250px;
}
@media (max-width: 767px) {
  .contact-form button, .demo-form button, .newsletter-form button {
    width: 100%;
  }
}

.demo-form-wrapper, .contact-form-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(23, 25, 36, 0.6039215686);
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.demo-form-wrapper.active, .contact-form-wrapper.active {
  opacity: 1;
  pointer-events: all;
}

.demo-form-card, .contact-form-card {
  background-color: white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 2.5rem;
  min-width: 700px;
  transform: translateY(100px);
  transition: transform 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.demo-form-card.active, .contact-form-card.active {
  transform: translateY(0px);
}
@media (max-width: 992px) {
  .demo-form-card, .contact-form-card {
    min-width: 0;
    width: 90%;
  }
}
@media (max-width: 767px) {
  .demo-form-card, .contact-form-card {
    padding: 1.875rem;
  }
}

.close-demo-button, .close-contact-button {
  background-color: #e9ecf5;
  padding: 0.625rem 0.9375rem;
  border-radius: 6px;
  cursor: pointer;
}
.close-demo-button:hover, .close-contact-button:hover {
  background-color: #A5B3C8;
}

.demo-form {
  width: 100%;
}

.about-section {
  max-width: 1200px;
  margin: 80px 0;
}
.about-section p {
  margin-bottom: 0.625rem;
}

.about-text {
  width: 50%;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .about-text {
    width: 92%;
    padding: 20px;
  }
}
@media (max-width: 375px) {
  .about-text {
    width: 96%;
    padding: 10px;
  }
}

.photo-wrapper {
  padding: 40px;
  width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .photo-wrapper {
    width: 92%;
    padding: 20px;
  }
}
@media (max-width: 375px) {
  .photo-wrapper {
    width: 96%;
    padding: 10px;
  }
}

.about-visual {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 0 40px rgba(175, 197, 220, 0.2745098039);
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .about-visual {
    box-shadow: 0 0 0 20px rgba(175, 197, 220, 0.2745098039);
  }
}
.about-visual img {
  display: block;
  width: 100%;
}

.about-triangle-bg {
  width: 18%;
  top: -3%;
  left: -6%;
  transform: rotate(-18deg);
  z-index: 9;
}

.about-triangle-fg {
  width: 10%;
  top: 4%;
  left: 4%;
  transform: rotate(32deg);
  z-index: 12;
}

.about-losange-bg {
  width: 20%;
  bottom: -8%;
  right: -5%;
  transform: rotate(-28deg);
  z-index: 9;
}

.about-losange-fg {
  width: 12%;
  bottom: -2%;
  right: 8%;
  transform: rotate(22deg);
  z-index: 12;
}

.md-content {
  padding-bottom: 120px;
}
.md-content h1, .md-content h2, .md-content h3, .md-content h4, .md-content h5, .md-content h6 {
  font-weight: 900;
  color: #404559;
  margin-bottom: 0.625rem;
  margin-top: 1.25rem;
}
.md-content p {
  margin-bottom: 0.625rem;
}
.md-content strong {
  font-weight: 900;
}
.md-content ul li {
  margin-bottom: 0.625rem;
}

.blog-title {
  font-weight: 900;
  color: #23273a;
}

.post-date {
  opacity: 0.5;
}

.blog-card-link {
  background-color: white;
  border-radius: 12px;
  padding: 1.25rem;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(4, 6, 15, 0.0705882353);
  width: 100%;
  max-width: 800px;
}
.blog-card-link .post-image {
  width: 250px;
  height: 200px;
  border-radius: 6px;
  background-color: rgba(175, 197, 220, 0.2745098039);
  overflow: hidden;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: solid 2px rgba(175, 197, 220, 0.2745098039);
}
.blog-card-link h3 {
  color: #23273a;
  font-weight: 900;
  font-size: 1.5rem;
}
.blog-card-link:hover {
  transform: scale(1.02);
}

.post-content {
  max-width: 800px;
}
.post-content .post-title {
  font-weight: 900;
  color: #23273a;
}
.post-content .post-cover-image {
  width: 100%;
  height: 300px;
  border-radius: 6px;
  background-color: rgba(175, 197, 220, 0.2745098039);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: solid 2px rgba(175, 197, 220, 0.2745098039);
}
.post-content img {
  display: block;
  max-height: 350px;
  max-width: 100%;
  margin: 0.625rem auto;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-weight: 900;
  color: #404559;
  margin-bottom: 0.3125rem;
}
.post-content h1 {
  font-size: 2rem;
}
.post-content h2 {
  font-size: 1.5rem;
}
.post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin-top: 0.625rem;
}
.post-content a {
  color: inherit;
}
.post-content p, .post-content ul {
  margin-bottom: 1.25rem;
}
.post-content ol {
  list-style: initial;
}
.post-content ol li {
  list-style: decimal;
  marker: initial;
}
.post-content li {
  padding-left: 0.625rem;
  margin-left: 1.25rem;
  list-style: initial;
}
.post-content blockquote {
  padding-left: 1.25rem;
  border-left: 4px solid #e9ecf5;
  font-style: italic;
  margin: 0.625rem 0;
}
.post-content blockquote p:last-child {
  margin-bottom: 0;
}

.site-wrapper.landing {
  font-size: 1vw;
}
@media (max-width: 1280px) {
  .site-wrapper.landing {
    font-size: 1.3vw;
  }
}
@media (max-width: 992px) {
  .site-wrapper.landing {
    font-size: 1.4vw;
  }
}
@media (max-width: 767px) {
  .site-wrapper.landing {
    font-size: 2.2vw;
  }
}

.hero-landing {
  position: relative;
  margin: 100px 0 0px 0;
  padding: 0 5%;
}

.hero-title-landing {
  font-size: 2.3vw;
  font-weight: 900;
}
@media (max-width: 767px) {
  .hero-title-landing {
    text-align: center;
  }
}

.hero-landing-image {
  width: 140%;
}
.hero-landing-image img {
  width: 100%;
}
@media (max-width: 767px) {
  .hero-landing-image {
    width: 80%;
  }
}

.hero-landing-circle-bg {
  right: 46%;
  bottom: -3%;
  z-index: 9;
  width: 5%;
}
@media (max-width: 767px) {
  .hero-landing-circle-bg {
    right: 2%;
    top: -2%;
    bottom: auto;
  }
}

.hero-landing-circle-fg {
  right: 50%;
  bottom: 3%;
  z-index: 12;
  width: 3%;
}
@media (max-width: 767px) {
  .hero-landing-circle-fg {
    right: 0%;
    top: 0;
    bottom: auto;
  }
}

.hero-landing-pentagone-bg {
  left: -16%;
  top: 19%;
  z-index: 9;
  width: 5%;
  transform: rotate(-6deg);
}
@media (max-width: 1800px) {
  .hero-landing-pentagone-bg {
    left: -5%;
    top: -6%;
  }
}

.hero-landing-pentagone-fg {
  left: -9%;
  top: 18%;
  z-index: 12;
  width: 3%;
  transform: rotate(20deg);
}
@media (max-width: 1800px) {
  .hero-landing-pentagone-fg {
    left: -1%;
    top: -2%;
  }
}

.hero-landing-triangle-bg {
  right: -13%;
  bottom: 45%;
  transform: rotate(-20deg);
  z-index: 9;
  width: 7%;
}
@media (max-width: 767px) {
  .hero-landing-triangle-bg {
    left: 12%;
    width: 15%;
    bottom: -2%;
  }
}

.hero-landing-triangle-fg {
  right: -11%;
  bottom: 40%;
  transform: rotate(12deg);
  z-index: 12;
  width: 4%;
}
@media (max-width: 767px) {
  .hero-landing-triangle-fg {
    left: 17%;
    width: 7%;
    bottom: 0;
  }
}

.landing-section h2 {
  font-size: 30px;
  font-weight: 900;
}

.section-img {
  width: 50%;
  flex-shrink: 0;
}
.section-img img {
  width: 100%;
}
@media (max-width: 767px) {
  .section-img {
    width: 80%;
    margin-top: 20px;
  }
}

.landing-section.row .section-img {
  margin-left: 50px;
}

.landing-section.row {
  padding: 40px;
}
@media (max-width: 767px) {
  .landing-section.row {
    padding: 10px;
  }
}

.landing-section.row-reverse {
  background: #e9ecf5;
  padding: 40px;
  border-radius: 20px;
}
.landing-section.row-reverse .section-img {
  margin-right: 50px;
}
@media (max-width: 767px) {
  .landing-section.row-reverse .section-img {
    margin-right: 0px;
  }
}

.landing-section {
  position: relative;
  margin: 100px 0;
}

.md-content.md-content-landing {
  padding-bottom: 0;
}

.md-content-landing ul li {
  padding: 0.625rem 0 0.625rem 40px;
  position: relative;
  align-items: center;
}
.md-content-landing ul li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #4C88E6;
  left: 0px;
  border-radius: 40px;
  outline: solid 8px rgba(76, 136, 230, 0.1);
  background-image: url("../assets/images/check.svg");
  background-size: 100%;
}

.landing-offre-feature-list ul {
  margin-top: 20px;
}
.landing-offre-feature-list li {
  padding-left: 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.landing-offre-feature-list li:not(:last-child) {
  padding-bottom: 1.5625rem;
}
.landing-offre-feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: 100%;
  background-position: center;
}

.landing-section:nth-child(3n+1) .landing-offre-feature-list li:nth-child(6n+1):before {
  background-image: url("../assets/images/list-pentagone.svg");
}
.landing-section:nth-child(3n+1) .landing-offre-feature-list li:nth-child(6n+2):before {
  background-image: url("../assets/images/list-stick.svg");
}
.landing-section:nth-child(3n+1) .landing-offre-feature-list li:nth-child(6n+3):before {
  background-image: url("../assets/images/list-circle.svg");
}
.landing-section:nth-child(3n+1) .landing-offre-feature-list li:nth-child(6n+4):before {
  background-image: url("../assets/images/list-triangle.svg");
}
.landing-section:nth-child(3n+1) .landing-offre-feature-list li:nth-child(6n+5):before {
  background-image: url("../assets/images/list-losange.svg");
}
.landing-section:nth-child(3n+1) .landing-offre-feature-list li:nth-child(6n+6):before {
  background-image: url("../assets/images/list-square.svg");
}

.landing-section:nth-child(3n+2) .landing-offre-feature-list li:nth-child(6n+5):before {
  background-image: url("../assets/images/list-pentagone.svg");
}
.landing-section:nth-child(3n+2) .landing-offre-feature-list li:nth-child(6n+6):before {
  background-image: url("../assets/images/list-stick.svg");
}
.landing-section:nth-child(3n+2) .landing-offre-feature-list li:nth-child(6n+1):before {
  background-image: url("../assets/images/list-circle.svg");
}
.landing-section:nth-child(3n+2) .landing-offre-feature-list li:nth-child(6n+2):before {
  background-image: url("../assets/images/list-triangle.svg");
}
.landing-section:nth-child(3n+2) .landing-offre-feature-list li:nth-child(6n+3):before {
  background-image: url("../assets/images/list-losange.svg");
}
.landing-section:nth-child(3n+2) .landing-offre-feature-list li:nth-child(6n+4):before {
  background-image: url("../assets/images/list-square.svg");
}

.landing-section:nth-child(3n+3) .landing-offre-feature-list li:nth-child(6n+3):before {
  background-image: url("../assets/images/list-pentagone.svg");
}
.landing-section:nth-child(3n+3) .landing-offre-feature-list li:nth-child(6n+4):before {
  background-image: url("../assets/images/list-stick.svg");
}
.landing-section:nth-child(3n+3) .landing-offre-feature-list li:nth-child(6n+5):before {
  background-image: url("../assets/images/list-circle.svg");
}
.landing-section:nth-child(3n+3) .landing-offre-feature-list li:nth-child(6n+6):before {
  background-image: url("../assets/images/list-triangle.svg");
}
.landing-section:nth-child(3n+3) .landing-offre-feature-list li:nth-child(6n+1):before {
  background-image: url("../assets/images/list-losange.svg");
}
.landing-section:nth-child(3n+3) .landing-offre-feature-list li:nth-child(6n+2):before {
  background-image: url("../assets/images/list-square.svg");
}

.landing-section-1-losange-bg {
  left: 14%;
  bottom: -10%;
  transform: rotate(38deg);
  z-index: 9;
  width: 8%;
}

.landing-section-1-losange-fg {
  left: 13%;
  bottom: -8%;
  transform: rotate(50deg);
  z-index: 12;
  width: 5%;
}

.landing-section-1-circle-bg {
  right: 48%;
  top: -4%;
  transform: rotate(38deg);
  z-index: 9;
  width: 6%;
}

.landing-section-1-circle-fg {
  right: 52%;
  top: -4%;
  transform: rotate(50deg);
  z-index: 12;
  width: 3%;
}

.landing-section-3-triangle-bg {
  left: 30%;
  bottom: -2%;
  transform: rotate(38deg);
  z-index: 9;
  width: 5%;
}

.landing-section-3-triangle-fg {
  left: 33%;
  bottom: 0%;
  transform: rotate(58deg);
  z-index: 12;
  width: 3%;
}

.landing-section-3-stick-bg {
  right: 48%;
  top: -13%;
  transform: rotate(38deg);
  z-index: 9;
  width: 10%;
}

.landing-section-3-stick-fg {
  right: 52%;
  top: -10%;
  transform: rotate(18deg);
  z-index: 12;
  width: 6%;
}

.last-section {
  background: linear-gradient(45deg, #1A2639 0%, #2D4263 100%);
  width: 100%;
  padding: 50px 0;
  margin-top: 100px;
  color: white;
}
.last-section .container {
  max-width: 900px;
  text-align: center;
}
.last-section h2 {
  font-size: 30px;
  font-weight: 900;
  color: white;
}

.hidden-input {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.container-contact {
  max-width: 900px;
  min-height: 75vh;
}

.contact-page {
  margin-top: 180px;
}

.container.ressources,
.container.ressource-page,
.container.download {
  min-height: 90vh;
  padding-top: 150px;
  padding-bottom: 100px;
  font-size: 14px;
  max-width: 1440px;
}
.container.ressources h1,
.container.ressource-page h1,
.container.download h1 {
  font-weight: 900;
  text-align: center;
  font-size: 28px;
}

.ressource-card {
  width: 32%;
  padding: 20px 20px 30px 20px;
  border-radius: 12px;
  border: solid 2px #e9ecf5;
  text-decoration: none;
}
.ressource-card:nth-child(3n+1), .ressource-card:nth-child(3n+2) {
  margin-right: 2%;
}
.ressource-card:hover {
  background-color: #e9ecf5;
  border-color: #A5B3C8;
  color: #23273a !important;
}
@media screen and (max-width: 992px) {
  .ressource-card {
    width: 49%;
  }
  .ressource-card:nth-child(3n+1), .ressource-card:nth-child(3n+2) {
    margin-right: 0;
  }
  .ressource-card:nth-child(odd) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 767px) {
  .ressource-card {
    width: 100%;
  }
  .ressource-card:nth-child(odd) {
    margin-right: 0;
  }
}

.ressource-type {
  text-transform: uppercase;
  font-size: 12px;
  color: #A5B3C8;
  font-weight: 900;
}

.ressource-image {
  width: 30%;
  flex-shrink: 0;
}
.ressource-image img {
  width: 100%;
}

.ressource-title {
  font-weight: 900;
}

.ressource-description {
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0px auto 20px;
}

.ressource-page-image {
  width: 40%;
}
.ressource-page-image img {
  width: 100%;
}

.ressource-form-wrapper {
  width: 500px;
  padding: 30px;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.ressource-form input {
  height: 40px;
  max-height: 40px;
  min-height: 40px;
  border-radius: 6px;
  border: solid 1px #A5B3C8;
  padding: 0 10px;
}
.ressource-form .input-file-hidden {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.container.download {
  max-width: 400px;
}

.download-desc {
  text-align: center;
}

.download-file {
  padding: 10px;
  border: solid 2px #e9ecf5;
  border-radius: 6px;
  text-decoration: none;
  color: #23273a;
}
.download-file:hover {
  background-color: #e9ecf5;
  border: solid 2px #A5B3C8;
  color: #23273a;
}
.download-file .pdf-icon {
  width: 30px;
}
.download-file .pdf-icon img {
  display: block;
}
.download-file .dl-text {
  padding-bottom: 2px;
}
.download-file .file-title {
  font-weight: 700;
}
.download-file .dl-icon {
  width: 20px;
}
.download-file .file-type {
  text-transform: uppercase;
  font-size: 12px;
}

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