@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Comfortaa:300,400,700);





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #a38dfd !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fe525b !important;
  border-color: #fe525b !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #a38dfd !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5229fb !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a38dfd;
  border-color: #a38dfd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #a38dfd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #a38dfd;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a38dfd;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #a38dfd;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #a38dfd;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #a38dfd;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-rdrkcO83LV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdrkcO83LV .nav-item:focus,
.cid-rdrkcO83LV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rdrkcO83LV .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rdrkcO83LV .nav-item .nav-link {
    position: relative;
  }
  .cid-rdrkcO83LV .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rdrkcO83LV .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rdrkcO83LV .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdrkcO83LV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rdrkcO83LV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rdrkcO83LV .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-rdrkcO83LV .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rdrkcO83LV .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rdrkcO83LV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rdrkcO83LV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rdrkcO83LV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rdrkcO83LV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rdrkcO83LV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rdrkcO83LV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rdrkcO83LV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rdrkcO83LV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rdrkcO83LV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rdrkcO83LV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rdrkcO83LV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rdrkcO83LV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rdrkcO83LV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rdrkcO83LV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rdrkcO83LV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rdrkcO83LV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rdrkcO83LV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rdrkcO83LV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rdrkcO83LV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rdrkcO83LV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rdrkcO83LV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rdrkcO83LV .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rdrkcO83LV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rdrkcO83LV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rdrkcO83LV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rdrkcO83LV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rdrkcO83LV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rdrkcO83LV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rdrkcO83LV .dropdown-item.active,
