/***************************************************************************/
/****************************   INCLUDES        ****************************/
/***************************************************************************/
















/****************************************************************************************************/
/***************************************** SUMMARY   ************************************************/
/****************************************************************************************************/
/* 
* 01 - Colors - Text and Backgrounds
* 02 - Border
* 03 - Box-Shadow
* 04 - Cursor 
* 05 - Display
* 06 - Image
* 07 - Font Size / Style / Weight
* 08 - Width 
* 11 - Transition / Keyframes 
* 13 - Margin 
* 14 - Padding 
* 15 - Position 
* 16 - Text Align / Decoration / Transform 
* 18 - List 
* 19 - Opacity 
* 20 - Z-index 
* */

/*********************************************************/
/* 01 - Colors - Texts and Backgrounds    */
/*********************************************************/

/*---Texts---*/
.primary-color {
  color:var(--primary_color);
}
.secondary-color {
  color:var(--secondary_color);
}
.highlight-color {
  color:var(--highlight_color);
}
.anchor-color {
  color:var(--anchor_color);
}
.anchor-smooth-color {
  color:var(--anchor_smooth_color);
}
.anchor-light-color {
  color:var(--anchor_light_color);
}
.system-gray-color {
  color:var(--system_gray_color);
}
.soft-gray-color {
  color:var(--soft_gray_color);
}
.blue-gray-color {
  color:var(--blue_gray_color);
}
.white-color {
  color:var(--white_color);
}
.black-color {
  color:var(--black_color);
}
.valid-color {
  color:var(--valid_color);
}
.error-color {
  color:var(--error_color);
}

/*---Backgrounds---*/
.bkg-primary-color {
  background:var(--primary_color);
}
.bkg-secondary-color {
  background:var(--secondary_color);
}
.bkg-highlight-color {
  background:var(--highlight_color);
}
.bkg-anchor-color {
  background:var(--anchor_color);
}
.bkg-anchor-smooth-color {
  background:var(--anchor_smooth_color);
}
.bkg-anchor-light-color {
  background:var(--anchor_light_color);
}
.bkg-system-gray-color {
  background:var(--system_gray_color);
}
.bkg-soft-gray-color {
  background:var(--soft_gray_color);
}
.bkg-blue-gray-color {
  background:var(--blue_gray_color);
}
.bkg-white-color {
  background:var(--white_color);
}
.bkg-black-color {
  background:var(--black_color);
}
.bkg-valid-color {
  background:var(--valid_color);
}
.bkg-error-color {
  background:var(--error_color);
}

/*---icon---*/
.icon-primary-color {
  fill:var(--primary_color);
}
.icon-secondary-color {
  fill:var(--secondary_color);
}
.icon-highlight-color {
  fill:var(--highlight-color);
}
.icon-anchor-color {
  fill:var(--anchor-color);
}
.icon-anchor-smooth-color {
  fill:var(--anchor_smooth_color);
}
.icon-anchor-light-color {
  fill:var(--anchor_light_color);
}
.icon-system-gray-color {
  fill:var(--system_gray_color);
}
.icon-soft-gray-color {
  fill:var(--soft_gray_color);
}
.icon-blue-gray_color {
  fill:var(--blue-gray-color);
}
.icon-white-color {
  fill:var(--white_color);
}
.icon-black-color {
  fill:var(--black_color);
}
.icon-valid-color {
  fill:var(--valid_color);
}
.icon-error-color {
  fill:var(--error_color);
}

/*---filter---*/
.img-filter-primary-color:before {
  background:var(--primary_color);
}
.img-filter-secondary-color:before {
  background:var(--secondary_color);
}
.img-filter-highlight-color:before {
  background:var(--highlight-color);
}
.img-filter-anchor-color:before {
  background:var(--anchor-color);
}
.img-filter-anchor-smooth-color:before {
  background:var(--anchor_smooth_color);
}
.img-filter-anchor-light-color:before {
  background:var(--anchor_light_color);
}
.img-filter-system-gray-color:before {
  background:var(--system_gray_color);
}
.img-filter-soft-gray-color:before {
  background:var(--soft_gray_color);
}
.img-filter-blue-gray_color:before {
  background:var(--blue-gray-color);
}
.img-filter-white-color:before {
  background:var(--white_color);
}
.img-filter-black-color:before {
  background:var(--black_color);
}
.img-filter-valid-color:before {
  background:var(--valid_color);
}
.img-filter-error-color:before {
  background:var(--error_color);
}
/*---others---*/

.color-initial {
  color: initial;
}
.color-inherit {
  color: inherit;
}
.bck-transparent {
  background: transparent;
  background-color: transparent;
}



/*****************************************/
/* 02 - Border    */
/*****************************************/
/* style */
.border-dashed {
  border-style: dashed;
}
.border-dotted {
  border-style: dotted;
}
.border-solid {
  border-style: solid;
}
.border-hidden {
  border-style: hidden;
}

/* width */
.border-medium {
  border-width: medium;
}

.border-initial {
  border-width: initial;
}

.border-thick {
  border-width: thick;
}

.border-thin {
  border-width: thin;
}

