/* 
* WEBSITE STYLE 
*/
/* Essentials */
/***
* BASE STYLE
**/
/***
* VARS
**/
/* Colors */
/* Font family */
/* Font size */
/***
* MIXINS FUNCTIONS
**/
/* Responsive */
/* Browsers */
/* Flex */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overscroll-behavior-y: contain;
  -ms-touch-action: pan-x pan-x;
      touch-action: pan-x pan-x;
}

/* Elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

ul {
  padding-left: 0;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  cursor: pointer;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

.bold {
  font-weight: bold;
}

.d-none {
  display: none;
}

.hidden, .hidden > * {
  opacity: 0 !important;
  width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
  z-index: -1;
  background-color: transparent;
  border: unset;
  color: transparent;
  -webkit-transition: opacity 0s, border 0s, width 0.25s, padding 0.25s, margin 0.25s;
  transition: opacity 0s, border 0s, width 0.25s, padding 0.25s, margin 0.25s;
}

.relative {
  position: relative;
}

.displayed {
  opacity: 1 !important;
  height: auto !important;
  width: auto !important;
  padding: auto !important;
  margin: auto !important;
}

.responsive {
  max-width: 100%;
  height: auto;
}

input[type=text],
input[type=email],
textarea {
  outline: none;
  width: 100%;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  overflow: visible !important;
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  overflow: visible !important;
}

input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  overflow: visible !important;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  overflow: visible !important;
}

label {
  cursor: pointer;
}

img[src*=".svg"] {
  width: 100%;
}

.rounded {
  border-radius: 30px;
}

@media (max-width: 480px) {
  .rounded {
    border-radius: 15px;
  }
}

.round {
  border-radius: 100px;
}

.aspect-container {
  position: relative;
  overflow: hidden;
}

.aspect-container.ratio-3-2 {
  padding-top: 66.66%;
}

.aspect-container.ratio-4-3 {
  padding-top: 75%;
}

.aspect-container.ratio-8-5 {
  padding-top: 62.5%;
}

.aspect-container.ratio-16-9 {
  padding-top: 56.25%;
}

.aspect-container.ratio-custo {
  padding-top: 40%;
}

.aspect-container > div {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Flex */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  -webkit-box-align: start;
          align-items: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

.flex1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex1:first-child {
  padding-right: 25px;
}

.flex1:last-child {
  padding-left: 25px;
}