.cid-rdrkcO83LV .dropdown-item:active {
  background-color: transparent;
}
.cid-rdrkcO83LV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rdrkcO83LV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rdrkcO83LV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rdrkcO83LV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rdrkcO83LV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rdrkcO83LV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rdrkcO83LV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rdrkcO83LV .navbar-buttons {
  text-align: center;
}
.cid-rdrkcO83LV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rdrkcO83LV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-rdrkcO83LV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rdrkcO83LV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rdrkcO83LV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rdrkcO83LV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rdrkcO83LV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rdrkcO83LV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rdrkcO83LV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rdrkcO83LV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rdrkcO83LV .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rdrkcO83LV a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rdrkcO83LV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rdrkcO83LV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rdrkcO83LV .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rdrkcO83LV .navbar {
    height: 77px;
  }
  .cid-rdrkcO83LV .navbar.opened {
    height: auto;
  }
  .cid-rdrkcO83LV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rdhOg9xYL1 {
  



background-image: url("../../../assets/images/fond01.jpg");
}
.cid-rdhOg9xYL1 .mbr-section-title,
.cid-rdhOg9xYL1 .mbr-section-subtitle {
  color: #879a9f;
}
.cid-rdhOg9xYL1 .mbr-section-text {
  color: #767676;
}
.cid-rdhOg9xYL1 .mbr-text,
.cid-rdhOg9xYL1 .typed-text,
.cid-rdhOg9xYL1 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-rdhOg9xYL1 .btn {
  margin-left: 4px !important;
}
.cid-rdhOg9xYL1 .animated-element {
  color: #55b993;
}
.cid-rdhOg9xYL1 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #55b993;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-rdhOg9xYL1 .mbr-section-text,
.cid-rdhOg9xYL1 .mbr-section-btn {
  text-align: left;
}
.cid-rdhOg9xYL1 .mbr-section-subtitle,
.cid-rdhOg9xYL1 .typed-text B {
  color: #ffffff;
}
.cid-rdhOg9xYL1 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-rdhOg9xYL1 .mbr-section-text,
.cid-rdhOg9xYL1 .mbr-section-btn B {
  color: #ffffff;
}
.cid-rdruuI39Qp {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #ffffff;
}
.cid-rdruuI39Qp .container-fluid {
  padding: 0 2rem;
}
.cid-rdruuI39Qp .mbr-section-title {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-rdruuI39Qp .mbr-title {
  padding: 0 1rem;
}
.cid-rdruuI39Qp .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-rdruuI39Qp .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rdruuI39Qp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-rdruuI39Qp .image-wrap {
  width: 100%;
}
.cid-rdruuI39Qp .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-rdruuI39Qp .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-rdruuI39Qp .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-rdruuI39Qp .container-fluid {
    padding: 0rem;
  }
}
.cid-rdruF6AAh7 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rdruF6AAh7 .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rdruF6AAh7 .mbr-shop .row {
  margin: 0;
}
.cid-rdruF6AAh7 .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rdruF6AAh7 .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rdruF6AAh7 .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rdruF6AAh7 .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rdruF6AAh7 .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rdruF6AAh7 .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rdruF6AAh7 .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rdruF6AAh7 .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rdruF6AAh7 .mbr-shop .hide-modal {
  display: none;
}
.cid-rdruF6AAh7 .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rdruF6AAh7 .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rdruF6AAh7 .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rdruF6AAh7 .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rdruF6AAh7 .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rdruF6AAh7 .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rdruF6AAh7 .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rdruF6AAh7 .mbr-shop .filter-by-pu,
.cid-rdruF6AAh7 .mbr-shop .filter-by-pd,
.cid-rdruF6AAh7 .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rdruF6AAh7 .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rdruF6AAh7 .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rdruF6AAh7 .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-rdruF6AAh7 .mbr-shop .galleryItem h4,
.cid-rdruF6AAh7 .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rdruF6AAh7 .mbr-shop .galleryItem h5,
.cid-rdruF6AAh7 .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-rdruF6AAh7 .mbr-shop .galleryItem p,
.cid-rdruF6AAh7 .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-rdruF6AAh7 .mbr-shop .item-button {
  text-align: center;
}
.cid-rdruF6AAh7 .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rdruF6AAh7 .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rdruF6AAh7 .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rdruF6AAh7 .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rdruF6AAh7 .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rdruF6AAh7 .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #fe525b;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-item__hided h4,
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-item__hided h5,
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rdruF6AAh7 .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rdruF6AAh7 .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rdruF6AAh7 .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rdruF6AAh7 .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rdruF6AAh7 .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rdruF6AAh7 .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rdruF6AAh7 .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-rdruF6AAh7 .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rdruF6AAh7 .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rdruF6AAh7 .mbr-shop .range-controls {
  position: relative;
}
.cid-rdruF6AAh7 .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rdruF6AAh7 .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rdruF6AAh7 .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rdruF6AAh7 .mbr-shop .toggle:hover,
.cid-rdruF6AAh7 .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rdruF6AAh7 .mbr-shop .min-toggle {
  left: 0;
}
.cid-rdruF6AAh7 .mbr-shop .max-toggle {
  right: 0;
}
.cid-rdruF6AAh7 .mbr-shop .hided-by-price {
  display: none;
}
.cid-rdruF6AAh7 .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rdruF6AAh7 .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rdruF6AAh7 .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rdruF6AAh7 .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rdruF6AAh7 .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rdruF6AAh7 .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rdruF6AAh7 .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rdruF6AAh7 .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rdruF6AAh7 .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rdruF6AAh7 .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rdruF6AAh7 .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rdruF6AAh7 .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rdruF6AAh7 .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rdruF6AAh7 .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rdruF6AAh7 .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rdruF6AAh7 .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rdruF6AAh7 .mbr-shop .shop-items .onsale,
.cid-rdruF6AAh7 .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rdruF6AAh7 .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rdruF6AAh7 .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rdruF6AAh7 .mbr-shop .price-range {
  display: inline-block;
}
.cid-rdruF6AAh7 .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rdruF6AAh7 .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rdruF6AAh7 .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rdruF6AAh7 .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rdruF6AAh7 .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rdruF6AAh7 .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rdruF6AAh7 .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rdruF6AAh7 .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rdruF6AAh7 .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rdruF6AAh7 .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rdruF6AAh7 .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rdruF6AAh7 .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rdruF6AAh7 .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rdruF6AAh7 .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rdruF6AAh7 .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rdruF6AAh7 .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rdruF6AAh7 .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rdruF6AAh7 .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rdruF6AAh7 .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rdruF6AAh7 .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rdruF6AAh7 .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rdruF6AAh7 .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rdruF6AAh7 .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rdruF6AAh7 .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rdruF6AAh7 .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rdruF6AAh7 .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rdruF6AAh7 .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rdruF6AAh7 .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rdruF6AAh7 .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rdruF6AAh7 .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rdruF6AAh7 .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rdruF6AAh7 .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rdruF6AAh7 .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rdruF6AAh7 .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-rdruF6AAh7 .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-rdruF6AAh7 .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-rdruF6AAh7 .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-rdruF6AAh7 .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
.cid-rdruF6AAh7 .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rdruF6AAh7 .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-rdhP0Y52FS {
  padding-top: 60px;
  padding-bottom: 60px;
  


background-image: url("../../../assets/images/fond02.jpg");
}
.cid-rdhP0Y52FS .container-fluid {
  padding: 0 3rem;
}
.cid-rdhP0Y52FS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-rdhP0Y52FS .card {
  display: block;
}
.cid-rdhP0Y52FS .card .card-wrapper {
  height: 1%;
}
.cid-rdhP0Y52FS .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rdhP0Y52FS .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rdhP0Y52FS .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rdhP0Y52FS .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rdhP0Y52FS .prices {
  color: #ffffff;
}
.cid-rdhP0Y52FS .oldPrice {
  text-decoration: line-through;
}
.cid-rdhP0Y52FS .oldPrice,
.cid-rdhP0Y52FS .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rdhP0Y52FS .container-fluid {
    padding: 0 1rem;
  }
  .cid-rdhP0Y52FS .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rdhP0Y52FS .mbr-text,