/* radius */
.border-radius_0 {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.border-radius_50 {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.border-rounded {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

/* Transparent */

.border-transparent {
  border-color: transparent;
}

/*****************************************/
/* 03 - Box-Shadow    */
/*****************************************/
/*
.box {
-webkit-box-shadow: 0 3px 6px var(--shadow_color);
-moz-box-shadow: 0 3px 6px var(--shadow_color);
-ms-box-shadow: 0 3px 6px var(--shadow_color);
-o-box-shadow: 0 3px 6px var(--shadow_color);
box-shadow: 0 3px 6px var(--shadow_color);
}

.box-hover:hover {
-webkit-box-shadow: 0 6px 12px var(--shadow_color);
-moz-box-shadow: 0 6px 12px var(--shadow_color);
-ms-box-shadow: 0 6px 12px var(--shadow_color);
-o-box-shadow: 0 6px 12px var(--shadow_color);
box-shadow: 0 6px 12px var(--shadow_color);
}
*/

/*****************************************/
/* 04 - Cursor    */
/*****************************************/
.cursor-pointer,
.cursor-pointer:hover {
  cursor: pointer
}

.cursor-default,
.cursor-default:hover {
  cursor: default
}

/*****************************************/
/* 05 - Display    */
/*****************************************/
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-initial {
  display: initial;
}

.d-inline {
  display: inline;
}

.d-inline_block {
  display: inline-block;
}

.d-block {
  display: block;
}

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

.d-none {
  display: none;
}

.d-none-hard {
  display: none !important;
}

.border-box {
  box-sizing: border-box;
}

/*****************************************/
/* 06 - Image    */
/*****************************************/
/* img */
.img-obj_contain {
  object-fit: contain;
  object-position: center;
}

.img-obj_cover {
  object-fit: cover;
  object-position: center;
}

.img-obj_initial {
  object-fit: initial;
  object-position: center;
}

.img-obj_none {
  object-fit: none;
}

/* bck */
.img-bck_contain {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.img-bck_cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-bck_initial {
  background-size: initial;
  background-position: center;
  background-repeat: no-repeat;
}

/* filter */

.img-filter {
  position: relative;
}

.img-filter:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/*****************************************/
/* 07 - Font Size / Style / Weight */
/*****************************************/
/* size */
.txt-size1 {
  font-size:35px;
  line-height:55px;
}
.txt-size2 {
  font-size:27px;
  line-height:35px;
}
.txt-size3 {
  font-size:22px;
  line-height:35px;
}
.txt-size4 {
  font-size:19px;
  line-height:35px;
}
.txt-size5 {
  font-size:17px;
}
.txt-size6 {
  font-size:17px;
}
.txt-body {
  font-size:16px;
}
.txt-small {
  font-size:11px;
}
.txt-tiny {
  font-size:11px;
  line-height:18px;
}

/* style */
.fs-initial {
  font-style: initial;
}

.fs-italic {
  font-style: italic;
}

.fs-normal {
  font-style: normal;
}

/* weight */
.fw-initial {
  font-weight: initial;
}

.fw-medium {
  font-weight: medium;
}

.fw-semi-bold {
  font-weight: 600;
}

.fw-bold {
  font-weight: bold;
}

.fw-regular {
  font-weight: regular;
}


@media (min-width:768px) {
  .txt-size1 {
    font-size:45px;
    line-height:75px;
  }
  .txt-size2 {
    font-size:37px;
    line-height:55px;
  }
  .txt-size3 {
    font-size:31px;
    line-height:40px;
  }
  .txt-size4 {
    font-size:25px;
    line-height:35px;
  }
  .txt-size5 {
    font-size:21px;
  }
  .txt-size6 {
    font-size:18px;
  }
  .txt-body {
    font-size:18px;
  }
  .txt-small {
    font-size:15px;
  }
  .txt-tiny {
    font-size:12px;
  }
}

/*****************************************/
/* 08 - Height  */
/*****************************************/
.h-auto {
  height: auto;
}
.h-initial {
  height: initial;
}
.h-0 {
  height: 0;
}
.h-100 {
  height: 100%;
}
.h-fit {
  height: fit-content;
}

/*****************************************/
/* 09 - Width    */
/*****************************************/
.w-auto {
  width: auto;
}
.w-initial {
  width: initial;
}
.w-0 {
  width: 0;
}
.w-100 {
  width: 100%;
}
.w-fit {
  width:fit-content;
}
.w-max {
  width:max-content;
}
.w-webkit {
  width:-webkit-fill-available;
}

/*****************************************/
/* Transition / Keyframes   */
/*****************************************/
/* Transition */
.transition,
.animation-target,
.animation-target.animated {
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

/* Transition SVG */
.transition-svg path {
  -webkit-transition: fill .2s ease;
  -moz-transition: fill .2s ease;
  -ms-transition: fill .2s ease;
  -o-transition: fill .2s ease;
  transition: fill .2s ease;
}

/* Animation on scroll */
.animation-target,
.animation-target:before {
  opacity: 0;
}

.animation-target.animated,
.animation-target.animated:before {
  opacity: 1;
}

/* TranslateY */
.translateY {
  -webkit-animation: translateY 2s linear infinite alternate;
  animation: translateY 2s linear infinite alternate;
}

@keyframes translateY {
  0%, 100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* Smooth Scroll */
.smooth-scroll {
  animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Fade */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: .6s;
  animation-name: fade;
  animation-duration: .6s;
}

@-webkit-keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* Fade in Right */
.fade-in-right {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

/* Fade in Left */
.fade-in-left {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

/* Fade in Top */
.fade-in-top {
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

/* Fade in Bottom */
.fade-in-bottom {
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

/*****************************************/
/* Margin    */
/*****************************************/
/* margin */
.m-auto {
  margin: auto;
}

.m-initial {
  margin: initial;
}

.m-0 {
  margin: 0;
}

.m-5 {
  margin: 5px;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-25 {
  margin: 25px;
}

.m-30 {
  margin: 30px;
}

/* margin top */
.mt-auto {
  margin-top: auto;
}

.mt-initial {
  margin-top: initial;
}

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

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

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

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

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

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

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

/* margin bottom */
.mb-auto {
  margin-bottom: auto;
}

.mb-initial {
  margin-bottom: initial;
}

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

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

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

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

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

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

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

/* margin left */
.ml-auto {
  margin-left: auto;
}

.ml-initial {
  margin-left: initial;
}

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

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

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

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

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

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

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

/* margin right */
.mr-auto {
  margin-right: auto;
}

.mr-initial {
  margin-right: initial;
}

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

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

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

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

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

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

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

/*****************************************/
/* Padding    */
/*****************************************/
/* padding */
.p-auto {
  padding: auto;
}

.p-initial {
  padding: initial;
}

.p-0 {
  padding: 0;
}

.p-0-hard {
  padding: 0 !important;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.p-60 {
  padding: 60px;
}

.p-70 {
  padding: 70px;
}

.p-80 {
  padding: 80px;
}

.p-90 {
  padding: 90px;
}

.p-100 {
  padding: 100px;
}

/* padding top */
.pt-auto {
  padding-top: auto;
}

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

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

.pt-0-hard {
  padding-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* padding bottom */
.pb-auto {
  padding-bottom: auto;
}

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

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

.pb-0-hard {
  padding-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* padding left */
.pl-auto {
  padding-left: auto;
}

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

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

.pl-0-hard {
  padding-left: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* padding right */
.pr-auto {
  padding-right: auto;
}

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

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

.pr-0-hard {
  padding-right: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*****************************************/
/* Position    */
/*****************************************/
.p-under-header {
  position: fixed;
  /* top: set in js*/
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-initial {
  position: initial;
}

.p-relative {
  position: relative;
}

.p-static {
  position: static;
}

.p-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.top-0 {
  top: 0;
}

.top-5 {
  top: 5px;
}

.top-5-- {
  top: -5px;
}

.top-10 {
  top: 10px;
}

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

.top-30 {
  top: 30px;
}

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

.right-0 {
  right: 0;
}

.right-5 {
  right: 5px;
}

.right-5-- {
  right: -5px;
}

.right-10 {
  right: 10px;
}

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

.bottom-0 {
  bottom: 0;
}

.bottom-5 {
  bottom: 5px;
}

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

.bottom-10 {
  bottom: 10px;
}

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

.left-0 {
  left: 0;
}

.left-5 {
  left: 5px;
}

.left-5-- {
  left: -5px;
}

.left-10 {
  left: 10px;
}

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

/*****************************************/
/* Text    */
/*****************************************/
/* align */
.txt-center {
  text-align: center;
  text-align: -webkit-center;
}

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

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

.txt-start {
  text-align: start;
}

.txt-end {
  text-align: end;
}

.txt-align-initial {
  text-align: initial;
}

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

/* decoration */
.txt-deco-initial {
  text-decoration: initial;
}

.txt-underline {
  text-decoration: underline;
}

.txt-no-decoration,
.txt-no-decoration:hover {
  text-decoration: none;
}

/* transform */
.txt-trans-initial {
  text-transform: initial;
}

.txt-lowercase {
  text-transform: lowercase;
}

.txt-capitalize {
  text-transform: capitalize;
}

.txt-uppercase {
  text-transform: uppercase;
}

/*****************************************/
/* List    */
/*****************************************/
.list-no-style {
  list-style: none;
}

/*****************************************/
/* List    */
/*****************************************/
.o-initial,
.img-filter_initial:before {
  opacity: initial;
}

.transparent,
.img-filter_0:before {
  opacity: 0;
}

.o-1,
.img-filter_1:before {
  opacity: .1;
}

.o-2,
.img-filter_2:before {
  opacity: .2;
}

.o-3,
.img-filter_3:before {
  opacity: .3;
}

.o-4,
.img-filter_4:before {
  opacity: .4;
}

.o-5,
.img-filter_5:before {
  opacity: .5;
}

.o-6,
.img-filter_6:before {
  opacity: .6;
}

.o-7,
.img-filter_7:before {
  opacity: .7;
}

.o-8,
.img-filter_8:before {
  opacity: .8;
}

.o-9,
.img-filter_9:before {
  opacity: .9;
}

.opaque,
.img-filter_10:before {
  opacity: 1;
}

/*****************************************/
/* 20. Z-index    */
/*****************************************/

.z-last {
  z-index: -999;
}

.z-first {
  z-index: 999;
}

.z-0 {
  z-index: 0;
}

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

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

.z-2 {
  z-index: 2;
}

.z-2-- {
  z-index: -2;
}

.z-3 {
  z-index: 3;
}

.z-3-- {
  z-index: -3;
}

.z-4 {
  z-index: 4;
}

.z-4-- {
  z-index: -4;
}

.z-5 {
  z-index: 5;
}

.z-5-- {
  z-index: -5;
}

.z-6 {
  z-index: 6;
}

.z-6-- {
  z-index: -6;
}

.z-7 {
  z-index: 7;
}

.z-7-- {
  z-index: -7;
}

.z-8 {
  z-index: 8;
}

.z-8-- {
  z-index: -8;
}

.z-9 {
  z-index: 9;
}

.z-9-- {
  z-index: -9;
}

.z-10 {
  z-index: 10;
}

.z-10-- {
  z-index: -10;
}
/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before,
.row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before,
.container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before,
    .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before,
    .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */
/*
.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}
*/
/* Responsive Visibilty Classes */
/*
.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
*/

.layout-phone {
    display: block;
}

.layout-phone-hard {
    display: block !important;
}

.layout-desktop {
    display: none;
}

.layout-desktop-hard {
    display: none !important;
}

@media (min-width: 992px) {

    .layout-phone {
        display: none;
    }

    .layout-phone-hard {
        display: none !important;
    }

    .layout-desktop {
        display: block;
    }
    
    .layout-desktop-hard {
        display: block !important;
    }

}
/* DND Section */

.dnd-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.dnd-section .dnd-column .dnd-row{
  padding:0 20px;
}

.dnd-section .dnd-column .dnd-row section{
  margin:0 -20px;
}

@media (min-width: 576px) {
  .dnd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .dnd-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Banner */

section.hero-banner {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 576px) {
  section.hero-banner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  section.hero-banner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}


.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section>.row-fluid {
  margin: 0 auto;
}
/*!
* Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
    margin:0;
    padding:0;
  }
  
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
  
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    width: 100%;
    padding: 0;
    margin:0;
  }
  
  @media (min-width: 576px) {
    .container, .container-sm {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container, .container-sm, .container-md {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
      max-width: 1140px;
    }
  }
  
  .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
  }
  
  .no-gutters {
    margin-right: 0;
    margin-left: 0;
  }
  
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  .col-1:focus, .col-2:focus, .col-3:focus, .col-4:focus, .col-5:focus, .col-6:focus, .col-7:focus, .col-8:focus, .col-9:focus, .col-10:focus, .col-11:focus, .col-12:focus, .col:focus,
  .col-auto:focus, .col-sm-1:focus, .col-sm-2:focus, .col-sm-3:focus, .col-sm-4:focus, .col-sm-5:focus, .col-sm-6:focus, .col-sm-7:focus, .col-sm-8:focus, .col-sm-9:focus, .col-sm-10:focus, .col-sm-11:focus, .col-sm-12:focus, .col-sm:focus,
  .col-sm-auto:focus, .col-md-1:focus, .col-md-2:focus, .col-md-3:focus, .col-md-4:focus, .col-md-5:focus, .col-md-6:focus, .col-md-7:focus, .col-md-8:focus, .col-md-9:focus, .col-md-10:focus, .col-md-11:focus, .col-md-12:focus, .col-md:focus,
  .col-md-auto:focus, .col-lg-1:focus, .col-lg-2:focus, .col-lg-3:focus, .col-lg-4:focus, .col-lg-5:focus, .col-lg-6:focus, .col-lg-7:focus, .col-lg-8:focus, .col-lg-9:focus, .col-lg-10:focus, .col-lg-11:focus, .col-lg-12:focus, .col-lg:focus,
  .col-lg-auto:focus, .col-xl-1:focus, .col-xl-2:focus, .col-xl-3:focus, .col-xl-4:focus, .col-xl-5:focus, .col-xl-6:focus, .col-xl-7:focus, .col-xl-8:focus, .col-xl-9:focus, .col-xl-10:focus, .col-xl-11:focus, .col-xl-12:focus, .col-xl:focus,
  .col-xl-auto:focus {
    outline: none;
  }
  
  .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  
  .row-cols-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .row-cols-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .row-cols-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .row-cols-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .row-cols-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  
  .row-cols-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  
  .col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  
  .col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  
  .col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  
  .col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  
  .col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  
  .col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  
  .col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  
  .col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  
  .col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  
  .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .order-first {
    -ms-flex-order: -1;
    order: -1;
  }
  
  .order-last {
    -ms-flex-order: 13;
    order: 13;
  }
  
  .order-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  
  .order-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  
  .order-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  
  .order-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  
  .order-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  
  .order-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  
  .order-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  
  .order-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  
  .order-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  
  .order-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  
  .order-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  
  .order-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  
  .order-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  
  .offset-1 {
    margin-left: 8.333333%;
  }
  
  .offset-2 {
    margin-left: 16.666667%;
  }
  
  .offset-3 {
    margin-left: 25%;
  }
  
  .offset-4 {
    margin-left: 33.333333%;
  }
  
  .offset-5 {
    margin-left: 41.666667%;
  }
  
  .offset-6 {
    margin-left: 50%;
  }
  
  .offset-7 {
    margin-left: 58.333333%;
  }
  
  .offset-8 {
    margin-left: 66.666667%;
  }
  
  .offset-9 {
    margin-left: 75%;
  }
  
  .offset-10 {
    margin-left: 83.333333%;
  }
  
  .offset-11 {
    margin-left: 91.666667%;
  }
  
  @media (min-width: 576px) {
    .col-sm {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .row-cols-sm-1 > * {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .row-cols-sm-2 > * {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .row-cols-sm-3 > * {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .row-cols-sm-4 > * {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .row-cols-sm-5 > * {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%;
    }
    .row-cols-sm-6 > * {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-sm-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
    }
    .col-sm-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-sm-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-sm-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-sm-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-sm-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-sm-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-sm-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-sm-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-sm-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-sm-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-sm-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-sm-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .order-sm-first {
      -ms-flex-order: -1;
      order: -1;
    }
    .order-sm-last {
      -ms-flex-order: 13;
      order: 13;
    }
    .order-sm-0 {
      -ms-flex-order: 0;
      order: 0;
    }
    .order-sm-1 {
      -ms-flex-order: 1;
      order: 1;
    }
    .order-sm-2 {
      -ms-flex-order: 2;
      order: 2;
    }
    .order-sm-3 {
      -ms-flex-order: 3;
      order: 3;
    }
    .order-sm-4 {
      -ms-flex-order: 4;
      order: 4;
    }
    .order-sm-5 {
      -ms-flex-order: 5;
      order: 5;
    }
    .order-sm-6 {
      -ms-flex-order: 6;
      order: 6;
    }
    .order-sm-7 {
      -ms-flex-order: 7;
      order: 7;
    }
    .order-sm-8 {
      -ms-flex-order: 8;
      order: 8;
    }
    .order-sm-9 {
      -ms-flex-order: 9;
      order: 9;
    }
    .order-sm-10 {
      -ms-flex-order: 10;
      order: 10;
    }
    .order-sm-11 {
      -ms-flex-order: 11;
      order: 11;
    }
    .order-sm-12 {
      -ms-flex-order: 12;
      order: 12;
    }
    .offset-sm-0 {
      margin-left: 0;
    }
    .offset-sm-1 {
      margin-left: 8.333333%;
    }
    .offset-sm-2 {
      margin-left: 16.666667%;
    }
    .offset-sm-3 {
      margin-left: 25%;
    }
    .offset-sm-4 {
      margin-left: 33.333333%;
    }
    .offset-sm-5 {
      margin-left: 41.666667%;
    }
    .offset-sm-6 {
      margin-left: 50%;
    }
    .offset-sm-7 {
      margin-left: 58.333333%;
    }
    .offset-sm-8 {
      margin-left: 66.666667%;
    }
    .offset-sm-9 {
      margin-left: 75%;
    }
    .offset-sm-10 {
      margin-left: 83.333333%;
    }
    .offset-sm-11 {
      margin-left: 91.666667%;
    }
  }
  
  @media (min-width: 768px) {
    .col-md {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .row-cols-md-1 > * {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .row-cols-md-2 > * {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .row-cols-md-3 > * {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .row-cols-md-4 > * {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .row-cols-md-5 > * {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%;
    }
    .row-cols-md-6 > * {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-md-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
    }
    .col-md-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-md-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-md-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-md-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-md-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-md-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-md-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-md-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-md-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-md-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-md-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-md-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .order-md-first {
      -ms-flex-order: -1;
      order: -1;
    }
    .order-md-last {
      -ms-flex-order: 13;
      order: 13;
    }
    .order-md-0 {
      -ms-flex-order: 0;
      order: 0;
    }
    .order-md-1 {
      -ms-flex-order: 1;
      order: 1;
    }
    .order-md-2 {
      -ms-flex-order: 2;
      order: 2;
    }
    .order-md-3 {
      -ms-flex-order: 3;
      order: 3;
    }
    .order-md-4 {
      -ms-flex-order: 4;
      order: 4;
    }
    .order-md-5 {
      -ms-flex-order: 5;
      order: 5;
    }
    .order-md-6 {
      -ms-flex-order: 6;
      order: 6;
    }
    .order-md-7 {
      -ms-flex-order: 7;
      order: 7;
    }
    .order-md-8 {
      -ms-flex-order: 8;
      order: 8;
    }
    .order-md-9 {
      -ms-flex-order: 9;
      order: 9;
    }
    .order-md-10 {
      -ms-flex-order: 10;
      order: 10;
    }
    .order-md-11 {
      -ms-flex-order: 11;
      order: 11;
    }
    .order-md-12 {
      -ms-flex-order: 12;
      order: 12;
    }
    .offset-md-0 {
      margin-left: 0;
    }
    .offset-md-1 {
      margin-left: 8.333333%;
    }
    .offset-md-2 {
      margin-left: 16.666667%;
    }
    .offset-md-3 {
      margin-left: 25%;
    }
    .offset-md-4 {
      margin-left: 33.333333%;
    }
    .offset-md-5 {
      margin-left: 41.666667%;
    }
    .offset-md-6 {
      margin-left: 50%;
    }
    .offset-md-7 {
      margin-left: 58.333333%;
    }
    .offset-md-8 {
      margin-left: 66.666667%;
    }
    .offset-md-9 {
      margin-left: 75%;
    }
    .offset-md-10 {
      margin-left: 83.333333%;
    }
    .offset-md-11 {
      margin-left: 91.666667%;
    }
  }
  
  @media (min-width: 992px) {
    .col-lg {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .row-cols-lg-1 > * {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .row-cols-lg-2 > * {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .row-cols-lg-3 > * {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .row-cols-lg-4 > * {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .row-cols-lg-5 > * {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%;
    }
    .row-cols-lg-6 > * {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-lg-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
    }
    .col-lg-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-lg-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-lg-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-lg-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-lg-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-lg-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-lg-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-lg-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-lg-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-lg-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-lg-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-lg-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .order-lg-first {
      -ms-flex-order: -1;
      order: -1;
    }
    .order-lg-last {
      -ms-flex-order: 13;
      order: 13;
    }
    .order-lg-0 {
      -ms-flex-order: 0;
      order: 0;
    }
    .order-lg-1 {
      -ms-flex-order: 1;
      order: 1;
    }
    .order-lg-2 {
      -ms-flex-order: 2;
      order: 2;
    }
    .order-lg-3 {
      -ms-flex-order: 3;
      order: 3;
    }
    .order-lg-4 {
      -ms-flex-order: 4;
      order: 4;
    }
    .order-lg-5 {
      -ms-flex-order: 5;
      order: 5;
    }
    .order-lg-6 {
      -ms-flex-order: 6;
      order: 6;
    }
    .order-lg-7 {
      -ms-flex-order: 7;
      order: 7;
    }
    .order-lg-8 {
      -ms-flex-order: 8;
      order: 8;
    }
    .order-lg-9 {
      -ms-flex-order: 9;
      order: 9;
    }
    .order-lg-10 {
      -ms-flex-order: 10;
      order: 10;
    }
    .order-lg-11 {
      -ms-flex-order: 11;
      order: 11;
    }
    .order-lg-12 {
      -ms-flex-order: 12;
      order: 12;
    }
    .offset-lg-0 {
      margin-left: 0;
    }
    .offset-lg-1 {
      margin-left: 8.333333%;
    }
    .offset-lg-2 {
      margin-left: 16.666667%;
    }
    .offset-lg-3 {
      margin-left: 25%;
    }
    .offset-lg-4 {
      margin-left: 33.333333%;
    }
    .offset-lg-5 {
      margin-left: 41.666667%;
    }
    .offset-lg-6 {
      margin-left: 50%;
    }
    .offset-lg-7 {
      margin-left: 58.333333%;
    }
    .offset-lg-8 {
      margin-left: 66.666667%;
    }
    .offset-lg-9 {
      margin-left: 75%;
    }
    .offset-lg-10 {
      margin-left: 83.333333%;
    }
    .offset-lg-11 {
      margin-left: 91.666667%;
    }
  }
  
  @media (min-width: 1200px) {
    .col-xl {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
    }
    .row-cols-xl-1 > * {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .row-cols-xl-2 > * {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .row-cols-xl-3 > * {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .row-cols-xl-4 > * {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .row-cols-xl-5 > * {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%;
    }
    .row-cols-xl-6 > * {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-xl-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
    }
    .col-xl-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    .col-xl-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    .col-xl-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    .col-xl-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-xl-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    .col-xl-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    .col-xl-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    .col-xl-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    .col-xl-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    .col-xl-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    .col-xl-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    .col-xl-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .order-xl-first {
      -ms-flex-order: -1;
      order: -1;
    }
    .order-xl-last {
      -ms-flex-order: 13;
      order: 13;
    }
    .order-xl-0 {
      -ms-flex-order: 0;
      order: 0;
    }
    .order-xl-1 {
      -ms-flex-order: 1;
      order: 1;
    }
    .order-xl-2 {
      -ms-flex-order: 2;
      order: 2;
    }
    .order-xl-3 {
      -ms-flex-order: 3;
      order: 3;
    }
    .order-xl-4 {
      -ms-flex-order: 4;
      order: 4;
    }
    .order-xl-5 {
      -ms-flex-order: 5;
      order: 5;
    }
    .order-xl-6 {
      -ms-flex-order: 6;
      order: 6;
    }
    .order-xl-7 {
      -ms-flex-order: 7;
      order: 7;
    }
    .order-xl-8 {
      -ms-flex-order: 8;
      order: 8;
    }
    .order-xl-9 {
      -ms-flex-order: 9;
      order: 9;
    }
    .order-xl-10 {
      -ms-flex-order: 10;
      order: 10;
    }
    .order-xl-11 {
      -ms-flex-order: 11;
      order: 11;
    }
    .order-xl-12 {
      -ms-flex-order: 12;
      order: 12;
    }
    .offset-xl-0 {
      margin-left: 0;
    }
    .offset-xl-1 {
      margin-left: 8.333333%;
    }
    .offset-xl-2 {
      margin-left: 16.666667%;
    }
    .offset-xl-3 {
      margin-left: 25%;
    }
    .offset-xl-4 {
      margin-left: 33.333333%;
    }
    .offset-xl-5 {
      margin-left: 41.666667%;
    }
    .offset-xl-6 {
      margin-left: 50%;
    }
    .offset-xl-7 {
      margin-left: 58.333333%;
    }
    .offset-xl-8 {
      margin-left: 66.666667%;
    }
    .offset-xl-9 {
      margin-left: 75%;
    }
    .offset-xl-10 {
      margin-left: 83.333333%;
    }
    .offset-xl-11 {
      margin-left: 91.666667%;
    }
  }
  
  .d-table {
    display: table !important;
  }
  
  .d-table-row {
    display: table-row !important;
  }
  
  .d-table-cell {
    display: table-cell !important;
  }
  
  .d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  
  @media (min-width: 576px) {
    .d-sm-none {
      display: none !important;
    }
    .d-sm-inline {
      display: inline !important;
    }
    .d-sm-inline-block {
      display: inline-block !important;
    }
    .d-sm-block {
      display: block !important;
    }
    .d-sm-table {
      display: table !important;
    }
    .d-sm-table-row {
      display: table-row !important;
    }
    .d-sm-table-cell {
      display: table-cell !important;
    }
    .d-sm-flex {
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .d-sm-inline-flex {
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media (min-width: 768px) {
    .d-md-none {
      display: none !important;
    }
    .d-md-inline {
      display: inline !important;
    }
    .d-md-inline-block {
      display: inline-block !important;
    }
    .d-md-block {
      display: block !important;
    }
    .d-md-table {
      display: table !important;
    }
    .d-md-table-row {
      display: table-row !important;
    }
    .d-md-table-cell {
      display: table-cell !important;
    }
    .d-md-flex {
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .d-md-inline-flex {
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media (min-width: 992px) {
    .d-lg-none {
      display: none !important;
    }
    .d-lg-inline {
      display: inline !important;
    }
    .d-lg-inline-block {
      display: inline-block !important;
    }
    .d-lg-block {
      display: block !important;
    }
    .d-lg-table {
      display: table !important;
    }
    .d-lg-table-row {
      display: table-row !important;
    }
    .d-lg-table-cell {
      display: table-cell !important;
    }
    .d-lg-flex {
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .d-lg-inline-flex {
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media (min-width: 1200px) {
    .d-xl-none {
      display: none !important;
    }
    .d-xl-inline {
      display: inline !important;
    }
    .d-xl-inline-block {
      display: inline-block !important;
    }
    .d-xl-block {
      display: block !important;
    }
    .d-xl-table {
      display: table !important;
    }
    .d-xl-table-row {
      display: table-row !important;
    }
    .d-xl-table-cell {
      display: table-cell !important;
    }
    .d-xl-flex {
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .d-xl-inline-flex {
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  @media print {
    .d-print-none {
      display: none !important;
    }
    .d-print-inline {
      display: inline !important;
    }
    .d-print-inline-block {
      display: inline-block !important;
    }
    .d-print-block {
      display: block !important;
    }
    .d-print-table {
      display: table !important;
    }
    .d-print-table-row {
      display: table-row !important;
    }
    .d-print-table-cell {
      display: table-cell !important;
    }
    .d-print-flex {
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .d-print-inline-flex {
      display: -ms-inline-flexbox !important;
      display: inline-flex !important;
    }
  }
  
  .flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  
  .flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  
  .flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  
  .flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  
  .flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  
  .flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  
  .flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  
  .flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  
  .flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  
  .flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  
  .flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  
  .flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  
  .justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  
  .justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  
  .justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  
  .justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  
  .justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  
  .align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  
  .align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  
  .align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  
  .align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  
  .align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  
  .align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  
  .align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  
  .align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  
  .align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  
  .align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  
  .align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  
  .align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  
  .align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  
  .align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  
  .align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  
  .align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  
  .align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  
  @media (min-width: 576px) {
    .flex-sm-row {
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
    .flex-sm-column {
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
    .flex-sm-row-reverse {
      -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
    .flex-sm-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
    .flex-sm-fill {
      -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important;
    }
    .flex-sm-grow-0 {
      -ms-flex-positive: 0 !important;
      flex-grow: 0 !important;
    }
    .flex-sm-grow-1 {
      -ms-flex-positive: 1 !important;
      flex-grow: 1 !important;
    }
    .flex-sm-shrink-0 {
      -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
    }
    .flex-sm-shrink-1 {
      -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
    }
    .justify-content-sm-start {
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
    .justify-content-sm-end {
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
    .justify-content-sm-center {
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
    .justify-content-sm-between {
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
    .justify-content-sm-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
    .align-items-sm-start {
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
    .align-items-sm-end {
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
    .align-items-sm-center {
      -ms-flex-align: center !important;
      align-items: center !important;
    }
    .align-items-sm-baseline {
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
    .align-items-sm-stretch {
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
    .align-content-sm-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
    .align-content-sm-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
    .align-content-sm-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
    .align-content-sm-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
    .align-content-sm-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
    .align-content-sm-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
    .align-self-sm-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important;
    }
    .align-self-sm-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
    .align-self-sm-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
    .align-self-sm-center {
      -ms-flex-item-align: center !important;
      align-self: center !important;
    }
    .align-self-sm-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
    .align-self-sm-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
    }
  }
  
  @media (min-width: 768px) {
    .flex-md-row {
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
    .flex-md-column {
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
    .flex-md-row-reverse {
      -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
    .flex-md-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
    .flex-md-fill {
      -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important;
    }
    .flex-md-grow-0 {
      -ms-flex-positive: 0 !important;
      flex-grow: 0 !important;
    }
    .flex-md-grow-1 {
      -ms-flex-positive: 1 !important;
      flex-grow: 1 !important;
    }
    .flex-md-shrink-0 {
      -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
    }
    .flex-md-shrink-1 {
      -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
    }
    .justify-content-md-start {
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
    .justify-content-md-end {
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
    .justify-content-md-center {
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
    .justify-content-md-between {
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
    .justify-content-md-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
    .align-items-md-start {
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
    .align-items-md-end {
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
    .align-items-md-center {
      -ms-flex-align: center !important;
      align-items: center !important;
    }
    .align-items-md-baseline {
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
    .align-items-md-stretch {
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
    .align-content-md-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
    .align-content-md-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
    .align-content-md-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
    .align-content-md-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
    .align-content-md-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
    .align-content-md-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
    .align-self-md-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important;
    }
    .align-self-md-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
    .align-self-md-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
    .align-self-md-center {
      -ms-flex-item-align: center !important;
      align-self: center !important;
    }
    .align-self-md-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
    .align-self-md-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
    }
  }
  
  @media (min-width: 992px) {
    .flex-lg-row {
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
    .flex-lg-column {
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
    .flex-lg-row-reverse {
      -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
    .flex-lg-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
    .flex-lg-fill {
      -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important;
    }
    .flex-lg-grow-0 {
      -ms-flex-positive: 0 !important;
      flex-grow: 0 !important;
    }
    .flex-lg-grow-1 {
      -ms-flex-positive: 1 !important;
      flex-grow: 1 !important;
    }
    .flex-lg-shrink-0 {
      -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
    }
    .flex-lg-shrink-1 {
      -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
    }
    .justify-content-lg-start {
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
    .justify-content-lg-end {
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
    .justify-content-lg-center {
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
    .justify-content-lg-between {
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
    .justify-content-lg-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
    .align-items-lg-start {
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
    .align-items-lg-end {
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
    .align-items-lg-center {
      -ms-flex-align: center !important;
      align-items: center !important;
    }
    .align-items-lg-baseline {
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
    .align-items-lg-stretch {
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
    .align-content-lg-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
    .align-content-lg-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
    .align-content-lg-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
    .align-content-lg-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
    .align-content-lg-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
    .align-content-lg-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
    .align-self-lg-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important;
    }
    .align-self-lg-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
    .align-self-lg-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
    .align-self-lg-center {
      -ms-flex-item-align: center !important;
      align-self: center !important;
    }
    .align-self-lg-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
    .align-self-lg-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
    }
  }
  
  @media (min-width: 1200px) {
    .flex-xl-row {
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
    .flex-xl-column {
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
    .flex-xl-row-reverse {
      -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
      -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
    }
    .flex-xl-wrap {
      -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
    }
    .flex-xl-nowrap {
      -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
    }
    .flex-xl-wrap-reverse {
      -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
    }
    .flex-xl-fill {
      -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important;
    }
    .flex-xl-grow-0 {
      -ms-flex-positive: 0 !important;
      flex-grow: 0 !important;
    }
    .flex-xl-grow-1 {
      -ms-flex-positive: 1 !important;
      flex-grow: 1 !important;
    }
    .flex-xl-shrink-0 {
      -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
    }
    .flex-xl-shrink-1 {
      -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
    }
    .justify-content-xl-start {
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
    .justify-content-xl-end {
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
    .justify-content-xl-center {
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
    .justify-content-xl-between {
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
    .justify-content-xl-around {
      -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
    }
    .align-items-xl-start {
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
    .align-items-xl-end {
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
    .align-items-xl-center {
      -ms-flex-align: center !important;
      align-items: center !important;
    }
    .align-items-xl-baseline {
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
    .align-items-xl-stretch {
      -ms-flex-align: stretch !important;
      align-items: stretch !important;
    }
    .align-content-xl-start {
      -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
    }
    .align-content-xl-end {
      -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
    }
    .align-content-xl-center {
      -ms-flex-line-pack: center !important;
      align-content: center !important;
    }
    .align-content-xl-between {
      -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
    }
    .align-content-xl-around {
      -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
    }
    .align-content-xl-stretch {
      -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
    }
    .align-self-xl-auto {
      -ms-flex-item-align: auto !important;
      align-self: auto !important;
    }
    .align-self-xl-start {
      -ms-flex-item-align: start !important;
      align-self: flex-start !important;
    }
    .align-self-xl-end {
      -ms-flex-item-align: end !important;
      align-self: flex-end !important;
    }
    .align-self-xl-center {
      -ms-flex-item-align: center !important;
      align-self: center !important;
    }
    .align-self-xl-baseline {
      -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
    }
    .align-self-xl-stretch {
      -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
    }
  }

body.header-opened {
  overflow: hidden;
}

header {
  background: var(--white_color);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding-top: 10px;
  padding-bottom: 10px;
}

header .header__logo * {
  display: inline-block;
  vertical-align: middle;
}

header .header__logo img {
  width:130px!important;
  height:auto!important;
}

header .logo a {
  padding: 15px;
  display: inline-block;
}

header .logo img {
  min-width: 50px;
}

/* Lang Switcher */
header .lang-switcher {
  position: relative;
}
header .lang-switcher p {
  color: var(--anchor_light_color);
  font-weight: bold;
  font-size: 11px;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: center;
}
header .lang-switcher .lang_switcher_class {
  position: absolute;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
}
header .lang-switcher .globe_class {
  height: 0;
  width: 0;
}
header .lang-switcher .globe_class ul.lang_list_class {
  display: block;
  top: -4px;
  padding: 0;
}
header .lang-switcher .globe_class ul.lang_list_class li {
  padding: 0;
  border: none;
  background: transparent;
}
header .lang-switcher .globe_class ul.lang_list_class:before,
header .lang-switcher .globe_class ul.lang_list_class:after {
  display: none;
}
header .lang-switcher .globe_class ul.lang_list_class li a {
  padding: 0 10px 10px 10px;
  font-size: 12px;
  font-weight: 400;
}
header .lang-switcher .globe_class ul.lang_list_class li a:hover {
  color: inherit;
}

header .lang-switcher.is-french .globe_class ul.lang_list_class li:first-child,
header .lang-switcher.is-english .globe_class ul.lang_list_class li:first-child {
  display: none;
}
header .lang-switcher.is-french .globe_class ul.lang_list_class li:last-child,
header .lang-switcher.is-english .globe_class ul.lang_list_class li:last-child {
  display: block;
}

/*
header .lang-switcher.is-french .globe_class ul.lang_list_class li:first-child,
header .lang-switcher.is-english .globe_class ul.lang_list_class li:last-child {
display: block;
}
header .lang-switcher.is-french .globe_class ul.lang_list_class li:last-child,
header .lang-switcher.is-english .globe_class ul.lang_list_class li:first-child {
display: none;
}
*/

/* Global */
header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header ul li a {
  text-decoration: none;
  position: relative;
  display: block;
  color: var(--anchor_color);
  -o-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

/* Menu */
header .header__column {
  display: none;
}

header .hs-menu-wrapper>ul {
  flex-flow: column;
  align-items: end;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>a {
  display: block;
  padding: 40px 10px;
  font-size: 17px;
  font-weight: 600;
  border-bottom: solid 1px var(--system_gray_color);
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>a.active,
header .hs-menu-wrapper>ul li.hs-menu-depth-1>a:hover {
  color: var(--anchor_color__dark);
}

/* Dropdown */
header .hs-menu-wrapper>ul li.hs-menu-depth-1 {
  position: relative;
  width: 100%;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1 a.dropdown {}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul {
  position: relative;
  display: none;
  background: var(--primary_color);
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 {
  position: relative;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2>a {
  padding: 15px 10px;
  color: var(--white_color);
}

/* Dropdown Icon */
header .hs-menu-wrapper>ul li.hs-item-has-children svg {
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  width: 100%;
  vertical-align: middle;
  height: 105px;
  fill: transparent;
}

/* Container */
header .header__container {
  position: relative;
}

/* Responsive Icon */
header .mobile-menu-icon {
  height: 22px;
  width: 22px;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 30px;
  z-index: 10;
}

header .burger-icon {
  display: none;
}

header .burger-icon:checked+[for=burger-icon]:before {
  transform: translateY(10px) rotateZ(45deg);
  background: var(--primary_color);
}

header .burger-icon:checked+[for=burger-icon]:after {
  filter: initial;
  transform: translateY(8px) rotateZ(-45deg);
}

[for=burger-icon] {
  border-radius: 1px;
  color: var(--primary_color);
  cursor: pointer;
  height: 20px;
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 22px;
  display: block;
}

[for=burger-icon]:before,
[for=burger-icon]:after {
  border-radius: inherit;
  background: var(--anchor_color);
  content: "";
  display: block;
  height: 3px;
  transition: 0.5s;
}

[for=burger-icon]:after {
  filter: drop-shadow(0 -9px currentColor);
  transform: translateY(15px);
}

/* Mega Menu Settings */
header .mega-menu-row {
  display: none;
}

/*********************************************************************************
***************************************** Only mobile *****************************
*********************************************************************************/
@media screen and (max-width: 991px) {

  header .header__container,
  header .header__column {
    padding: 0;
  }

  header .header__column .header__column__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding-bottom: 120px;
    background: var(--white_color);
    flex-flow: column;
    min-height: calc(100vh - 37px);
    justify-content: space-between;
  }

  header .header__column .header__column__flex .header__navigation.header--element {
    margin-top: 0;
  }

  header .cta-actions a.cta_button {
    display: inline-block;
    padding: 40px 20px !important;
    width: -webkit-fill-available;
    text-align: center;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>a {
    padding-left: 30px;
    padding-right: 30px;
  }

  header .header__logo {
    margin-left: 15px;
  }

}

/*********************************************************************************
***************************************** Desktop *****************************
*********************************************************************************/
@media screen and (min-width: 991px) {
  header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  header .mobile-menu-icon {
    display: none;
  }

  header .header__column {
    display: block;
    flex: 1;
  }

  header .hs-menu-wrapper>ul {
    flex-flow: row;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>a {
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    border: none;
    white-space: nowrap;
  }

  /* Dropdown Icon */
  header .hs-menu-wrapper>ul li.hs-item-has-children svg {
    display: none;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>a:before {
    content: "";
    height: 5px;
    background: var(--secondary_color);
    display: block;
    position: absolute;
    left: 10px;
    width: 0;
    bottom: 17px;
    z-index: -1;
    -o-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>a:hover:before {
    width: calc(100% - 20px);
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-item-has-children>a:after {
    display: inline-block;
    margin-left: 5px;
    content: url("https://info.easy-skill.com/hubfs/SITE_2021/UI%20Assets/asset-dropdown.svg");
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-item-has-children:hover>a:after {
    -webkit-transform: rotate(180deg) translateY(-3px);
    -moz-transform: rotate(180deg) translateY(-3px);
    -o-transform: rotate(90deg) translateY(-3px);
    transform: rotate(180deg) translateY(-3px);
  }

  header .cta-actions span {
    display: flex;
  }

  header .cta-actions span:first-child {
    margin-right: 10px;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul {
    position: absolute;
    background: var(--blue_gray_color);
    transform: translateX(-50%);
    margin-left: 50%;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1:hover>ul {
    display: block;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul {
    padding: 20px 40px;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2:last-child{
    display: none;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2>a {
    color: var(--anchor_smooth_color);
    font-size: 12px;
    padding: 0;
    white-space: nowrap;
    height: 35px;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2>a:hover:after {
    width: 10px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -5px;
    content: "";
    background-image: url('data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"13\" height=\"9.414\" viewBox=\"0 0 13 9.414\"%3E%3Cg id=\"asset-right-arrow\" transform=\"translate(-0.5 -0.293)\"%3E%3Cpath id=\"Tracé_97\" data-name=\"Tracé 97\" d=\"M1,5H13\" fill=\"none\" stroke=\"%2344BBCA\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-miterlimit=\"10\" stroke-width=\"1\"/%3E%3Cpath id=\"Tracé_98\" data-name=\"Tracé 98\" d=\"M9,1l4,4L9,9\" fill=\"none\" stroke=\"%2344BBCA\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-miterlimit=\"10\" stroke-width=\"1\"/%3E%3C/g%3E%3C/svg%3E');
    display: block;
  }

  header .header__column .header__column__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

}
footer {
  position:relative; 
  z-index:100;
  padding: 60px 0px;
  background: var(--soft_gray_color);
}

.footer__logo-img img {
  width: 150px;
}

.footer__logo-img__certif {
  position: absolute;
  right: 0;
}

.footer__logo-img__certif img {
  width: 80px;
}

.footer__cta a {
  font-size: 12px;
}

.footer__copyright {
  font-size: 12px;
  line-height: 1.6;
  color: var(--anchor_light_color);
  margin-bottom:30px;
}

footer .hs-menu-wrapper>ul {
  margin-bottom: 20px;
}

footer .hs-menu-wrapper ul li a {
  text-decoration: none;
  color: var(--anchor_color);
  font-weight: 400;
  font-size: 12px;
}

footer .hs-menu-wrapper>ul>li>a {
  color: var(--anchor_color);
  font-weight: 600;
  font-size: 15px;
}

footer .hs-menu-wrapper ul li ul li:hover:after {
  content:"";
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="13" height="9.414" viewBox="0 0 13 9.414"%3E%3Cg id="asset-right-arrow" transform="translate(-0.5 -0.293)"%3E%3Cpath id="Tracé_97" data-name="Tracé 97" d="M1,5H13" fill="none" stroke="%2344BBCA" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1"/%3E%3Cpath id="Tracé_98" data-name="Tracé 98" d="M9,1l4,4L9,9" fill="none" stroke="%2344BBCA" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1"/%3E%3C/g%3E%3C/svg%3E');
  width:7px;
  height:7px;
  background-size:contain;
  background-repeat:no-repeat;
  display: inline-block;
  vertical-align:middle;
  margin-left: 5px;
}

/*-----Media Queries Desktop-----*/
@media (min-width:576px) and (max-width:992px) {
  .footer__logo-img__certif {
    position: relative;
    right: initial;
  }
}

@media (min-width:992px) {
  footer .hs-menu-wrapper>ul {
    margin-bottom: 0;
  }
  footer .col-margin-desktop {
    margin-top: 130px;
  }

}
/*----Slick dots style----*/
ul.slick-dots {
  margin-top:20px;
  text-align:center;
  list-style:none;
}
ul.slick-dots li {
  display:inline-block;
  margin:0 12px;
}
ul.slick-dots li .dot {
  display:block;
  height:13px; 
  width:13px; 
  border-radius:50%;
  background:var(--system_gray_color);
  transition:all .2s ease-out;
}
ul.slick-dots li.slick-active .dot {
  background:var(--anchor_color);
  border-radius:8px;
  width:50px;
}

/*----Media queries Desktop-----*/
@media (min-width:992px) {
  ul.slick-dots li:hover {
    cursor:pointer;
  }
}


/*----Slick Arrows style----*/
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}
.cp-slider { padding:30px 0px; }
.cp-slider__slick-images { position:relative; padding:0px 40px; }
.cp-slider__slick-images-item { width:100%; height:300px!important; overflow:hidden; }

/*--Custom arrow and dots position--*/
.cp-slider__slick-images .slick-prev,
.cp-slider__slick-images .slick-next { position:absolute; top:calc(50% - 15px); }
.cp-slider__slick-images .slick-prev { left:0px; }
.cp-slider__slick-images .slick-next { right:0px; }
.cp-slider__slick-images .slick-dots { text-align:center; margin-top:10px; }

@media (min-width:992px) {
  .cp-slider__slick-images-item { height:500px!important; }
}
.cp-case-study { min-height:450px; padding-top:40px; background-size:cover; background-position:center; background-repeat:no-repeat; display:flex; align-items:center; }
.cp-case-study__inner { text-align:center; }
.cp-case-study__logo { margin:20px auto; width:80px; height:80px; -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; overflow:hidden; }
.cp-case-study__logo img { height:100%; width:100%; object-fit:contain; }


@media (min-width:992px) {
  .cp-case-study { transition:all .2s ease-out; padding-top:130px; background-size:100% auto; align-items:flex-end; }
  .cp-case-study:hover { background-size:110% auto; }
  .cp-case-study__inner { max-width:40%; text-align:left; transition:all .2s ease-out; }
  .cp-case-study:hover .cp-case-study__inner { transform:translateY(-50px); }
  .cp-case-study__logo { margin-left:0px; margin-bottom:30px; }
  
  /*---Columns surcharged---*/
  .widget-type-custom_widget[data-w="3"] .cp-case-study { padding:10px; margin:10px; background-size:cover; min-height:auto; }
  .widget-type-custom_widget[data-w="4"] .cp-case-study,
  .widget-type-custom_widget[data-w="6"] .cp-case-study { padding:20px; background-size:cover; min-height:auto; }
  .widget-type-custom_widget[data-w="3"] .cp-case-study__inner,
  .widget-type-custom_widget[data-w="4"] .cp-case-study__inner,
  .widget-type-custom_widget[data-w="6"] .cp-case-study__inner { max-width:100%; }
  .widget-type-custom_widget[data-w="3"] .cp-case-study:hover .cp-case-study__inner,
  .widget-type-custom_widget[data-w="4"] .cp-case-study:hover .cp-case-study__inner,
  .widget-type-custom_widget[data-w="6"] .cp-case-study:hover .cp-case-study__inner { transform:translateY(-15px); }
}
.cp-journey-card__content {
  flex:0 0 70%;
  position:relative;
  z-index:3;
  min-height:100%;
}
.cp-journey-card__link {
  position:relative;
  padding:45px 45px 90px 45px;;
}
.cp-journey-card__link:before {
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background:var(--soft_gray_color);
  transition:all .2s ease-out;
}
.cp-journey-card__link * {
  position:relative; 
  z-index:4;
}

.cp-journey-card__arrow {
  position:absolute;
  bottom:0px; 
  right:0px;
  background:var(--secondary_color);
  transition: all .2s ease-out;
}

.cp-journey-card__arrow svg path {
  fill: transparent;
  stroke:var(--white_color);
}

.cp-journey-card__img-container {
  position:relative;
  margin-left:-120px;
  flex:0 0 calc(30% + 120px);
  overflow:hidden;
}

.cp-journey-card__img {
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  width: 100%;
  height: 100%;
  transition: all .2s ease-out;
}

.cp-journey-card__img:before {
  content:"";
  position:absolute;
  top:0px; 
  right:0px;
  bottom:0px;
  left:0px;
  z-index:2;
  background:var(--anchor_color);
  opacity:0;
  transition: all .2s ease-out;
}

.cp-journey-card.right .cp-journey-card__inner {
  flex-direction:row-reverse;
}
.cp-journey-card.right .cp-journey-card__img-container {
  margin-left:0px;
  margin-right:-120px;
}

@media (min-width:992px) {
  .cp-journey-card__link {
    position:relative;
    padding:90px 45px 135px 45px;
  }
  .cp-journey-card__content {
    flex:0 0 35%;
  }
  .cp-journey-card__img-container {
    margin-left:-150px;
    flex:0 0 calc(65% + 150px);
  }
  .cp-journey-card.right .cp-journey-card__img {
    margin-left:0px;
    margin-right:-150px;
  }

  .cp-journey-card:hover .cp-journey-card__img:before {
    opacity:0.3;
  }

  .cp-journey-card:hover .cp-journey-card__img {
    transform:scale(1.1);
  }

  .cp-journey-card:hover .cp-journey-card__link:before {
    top:-10px;
    bottom:-10px;
    right:-10px;
    left:-10px;
  }
  .cp-journey-card:hover .cp-journey-card__arrow {
    bottom:-10px;
    right:-10px;
  }
}
.cp-office-card {
  position:relative;
  align-items:flex-end;
  min-height:350px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding-top:150px;
}
.cp-office-card:before {
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background:var(--anchor_smooth_color);
  opacity:.6;
  transition:all .2s ease-out;
}

.cp-office-card__inner {
  position:relative;
  z-index:3;
  transition:all .2s ease-out;
}

.cp-office-card .background {
  position:absolute;
  z-index:2;
  top:0;
  bottom:0;
  left:0;
  right:0;
  overflow:hidden;
}

.cp-office-card .background:before{
  position: absolute;
  background:var(--anchor_smooth_color);
  opacity:.6;
  content:"";
  width:100%;
  height:100%;
  z-index:1;
}

.cp-office-card .background .background-image{
  background-size:cover;
  background-position:center;
  width:100%;
  height:100%;
}

@media (min-width:992px) {
  
  .cp-office-card,
  .cp-office-card__inner,
  .cp-office-card .background,
  .cp-office-card .background:before,
  .cp-office-card .background-image {
    transition:all .2s ease-out;
  }

  .cp-office-card {
    min-height: 600px; 
  }

  .cp-office-card:hover .background:before  {
    opacity:.8;
  }

  .cp-office-card:hover .cp-office-card__inner {
    transform:translateY(-10px);
  }

  .cp-office-card:hover .background .background-image{
    transform:scale(1.1);
  }

}
.cp-icon-card {
  padding:60px 45px 45px 45px;
}

[data-w='3'] .cp-icon-card { padding:100px 30px 30px 30px; }
[data-w='4'] .cp-icon-card { padding:100px 30px 30px 30px; }

.cp-icon-card__inner img {
  max-height:55px;
  width:auto;
}

.cp-icon-card__inner .link {
  font-size:15px;
  line-height:1.2;
  margin-top:25px;
}

@media (min-width:992px) {
  .cp-icon-card {
    padding:90px 120px 50px 45px;
  }
  .cp-icon-card__inner {
    transition:all .2s ease-out;
  }
  .cp-icon-card:hover .cp-icon-card__inner {
    transform:translateY(-45px);
  }
  .cp-icon-card:hover .link:before{
    height:6px; 
  }
  .cp-icon-card:hover .link-text_primary  {
    color: var(--anchor_color);
  }
}
.cp-number-card {
  position:relative;
  padding-top:100px;
  padding-bottom:40px;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  margin-bottom:40px;
}

.cp-number-card__inner {
  position:relative;
  z-index:10;
}
.cp-number-card__heading {
  padding-left:35px;
  padding-right:120px;
}

[data-w='3'] .cp-number-card__heading { padding-right:35px; }
[data-w='4'] .cp-number-card__heading { padding-right:35px; }

.cp-number-card__baseline {
  padding-left:35px;
  padding-right:35px;
  max-width:85%;
  font-size:15px;
}

.cp-number-card__inner .link {
  font-size:15px;
  line-height:1.2;
  margin-top:25px;
}

.cp-number-card .background {
  position:absolute;
  z-index:2;
  top:0;
  bottom:0;
  left:0;
  right:0;
  overflow:hidden;
}

.cp-number-card .background:before{
  position: absolute;
  background:var(--anchor_smooth_color);
  opacity:.3;
  content:"";
  width:100%;
  height:100%;
  z-index:1;
}

.cp-number-card .background .background-image{
  background-size:cover;
  background-position:center;
  width:100%;
  height:100%;
}

@media (min-width:992px) {
  .cp-number-card,
  .cp-number-card__inner,
  .cp-number-card .background,
  .cp-number-card .background:before,
  .cp-number-card .background-image {
    transition:all .2s ease-out;
  }

  .cp-number-card {
    padding-top:220px;
    margin-bottom:0;
  }

  .cp-number-card__baseline {
    max-width:70%;
  }

  [data-w='3'] .cp-number-card__baseline { max-width:90%; }
  [data-w='4'] .cp-number-card__baseline { max-width:90%; }

  .cp-number-card:hover .background:before  {
    opacity:.6;
  }

  .cp-number-card:hover .cp-number-card__inner {
    transform:translateY(-10px);
  }

  .cp-number-card:hover .link:before{
    height:6px; 
  }

  .cp-number-card:hover .background .background-image{
    transform:scale(1.1);
  }

  .cp-number-card:hover .link-text_primary  {
    color: var(--anchor_color);
  }
}
.cp-testi-card {
  padding:70px 40px 40px;
}
.cp-testi-card__inner {
  position:relative;
}
.cp-testi-card__inner:before {
  position:absolute;
  z-index:3;
  top:-35px;
  left:5px;
  content:url(https://7482495.fs1.hubspotusercontent-na1.net/hubfs/7482495/EASY_SKILL_FILES/ICONS/icon-quote.svg);
}
.cp-testi-card__inner:after {
  position:absolute; 
  z-index:2;
  top:-20px;
  left:0px;
  content:"";
  background:var(--primary_color);
  height:10px;
  width:40px;
}

@media (min-width:992px) {
  .cp-testi-card {
    padding:90px 60px 60px;
  }
}
.cp-article-highlight__left-img {
  background: var(--white_color);
  flex: 0 0 100%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 200px;
}

.cp-article-highlight__right-content {
  flex: 0 0 100%;
  padding: 25px 30px 25px 10px;
}

@media (min-width:992px) {
  .cp-article-highlight__inner {
    flex-wrap: nowrap !important;
    overflow: hidden;
  }

  .cp-article-highlight__left-img {
    flex: 0 0 60%;
    height: auto;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }

  .cp-article-highlight__right-content {
    z-index: 1;
    flex: 0 0 40%;
    padding: 120px 90px 120px 60px;
    transition: all .2s ease-out;
  }

  .cp-article-highlight:hover .cp-article-highlight__left-img {
    flex: 0 0 62%;
  }

  /* hover */
  .cp-article-highlight:hover .cp-article-highlight__left-img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

}
.cp-article-card__top-img {
  background: var(--white_color);
  height: 160px;
}

.cp-article-card__top-img img {
  object-fit: cover;
  object-position: center;
}

.cp-article-card__content {
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 70px;
  padding-left: 30px;
  height: calc(100% - 160px);
}

/*-----Media Queries Desktop-----*/
@media (min-width:992px) {

  .cp-article-card .cp-article-card__top-img img,
  .cp-article-card:hover .cp-article-card__content,
  .cp-article-card:hover .cp-article-card__top-img,
  .cp-article-card:hover .cp-article-card__content-box {
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }

  .cp-article-card .cp-article-card__top-img {
    overflow: hidden;
  }

  .cp-article-card:hover .cp-article-card__top-img {
    height: 175px;
    overflow: hidden;
  }

  .cp-article-card:hover .cp-article-card__top-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  .cp-article-card:hover .cp-article-card__content {
    height: calc(100% - 175px);
    padding-bottom: 55px;
  }

}
.cp-timeline__item {
  position:relative;
  padding:20px;
}
.cp-timeline__item:before {
  position:absolute;
  top:53px;
  left:0px;
  content:"";
  height:8px;
  width:8px;
  border-radius:50%;
  background:var(--anchor_color);
}
.cp-timeline__item.dark:before {
  background:var(--white_color);
}
.cp-timeline__item:not(:last-child):after {
  position:absolute;
  top:53px;
  left:3px;
  content:"";
  width:2px;
  height:100%;
  background:var(--anchor_color);
}
.cp-timeline__item.dark:not(:last-child):after {
  background:var(--white_color);
}

/*-----Media queries Desktop-----*/
@media (min-width:992px) {
  .cp-timeline__item {
    padding:30px 30px 50px 30px;
  }
  .cp-timeline__item:before,
  .cp-timeline__item:not(:last-child):after {
    top:40px;
  }
}
.cp-number-graph__graph {
  height:125px;
  width:125px;
}
.cp-number-graph__circle {
  margin:0!important;
  float:none!important;
}
.cp-number-graph__circle > span {
  color:var(--highlight_color)!important;
  font-weight:600!important;
}
.cp-number-graph__circle.percircle,
.cp-number-graph__circle.percircle:after {
  background-color:transparent!important
}
.cp-number-graph__circle.percircle:before {
  position:absolute;
  top:2px;
  bottom:2px;
  left:2px;
  right:2px;
  content:"";
  border:4px solid var(--system_gray_color);
  border-radius:50%;
}
.cp-number-graph__src span {
  color:var(--highlight_color);
}
.cp-post-enc {
  position:relative;
  overflow:hidden;
}
.cp-post-enc__txt {
  position:relative;
  z-index:2;
}
.cp-post-enc__svg {
  position:absolute;
  z-index:1;
  opacity:.2;
  right:-30px;
  top:0px;
  height:100%;
}
.cp-post-enc__svg svg {
  height:100%;
  width:auto;
}
.cp-post-news-subscribe__left-col {
  flex:0 0 40%;
}
.cp-post-news-subscribe__right-col {
  flex:0 0 60%;
}
.cp-post-news-subscribe__right-form .form-title {
  display:none;
}
.cp-post-news-subscribe__right-form form .hs-richtext h5 {
  font-size:15px;
}
.cp-post-news-subscribe__right-form form ul.inputs-list {
  display:flex;
}
.cp-post-news-subscribe__right-form form ul.inputs-list li:first-child {
  margin-right:15px;
}
.cp-post-news-subscribe__right-form form .hs-fieldtype-radio > label {
  display:none;
}
.cp-post-news-subscribe__right-form form .hs-form-field {
  margin-bottom:0px;
}
.cp-post-news-subscribe__right-form form input[type="email"] {
  background:transparent;
}
.cp-post-news-subscribe__right-form form div.actions {
  margin-top:20px;
}

@media (min-width:992px) {
  .cp-post-news-subscribe__right-form {
    padding-left:40px;
  }
  .cp-post-news-subscribe__left-col {
    border-right: 1px solid var(--system_gray_color);
  }
}

.body-container-wrapper {
    margin-top: 50px;
  }
  
  @media (min-width:768px) {
    .body-container-wrapper {
      margin-top: 90px;
    }
  }




/*-------Blog List------*/
.blog-list-index .container .row {
  padding:0 30px;
}
.blog-list-svg {
  position:fixed;
  top:140px;
  left:-110px;
  opacity:.5;
}
.blog-list-svg svg {
  height:550px;
  width:auto;
}
.blog-list-hero__title {
  margin-bottom:20px;
}
.blog-list-hero__breadcrumbs {
  padding:3px 9px;
  width:fit-content;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  top: 0;
  left: -15px;
  width: auto;
  right: -15px;
}
.blog-list-pagination {
  padding:50px 0px;
}
.blog-list-pagination__pgs ul {
  display:flex;
  justify-content:center;
  list-style:none;
}
.blog-list-pagination__pgs ul li {
  margin:0 20px;
  width:22px;
  height:22px;
  display:flex; 
  align-items:center;
  justify-content:center;
}
.blog-list-pagination__pgs ul li.active {
  background:var(--highlight_color);
}
.blog-list-pagination__pgs ul li span, 
.blog-list-pagination__pgs ul li a {
  font-size:15px;
}
.blog-list-pagination__pgs ul li a {
  position:relative;
  text-decoration:none;
  color:var(--anchor_color);

}
.blog-list-pagination__pgs ul li a:after {
  content:"";
  position:absolute;
  width:100%;
  height:0px;
  background:var(--highlight_color);
  bottom:2px; 
  left:0px;
  transition:all .2s ease-out;
}
.blog-list-pagination__pgs ul li a:hover:after {
  height:2px;
}

.blog-list-hero__tags {
  width:100%;
}
.blog-list-hero__tag-input {
  position:relative;
}
.blog-list-hero__tag-trigger {
  position:relative;
  display:block;
  min-width:220px;
  padding:11px 45px 11px 25px;
  border-radius:23px;
  border:1px solid var(--anchor_light_color);
  color:var(--anchor_light_color);
  text-decoration:none;
  cursor:pointer;
}
.blog-list-hero__tag-trigger:after {
  position:absolute;
  top:calc(50% - 5px);
  right:15px;
  content:"";
  display:block;
  width:15px;
  height:10px;
  background:url(https://info.easy-skill.com/hubfs/SITE_2021/UI%20Assets%20-%20do%20not%20modify/asset-dropdown.svg);
  background-size:contain;
  background-position:center;
  transition:all .2s ease-out;
}
.blog-list-hero__tag-trigger.clicked:after {
  transform:rotate(180deg);
}
.blog-list-hero__tag-list {
  display:none;
  position:absolute;
  left:0px;
  top:64px;
  max-height:300px;
  width:100%;
  overflow:auto;
  z-index:10;
  background:var(--soft_gray_color);
  border-radius:5px;
  border:1px solid var(--system_gray_color);
  text-align:center;
  padding:15px 30px;
}
.blog-list-hero__tag-list::-webkit-scrollbar-track{ 
  border-radius: 3px; 
  background-color:var(--soft_gray_color); 
}
.blog-list-hero__tag-list::-webkit-scrollbar{ 
  width: 4px; 
  border-radius: 3px; 
  background-color: var(--soft_gray_color); 
}
.blog-list-hero__tag-list::-webkit-scrollbar-thumb{ 
  border-radius: 3px; 
  background-color: var(--primary_color); 
}

.blog-list-hero__tag-list a {
  display:block;
  text-decoration:none;
  color:var(--anchor_color);
  font-size:15px;
  padding:5px 10px;
}
.blog-list-hero__tag-list a:not(:last-child) {
  border-bottom:1px solid var(--system_gray_color);
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}


@media (min-width:768px) {

  .blog-list-hero__breadcrumbs {
    position: relative;
    justify-content: end;
    left: 0;
    width: fit-content;
    right: 0;
  }

  .blog-list-hero__title {
    margin-bottom:0px;
  }
  .blog-list-index .container .row {
    padding:0;
  }
  .blog-list-hero__tags {
    width:auto;
  }
  .blog-list-hero__tag-list {
    width:auto;
    min-width:250px;
    left:calc(50% - 125px);
  }
}


/*-------Blog Post------*/
.blog-post-hero {
  overflow:hidden;
}

.blog-post-hero__heading {
  padding-top: 280px;
}


.blog-list-hero__breadcrumb-post-title {
  max-width: 165px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-list-hero__tag-item {
  padding:4px 15px;
  border-radius:30px;
  border:1px solid var(--primary_color);
}

.blog-post-hero__featured-img {
  position: absolute;
  top: 30px;
  left: -15px;
  right: -15px;
  width: auto;
}

.blog-post-hero__featured-img img {
  height: 250px;
}
.blog-post-content__txt .hs_cos_wrapper_type_rich_text {
  text-align: left;
  text-align: -webkit-left;
}
.blog-post-content__txt h2, 
.blog-post-content__txt h3,
.blog-post-content__txt h4,
.blog-post-content__txt h5 {
  text-align:left;
}
.blog-post-content__txt h2 { 
  position:relative; 
  color:var(--primary_color);
  font-weight:700;
  margin-top:20px;
  margin-bottom:10px;
  /*
  counter-increment:i;
  list-style-type: decimal-leading-zero;
  display: list-item;
  margin-left: 41px;
  */
}
/*
.blog-post-content__txt h2::marker {
  font-size: 27px;
} 
@media screen and (min-width: 992px) {
  .blog-post-content__txt h2 { 
    margin-left: 63px;
  }
  .blog-post-content__txt h2::marker {
    font-size: 37px;
  } 
}

.blog-post-content__txt h2:before { 
position:absolute; 
top:-30px; 
left:0px; 
font-size:18px;
content:counter(i);
font-weight:600;  
color:var(--primary_color);  
}
*/
.blog-post-content__txt a:before, 
.blog-post-content__txt p a:before, 
.blog-post-content__txt span a:before {
  content:none;
}
.blog-post-content__txt a, 
.blog-post-content__txt p a, 
.blog-post-content__txt span a {
  text-decoration:underline;
  text-decoration-color:var(--primary_color);
  text-decoration-thickness: 2px;
}
.blog-post__cta-col {
  position:sticky; 
  top:80px;
}
.blog-post-content__sharing-inner .layout-phone {
  display: none;
}
.blog-post-content__sharing-inner .txt-center {
  text-align: -webkit-left;
  text-align: -moz-left;
  text-align: left;
}
/*
.blog-post-content__sharing-inner a {
position:relative;
transition:all .2s ease-out;
height:25px;
width:25px;
}
.blog-post-content__sharing-inner a svg {
height:25px; 
width:25px;
}
.blog-post-content__sharing-inner a:after {
content:"";
position:absolute;
width:100%;
height:4px;
background:var(--highlight_color);
left:0px;
bottom:-5px;
transition:all .2s ease-out;
}
.blog-post-content__sharing-inner a:not(:last-child) {
margin-right:5px;
}
.blog-post-content__sharing-inner a:hover {
background:var(--highlight_color);
}
.blog-post-content__sharing-inner a:hover:after {
background:transparent;
}
*/
.mod-similar-posts {
  position:relative;
}
.mod-similar-posts .container {
  position:relative; 
  z-index:2; 
}
.mod-similar-posts__cards span {
  display:flex;
  flex-wrap:wrap;
}

.mod-similar-posts__cards span ul.slick-dots {
  margin-left: auto;
  margin-right: auto;
}

.mod-similar-posts__card-col {
  flex:0 0 100%;
}

.post-content-cta {
  text-decoration:none!important;
}
.post-cta-encart__bkg {
  background-image:linear-gradient(rgba(33, 39, 56, .8), rgba(33, 39, 56, .8)), url(https://info.easy-skill.com/hubfs/SITE_2021/Icons/S-gray.svg);
  background-position:center;
  background-repeat:no-repeat;
  padding:40px 30px!important;
}
.post-cta-encart__title {
  margin-bottom:10px!important;
}
.post-cta-encart span a:before {
  content:none;
}
.post-cta-encart__btn {
  padding-top: 10px!important;
  padding-bottom: 10px!important;
  padding-right: 30px!important;
  padding-left: 30px!important;
}

@media (min-width:768px) {

  .blog-post-hero__heading {
    padding-top: 60px;
  }

  .blog-post-hero__featured-img {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .blog-post-hero__featured-img img {
    height: auto;
  }

  .blog-post-content__txt .hs_cos_wrapper_type_rich_text {
    text-align: justify;
  }

}

@media (min-width:992px) {
  .mod-similar-posts__card-col {
    flex:0 0 50%;
  }
  .blog-post-hero__featured-img {
    width:200%;
  }
  .mod-similar-posts:after {
    content:"";
    position:absolute;
    right:0px;
    top:0px;
    width:43%;
    height:100%;
    background:var(--secondary_color);
  }
}
@media (min-width:1200px) {
  .mod-similar-posts__card-col {
    flex:0 0 25%;
  }
}


/***************************************************************************/
/****************************   1. Variables    ****************************/
/***************************************************************************/

/* 1a. Containers */



/* 1b. Colors */



















:root {
  /* theme */
  --primary_color: #35B4A7;
  --secondary_color: #44BBCA;
  --highlight_color: #FDC444;
  --anchor_color : #212738;
  --anchor_smooth_color : #384360;
  --anchor_light_color : #76798B;

  /* system */
  --system_gray_color: #DADADA;
  --soft_gray_color : #F5F5F7;
  --blue_gray_color: #F8FAFD;
  --white_color: #FFFF;
  --black_color: #000;
  --valid_color: #0C9D0E;
  --error_color: #D51212;
}

/* 1c. Typography */












/* HTML Font Size [ mobile, tablet, Desktop ] */


/* HTML Line Height [ mobile, tablet, desktop ] */


/* Header Font Size [ mobile, tablet, Desktop ] */







/* Header Line Height [ mobile, tablet, desktop ] */








/* 1d. Buttons */







/* 1e. Forms */










/* 1f. Tables */












/***************************************************************************/
/******************   2. Containers / Grid / DnD Areas   *******************/
/***************************************************************************/
.content-wrapper {
  max-width: 1140px;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 80px 0px;
}

.dnd-section > .row-fluid {
  max-width: 1140px;
}

/***************************************************************************/
/******************   3. General / Typography   ****************************/
/***************************************************************************/
* {
  outline: none;
}

html {
  font-size: 16px;
  line-height: 25px;
}

body {
  font-family: Poppins, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #212738;
}

/* Divider */

hr {
  width: 100%;
  margin: 0 auto;
  height: 2px;
  border: none;
  background-color: var(--system_gray_color);
}

img {
  max-width:100%;
  width:100%;
}
/* Anchor */
.widget-type-rich_text a,
.hs_cos_wrapper_type_rich_text a,
a.link-style {
  color: var(--anchor_color);
}

.widget-type-rich_text a:before,
.hs_cos_wrapper_type_rich_text a:before,
span.title-style:before,
a.link-style::before {
  background: var(--primary_color);
}

/* Paragraphs */

p {
  font-family: Poppins, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
}

/* Headings */

h1 {
  font-family: Poppins, serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #212738;
  font-size: 35px;
  line-height: 55px;
}

h2 {
  font-family: Poppins, serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #212738;
  font-size: 27px;
  line-height: 35px;
}

h3 {
  font-family: Poppins, serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #212738;
  font-size: 22px;
  line-height: 40px;
}

h4 {
  font-family: Poppins, serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #212738;
  font-size: 22px;
  line-height: 35px;
}

h5 {
  font-family: Poppins, serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #212738;
  font-size: 19px;
  line-height: 35px;
}

h6 {
  font-family: Poppins, serif; font-style: normal; font-weight: 600; text-decoration: none;
  color: #212738;
  font-size: 19px;
  line-height: 30px;
}

@media (min-width: 576px) {
  h1 { 
    font-size: 35px;
    line-height: 55px;
  }
  h2 { 
    font-size: 27px;
    line-height: 35px;
  }
  h3 { 
    font-size: 22px;
    line-height: 40px;
  }
  h4 { 
    font-size: 22px;
    line-height: 35px;
  }
  h5 { 
    font-size: 19px;
    line-height: 35px;
  }
  h6 { 
    font-size: 19px;
    line-height: 30px;
  }
  html {
    font-size: 16px;
    line-height: 25px;
  }
}

@media (min-width: 992px) { 
  h1 { 
    font-size: 45px;
    line-height: 58px;
  }
  h2 { 
    font-size: 37px;
    line-height: 48px;
  }
  h3 { 
    font-size: 31px;
    line-height: 41px;
  }
  h4 { 
    font-size: 25px;
    line-height: 38px;
  }
  h5 { 
    font-size: 25px;
    line-height: 38px;
  }
  h6 {
    font-size: 18px;
    line-height: 30px;
  }
  html {
    font-size: 18px;
    line-height: 30px;
  }
}

/* Anchor */
.widget-type-rich_text a,
.hs_cos_wrapper_type_rich_text a,
a.card-content-link-style,
span.title-style,
span.link-style,
a.link-style,
a.cta_button {
  z-index: 0;
  position: relative;
  text-decoration: none;
}

span.title-style {
  display: block;
  width: fit-content;
}

span.title-style::before {
  height: 35%;
  bottom: 10%;
}

.widget-type-rich_text a:before,
.hs_cos_wrapper_type_rich_text a:before,
a.card-content-link-style:before,
span.link-style:before,
span.title-style::before,
a.link-style:before {
  position: absolute;
  content: '';
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.widget-type-rich_text a:before,
.hs_cos_wrapper_type_rich_text a:before,
a.card-content-link-style .link-style:before,
span.link-style:before,
a.link-style:before {
  height: 2px;
  bottom: 0;
}

.widget-type-rich_text a:hover:before,
.hs_cos_wrapper_type_rich_text a:hover:before,
a.hs-button:hover .link-style::before,
a.cta_button:hover .link-style::before,
a.card-content-link-style .link-style:hover::before,
a.link-style:hover:before {
  height: 45%;
}

/* List */

/* ul + ol */
.hs_cos_wrapper_type_rich_text ul,
.hs_cos_wrapper_type_rich_text ol,
ul.list-style,
ol.list-style {
  list-style: none;
  padding-top: 15px;
  padding-left: 15px;
}

.hs_cos_wrapper_type_rich_text ul li,
.hs_cos_wrapper_type_rich_text ol li,
ul.list-style li,
ol.list-style li {
  margin-bottom: calc(1.2em/2);
}

/* ul */
.hs_cos_wrapper_type_rich_text ul li,
ul.list-style li {
  position: relative;
  padding-left: 15px;
}

.hs_cos_wrapper_type_rich_text ul li:before,
ul.list-style li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 0;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  background: var(--primary_color);
}

/* ol */
.hs_cos_wrapper_type_rich_text ol,
ol.list-style {
  list-style-type: decimal-leading-zero;
  margin-left: 20px;
}

.hs_cos_wrapper_type_rich_text ol li::marker,
ol.list-style li::marker {
  margin-right: calc(1.2em/2);
  border-radius: 100%;
  width: 1.2em;
  text-align: center;
  display: inline-block;
  font-weight: bold;
  color: var(--primary_color);
}

.hs_cos_wrapper_type_rich_text ol li:before,
ol.lst-style li:before { color: var(--primary_color); }

/* Surtitle */
.overtitle{
  color:var(--primary_color);
  font-size:18px;
  font-weight:bold;
  text-transform:uppercase;
}

/***************************************************************************/
/****************************   4. Buttons, CTA, Links     *****************/
/***************************************************************************/

/************************   UPDATE GERMAIN    ******************************/
/*---Main style---*/
.cta-main-highlight {
  display: inline-block;
  cursor: pointer;
  position:relative;
  z-index: 1;
  color:var(--anchor_color);
  font-size:16px;
  font-weight:600;
  line-height: 1.2;
  background:var(--highlight_color);
  padding-top:10px;
  padding-bottom:10px;
  padding-right:30px;
  padding-left:30px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.cta-main-highlight span {
  position:relative;
  z-index:1;
}
.cta-main-highlight:before {
  content:"";
  position:absolute;
  z-index:-1;
  bottom:15px;
  right:30px;
  width:calc(100% - 60px);
  background:var(--white_color);
  height:0px;
  transition:all .2s ease-out;
}
.cta-main-highlight:hover:before {
  height:5px;
}
.cta-main-highlight:focus:before {
  height:5px;
  width:2px;
}

/*--Override Header ctas--*/
.cta-actions .hs-cta-wrapper .cta-main-highlight {
  font-size:14px;
  border-radius:0px;
  padding:8px 18px;
}
.cta-actions .hs-cta-wrapper .cta-main-highlight img{
  margin-right:5px;
  width:auto;
  height:15px;
}
.cta-actions .hs-cta-wrapper .cta-main-highlight:before {
  content:none;
}
.cta-actions .hs-cta-wrapper .cta-main-highlight:hover {
  border-radius:16px;
}
.cta-actions .cta-action.-first .hs-cta-wrapper .cta-main-highlight {
  background:var(--secondary_color);
  color:var(--white_color);
}
.cta-actions .cta-action.-second .hs-cta-wrapper .cta-main-highlight {
  background:var(--highlight_color);
  color:var(--anchor_color);
}
/*
.cta-actions .hs-cta-wrapper:first-child .cta-main-highlight:focus,
.cta-actions .hs-cta-wrapper:nth-child(2) .cta-main-highlight:focus{
background:var(--anchor_color);
color:var(--white_color);
}
*/

/*---Override CTA Module Hero Hemo---*/
.hero-banner-home .cta-container_first .cta-main-highlight {
  display:block;
  border-radius:0px;
  color:var(--white_color);
  text-align:center;
}
.hero-banner-home .cta-container_first .cta-main-highlight:before {
  content:none;
}
.hero-banner-home .cta-container_first .cta-main-highlight:hover {
  border-radius:16px;
  color:var(--anchor_color);
}
.hero-banner-home .cta-container_first .cta-main-highlight:focus {
  background:var(--anchor_color);
  color:var(--white_color);
}

/*---Override CTA Module Lets talk---*/
.mod-talk .cta-main-highlight {
  background:var(--primary_color);
}

/****************************   LINKS    *************************************/

/* Link Text Primary */
.page-header a,
.link{
  display:inline-block;
  position:relative;
  font-weight:600;
  z-index:1;
  text-decoration:none;
  border:none;
  text-align:left;
  border:none;
  padding:0;
  font-size: 15px;
  line-height: 1.2;
  margin-top: 25px;
}

.page-header a:before,
.link:before{
  content: "";
  position: absolute;
  z-index:-1;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.page-header a:hover:before,
.link:hover:before{
  height:6px; 
}

.page-header a,
.link-text_primary{
  color: var(--highlight_color);
}

.page-header a:before,
.link-text_primary:before{
  background : var(--highlight_color);
}

.page-header a:hover,
.link-text_primary:hover  {
  color: var(--anchor_color);
}

.link-text_white  {
  color: var(--white_color);
}

.link-text_white:before{
  background: var(--highlight_color);
}

.link-text_white:hover {
  color: var(--white_color);
}

/* CTA Text White */
.cta-text_white{
  color: var(--white_color);
}

.cta-text_white:hover {
  color: var(--white_color);
}

/* Button Tag */
a.btn-tag-select-filter {
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  color: var(--system_gray_color);
  border-style: solid;
  border-width: 1px;
  border-color: var(--system_gray_color);
  background: var(--white_color);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
}

a.btn-tag-select-filter:hover {
  color: var(--white_color);
  background: var(--anchor_light_color);
  border-color: var(--anchor_light_color);
}

a.btn-tag-select-filter.active {
  color: var(--white_color);
  background: var(--anchor_smooth_color);
  border-color: var(--anchor_smooth_color);
}

a.btn-tag-select-filter.active:hover {
  color: var(--anchor_smooth_color);
  background: var(--white_color);
  border-color: var(--anchor_smooth_color);
}


/* BTN-Nurturing */
a.btn-nurturing,
a.btn-nurturing:before{
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

a.btn-nurturing{
  color:var(--anchor_color);
}

a.btn-nurturing:before{
  content:"";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='9.414' viewBox='0 0 13 9.414'%3E%3Cg id='asset-right-arrow' transform='translate(-0.5 -0.293)'%3E%3Cpath id='Tracé_97' data-name='Tracé 97' d='M1,5H13' fill='none' stroke='%231c213e' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1'/%3E%3Cpath id='Tracé_98' data-name='Tracé 98' d='M9,1l4,4L9,9' fill='none' stroke='%231c213e' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  display:inline-block;
  vertical-align:middle;
  margin-right:5px;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}

a.btn-nurturing:hover:before{
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="13" height="9.414" viewBox="0 0 13 9.414"%3E%3Cg id="asset-right-arrow" transform="translate(-0.5 -0.293)"%3E%3Cpath id="Tracé_97" data-name="Tracé 97" d="M1,5H13" fill="none" stroke="%2344BBCA" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1"/%3E%3Cpath id="Tracé_98" data-name="Tracé 98" d="M9,1l4,4L9,9" fill="none" stroke="%2344BBCA" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1"/%3E%3C/g%3E%3C/svg%3E');
  transform:translateX(-5px);
}

a.btn-nurturing:hover{
  color:var(--secondary_color);
  transform:translateX(5px);
}

/***************************************************************************/
/****************************   5. Forms        ****************************/
/***************************************************************************/

/* Form fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 12px;
  position: relative;
}

form label.hs-form-checkbox-display,
form label.hs-form-radio-display,
form label.hs-form-booleancheckbox-display {
  color: var(--anchor_smooth_color);
  cursor: pointer;
  width: fit-content;
  display: flex;
  align-items: center;
  line-height: 20px;
  margin-bottom: 10px;
}

form label.hs-form-checkbox-display:hover,
form label.hs-form-radio-display:hover,
form label.hs-form-booleancheckbox-display:hover {
  color: var(--anchor_color);
}

form label.hs-form-checkbox-display:hover input,
form label.hs-form-radio-display:hover input, 
form label.hs-form-booleancheckbox-display:hover input {
  border-color: var(--primary_color);
  border-width: 2px;
  margin-right: 8px;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

input:-webkit-autofill {
  -webkit-box-shadow:0 0 0 50px var(--white_color) inset; /* Change the color to your own background color */
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 50px var(--white_color) inset;/*your box-shadow*/
} 

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 12px;
  padding-bottom: 5px;
  width: 100%;
  border-bottom-style: solid;
  border-bottom-width: thin;
  border-top: none;
  border-left: none;
  border-right: none;
  caret-color: var(--primary_color);
  font-family: Poppins,sans-serif;
}

form select {
  cursor: pointer;
  height: 30px;
  padding-bottom: 0;
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background-image: url("https://7482495.fs1.hubspotusercontent-na1.net/hubfs/7482495/EASY_SKILL_FILES/ICONS/asset-dropdown.svg");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 50%;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list>li {
  display: block;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  -webkit-appearance: none;
  border-style: solid;
  border-width: 1px;
  padding: 6px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

form input[type=checkbox] {
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}

form input[type=radio] {
  border-radius: 50%;
}

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: '\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 10px;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display>span,
.legal-consent-container .hs-form-booleancheckbox-display>span p {
  margin-left: 0 !important;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  background-color: 

  
  
    
  


  rgba(253, 196, 68, 1)

;
  border: 0px solid #FDC444;
  border-radius: 100px;
  color: #212738;
  padding: 10px 30px;
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

form input[type=submit]:hover,
form .hs-button:hover {
  transform:translateY(-5px);
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

form,
.submitted-message {
  font-family: Poppins, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
}

/* Form title */

.form-title {
  color: #212738;
  text-align: center;
  text-align: -webkit-center;
  margin-bottom: 30px;
}

/* Form label */

form label {
  color: #212738;
}

/* Form help text */

form legend {
  color: #212738;
}

/* Form inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form textarea {
  border-color: #DADADA;
  color: #212738;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form textarea:focus {
  border-color: #35B4A7;
}

form input[type=checkbox],
form input[type=radio] {
  border-color: #35B4A7;
  position: relative;
}

form input[type=checkbox]:checked,
form input[type=radio]:checked {
  border-color: #35B4A7;
  background-color: #35B4A7;
  border-width: 2px;
}

form input[type=checkbox]:checked::before,
form input[type=radio]:checked::before {
  content: '';
  height: 90%;
  width: 90%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  background: url('https://7482495.fs1.hubspotusercontent-na1.net/hubfs/7482495/EASY_SKILL_FILES/ICONS/asset-check.svg') center / contain no-repeat;
}

/* Form placeholder text */

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: var(--system_gray_color);
}

/* Date picker */

.fn-date-picker td.is-selected .pika-button {
  background: #35B4A7;
}

.fn-date-picker td .pika-button:hover {
  background-color: #35B4A7 !important;
}

.fn-date-picker td.is-today .pika-button {
  color: #35B4A7;
}


/* Validation */

.hs-form-required {
  color: var(--error_color);
}

.hs-input.invalid.error {
  border-color: var(--error_color);
  color: var(--anchor_light_color);
  caret-color: var(--error_color);
}

.hs-error-msg {
  color: var(--error_color);
  font-size: 10px;
}

/* Tel */

form input[type="tel"] {
  height: 30px;
  padding-bottom: 0 !important;
}

/* Select Custom */

form.custom label.select-img {
  position: relative;
}

form.custom label.select-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 10px;
}

form.custom select {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 30px;
  height: auto;
}

form.custom select:before {
  background-image: url("https://7482495.fs1.hubspotusercontent-na1.net/hubfs/7482495/EASY_SKILL_FILES/ICONS/asset-dropdown.svg");
  background-repeat: no-repeat;
  background-position-x: 5%;
  background-position-y: 50%;
}

/***************************************************************************/
/****************************   6. Tables   ********************************/
/***************************************************************************/

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
  background-color: #FFFF;
  border-color: #384360;
}

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
  border-color: #384360;
  color: #212738;
}

thead th,
table tr:first-child th,
thead td,
table tr:first-child td {
  background-color: 

  
  
    
  


  rgba(#FFFF, 1.0)

;
  border-color: #384360;
  border-bottom: 5px solid;
  color: #212738;
  text-align:center;
  font-weight:600;
}

tfoot td {
  background-color: 

  
  
    
  


  rgba(33, 39, 56, 1)

;
  color: #FFFF;
}

@media (max-width:992px) {
  div[data-hs-responsive-table="true"] { overflow:auto; }
  div[data-hs-responsive-table="true"]::-webkit-scrollbar-track{ border-radius: 10px; background-color:var(--system_gray_color); }
  div[data-hs-responsive-table="true"]::-webkit-scrollbar{ height: 12px; border-radius: 10px; background-color:var(--system_gray_color); }
  div[data-hs-responsive-table="true"]::-webkit-scrollbar-thumb{ border-radius: 10px; background-color:var(--primary_color); }
  table tr td { width:150px!important; }
}


/***************************************************************************/
/****************************   6. Blockquote   ****************************/
/***************************************************************************/
blockquote { 
  padding:40px 20px;
  position:relative;
  margin-left: 0px; 
  color: var(--anchor_color); 
  width:100%;
  max-width:400px;
  font-weight:medium;
}
blockquote:before {
  position:absolute;
  z-index:3;
  top:10px;
  left:25px;
  content:url(https://7482495.fs1.hubspotusercontent-na1.net/hubfs/7482495/EASY_SKILL_FILES/ICONS/icon-quote.svg);
}
blockquote:after {
  position:absolute; 
  z-index:2;
  top:23px;
  left:20px;
  content:"";
  background:var(--primary_color);
  height:10px;
  width:40px;
}
blockquote p {
  font-weight:medium;
}

@media (min-width:992px) {
  blockquote {
    margin-left: 20px; 
  }
}

/***************************************************************************/
/****************************   6. Socials      ****************************/
/***************************************************************************/
.hs_cos_wrapper_type_module .social-links__icon { background-color:#212738!important; border-radius: 50%; height: 50px; width: 50px; transition:all .2s ease-out; }
.hs_cos_wrapper_type_module .social-links a span { background-color:transparent!important; width:30px!important; height:30px!important; transition:all .2s ease-out; }
.hs_cos_wrapper_type_module .social-links__icon:hover { background-color:#35B4A7!important; box-shadow: 0px 2px 2px #0000001A!important; }


/***************************************************************************/
/****************************   13. Images      ****************************/
/***************************************************************************/
.widget-type-linked_image {
  position:relative;
}

.widget-type-linked_image span.hs_cos_wrapper_type_linked_image {
  display: block;
  position:relative;
}

.widget-type-linked_image span.hs_cos_wrapper_type_linked_image a {
  display: block;
  position: relative;
}

.widget-type-linked_image span.hs_cos_wrapper_type_linked_image img {
  max-width:100%;
}

.widget-type-linked_image span.hs_cos_wrapper_type_linked_image:before{
  content:"";
  position:absolute;
  left:10%;
  width:90%;
  border: solid 4px var(--highlight_color);
  height:90%;
  bottom:-10px;
  z-index:-1;
}

.widget-type-linked_image span.hs_cos_wrapper_type_linked_image:after{
  content:"";
  position:absolute;
  right:-15px;
  width:90%;
  border: solid 4px var(--primary_color);
  height:90%;
  top:-15px;
  z-index:-1;
}


div.widget-type-linked_image span a img {
  position: relative;
  width:100%;
  max-width:100%;
  box-shadow:none;
}

div.widget-type-linked_image span a::before,
div.widget-type-linked_image span a::after {
  position: absolute;
}

div.widget-type-linked_image span a::before {
  content: '';
  height: 60px;
  width: 60px;
  z-index: 1;
  bottom: 9px;
  right: 0px;
  background-color: var(--primary_color);
}

div.widget-type-linked_image span a::after {
  height: 30px;
  width: 30px;
  z-index: 2;
  bottom: 20px;
  right: 13px;
  content: url('https://7482495.fs1.hubspotusercontent-na1.net/hubfs/7482495/EASY_SKILL_FILES/ICONS/asset-right-arrow.svg');
}

/***************************************************************************/
/*************************    14. Breadcrumbs   ****************************/
/***************************************************************************/

/* Home */
ul.breadcrumbs li a:first-child:hover > svg path {
  fill: var(--anchor_color);
}

/* Links */
ul.breadcrumbs li:not(:first-child):not(:last-child) a::before {
  content: '';
  position: absolute;
  height: 2px;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: var(--highlight_color);
}
ul.breadcrumbs li:not(:first-child):not(:last-child) a:hover::before {
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  width: 100%;
}

/***************************************************************************/
/*************************   17. Video          ****************************/
/***************************************************************************/
.oembed_container { margin:30px 0px; }

/***************************************************************************/
/*************************  18. Color theme     ****************************/
/***************************************************************************/
.colors-list {
  display:flex;
  margin:20px 0px;
}
.colors-item {
  height:150px;
  width:120px;
}
.colors-item:not(:last-child) {
  margin-right:10px;
}


/***************************************************************************/
/****************    1. _module-blog-articles   ****************************/
/***************************************************************************/
.mod-blog-articles{
  overflow-x:hidden;
}

.mod-blog-articles__heading-left-col {
  padding-top:50px;
  padding-bottom:40px;
  padding-right:50px;
  flex: 0 0 60%;
}
.mod-blog-articles__heading-color-col {
  flex:0 0 120%;
}
.mod-blog-articles__listing {
  flex-wrap:wrap;
  margin-top:40px;
}
.mod-blog-articles__listing .cp-article-card {
  flex:0 0 100%;
  box-sizing:border-box;
}
.mod-blog-articles__link {
  padding-right:20px;
  padding-left:20px;
}
.mod-blog-articles__link a {
  color:var(--anchor_color);
}
.mod-blog-articles__link a:hover {
  color:var(--secondary_color);
}

.mod-blog-articles.bkg-blue-gray-color .cp-article-card__content{
  background:var(--white_color);
}

.mod-blog-articles .row.bkg-blue-gray-color > div:after{
  content:"";
  background:var(--secondary_color);
  display:block;
  position:absolute;
  top:0;
  right:-100%;
  height:100%;
  width:100%;
  z-index:1;
}

/*-----Media queries Desktop-----*/
@media (min-width:992px) {
  .mod-blog-articles__heading-left-col {
    padding-top:130px;
    padding-right:120px;
  }
  .mod-blog-articles__listing .cp-article-card {
    flex:0 0 50%;
  }
}
@media (min-width:1200px) {
  .mod-blog-articles__listing {
    flex-wrap:nowrap;
  }
  .mod-blog-articles__listing .cp-article-card {
    flex:0 0 25%;
  }
}

/***************************************************************************/
/***************   2. _module-contact     **********************************/
/***************************************************************************/

/*--All is styled with Atomes classes--*/

/***************************************************************************/
/****************  3. _module-hero-banner-home  ****************************/
/***************************************************************************/
.hero-banner-home .cta-container .row {
  flex-flow: column-reverse;
}
.hero-banner-home .cta-container a {
  width: -webkit-fill-available;
}
.hero-banner-home .img-container {
  width: 100%;
}
.hero-banner-home .img-container img {
  min-height: 150px;
  max-height: 250px;
  margin-top:100px;
  margin-bottom:50px;
}

/* Animation */
.title-style:before {
  -webkit-animation-name: titleStyle;
  -webkit-animation-duration: 2s;
  animation-name: titleStyle;
  animation-duration: 2s;
}

@-webkit-keyframes titleStyle {
  from { width: 0 }
  to { width: 100% }
}
@keyframes titleStyle {
  from { width: 0 }
  to { width: 100% }
}

.hero-banner-home-fade {
  -webkit-animation-name: hero_banner_home_fade;
  animation-name: hero_banner_home_fade;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@-webkit-keyframes hero_banner_home_fade {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes hero_banner_home_fade {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

/*----Media queries desktop-----*/
@media (max-width:767px) {
  .hero-banner-home h1 {
    font-size: 22px;
    line-height: 1.6;
  }
}
@media (min-width:768px) {

  .hero-banner-home {
    overflow: hidden;
  }
  .hero-banner-home .content-left{
    margin-top:20%;
  }

  .hero-banner-home h1 {
    text-align: left;
    text-align: -webkit-left;
  }
  .hero-banner-home p {
    width: 60%;
  }
  .hero-banner-home .row {
    text-align: left;
  }
  .hero-banner-home .cta-container .row {
    flex-flow: wrap;
  }
  .hero-banner-home .img-container {
    width: 50%;
    max-height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: absolute;
    z-index: -1;
    right: -10%; 
    top:0;
  }
  .hero-banner-home .img-container img {
    width: 100% !important;
    height: auto !important;
    max-height: 100%;
  }
}

/***************************************************************************/
/***************   4. _module-hero-banner-service  *************************/
/***************************************************************************/
.hero-banner-service{
  margin-bottom:40px; 
}

.hero-banner-service .img-square {
  width: 60%;
  height: 80%;
}
.hero-banner-service .img-container img {
  min-height: 200px;
  max-height: 600px;
  max-width: 80%;
  vertical-align:bottom;
}
.hero-banner-service .img-container img::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background: var(--primary_color);
  z-index: -1;
  top: 0;
  left: 0;
}
.hero-banner-service .cta-container a {
  width: -webkit-fill-available;
}

.hero-banner-home__buttons {
  flex-wrap:wrap;
}
.hero-banner-home__button {
  flex:0 0 100%;
}
.hero-banner-home__button:not(:last-child) {
  padding-bottom:15px;
}
.hero-banner-home__button a {
  font-size:12px;
  font-weight:600;
  line-height:1.4;
  text-decoration:none;
  color:var(--anchor_color);
  padding:12px 16px;
  text-align:center;
  border: 1px solid var(--system_gray_color);
  transition:all .2s ease-out;
}

/* Animation */
.hero-banner-service-fade-1 {
  -webkit-animation-name: hero_banner_service_fade_1;
  animation-name: hero_banner_service_fade_1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@-webkit-keyframes hero_banner_service_fade_1 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes hero_banner_service_fade_1 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.hero-banner-service-fade-2 {
  -webkit-animation-name: hero_banner_service_fade_2;
  animation-name: hero_banner_service_fade_2;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@-webkit-keyframes hero_banner_service_fade_2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes hero_banner_service_fade_2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0)

      to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
  }
}

/*----Media queries-----*/
@media (min-width:768px) {
  .hero-banner-service{
    margin-bottom:0; 
  }

  .hero-banner-service .img-square {
    width: 48%;
    height: 75%;
    top: 13%;
    right: 0;
  }
  .hero-banner-service .img-square h6 {
    display: none;
  }
  .hero-banner-service .right-content h6 {
    padding-top: 14%;
    display: block;
  }
  .hero-banner-service .cta-container a {
    width: auto;
  }

  .hero-banner-home__buttons {
    flex-wrap:nowrap;
  }
  .hero-banner-home__button {
    flex:0 0 31%;
  }
  .hero-banner-home__button:not(:last-child) {
    padding-bottom:0px;
  }
  .hero-banner-home__button a:hover {
    background:var(--anchor_color);
    color:var(--white_color);
    border-radius:16px;
  }
  .hero-banner-home__button a:focus {
    background:var(--highlight_color);
    color:var(--anchor_color);
  }
}

/***************************************************************************/
/************   5. _module-horizontal-timeline  ****************************/
/***************************************************************************/
.mod-hor-timeline__heading {
  margin-bottom:80px;
}
.mod-hor-timeline__slider-item__inner {
  padding:20px 20px 0;
}
.mod-hor-timeline__slider {
  padding-left:20px;
  position:relative;
}
.mod-hor-timeline__slider:before {
  position:absolute;
  content:"";
  background:var(--white_color);
  height:1px;
  width:100%;
  top:3px; 
  left:0px;
}
.mod-hor-timeline__slider-item {
  position:relative;
}
.mod-hor-timeline__slider-item:before {
  content:"";
  position:absolute;
  top:0px;
  left:20px;
  background:var(--white_color);
  width:9px;
  height:9px;
  border-radius:50%;
}
.mod-hor-timeline__slider ul.slick-dots {
  margin-top:80px;
  padding-right:20px;
}
.mod-hor-timeline__slider ul.slick-dots li.slick-active .dot {
  background:var(--white_color);
}




.cursor { 
  z-index:100000001; 
  position: fixed; 
  top: 0px; 
  left:0px;  
  pointer-events: none;  
  cursor: none; 
}
.cursor .cursor__dot { 
  width: 0px;  
  height: 0px; 
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  transform:translate(-50%, -50%);  
}
.cursor .cursor__dot.cursor__dot--anim { 
  background-color:var(--primary_color); 
  width: 60px;  
  height: 60px; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  border-radius: 100%; 
  transition:all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  transform:translate(-50%, -50%); 
}
.cursor .cursor__dot svg path { 
  fill:#fff; 
  stroke:transparent; 
}


/*----Media queries Desktop-----*/
@media screen and (max-width:768px) {
  .cursor,
  .cursor_follow { display:none; }
}




@media (min-width:768px) {
  .mod-hor-timeline__slider .slick-list {
    padding:0 10% 0 0 !important;
  }
  .mod-hor-timeline__slider-item__inner {
    padding:20px 50px 0;
  }
  .mod-hor-timeline__slider-item:before {
    left:50px;
  }
}
@media (min-width:992px) {
  .mod-hor-timeline__slider:hover {
    cursor:none!important;
  }
  .mod-hor-timeline__slider {
    padding-left:90px;
  }
  .mod-hor-timeline__slider ul.slick-dots {
    padding-right:90px;
  }
}
@media (min-width:1200px) {
  .mod-hor-timeline__slider {
    padding-left:180px;
  }
  .mod-hor-timeline__slider ul.slick-dots {
    padding-right:180px;
  }
}



/***************************************************************************/
/*************  6. _module-icon-number-listing  ****************************/
/***************************************************************************/
.sc-icon-number-listing-rich-text{ 
  overflow-x:hidden; 
  padding:80px 0; 
}

.sc-icon-number-listing-rich-text .content .cta-container a {
  width: fit-content;
}

.square-last{
  position: absolute;
  top: 0;
  width: 500%;
  height: 100%;
  left: 0;
}

.sc-icon-number-listing-rich-text.bkg-blue-gray-color .cp-icon-card{
  background:var(--white_color);
}

/*----Media queries desktop-----*/
@media (min-width:768px) {
  .sc-icon-number-listing-rich-text{ 
    padding:80px 0; 
  }

  .sc-icon-number-listing-rich-text .margin-top a.cp-icon-card {
    margin-top: -20%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .sc-icon-number-listing-rich-text .margin-top a.cp-number-card {
    margin-top: -40%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .sc-icon-number-listing-rich-text .resized-content:not(:first-child):nth-child(2n+1) {
    padding-right: 0;
  }

  .sc-icon-number-listing-rich-text .resized-content:not(:first-child):nth-child(2n+1) .resized-content-target {
    width: 100%;
  }
}


/***************************************************************************/
/******************    7. _module-journey-card  ****************************/
/***************************************************************************/

/*--All is styled with Atomes classes--*/


/***************************************************************************/
/******************   8. _module-lets-talk      ****************************/
/***************************************************************************/
.mod-talk {
  position:relative;
  overflow:hidden;
  padding:60px 0px;
}

.mod-talk__heading {
  margin-left: calc(-240px/2);
}

.mod-talk__bkg-svg {
  display:none;
  position:absolute;
  top:-250px;
  bottom:-250px;
  right:-100px;
  width:35%;
}

.mod-talk__bkg-svg svg {
  height:100%;
  width:100%;
  opacity:.3;
}
.mod-talk__slider-text {
  max-width:240px;
}
.mod-talk__slider-mid {
  line-height:55px;
}
.mod-talk__cities a:before {
  height:0px!important;
}
.mod-talk__cities a:hover:before {
  height:45%!important;
}
.mod-talk__row-cities {
  margin-bottom:50px;
}
.mod-talk__cities .separator {
  color:var(--anchor_color);
}

/*---Media queries Desktop----*/
@media (min-width:992px) {
  .mod-talk {
    padding:150px 0px;
  }
  .mod-talk__slider-mid {
    line-height:75px;
  }
  .mod-talk__bkg-svg {
    display:block;
  }
}

/***************************************************************************/
/********************   9. _module-logos-slider ****************************/
/***************************************************************************/
.mod-logos__heading {
  margin-bottom:50px;
}
.mod-logos__slider img{
  max-height:160px;
  max-width:160px;
}
.mod-logos__slider.first {
  margin-bottom:50px;
}

/***************************************************************************/
/******************   10. _module-numbers-graphs    ************************/
/***************************************************************************/
.mod-numbers-graphs__heading {
  margin-bottom:0;
}

.mod-numbers-graphs__card:not(:last-child) {
  margin-bottom:50px;
}
.mod-numbers-graphs__card-inner {
  flex-wrap:wrap;
}
.mod-numbers-graphs__card-left,
.mod-numbers-graphs__card-right {
  flex: 0 0 100%;
}
.mod-numbers-graphs__card-left {
  margin-bottom:50px;
}
.mod-numbers-graphs .cp-number-graph {
  flex: 0 0 100%;
}

.mod-numbers-graphs__card-index{
  margin-bottom:0;
}

.mod-numbers-graphs__card-baseline{
  margin-bottom:20px;
}

.mod-numbers-graphs__card-index:after {
  content:"";
  display:block;
  width:20px;
  height:3px;
  background:var(--system_gray_color);
}

/*----Media queries desktop----*/
@media (min-width:768px) {
  .mod-numbers-graphs__heading {
    margin-bottom:50px;
  }

  .mod-numbers-graphs .cp-number-graph {
    flex: 0 0 50%;
  }

  .mod-numbers-graphs__card-index{
    margin-bottom:15px;
  }

}
@media (min-width:992px) {
  .mod-numbers-graphs__card-inner {
    flex-wrap:nowrap;
  }
  .mod-numbers-graphs__card-left,
  .mod-numbers-graphs__card-right {
    flex: 0 0 50%;
  }
  .mod-numbers-graphs__card-left {
    margin-bottom:0px;
    padding-right:100px;
  }
}

/***************************************************************************/
/****************      11. _module-case-studies ****************************/
/***************************************************************************/
/* slick height 100% */
.sc-our-case-studies .slick-track { 
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }
.sc-our-case-studies .slick-track .slick-slide { 
  height: inherit !important; 
}
.sc-our-case-studies .slick-track .slick-slide > div,
.sc-our-case-studies .slick-track .slick-slide > div > div,
.sc-our-case-studies .slick-track .slick-slide > div > div > div.cp-case-study { 
  height: 100% !important; 
}
/* slick */

.sc-our-case-studies .cp-case-study {
  margin: 0;
}
.sc-our-case-studies .filters-container {
  justify-content: center;
}
.sc-our-case-studies .container-padding {
  padding-left: 20px;
  padding-right: 20px;
}

.sc-our-case-studies .col-padding {
  padding-left: 5px;
  padding-right: 5px;
}

/*----media queries desktop-----*/
@media (min-width:992px) {
  .sc-our-case-studies h2,
  .sc-our-case-studies p {
    text-align: left;
  }
  .sc-our-case-studies .filters-container {
    justify-content: end;
  }
  .sc-our-case-studies .container-padding {
    padding-left: 180px;
    padding-right: 180px;
  }
}


/***************************************************************************/
/**************    12. _module-rich-text-bkg-pattern   *********************/
/***************************************************************************/

/*--All is styled with Atomes classes--*/


/***************************************************************************/
/*************    13. _module-testimonials      ****************************/
/***************************************************************************/
.mod-testimonials__heading {
  padding:115px 20px 40px 20px;
  width:90%;
}
.mod-testimonials__listing {
  position:relative;
}
.mod-testimonials__listing:before {
  content:"";
  position:absolute;
  top:0px; 
  left:0px;
  width:90%;
  height:50%;
  background:var(--primary_color);
}
.mod-testimonials__slider {
  position:relative; 
  z-index:2;
}
.mod-testimonials__slider .slick-track {
  margin-left:0px;
}

.mod-testimonials__slider ul.slick-dots {
  padding-right:20px;
}

/*----Media queries Desktop-----*/
@media (min-width:992px) {
  .mod-testimonials__heading {
    padding:100px 90px 40px 90px;
    width:75%;
  }
  .mod-testimonials__listing:before {
    width:75%;
  }
  .mod-testimonials__heading-inner {
    max-width:80%;
  }
  .mod-testimonials__listing {
    padding-left:90px;
  }
  .mod-testimonials__slider ul.slick-dots {
    padding-right:90px;
  }
  .mod-testimonials__slider .slick-track {
    margin-left:-100px;
  }
}
@media (min-width:1200px) {
  .mod-testimonials__heading {
    padding:115px 90px 40px 180px;
  }
  .mod-testimonials__listing {
    padding-left:180px;
  }
  .mod-testimonials__slider ul.slick-dots {
    padding-right:180px;
  }
  .mod-testimonials__slider .slick-track {
    margin-left:-150px;
  }
}


/***************************************************************************/
/*******************  14. _module-text-tabs-cta ****************************/
/***************************************************************************/

.mod-tabs-cta {
  position:relative;
  overflow:hidden;
}
.mod-tabs-cta__svg {
  position:absolute;
  right:-100px;
  top:20px;
  height:35%;
}
.mod-tabs-cta__svg svg {
  opacity:.5;
  height:calc(100% - 40px);
  width:auto;
}
.mod-tabs-cta__svg svg path {
  fill:#E5E5E5;
  stroke:#E5E5E5;
}
.mod-tabs-cta__heading {
  margin-bottom:50px;
}
.mod-tabs-cta__tab-heading:before {
  content:"";
  display:block;
  background:var(--primary_color);
  height:4px;
  width:30px;
  margin-bottom:5px;
}
.mod-tabs-cta__tab-list .widget-type-rich_text a:hover {
  cursor:pointer;
}
.mod-tabs-cta__tab-list .widget-type-rich_text a:before {
  height:0px;
}
.mod-tabs-cta__col {
  margin-bottom:50px;
}

.mod-tabs-cta__modal {
  flex-wrap:wrap;
}
.mod-tabs-cta__modal-left {
  flex: 0 0 100%;
}
.mod-tabs-cta__modal-left__img {
  height:215px; 
}
.mod-tabs-cta__modal-left__img img {
  object-fit:cover;
  object-position:center;
}
.mod-tabs-cta__modal-left__txt {
  height:calc(100% - 215px);
  padding:40px 30px 40px 30px;
}
.mod-tabs-cta__modal-right {
  flex: 0 0 100%;
}
.mod-tabs-cta__modal-right__inner {
  padding:40px 30px 40px 30px;
}

/*-----------------------------*/
/*-------Modals styles --------*/
/*-----------------------------*/
.modal__overlay {
  position: fixed; 
  z-index:2000; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(33, 39, 56, .55);
}
.modal__container { 
  position:relative; 
  width:80%;
  max-width:1200px;
  height:70vh; 
  border-radius: 0px; 
  overflow-y: scroll; 
  box-sizing: border-box;  
}
.modal__close { 
  border: 0; 
  position:absolute; 
  z-index:3; 
  background:;
  right:10px; 
  top:10px; 
  width:60px; 
  height:60px; 
  border-radius:50%;
  font-size:25px; 
  font-weight:bold;
  color:var(--white_color);
  background:transparent;;
  transition:all .2s ease-out; 
}
.modal__close:focus { 
  outline:none; 
}
.modal__close:hover { 
  cursor:pointer!important; 
  transform:scale(1.1);  
}

/*Modal Animation*/
@keyframes mmfadeIn { from { opacity: 0; } to { opacity: 1; }}
@keyframes mmfadeOut { from { opacity: 1; } to { opacity: 0; }}
@keyframes mmslideIn {from { transform: translateY(15%); } to { transform: translateY(0); }}
@keyframes mmslideOut {from { transform: translateY(0); } to { transform: translateY(-15%); }}
.micromodal-slide {display: none;}
.micromodal-slide.is-open {display: block;}
.micromodal-slide[aria-hidden="true"] .modal__overlay {animation: mmfadeOut .4s cubic-bezier(0.0, 0.0, 0.2, 1);}
.micromodal-slide[aria-hidden="true"] .modal__container {animation: mmslideOut .4s cubic-bezier(0, 0, .2, 1);}
.micromodal-slide[aria-hidden="false"] .modal__overlay {animation: mmfadeIn .5s cubic-bezier(0.0, 0.0, 0.2, 1);}
.micromodal-slide[aria-hidden="false"] .modal__container {animation: mmslideIn .5s cubic-bezier(0, 0, .2, 1);}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {will-change: transform;}
.modal__container::-webkit-scrollbar { 
  display: none!important; 
}

/*-----Media queries desktop-----*/
@media (min-width:768px) {
  .mod-tabs-cta__svg {
    height:100%;
  }
  .modal__container {
    height:auto;
  }
  .mod-tabs-cta__modal {
    flex-wrap:nowrap;
  }
  .mod-tabs-cta__modal-left {
    flex: 0 0 35%;
  }
  .mod-tabs-cta__modal-right {
    flex: 0 0 65%;
  }
  .mod-tabs-cta__modal-left__txt {
    height: auto;
    padding:70px 30px 90px 30px;
  }
  .mod-tabs-cta__modal-right__inner {
    padding:70px 100px 70px 50px;
  }
}
@media (min-width:992px) {
  .mod-tabs-cta__col {
    margin-bottom:0px;
  }
}

/***************************************************************************/
/*******************  15. _global-locations ****************************/
/***************************************************************************/
#map1 {
  width:100%;
  height:350px;
}

.legend__card {
  bottom:2rem!important;
  left:3rem!important;
}
.legend__icon {
  width:30px;
}
.legend__icon svg {
  height:25px;
  width:auto;
}
.legend__icon.missions svg {
  height:15px;
  width:auto;
}

@media (min-width:992px) {
  #map1 {
    height:550px;
  }
}

/***************************************************************************/
/****************  16.hero-banner-talk-to-expert  ****************************/
/***************************************************************************/
section.hero-banner-talk-to-expert {
  overflow: hidden;
}

section.hero-banner-talk-to-expert .hero-banner-talk-to-expert__title {
  justify-content: center;
}

section.hero-banner-talk-to-expert .hero-banner-talk-to-expert__address {
  margin-top: 25px;
  justify-content: center;
}

section.hero-banner-talk-to-expert .img-container {
  position: absolute;
  top: 0;
  right: -50%;
  height: 100%;
  width: 100%;
  -ms-transform: scale(2);
  transform: scale(2);
  z-index: 0;
}

/*----Media queries desktop-----*/
@media (min-width:768px) {

  section.hero-banner-talk-to-expert .hero-banner-talk-to-expert__title {
    justify-content: start;
  }

  section.hero-banner-talk-to-expert .hero-banner-talk-to-expert__address {
    margin-top: 0;
    justify-content: flex-end;
  }

  section.hero-banner-talk-to-expert .img-container img {
    -ms-transform: scaleY(2.5);
    transform: scale(2.5);
    width: 80%;
  }

}

/***************************************************************************/
/****************  17. _module-contact-talk-to-expert  ****************************/
/***************************************************************************/

/*----Media queries desktop-----*/
@media (min-width:768px) {
  section.contact-talk-to-expert .buttons-container {
    flex-flow: column;
  }

  section.contact-talk-to-expert .buttons-container a:first-child {
    margin-bottom: 10px;
  }

  section.contact-talk-to-expert .buttons-container a {
    width: 100%;
  }

}

/***************************************************************************/
/****************  18. _module-hero-banner-typ  ****************************/
/***************************************************************************/
section.hero-banner-typ {
  overflow: hidden;
}

section.hero-banner-typ h1 p {
  display: inline-block;
  font-weight: bold;
}

section.hero-banner-typ .img-container {
  position: absolute;
  top: 15%;
  right: -45%;
  height: 60%;
  width: 100%;
  z-index: -1;
}

/*----Media queries desktop-----*/
@media (min-width:768px) {
  section.hero-banner-typ .img-container {
    position: relative;
    right: 0;
  }

  section.hero-banner-typ .img-container img {
    -ms-transform: scaleY(2.5);
    transform: scale(2.5);
    width: 40%;
  }

}

/***************************************************************************/
/****************  19. _module-blog-articles-typ.module  ****************************/
/***************************************************************************/

section.typ-blog-articles .mod-blog-articles__link {
  font-size: 11px;
}

/*----Media queries desktop-----*/
@media (min-width:768px) {
  section.typ-blog-articles::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 82%;
    width: 40%;
    background-color: var(--secondary_color);
  }
  section.typ-blog-articles .mod-blog-articles__link {
    font-size: initial;
    text-align: right;
  }

}

/***************************************************************************/
/****************  20. _module-section-background-rich-text-patern ****************************/
/***************************************************************************/
.sc-jouney-card__btn a {
  position:relative;
  text-decoration:none;
}
.sc-jouney-card__btn a span {
  position:relative; 
  z-index:1;
  color:var(--highlight_color);
  font-weight:600;
  transition:all .2s ease-out;
}
.sc-jouney-card__btn a:after {
  content:"";
  position:absolute;
  z-index:0;
  bottom:0px;
  left:0px;
  width:100%;
  height:2px;
  background:var(--highlight_color);
  transition:all .2s ease-out;
}
.sc-jouney-card__btn.transparent-style a span {
  color:var(--white_color);
}


@media (min-width:992px) {
  .sc-jouney-card__btn a:hover:after {
    height:8px;
  }
  .sc-jouney-card__btn a:hover span {
    color:var(--anchor_color);
  }
  .sc-jouney-card__btn.transparent-style a:hover span {
    color:var(--white_color);
  }
}

.prev-menu {
	display: none;
}

@media screen and (max-width: 991px) {
	.prev-menu {
	display: block;
}
}