.flex2 {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.flex3 {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.flex4 {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.flex-center {
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
}

.flex-start {
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

.flex-end {
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

.flex-between {
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
}

.flex-around {
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
}

.flex-vcenter {
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.flex-vbottom {
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  -webkit-box-align: end;
          align-items: flex-end;
}

.flex-column {
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

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

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

/* Padding */
.pl-0 {
  padding-left: 0;
}

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

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

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

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pl-10 {
  padding-left: 10;
}

.pr-10 {
  padding-right: 10;
}

.pt-10 {
  padding-top: 10;
}

.pb-10 {
  padding-bottom: 10;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-50 {
  padding-top: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pl-100 {
  padding-left: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pl-150 {
  padding-left: 150px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pr-150 {
  padding-right: 150px;
}

.px-150 {
  padding-left: 150px;
  padding-right: 150px;
}

.py-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

/* Width */
.col-2 {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
}

.col-3 {
  width: 33%;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
}

.row div:first-child {
  margin-left: 0;
}

.row div:last-child {
  margin-right: 0;
}

.w-30 {
  max-width: 30%;
}

.w-50 {
  max-width: 50%;
}

.w-75 {
  max-width: 75%;
}

.w-100 {
  width: 100%;
}

/* Margin */
.mt-0 {
  margin-top: 0;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.mt-75 {
  margin-top: 75px;
}

.mb-75 {
  margin-bottom: 75px;
}

.ml-75 {
  margin-left: 75px;
}

.mr-75 {
  margin-right: 75px;
}

.mt-100 {
  margin-top: 100px;
}

.ml-100 {
  margin-left: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.mt-130 {
  margin-top: 130px;
}

.mb-130 {
  margin-bottom: 130px;
}

.ml-130 {
  margin-left: 130px;
}

.mr-130 {
  margin-right: 130px;
}

.mt-150 {
  margin-top: 150px;
}

.ml-150 {
  margin-left: 150px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mr-150 {
  margin-right: 150px;
}

/* Align */
.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-justify {
  text-align: justify;
}

.relative {
  position: relative;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

/* Misc */
.fullscreen {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
}

.full-width, body .background {
  width: 100%;
  max-width: 100%;
}

.fit-content {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.bold {
  font-weight: bold;
}

/* Colors */
.white {
  color: white;
}

.show-under-991 {
  display: none;
}

/* Responsive */
@media only screen and (max-width: 1080px) {
  .hide-under-1080 {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .hide-under-991 {
    display: none !important;
  }
  .show-under-991 {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .hide-under-768 {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .hide-under-480 {
    display: none;
  }
}

/* Partials */
/*** CSS for tooltip ***/
/* -------------------------------------------------------------------
  Microtip

  Modern, lightweight css-only tooltips
  Just 1kb minified and gzipped

  @author Ghosh
  @package Microtip

----------------------------------------------------------------------
  1. Base Styles
  2. Direction Modifiers
  3. Position Modifiers
--------------------------------------------------------------------*/
/* ------------------------------------------------
  [1] Base Styles
-------------------------------------------------*/
:root {
  --microtip-font-weight: bold;
}

[aria-label][role~="tooltip"] {
  position: relative;
}

[aria-label][role~="tooltip"]::before,
[aria-label][role~="tooltip"]::after {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10;
  -webkit-transform-origin: top;
          transform-origin: top;
}

[aria-label][role~="tooltip"]::before {
  background-size: 100% auto !important;
  content: "";
}

[aria-label][role~="tooltip"]::after {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #ffffff;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: .5em 1em;
  white-space: nowrap;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

[aria-label][role~="tooltip"]:hover::before,
[aria-label][role~="tooltip"]:hover::after,
[aria-label][role~="tooltip"]:focus::before,
[aria-label][role~="tooltip"]:focus::after {
  opacity: 1;
  pointer-events: auto;
}

/* ------------------------------------------------
  [2] Position Modifiers
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position|="top"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

[role~="tooltip"][data-microtip-position|="top"]::after {
  margin-bottom: 11px;
}

[role~="tooltip"][data-microtip-position|="top"]::before {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position|="top"]:hover::before {
  -webkit-transform: translate3d(-50%, -5px, 0);
          transform: translate3d(-50%, -5px, 0);
}

[role~="tooltip"][data-microtip-position|="top"]::after {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position="top"]:hover::after {
  -webkit-transform: translate3d(-50%, -5px, 0);
          transform: translate3d(-50%, -5px, 0);
}

/* ------------------------------------------------
  [2.1] Top Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="top-left"]::after {
  -webkit-transform: translate3d(calc(-100% + 16px), 0, 0);
          transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}

[role~="tooltip"][data-microtip-position="top-left"]:hover::after {
  -webkit-transform: translate3d(calc(-100% + 16px), -5px, 0);
          transform: translate3d(calc(-100% + 16px), -5px, 0);
}

/* ------------------------------------------------
  [2.2] Top Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="top-right"]::after {
  -webkit-transform: translate3d(calc(0% + -16px), 0, 0);
          transform: translate3d(calc(0% + -16px), 0, 0);
  bottom: 100%;
}

[role~="tooltip"][data-microtip-position="top-right"]:hover::after {
  -webkit-transform: translate3d(calc(0% + -16px), -5px, 0);
          transform: translate3d(calc(0% + -16px), -5px, 0);
}

/* ------------------------------------------------
  [2.3] Bottom
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position|="bottom"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

[role~="tooltip"][data-microtip-position|="bottom"]::after {
  margin-top: 11px;
}

[role~="tooltip"][data-microtip-position|="bottom"]::before {
  -webkit-transform: translate3d(-50%, -10px, 0);
          transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

[role~="tooltip"][data-microtip-position|="bottom"]:hover::before {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

[role~="tooltip"][data-microtip-position|="bottom"]::after {
  -webkit-transform: translate3d(-50%, -10px, 0);
          transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position="bottom"]:hover::after {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

/* ------------------------------------------------
  [2.4] Bottom Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="bottom-left"]::after {
  -webkit-transform: translate3d(calc(-100% + 16px), -10px, 0);
          transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}

[role~="tooltip"][data-microtip-position="bottom-left"]:hover::after {
  -webkit-transform: translate3d(calc(-100% + 16px), 0, 0);
          transform: translate3d(calc(-100% + 16px), 0, 0);
}

/* ------------------------------------------------
  [2.5] Bottom Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="bottom-right"]::after {
  -webkit-transform: translate3d(calc(0% + -16px), -10px, 0);
          transform: translate3d(calc(0% + -16px), -10px, 0);
  top: 100%;
}

[role~="tooltip"][data-microtip-position="bottom-right"]:hover::after {
  -webkit-transform: translate3d(calc(0% + -16px), 0, 0);
          transform: translate3d(calc(0% + -16px), 0, 0);
}

/* ------------------------------------------------
  [2.6] Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="left"]::before,
[role~="tooltip"][data-microtip-position="left"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  -webkit-transform: translate3d(10px, -50%, 0);
          transform: translate3d(10px, -50%, 0);
}

[role~="tooltip"][data-microtip-position="left"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

[role~="tooltip"][data-microtip-position="left"]::after {
  margin-right: 11px;
}

[role~="tooltip"][data-microtip-position="left"]:hover::before,
[role~="tooltip"][data-microtip-position="left"]:hover::after {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

/* ------------------------------------------------
  [2.7] Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="right"]::before,
[role~="tooltip"][data-microtip-position="right"]::after {
  bottom: auto;
  left: 100%;
  top: 50%;
  -webkit-transform: translate3d(-10px, -50%, 0);
          transform: translate3d(-10px, -50%, 0);
}

[role~="tooltip"][data-microtip-position="right"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

[role~="tooltip"][data-microtip-position="right"]::after {
  margin-left: 11px;
}

[role~="tooltip"][data-microtip-position="right"]:hover::before,
[role~="tooltip"][data-microtip-position="right"]:hover::after {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

/* ------------------------------------------------
  [3] Size
-------------------------------------------------*/
[role~="tooltip"][data-microtip-size="small"]::after {
  white-space: initial;
  width: 80px;
}

[role~="tooltip"][data-microtip-size="medium"]::after {
  white-space: initial;
  width: 150px;
}

[role~="tooltip"][data-microtip-size="large"]::after {
  white-space: initial;
  width: 260px;
}

.chevron-before-down:before {
  display: inline-block;
  content: ' ';
  background-image: url("../svg/chevron_bottom.svg");
  background-size: 100% 100%;
  height: 12px;
  width: 12px;
  margin-right: 7px;
  margin-top: 4px;
}

.chevron-before-up:before {
  display: inline-block;
  content: ' ';
  background-image: url("../svg/chevron_up.svg");
  background-size: 100% 100%;
  height: 12px;
  width: 12px;
  margin-right: 5px;
}

.chevron-before-right:before {
  display: inline-block;
  content: ' ';
  background-image: url("../svg/chevron_right.svg");
  background-size: 100% 100%;
  height: 12px;
  width: 12px;
  margin-right: 5px;
}

.quote-before:before {
  display: inline-block;
  content: ' ';
  background-image: url("../svg/quote.svg");
  background-size: 100% 100%;
  height: 33px;
  width: 25px;
  margin-right: 20px;
  margin-bottom: 8px;
  margin-left: -15px;
}

.check-before:before {
  display: block;
  position: absolute;
  content: ' ';
  background-image: url("../svg/check.svg");
  background-size: 100% 100%;
  height: 20px;
  width: 20px;
  left: 0px;
}

.search-before:before {
  display: inline-block;
  margin-right: 5px;
  content: ' ';
  background-image: url("../svg/search.svg");
  background-size: 100% 100%;
  height: 20px;
  width: 20px;
  margin-bottom: -5px;
}

.logo-after:after {
  display: inline-block;
  margin-left: 10px;
  content: ' ';
  background-image: url("../svg/logo.svg");
  background-size: 100% 100%;
  height: 15px;
  width: 15px;
  margin-bottom: -2px;
}

.arrows_up, body .quote-block.decor .quote:before, body section.hero .content h1:before, body #home section#skills .skill#skill1 .text:before, body #home section#skills .skill#skill3 .text:before, body #blog .video .video-wrapper:before {
  display: block;
  content: ' ';
  background-image: url("../svg/arrows_up.svg");
  background-size: 20px 70px;
  height: 70px;
  width: 20px;
  position: absolute;
  z-index: 5;
}

.dots, body .quote-block.decor .quote:after, body .fullscreen::after, body #home section#skills .skill#skill1 .text:after, body #blog .quote-block .quote:after {
  display: block;
  content: ' ';
  background-image: url("../svg/dots.svg");
  background-size: 100% 100%;
  height: 25px;
  width: 200px;
  position: absolute;
  z-index: 5;
}

.waves, body #home section#skills .skill#skill2 .text:after, body #blog .hero .content h1:after {
  display: block;
  content: ' ';
  background-image: url("../svg/wave.svg");
  background-size: 90px 5px;
  height: 5px;
  width: 90px;
  position: absolute;
  z-index: 5;
}

.circle, body .quote-block.decor .content:after, body #home section#skills .skill#skill3 .text:after {
  display: block;
  content: ' ';
  background-image: url("../svg/circle.svg");
  background-size: 100% 100%;
  height: 25px;
  width: 25px;
  position: absolute;
  z-index: 5;
}

.cross, body #home section#skills .skill#skill2 .text:before, body #home section#testimonies .glide .glide__track:after {
  display: block;
  content: ' ';
  background-image: url("../svg/cross.svg");
  background-size: 100% 100%;
  height: 20px;
  width: 20px;
  position: absolute;
  z-index: 5;
}

.glide {
  position: relative;
}

.glide .glide__slide {
  opacity: 0.5;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.glide .glide__slide.glide__slide--active {
  opacity: 1;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.glide .glide__arrow {
  position: absolute;
  display: block;
  top: 45%;
  z-index: 2;
  background-color: transparent;
  border: 0;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: opacity 150ms ease, border 300ms ease-in-out;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
}

.glide .glide__arrow:focus {
  outline: none;
}

.glide .glide__arrow:hover {
  border-color: white;
}

.glide .glide__arrow--left {
  left: -75px;
  content: ' ';
  background-image: url("../svg/arrow_left.svg");
  background-size: 100% 100%;
  height: 60px;
  width: 40px;
}

.glide .glide__arrow--right {
  right: -75px;
  content: ' ';
  background-image: url("../svg/arrow_right.svg");
  background-size: 100% 100%;
  height: 60px;
  width: 40px;
}

.glide .glide__arrow--disabled {
  opacity: 0.33;
}

.glide .glide__bullet {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #3ED986;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  cursor: pointer;
  line-height: 0;
  margin: 0 5px;
  background-color: transparent;
}

.glide .glide__bullet:focus {
  outline: none;
}

.btn {
  background-color: #3ED986;
  color: white;
  padding: 10px 22px;
  display: inline-block;
  font-weight: bold;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

.btn:hover {
  background-color: #28cb74;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

.btn.light {
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  background: transparent;
  border: 2px solid white;
}

.btn.light:hover {
  background-color: white;
  color: black;
}

.btn.light:hover span:before {
  background-image: url("../svg/chevron_right_dark.svg");
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

.btn.main {
  background-color: #FF4040;
}

.btn.main:hover {
  background-color: #ff0d0d;
}

.btn.border {
  background-color: transparent;
  border: 1px solid #3ED986;
  color: #3ED986;
}

.btn.border span:before {
  background-image: url("../svg/chevron_right_color.svg");
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

.btn.border:hover {
  background-color: #3ED986;
  color: white;
}

.btn.border:hover span:before {
  background-image: url("../svg/chevron_right.svg");
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

body #menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 50px;
  font-weight: bold;
  font-size: 16px;
  color: white;
  letter-spacing: 0.5px;
  z-index: 7;
  background-color: transparent;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

body #menu #home {
  display: none;
}

body #menu .content {
  height: 50px;
}

body #menu #logo {
  margin-right: 40px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

body #menu #logo svg {
  width: 30px;
  height: 30px;
}

body #menu nav {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body #menu nav a.tab {
  display: inline-block;
  margin-right: 30px;
  font-weight: bold;
  font-size: 16px;
  color: white;
  letter-spacing: 0.5px;
  border-bottom: 2px solid transparent;
  padding: 7px 0;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

body #menu nav a.tab:hover, body #menu nav a.tab.active {
  border-bottom-color: #FF4040;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

body #menu #action {
  cursor: pointer;
}

body #menu #action #login {
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0s, border 0s, color 0s, width 0.25s;
  transition: opacity 0s, border 0s, color 0s, width 0.25s;
}

body #menu #action #login #open-search {
  margin-top: 5px;
}

body #menu #action #search {
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.25s, border 0s, color 0s, width 0.25s;
  transition: opacity 0.25s, border 0s, color 0s, width 0.25s;
}

body #menu #action #search #keyword {
  border: 2px solid white;
  border-radius: 50px;
  padding-right: 10px;
}

@media (max-width: 480px) {
  body #menu #action #search #keyword {
    max-width: 75%;
  }
}

body #menu #action #search #keyword input {
  background: transparent;
  border: 0;
  color: white;
}

body #menu #action #search #keyword input::-webkit-input-placeholder {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  overflow: visible;
  line-height: normal;
}

body #menu #action #search #keyword input:-ms-input-placeholder {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  overflow: visible;
  line-height: normal;
}

body #menu #action #search #keyword input::-ms-input-placeholder {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  overflow: visible;
  line-height: normal;
}

body #menu #action #search #keyword input::placeholder {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  overflow: visible;
  line-height: normal;
}

body #menu #action #search.hidden #keyword {
  height: 0 !important;
}

body #menu #action #search #close-search {
  cursor: pointer;
  background-image: url("../svg/cancel_white.svg");
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

body #menu #menu-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 8%;
  height: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: height 0.4s, padding 0.4s, opacity ease-in-out;
  transition: height 0.4s, padding 0.4s, opacity ease-in-out;
}

body #menu #menu-details .submenu {
  max-width: 130px;
  margin-right: 100px;
}

body #menu #menu-details .submenu .illu {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

body #menu #menu-details .submenu .illu svg {
  width: 100%;
  height: auto;
}

body #menu #menu-details .submenu p {
  font-size: calc(10px + (13 - 10) * ((100vw - 300px) / (1600 - 300)));
  line-height: calc(1.2em + (1.3 - 1.1) * ((100vw - 300px)/(1600 - 300)));
  font-weight: normal;
}

body #menu #mobile-menu-details {
  text-align: center;
  height: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: height 0.4s, padding 0.4s, opacity ease-in-out;
  transition: height 0.4s, padding 0.4s, opacity ease-in-out;
}

body #menu #mobile-menu-details nav a.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  margin-right: 0;
  padding: 15px 0;
}

body #menu #mobile-menu-details nav a.tab:hover {
  border-color: transparent;
}