.cid-rdhP0Y52FS .mbr-section-btn {
  color: #7ccbf1;
}
.cid-rdhP0Y52FS .mbr-text,
.cid-rdhP0Y52FS .mbr-section-btn B {
  color: #ffffff;
}
.cid-rdhP0Y52FS .mbr-section-title,
.cid-rdhP0Y52FS .underline {
  text-align: center;
}
.cid-rdrkcO83LV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdrkcO83LV .nav-item:focus,
.cid-rdrkcO83LV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rdrkcO83LV .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rdrkcO83LV .nav-item .nav-link {
    position: relative;
  }
  .cid-rdrkcO83LV .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rdrkcO83LV .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rdrkcO83LV .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rdrkcO83LV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdrkcO83LV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rdrkcO83LV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rdrkcO83LV .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-rdrkcO83LV .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rdrkcO83LV .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rdrkcO83LV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rdrkcO83LV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rdrkcO83LV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rdrkcO83LV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rdrkcO83LV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rdrkcO83LV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rdrkcO83LV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rdrkcO83LV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rdrkcO83LV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rdrkcO83LV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rdrkcO83LV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rdrkcO83LV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rdrkcO83LV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rdrkcO83LV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rdrkcO83LV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rdrkcO83LV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rdrkcO83LV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rdrkcO83LV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rdrkcO83LV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rdrkcO83LV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rdrkcO83LV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rdrkcO83LV .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rdrkcO83LV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rdrkcO83LV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rdrkcO83LV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rdrkcO83LV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rdrkcO83LV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rdrkcO83LV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rdrkcO83LV .dropdown-item.active,