body #menu #mobile-menu-details nav a.tab.active {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 10px;
}

body #menu #mobile-menu-details nav .submenu {
  padding: 10px 0;
}

body #menu #mobile-menu-details nav .submenu .illu {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-right: 10px;
}

body #menu #mobile-menu-details nav .submenu .illu svg {
  width: 100%;
  height: auto;
}

body #menu #mobile-menu-details nav .submenu h5 {
  color: #FF4040 !important;
}

body #menu #mobile-menu-details hr {
  width: 40px;
  height: 2px;
  border: none;
  background-color: #001E56;
  margin-top: 20px;
  margin-bottom: 30px;
}

body #menu #mobile-menu-details #action {
  display: block;
  color: #3ED986;
}

body #menu #toggle-mobile-menu {
  height: 25px;
  width: 25px;
  margin-left: 20px;
  cursor: pointer;
}

body #menu #toggle-mobile-menu:before {
  display: block;
  content: ' ';
  background-image: url("../svg/burger.svg");
  background-size: 25px 25px;
  height: 25px;
  width: 25px;
  position: absolute;
  z-index: 5;
}

body #menu.open, body #menu.scrolled {
  background: white;
  color: #001E56;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

body #menu.open nav a.tab, body #menu.scrolled nav a.tab {
  color: #001E56;
}

body #menu.open .btn, body #menu.scrolled .btn {
  color: #001E56;
  border-color: #001E56;
}

body #menu.open .btn span:before, body #menu.scrolled .btn span:before {
  background-image: url("../svg/chevron_right_dark.svg");
}

body #menu.open .btn:hover, body #menu.scrolled .btn:hover {
  color: #FF4040;
  border-color: #FF4040;
}

body #menu.open .btn:hover span:before, body #menu.scrolled .btn:hover span:before {
  background-image: url("../svg/chevron_right_main.svg");
}

body #menu.open svg, body #menu.scrolled svg {
  fill: #001E56 !important;
}

body #menu.open #action a, body #menu.scrolled #action a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #menu.open #action a:hover, body #menu.scrolled #action a:hover {
  color: #FF4040;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body #menu.open #action #search #keyword, body #menu.scrolled #action #search #keyword {
  color: #001E56;
  border-color: #001E56;
}

body #menu.open #action #search #keyword input::-webkit-input-placeholder, body #menu.scrolled #action #search #keyword input::-webkit-input-placeholder {
  color: rgba(0, 30, 86, 0.75);
}

body #menu.open #action #search #keyword input:-ms-input-placeholder, body #menu.scrolled #action #search #keyword input:-ms-input-placeholder {
  color: rgba(0, 30, 86, 0.75);
}

body #menu.open #action #search #keyword input::-ms-input-placeholder, body #menu.scrolled #action #search #keyword input::-ms-input-placeholder {
  color: rgba(0, 30, 86, 0.75);
}

body #menu.open #action #search #keyword input::placeholder, body #menu.scrolled #action #search #keyword input::placeholder {
  color: rgba(0, 30, 86, 0.75);
}

body #menu.open #action #search #keyword svg, body #menu.scrolled #action #search #keyword svg {
  fill: #001E56;
}

body #menu.open #action #search #close-search, body #menu.scrolled #action #search #close-search {
  background-image: url("../svg/cancel.svg");
}

body #menu.scrolled {
  position: fixed;
  padding-top: 15px;
  padding-bottom: 15px;
}

body #menu.scrolled nav a.tab {
  padding: 26px 0;
}

body #menu.scrolled #toggle-mobile-menu:before {
  background-image: url("../svg/burger_dark.svg");
}

body #menu.scrolled .chevron-before-down:before {
  background-image: url("../svg/chevron_bottom_dark.svg") !important;
}

body #menu.open .chevron-before-down:before {
  background-image: url("../svg/chevron_up.svg") !important;
}

body #menu.open-desktop #menu-details {
  padding: 60px 0 30px 0;
  height: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transition: height 0.4s, padding 0.4s, opacity ease-in-out;
  transition: height 0.4s, padding 0.4s, opacity ease-in-out;
}

body #menu.open-mobile #mobile-menu-details {
  padding: 20px 0px;
  height: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transition: height 0.4s, padding 0.4s, opacity ease-in-out;
  transition: height 0.4s, padding 0.4s, opacity ease-in-out;
}

@media (max-width: 768px) and (orientation: landscape) {
  body #menu.open-mobile #mobile-menu-details {
    padding: 0;
  }
  body #menu.open-mobile #mobile-menu-details nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body #menu.open-mobile #mobile-menu-details nav #sign a {
    display: block;
  }
  body #menu.open-mobile #mobile-menu-details .btn {
    margin-top: 30px;
    margin-left: 0;
    padding: 10px 15px;
  }
}

body #menu.open-mobile #toggle-mobile-menu:before {
  background-image: url("../svg/burger_dark.svg");
  background-size: 25px 25px;
  height: 25px;
  width: 25px;
  position: absolute;
  z-index: 5;
}

body #menu.open-mobile.scrolled {
  padding: 20px 30px;
}

body .dark-menu #menu {
  color: #001E56;
}

body .dark-menu #menu nav a.tab {
  color: #001E56;
}

body .dark-menu #menu .chevron-before-down:before {
  background-image: url(../svg/chevron_bottom_dark.svg) !important;
}

body .dark-menu #menu .btn {
  color: #001E56;
  border-color: #001E56;
}

body .dark-menu #menu .btn span:before {
  background-image: url("../svg/chevron_right_dark.svg");
}