.cid-rdrkcO83LV .dropdown-item:active {
  background-color: transparent;
}
.cid-rdrkcO83LV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rdrkcO83LV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rdrkcO83LV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rdrkcO83LV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rdrkcO83LV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rdrkcO83LV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rdrkcO83LV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rdrkcO83LV .navbar-buttons {
  text-align: center;
}
.cid-rdrkcO83LV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rdrkcO83LV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-rdrkcO83LV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rdrkcO83LV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rdrkcO83LV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rdrkcO83LV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rdrkcO83LV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rdrkcO83LV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rdrkcO83LV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rdrkcO83LV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rdrkcO83LV .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rdrkcO83LV a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rdrkcO83LV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rdrkcO83LV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rdrkcO83LV .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rdrkcO83LV .navbar {
    height: 77px;
  }
  .cid-rdrkcO83LV .navbar.opened {
    height: auto;
  }
  .cid-rdrkcO83LV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rdrzwNmzOO {
  padding-top: 150px;
  padding-bottom: 150px;
  


background-image: url("../../../assets/images/fond03.jpg");
}
.cid-rdrzwNmzOO .container-fluid {
  padding: 0 3rem;
}
.cid-rdrzwNmzOO .media-container-column {
  padding: 0 2rem;
}
.cid-rdrzwNmzOO .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rdrzwNmzOO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rdryaGvRV1 {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-rdryaGvRV1 .container-fluid {
  padding: 0 3rem;
}
.cid-rdryaGvRV1 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rdryaGvRV1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-rdryaGvRV1 .card {
  margin-bottom: 2rem;
}
.cid-rdryaGvRV1 .card-img {
  width: auto !important;
}
.cid-rdryaGvRV1 .card-img .mbr-iconfont {
  color: #ffa0a4;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #ffa0a4, #a38dfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-rdryaGvRV1 .content-row {
  word-wrap: break-word;
}
.cid-rdryaGvRV1 .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rdryaGvRV1 .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-rdryaGvRV1 .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-rdryaGvRV1 .card-title {
  color: #fe525b;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rdryaGvRV1 .card-title,
  .cid-rdryaGvRV1 .card-box {
    text-align: left;
  }
  .cid-rdryaGvRV1 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rdrAKr7tpD .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdrAKr7tpD .nav-item:focus,
.cid-rdrAKr7tpD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rdrAKr7tpD .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rdrAKr7tpD .nav-item .nav-link {
    position: relative;
  }
  .cid-rdrAKr7tpD .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rdrAKr7tpD .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rdrAKr7tpD .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rdrAKr7tpD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdrAKr7tpD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rdrAKr7tpD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rdrAKr7tpD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rdrAKr7tpD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rdrAKr7tpD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdrAKr7tpD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rdrAKr7tpD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rdrAKr7tpD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-rdrAKr7tpD .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rdrAKr7tpD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rdrAKr7tpD .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rdrAKr7tpD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rdrAKr7tpD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rdrAKr7tpD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rdrAKr7tpD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rdrAKr7tpD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rdrAKr7tpD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rdrAKr7tpD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rdrAKr7tpD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rdrAKr7tpD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rdrAKr7tpD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rdrAKr7tpD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rdrAKr7tpD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rdrAKr7tpD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rdrAKr7tpD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rdrAKr7tpD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rdrAKr7tpD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rdrAKr7tpD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rdrAKr7tpD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rdrAKr7tpD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rdrAKr7tpD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rdrAKr7tpD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rdrAKr7tpD .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rdrAKr7tpD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rdrAKr7tpD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rdrAKr7tpD .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rdrAKr7tpD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rdrAKr7tpD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rdrAKr7tpD .dropdown-item.active,
.cid-rdrAKr7tpD .dropdown-item:active {
  background-color: transparent;
}
.cid-rdrAKr7tpD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rdrAKr7tpD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rdrAKr7tpD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rdrAKr7tpD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rdrAKr7tpD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rdrAKr7tpD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rdrAKr7tpD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rdrAKr7tpD .navbar-buttons {
  text-align: center;
}
.cid-rdrAKr7tpD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rdrAKr7tpD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #096693;
}
.cid-rdrAKr7tpD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rdrAKr7tpD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rdrAKr7tpD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rdrAKr7tpD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rdrAKr7tpD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rdrAKr7tpD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rdrAKr7tpD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rdrAKr7tpD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rdrAKr7tpD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rdrAKr7tpD a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rdrAKr7tpD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rdrAKr7tpD .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rdrAKr7tpD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rdrAKr7tpD .navbar {
    height: 77px;
  }
  .cid-rdrAKr7tpD .navbar.opened {
    height: auto;
  }
  .cid-rdrAKr7tpD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rdrAKtODdV {
  


background-image: url("../../../assets/images/fond04.jpg");
}
.cid-rdrAKtODdV .mbr-section-title,
.cid-rdrAKtODdV .mbr-section-subtitle {
  color: #879a9f;
}
.cid-rdrAKtODdV .mbr-section-text {
  color: #767676;
}
.cid-rdrAKtODdV .mbr-text,
.cid-rdrAKtODdV .typed-text,
.cid-rdrAKtODdV .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-rdrAKtODdV .btn {
  margin-left: 4px !important;
}
.cid-rdrAKtODdV .animated-element {
  color: #ffef00;
}
.cid-rdrAKtODdV .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffef00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-rdrAKtODdV .mbr-section-text,
.cid-rdrAKtODdV .mbr-section-btn {
  text-align: left;
}
.cid-rdrAKtODdV .mbr-section-subtitle,
.cid-rdrAKtODdV .typed-text B {
  color: #ffffff;
}
.cid-rdrAKtODdV .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-rdrAKtODdV .mbr-section-text,
.cid-rdrAKtODdV .mbr-section-btn B {
  color: #ffffff;
}
.cid-rdrAKwTCf8 {
  padding-top: 90px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rdrAKwTCf8 .container-fluid {
  padding: 0 2rem;
}
.cid-rdrAKwTCf8 .mbr-section-title {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-rdrAKwTCf8 .mbr-title {
  padding: 0 1rem;
}
.cid-rdrAKwTCf8 .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-rdrAKwTCf8 .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rdrAKwTCf8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-rdrAKwTCf8 .image-wrap {
  width: 100%;
}
.cid-rdrAKwTCf8 .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-rdrAKwTCf8 .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-rdrAKwTCf8 .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-rdrAKwTCf8 .container-fluid {
    padding: 0rem;
  }
}
.cid-rdrAKFz8il {
  padding-top: 90px;
  padding-bottom: 60px;
  


background-image: url("../../../assets/images/fond05.jpg");
}
.cid-rdrAKFz8il .container-fluid {
  padding: 0 3rem;
}
.cid-rdrAKFz8il .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-rdrAKFz8il .card {
  display: block;
}
.cid-rdrAKFz8il .card .card-wrapper {
  height: 1%;
}
.cid-rdrAKFz8il .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rdrAKFz8il .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rdrAKFz8il .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rdrAKFz8il .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rdrAKFz8il .prices {
  color: #ffffff;
}
.cid-rdrAKFz8il .oldPrice {
  text-decoration: line-through;
}
.cid-rdrAKFz8il .oldPrice,
.cid-rdrAKFz8il .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rdrAKFz8il .container-fluid {
    padding: 0 1rem;
  }
  .cid-rdrAKFz8il .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rdrAKFz8il .mbr-text,
.cid-rdrAKFz8il .mbr-section-btn {
  color: #7ccbf1;
}
.cid-rdrAKFz8il .mbr-text,
.cid-rdrAKFz8il .mbr-section-btn B {
  color: #ffffff;
}
.cid-rdrAKFz8il .mbr-section-title,
.cid-rdrAKFz8il .underline {
  text-align: center;
}
.cid-rdsI8rPD6k .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdsI8rPD6k .nav-item:focus,
.cid-rdsI8rPD6k .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rdsI8rPD6k .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rdsI8rPD6k .nav-item .nav-link {
    position: relative;
  }
  .cid-rdsI8rPD6k .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rdsI8rPD6k .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rdsI8rPD6k .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rdsI8rPD6k .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdsI8rPD6k .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rdsI8rPD6k .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rdsI8rPD6k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rdsI8rPD6k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rdsI8rPD6k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rdsI8rPD6k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rdsI8rPD6k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rdsI8rPD6k .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-rdsI8rPD6k .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rdsI8rPD6k .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rdsI8rPD6k .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rdsI8rPD6k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rdsI8rPD6k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rdsI8rPD6k .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rdsI8rPD6k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rdsI8rPD6k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rdsI8rPD6k .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rdsI8rPD6k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rdsI8rPD6k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rdsI8rPD6k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rdsI8rPD6k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rdsI8rPD6k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rdsI8rPD6k .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rdsI8rPD6k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rdsI8rPD6k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rdsI8rPD6k .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rdsI8rPD6k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rdsI8rPD6k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rdsI8rPD6k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rdsI8rPD6k .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rdsI8rPD6k .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rdsI8rPD6k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rdsI8rPD6k .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rdsI8rPD6k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rdsI8rPD6k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rdsI8rPD6k .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rdsI8rPD6k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rdsI8rPD6k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rdsI8rPD6k .dropdown-item.active,
.cid-rdsI8rPD6k .dropdown-item:active {
  background-color: transparent;
}
.cid-rdsI8rPD6k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rdsI8rPD6k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rdsI8rPD6k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rdsI8rPD6k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rdsI8rPD6k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rdsI8rPD6k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rdsI8rPD6k ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rdsI8rPD6k .navbar-buttons {
  text-align: center;
}
.cid-rdsI8rPD6k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rdsI8rPD6k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffef00;
}
.cid-rdsI8rPD6k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rdsI8rPD6k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rdsI8rPD6k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rdsI8rPD6k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rdsI8rPD6k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rdsI8rPD6k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rdsI8rPD6k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rdsI8rPD6k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rdsI8rPD6k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rdsI8rPD6k a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rdsI8rPD6k .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rdsI8rPD6k .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rdsI8rPD6k .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rdsI8rPD6k .navbar {
    height: 77px;
  }
  .cid-rdsI8rPD6k .navbar.opened {
    height: auto;
  }
  .cid-rdsI8rPD6k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rdsJfOJToP {
  background: #ffffff;
}
.cid-rdsJfOJToP .container-fluid {
  padding: 0 3rem;
}
.cid-rdsJfOJToP .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rdsJfOJToP .container-fluid {
    padding: 0 1rem;
  }
  .cid-rdsJfOJToP .video-block {
    width: 100% !important;
  }
}
.cid-rdsKPiVHtF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rdsKPiVHtF .container-fluid {
  padding: 0 3rem;
}
.cid-rdsKPiVHtF .mbr-section-title {
  margin-bottom: 1.5em;
}
.cid-rdsKPiVHtF .input-main {
  width: 99.6%;
  margin-left: .1em;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rdsKPiVHtF .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-rdsKPiVHtF .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-rdsKPiVHtF .input-wrap input {
  border: 1px solid #ddd;
  border-radius: 22px;
  background-color: #efefef;
  padding: 18px 25px;
  width: 96%;
}
.cid-rdsKPiVHtF .form-group {
  padding: 0;
}
.cid-rdsKPiVHtF .form-group textarea {
  background-color: #efefef;
  border-radius: 22px;
  padding: 1rem;
  width: 98%;
}
.cid-rdsKPiVHtF .btn-row {
  padding-left: 0;
}
.cid-rdsKPiVHtF .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-rdsKPiVHtF .container-fluid {
    padding: 0 1rem;
  }
  .cid-rdsKPiVHtF .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-rdsKfg8pD0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rdsKfg8pD0 .container-fluid {
  padding: 0 3rem;
}
.cid-rdsKfg8pD0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #a38dfd 50%, #fe525b 120%);
  display: inline-block;
}
.cid-rdsKfg8pD0 .mbr-section-title {
  color: #000000;
}
.cid-rdsKfg8pD0 .mbr-section-subtitle {
  color: #000000;
}
.cid-rdsKfg8pD0 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-rdsKfg8pD0 .header-text {
  padding: 2rem 1rem !important;
}
.cid-rdsKfg8pD0 .card {
  border-radius: 25px;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-rdsKfg8pD0 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-rdsKfg8pD0 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-rdsKfg8pD0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rdsKfg8pD0 .card .card-header a.panel-title:hover .sign {
  background-color: #a38dfd !important;
}
.cid-rdsKfg8pD0 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #ffa0a4;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-rdsKfg8pD0 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rdsKfg8pD0 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-rdsKfg8pD0 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-rdsKfg8pD0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rdsKfg8pD0 .header-text {
    padding: 1rem !important;
  }
  .cid-rdsKfg8pD0 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-rdsKfg8pD0 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-rdsKfg8pD0 .panel-group {
    padding: 0;
  }
}