body .dark-menu #menu .btn:hover {
  color: #FF4040;
  border-color: #FF4040;
}

body .dark-menu #menu .btn:hover span:before {
  background-image: url(../svg/chevron_right_main.svg);
}

body .dark-menu #menu svg {
  fill: #001E56 !important;
}

body .dark-menu #menu #action a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body .dark-menu #menu #action a:hover {
  color: #FF4040;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body .dark-menu #menu #action #search #keyword {
  color: #001E56;
  border-color: #001E56;
}

body .dark-menu #menu #action #search #keyword input::-webkit-input-placeholder {
  color: rgba(0, 30, 86, 0.75);
}

body .dark-menu #menu #action #search #keyword input:-ms-input-placeholder {
  color: rgba(0, 30, 86, 0.75);
}

body .dark-menu #menu #action #search #keyword input::-ms-input-placeholder {
  color: rgba(0, 30, 86, 0.75);
}

body .dark-menu #menu #action #search #keyword input::placeholder {
  color: rgba(0, 30, 86, 0.75);
}

body .dark-menu #menu #action #search #keyword svg {
  fill: #001E56;
}

body .dark-menu #menu #action #search #close-search {
  background-image: url("../svg/cancel.svg");
}

body .dark-menu #menu #action.searching #search #keyword {
  border-color: #001E56;
}

body .dark-menu #menu #toggle-mobile-menu:before {
  background-image: url("../svg/burger_dark.svg");
}

body .simple-menu #menu nav, body .simple-menu #menu #action {
  display: none;
}

body .simple-menu #menu #home {
  display: block;
}

/* Reconversion */
@media only screen and (max-width: 991px) {
  body #menu {
    padding: 30px 30px;
  }
  body #menu.scrolled {
    padding: 20px 30px;
  }
}

@media only screen and (max-width: 480px) {
  body #menu {
    padding: 30px 30px;
  }
}

.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.category > * {
  max-width: 100%;
}

.category .aspect-container {
  margin-top: 30px;
  width: 90%;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

.category .aspect-container .illu {
  z-index: 1;
}

@media (max-width: 480px) {
  .category .aspect-container {
    width: 100%;
  }
}

.category h4 {
  text-align: center;
}

.category h4 span {
  display: inline;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  -webkit-transition: background-size .3s;
  transition: background-size .3s;
  font-weight: 600;
}

.category .btn {
  margin-top: -22px;
  position: relative;
  z-index: 2;
}

.category p {
  padding: 0 5%;
  text-align: center;
}

.category:hover .aspect-container {
  -webkit-box-shadow: 0px 0px 30px rgba(128, 0, 0, 0.3);
  box-shadow: 0px 0px 30px rgba(128, 0, 0, 0.3);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.category:hover h4 span {
  background-size: 100% 2px;
}

@media (max-width: 480px) {
  .category {
    margin-left: 30px;
    margin-right: 30px;
  }
}

body .quote-block .quote {
  font-size: calc(24px + (28 - 24) * ((100vw - 300px) / (1600 - 300)));
  line-height: 40px;
  position: relative;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

body .quote-block.w-500 {
  max-width: 500px !important;
}

body .quote-block.decor .content {
  position: relative;
}

body .quote-block.decor .content:after {
  right: -100px;
  top: 30px;
}

body .quote-block.decor .quote:before {
  top: -100px;
  left: -100px;
}

body .quote-block.decor .quote:after {
  bottom: -100px;
  right: 100px;
}

@media (max-width: 768px) {
  body .quote-block.decor .quote:after {
    display: none;
  }
}

.cta-block {
  background-color: #FF4040;
  border-radius: 20px;
  color: white;
  padding: 30px 50px;
}

.cta-block.highlight {
  background-color: #3ED986;
}

.cta-block svg {
  height: 30px;
  width: 30px;
}

@media (max-width: 768px) {
  .cta-block {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .cta-block div {
    margin: 0 0 30px 0;
    text-align: center;
  }
}

/* Fonts */
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/playfair-display/playfair-display-v21-latin-italic.eot");
  src: local(""), url("../fonts/playfair-display/playfair-display-v21-latin-italic.eot?#iefix") format("embedded-opentype"), url("../fonts/playfair-display/playfair-display-v21-latin-italic.woff2") format("woff2"), url("../fonts/playfair-display/playfair-display-v21-latin-italic.woff") format("woff"), url("../fonts/playfair-display/playfair-display-v21-latin-italic.ttf") format("truetype"), url("../fonts/playfair-display/playfair-display-v21-latin-italic.svg#PlayfairDisplay") format("svg");
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/raleway/raleway-v17-latin-regular.eot");
  src: local(""), url("../fonts/raleway/raleway-v17-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway/raleway-v17-latin-regular.woff2") format("woff2"), url("../fonts/raleway/raleway-v17-latin-regular.woff") format("woff"), url("../fonts/raleway/raleway-v17-latin-regular.ttf") format("truetype"), url("../fonts/raleway/raleway-v17-latin-regular.svg#Raleway") format("svg");
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/raleway/raleway-v17-latin-500.eot");
  src: local(""), url("../fonts/raleway/raleway-v17-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway/raleway-v17-latin-500.woff2") format("woff2"), url("../fonts/raleway/raleway-v17-latin-500.woff") format("woff"), url("../fonts/raleway/raleway-v17-latin-500.ttf") format("truetype"), url("../fonts/raleway/raleway-v17-latin-500.svg#Raleway") format("svg");
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/raleway/raleway-v17-latin-600.eot");
  src: local(""), url("../fonts/raleway/raleway-v17-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway/raleway-v17-latin-600.woff2") format("woff2"), url("../fonts/raleway/raleway-v17-latin-600.woff") format("woff"), url("../fonts/raleway/raleway-v17-latin-600.ttf") format("truetype"), url("../fonts/raleway/raleway-v17-latin-600.svg#Raleway") format("svg");
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/raleway-v17-latin-700.eot");
  src: local(""), url("../fonts/raleway/raleway-v17-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway/raleway-v17-latin-700.woff2") format("woff2"), url("../fonts/raleway/raleway-v17-latin-700.woff") format("woff"), url("../fonts/raleway/raleway-v17-latin-700.ttf") format("truetype"), url("../fonts/raleway/raleway-v17-latin-700.svg#Raleway") format("svg");
}

/* General */
body {
  font-family: "Raleway", sans-serif;
  color: #001E56;
  font-size: 16px;
  line-height: calc(1.65em + (1.4 - 1.1) * ((100vw - 300px)/(1600 - 300)));
  overflow-x: hidden;
}

body a {
  text-decoration: none;
}

body p {
  margin: 30px 0;
  text-align: justify;
}

body b {
  font-weight: 600;
}

body h1,
body .baseline {
  font-size: calc(30px + (55 - 30) * ((100vw - 300px) / (1600 - 300)));
}

body .baseline {
  text-align: center;
}

body h1,
body .baseline,
body h2,
body h3,
body h4,
body h5 {
  font-weight: 600;
  line-height: calc(1.2em + (1.3 - 1.1) * ((100vw - 300px)/(1600 - 300)));
}

body h2 {
  font-size: calc(30px + (35 - 30) * ((100vw - 300px) / (1600 - 300)));
}

body h3 {
  font-size: calc(36px + (40 - 36) * ((100vw - 300px) / (1600 - 300)));
}

body h4 {
  font-size: calc(24px + (28 - 24) * ((100vw - 300px) / (1600 - 300)));
}

body h5,
body .large {
  font-size: 18px;
}

body h6 {
  font-size: 16px;
}

body .large {
  line-height: calc(1.65em + (1.4 - 1.1) * ((100vw - 300px)/(1600 - 300)));
}

body sup {
  top: -0.1em;
  font-size: 100%;
}

body .underline {
  display: inline;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  -webkit-transition: background-size .3s;
  transition: background-size .3s;
  font-weight: 600;
}

body .underline:hover, body .underline:focus {
  background-size: 100% 2px;
}

body input[type=text],
body input[type=email],
body input[type=number],
body textarea {
  border-radius: 10px;
  padding: 10px 15px;
  border-width: 2px;
  border-color: #001E56;
  border-style: solid;
  font-weight: 500;
  color: #001E56;
  font-size: 16px;
}

body input[type=text]::-webkit-input-placeholder,
body input[type=email]::-webkit-input-placeholder,
body input[type=number]::-webkit-input-placeholder,
body textarea::-webkit-input-placeholder {
  color: #001E56;
  opacity: 0.75;
  font-family: "Raleway", sans-serif !important;
}

body input[type=text]:-ms-input-placeholder,
body input[type=email]:-ms-input-placeholder,
body input[type=number]:-ms-input-placeholder,
body textarea:-ms-input-placeholder {
  color: #001E56;
  opacity: 0.75;
  font-family: "Raleway", sans-serif !important;
}

body input[type=text]::-ms-input-placeholder,
body input[type=email]::-ms-input-placeholder,
body input[type=number]::-ms-input-placeholder,
body textarea::-ms-input-placeholder {
  color: #001E56;
  opacity: 0.75;
  font-family: "Raleway", sans-serif !important;
}

body input[type=text]::placeholder,
body input[type=email]::placeholder,
body input[type=number]::placeholder,
body textarea::placeholder {
  color: #001E56;
  opacity: 0.75;
  font-family: "Raleway", sans-serif !important;
}

body .checkbox {
  width: 15px;
  height: 15px;
  border-width: 2px;
  border-style: solid;
  border-color: #001E56;
  margin-right: 10px;
  cursor: pointer;
}

body button[type=submit] {
  border: 0;
  font-size: 16px;
  line-height: calc(1.65em + (1.4 - 1.1) * ((100vw - 300px)/(1600 - 300)));
}

/* Structure */
body .wrapper {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

body .wrapper.medium section:not(.hero) {
  max-width: 1080px;
}

body .wrapper.small section:not(.hero) {
  max-width: 800px;
}

body .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

body .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body .fullscreen {
  position: relative;
}

body .fullscreen video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right 75%;
     object-position: right 75%;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 3;
  position: absolute;
  background: transparent no-repeat 75% 75%;
  background-size: cover;
}

@media (max-width: 1024px) {
  body .fullscreen video {
    background: transparent no-repeat 65% 75%;
    background-size: cover;
  }
}

html[data-browser*="Windows NT 10.0"] body .fullscreen video {
  display: none;
}

body .fullscreen.auto-height {
  min-height: 100vh;
  height: auto;
}

body .fullscreen::after {
  bottom: 75px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  body .fullscreen::after {
    bottom: 50px;
  }
}

@media (max-width: 480px) {
  body .fullscreen::after {
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  body .fullscreen {
    height: auto;
  }
}

body .background {
  background-color: #F5F5F5;
}

body .highlight-bg-color {
  background-color: #E4FFF0;
}

body .highlight-bg-color section.hero {
  padding-top: 130px;
  padding-bottom: 50px;
}

body .highlight-bg-color section.hero .content h1:before {
  display: none;
}

body .text-bg-color {
  background-color: #E4F3FF;
}

body .text-bg-color section.hero {
  padding-top: 130px;
  padding-bottom: 50px;
}

body .gradient {
  background: #558fbe;
  background-image: -webkit-gradient(linear, right top, left bottom, from(#78b2d3), color-stop(#7eb7d6), color-stop(#85bcd8), color-stop(#8bc1db), color-stop(#92c6de), color-stop(#8fc4dd), color-stop(#8dc2dc), color-stop(#8ac0db), color-stop(#7eb6d6), color-stop(#74acd1), color-stop(#6aa1cc), to(#6297c7));
  background-image: linear-gradient(to left bottom, #78b2d3, #7eb7d6, #85bcd8, #8bc1db, #92c6de, #8fc4dd, #8dc2dc, #8ac0db, #7eb6d6, #74acd1, #6aa1cc, #6297c7);
}

body .gradient-image {
  background: #558fbe;
  background-image: url("../img/hero_large.png");
  background-image: url("../img/pierre.png"), -webkit-gradient(linear, right top, left bottom, from(#78b2d3), color-stop(#7eb7d6), color-stop(#85bcd8), color-stop(#8bc1db), color-stop(#92c6de), color-stop(#8fc4dd), color-stop(#8dc2dc), color-stop(#8ac0db), color-stop(#7eb6d6), color-stop(#74acd1), color-stop(#6aa1cc), to(#6297c7));
  background-image: url("../img/pierre.png"), linear-gradient(to left bottom, #78b2d3, #7eb7d6, #85bcd8, #8bc1db, #92c6de, #8fc4dd, #8dc2dc, #8ac0db, #7eb6d6, #74acd1, #6aa1cc, #6297c7);
  background-repeat: no-repeat;
  background-position: 95% bottom, center center;
  background-size: auto 85%, cover;
}

@media (max-width: 480px) {
  body .gradient-image {
    background-position: -640% bottom, center center;
  }
}

body .bg-illustration {
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: 110% 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
}

body .bg-illustration section.hero {
  padding-top: 130px;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  body .bg-illustration {
    background-image: none !important;
  }
}

/* Sections */
body section {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
}

body section.medium section:not(.hero) {
  max-width: 1080px;
}

body section.small section:not(.hero) {
  max-width: 800px;
}

body section.hero {
  position: relative;
  z-index: 3;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

body section.hero.white p {
  font-weight: 600;
}

body section.hero .content {
  z-index: 3;
  max-width: 750px;
  position: relative;
}

body section.hero .content h1 {
  font-weight: bold;
  position: relative;
}

body section.hero .content h1:before {
  position: absolute;
  top: 30px;
  left: -50px;
}

@media (max-width: 1024px) {
  body section.hero .content h1:before {
    display: none;
  }
}

body section.hero .content #referals {
  position: relative;
}

body section.hero .content #referals .referal.horizontal {
  height: 30px;
  width: 100px;
}

body section.hero .content #referals .referal.square {
  height: 75px;
  width: 75px;
}

body section.video {
  padding: 0 50px;
}

body section.video .container-video {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
}

@media (max-width: 768px) {
  body section.video .container-video {
    background-image: url("../assets/img/hero_small/png");
  }
  body section.video .container-video video {
    display: none;
  }
}

body section.footer {
  padding-bottom: 50px;
}

@media (max-width: 480px) {
  body section.footer {
    padding-bottom: 30px;
  }
}

body section.footer .back-up {
  width: 75px;
  height: 75px;
  background-color: #001E56;
  border-radius: 50px;
  margin-top: -140px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

body section.footer .back-up svg {
  width: 100%;
}

body section.footer #links {
  width: 100%;
  max-width: 1300px;
}

body section.footer #links h5 {
  margin-bottom: 30px;
}

body section.footer #links svg {
  margin-bottom: 15px;
  margin-right: 10px;
}

body section.footer #links a {
  display: block;
  margin-bottom: 15px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

body section.footer #links a:hover {
  text-decoration: underline;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

@media (max-width: 768px) {
  body section.footer #links.flex-wrap > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-bottom: 50px;
  }
}

@media (min-width: 2240px) {
  body section {
    max-width: 1920px;
  }
}

@media (max-width: 1920px) {
  body section {
    max-width: 1440px;
  }
}

@media (max-width: 1366px) {
  body section {
    max-width: 1080px;
  }
}

@media (max-width: 480px) {
  body section {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* 
* SPECIFICS 
*/
/***
* PAGES 
***/
body {
  /* Home */
  /* Blog */
  /* Article */
  /* Contact */
  /* Newsletter */
}

body #home section#skills .skill {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 768px) {
  body #home section#skills .skill {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  body #home section#skills .skill {
    margin: 100px 0 100px 0;
  }
}

body #home section#skills .skill .text {
  max-width: 700px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body #home section#skills .skill .number {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
}

body #home section#skills .skill h3,
body #home section#skills .skill p {
  margin-left: 20px;
}

body #home section#skills .skill .illu {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body #home section#skills .skill .illu img {
  width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  body #home section#skills .skill .illu {
    margin-top: 50px;
  }
}

body #home section#skills .skill#skill1 {
  margin-top: 50px;
}

body #home section#skills .skill#skill1 .text {
  position: relative;
}

body #home section#skills .skill#skill1 .text:before {
  top: -45px;
  left: -50px;
}

body #home section#skills .skill#skill1 .text:after {
  bottom: -30px;
  right: -50px;
}

body #home section#skills .skill#skill2 {
  margin-top: 100px;
  margin-bottom: 100px;
}

body #home section#skills .skill#skill2 .text {
  position: relative;
}

body #home section#skills .skill#skill2 .text:before {
  top: -30px;
  left: -75px;
}

body #home section#skills .skill#skill2 .text:after {
  bottom: 50px;
  right: 50px;
}

@media (max-width: 768px) {
  body #home section#skills .skill#skill2 {
    margin-top: 0px;
  }
}

body #home section#skills .skill#skill3 {
  margin-top: 50px;
}

body #home section#skills .skill#skill3 .text {
  position: relative;
}

body #home section#skills .skill#skill3 .text:before {
  top: 100px;
  left: -50px;
}

body #home section#skills .skill#skill3 .text:after {
  top: -30px;
  right: -70px;
}

body #home section#subjects {
  padding: 100px 0 !important;
}

body #home section#subjects .glide .glide__arrow--left {
  background-image: url("../svg/arrow_left_main.svg");
  left: 35px;
  margin-top: -90px;
  background-size: 100% 100%;
  height: 40px;
  width: 20px;
}

body #home section#subjects .glide .glide__arrow--right {
  background-image: url("../svg/arrow_right_main.svg");
  right: 35px;
  margin-top: -90px;
  background-size: 100% 100%;
  height: 40px;
  width: 20px;
}

body #home section#subjects .glide .glide__bullet {
  border: 1px solid #FF4040;
}

body #home section#subjects .glide .glide__bullet:hover,
body #home section#subjects .glide .glide__bullet:focus {
  background-color: #FF4040;
}

body #home section#subjects .glide .glide__bullet--active {
  background-color: #FF4040;
}

body #home section#testimonies {
  padding-bottom: 30px;
}

body #home section#testimonies .glide .glide__track:after {
  bottom: 0px;
  right: 0px;
}

@media (max-width: 768px) {
  body #home section#testimonies .glide .glide__track:after {
    display: none;
  }
}

body #home section#testimonies .glide .glide__arrow {
  top: 37%;
}

body #home section#testimonies .glide .glide__arrow--left {
  background-image: url("../svg/arrow_left.svg");
  left: 0px;
}

body #home section#testimonies .glide .glide__arrow--right {
  background-image: url("../svg/arrow_right.svg");
  right: 0px;
}

body #home section#testimonies .glide .glide__bullet {
  border: 1px solid #3ED986;
}

body #home section#testimonies .glide .glide__bullet:hover,
body #home section#testimonies .glide .glide__bullet:focus {
  background-color: #3ED986;
}

body #home section#testimonies .glide .glide__bullet--active {
  background-color: #3ED986;
}

body #home section#testimonies .testimony {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 1000px;
}

body #home section#testimonies .testimony .content {
  padding-right: 10%;
}

@media (max-width: 1366px) {
  body #home section#testimonies .testimony .content {
    padding-left: 10%;
  }
}

@media (max-width: 768px) {
  body #home section#testimonies .testimony .content {
    padding: 0 20px;
    text-align: center;
  }
  body #home section#testimonies .testimony .content p {
    text-align: center;
  }
}

body #home section#testimonies .testimony .content .quote .avatar {
  min-width: 100px;
  height: 100px;
  background-size: cover;
}

@media (max-width: 768px) {
  body #home section#testimonies .testimony .content .quote {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    padding: 0 5%;
  }
  body #home section#testimonies .testimony .content .quote div {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

body #home section#testimonies .testimony .picture {
  position: relative;
  max-width: 450px;
}

body #home section#testimonies .testimony .picture img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  body #home section#testimonies .testimony .picture {
    display: none;
  }
}

body #blog .hero .content h1:after {
  position: absolute;
  bottom: 0;
  right: -30px;
}

@media (max-width: 768px) {
  body #blog .hero .content h1:after {
    display: none;
  }
}

body #blog .hero .illu {
  padding-left: 5%;
  margin-right: -300px;
}

body #blog .hero .illu svg {
  width: 100%;
  min-width: 300px;
  min-height: 500px;
}

@media (max-width: 1024px) {
  body #blog .hero .illu {
    width: 100%;
    padding-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  body #blog .hero .illu {
    display: none;
  }
}

body #blog .category {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

body #blog .video .video-wrapper:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: -75px;
}

@media (max-width: 480px) {
  body #blog .video {
    padding: 0 30px;
  }
}

body #blog .quote-block .quote {
  width: 100%;
}

body #blog .quote-block .quote:after {
  bottom: -80px;
  right: 50px;
}

@media (max-width: 768px) {
  body #blog .quote-block .quote:after {
    display: none;
  }
}

html[data-browser*="Windows NT 10.0"] body #article .bg-illustration {
  background-size: 70%;
  background-position: 180% 50%;
}

body #article .bg-illustration section.hero {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

body #article .bg-illustration section.hero .content {
  margin-left: auto;
  margin-right: auto;
}

body #contact section.hero #socials svg {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

body #newsletter .hero .rocket-after:after {
  display: inline-block;
  content: ' ';
  background-image: url("../svg/rocket.svg");
  background-size: 60px 60px;
  height: 60px;
  width: 60px;
  margin-left: 15px;
  margin-bottom: -15px;
}

body #newsletter .hero input {
  border-color: white;
  background: transparent;
}

body #newsletter .hero input::-webkit-input-placeholder {
  color: white;
}

body #newsletter .hero input:-ms-input-placeholder {
  color: white;
}

body #newsletter .hero input::-ms-input-placeholder {
  color: white;
}

body #newsletter .hero input::placeholder {
  color: white;
}

body #newsletter .back-up {
  display: none;
}

body #newsletter .footer {
  padding-top: 30px;
}

body #videotest .feature.video {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

body #videotest .video-wrapper {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  height: 0;
  width: 100%;
  padding: 0;
  padding-bottom: 56.25%;
}

body #videotest .video-wrapper iframe {
  height: calc(100% + 250px);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  pointer-events: none;
  margin-top: -125px;
}

@media (max-width: 480px) {
  body #videotest .video-wrapper iframe {
    display: none;
  }
}

body #videotest .video-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

body #videotest section.hero {
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 1440px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/***
* GLOBAL RESPONSIVE
**/
/* FHD/4k Screens; mixin responsive(desktop-big) */
/* Classic desktop; mixin responsive(desktop) */
/* Small desktops; mixin responsive(desktop-small) */
/* Large tablets, tiny desktops; mixin responsive(tablet-landscape) */
@media only screen and (max-width: 1024px) {
  body #blog section.hero {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

/* Tablets; mixin responsive(tablet-portrait) */
@media only screen and (max-width: 991px) {
  body #home section#skills .skill {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  body #home section#skills .skill.inverse {
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
  }
}

/* Phone landscape, small tablets; mixin responsive(phone-landscape) */
@media only screen and (max-width: 768px) {
  body .flex-wrap > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0 !important;
  }
  body .col-2 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  body .col-2.space {
    margin-bottom: 20px;
  }
  body #home #subjects .illu {
    background-image: url("../img/illustration_small.png") !important;
  }
  body #home #testimonies .illu {
    background-image: url("../img/testimony_small.jpg");
  }
  body #article .aspect-container > div {
    background-image: url("../img/image_small.png");
  }
}

/* Phone portrait, mixin responsive(phone-portrait) */
@media only screen and (max-width: 480px) {
  body br {
    display: none;
  }
  body .w-50,
  body .w-30,
  body .w-75 {
    max-width: 100% !important;
  }
  body .flex1:first-child {
    padding-right: 0;
  }
  body .flex1:last-child {
    padding-left: 0;
  }
  body section#subjects .glide:after,
  body section#subjects .glide:before {
    display: none;
  }
  body section#testimonies .glide .glide__arrow--right {
    right: -10px;
    background-size: 20px 30px;
    height: 30px;
    width: 20px;
  }
  body section#testimonies .glide .glide__arrow--left {
    left: -10px;
    background-size: 20px 30px;
    height: 30px;
    width: 20px;
  }
  body section#testimonies .glide:after, body section#testimonies .glide:before {
    display: none;
  }
  body section#testimonies .glide .glide__track:after {
    bottom: -70px;
    right: 60px;
  }
  body section#testimonies .glide .glide__track:before {
    top: -45px;
    right: 90%;
  }
  body section#testimonies .glide .glide__bullets {
    margin-top: 0;
  }
  body #home .testimony .quote:after {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */