@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Comfortaa:300,400,500,600,700&display=swap);





body {
  font-family: Poppins;
}
.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', display;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  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 {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #57c4bf !important;
}
.bg-info {
  background-color: #fbbb04 !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: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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: #4d7361;
  border-color: #4d7361;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #6e9e88 !important;
  border-color: #6e9e88 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #4d7361 !important;
  border-color: #4d7361 !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: #4d7361 !important;
  border-color: #4d7361 !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: #b08303;
  border-color: #b08303;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #fbbb04 !important;
  border-color: #fbbb04 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b08303 !important;
  border-color: #b08303 !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: #b08303 !important;
  border-color: #b08303 !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: #369994;
  border-color: #369994;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #57c4bf !important;
  border-color: #57c4bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #369994 !important;
  border-color: #369994 !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: #369994 !important;
  border-color: #369994 !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: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.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: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #6e9e88;
  border-color: #6e9e88;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #436354;
  color: #436354 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #6e9e88;
  border-color: #6e9e88;
}
.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: #6e9e88 !important;
  border-color: #6e9e88 !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: #fbbb04;
  border-color: #fbbb04;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #977002;
  color: #977002 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #fbbb04;
  border-color: #fbbb04;
}
.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: #fbbb04 !important;
  border-color: #fbbb04 !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: #57c4bf;
  border-color: #57c4bf;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #2f8682;
  color: #2f8682 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #57c4bf;
  border-color: #57c4bf;
}
.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: #57c4bf !important;
  border-color: #57c4bf !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: #ffffff !important;
}
.text-secondary {
  color: #6e9e88 !important;
}
.text-success {
  color: #57c4bf !important;
}
.text-info {
  color: #fbbb04 !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: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #436354 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #2f8682 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #977002 !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: #57c4bf;
}
.alert-info {
  background-color: #fbbb04;
}
.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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.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: #b5e5e3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fef1cd;
}
.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 a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 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;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #6e9e88 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-sfty4KWn8q .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: 0.5rem;
  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);
  transition: all 0.25s ease-in-out;
}
.cid-sfty4KWn8q .nav-item:focus,
.cid-sfty4KWn8q .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sfty4KWn8q .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sfty4KWn8q .nav-item .nav-link {
    position: relative;
  }
  .cid-sfty4KWn8q .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #6e9e88);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sfty4KWn8q .nav-item.open .nav-link::before {
    bottom: 0.2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sfty4KWn8q .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfty4KWn8q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-sfty4KWn8q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sfty4KWn8q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfty4KWn8q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfty4KWn8q .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sfty4KWn8q .navbar .mbr-overlay {
  z-index: -1;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sfty4KWn8q .navbar.opened .mbr-overlay {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sfty4KWn8q .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
  line-height: 1.6;
}
.cid-sfty4KWn8q .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-sfty4KWn8q .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sfty4KWn8q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sfty4KWn8q .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sfty4KWn8q .navbar.collapsed .navbar-collapse.show,
.cid-sfty4KWn8q .navbar.collapsed .navbar-collapse.collapsing {
  transition: all 0.3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sfty4KWn8q .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sfty4KWn8q .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sfty4KWn8q .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfty4KWn8q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfty4KWn8q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sfty4KWn8q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sfty4KWn8q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfty4KWn8q .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sfty4KWn8q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sfty4KWn8q .navbar.collapsed .right-menu,
.cid-sfty4KWn8q .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sfty4KWn8q .navbar .navbar-collapse.show,
  .cid-sfty4KWn8q .navbar .navbar-collapse.collapsing {
    transition: all 0.3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sfty4KWn8q .navbar .navbar-collapse.show .brand-container,
  .cid-sfty4KWn8q .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sfty4KWn8q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfty4KWn8q .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfty4KWn8q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfty4KWn8q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sfty4KWn8q .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sfty4KWn8q .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfty4KWn8q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfty4KWn8q .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sfty4KWn8q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sfty4KWn8q .navbar .right-menu,
  .cid-sfty4KWn8q .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sfty4KWn8q .navbar.navbar-short {
  min-height: 60px;
}
.cid-sfty4KWn8q .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-sfty4KWn8q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfty4KWn8q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfty4KWn8q .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfty4KWn8q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfty4KWn8q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfty4KWn8q .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sfty4KWn8q .dropdown-item.active,
.cid-sfty4KWn8q .dropdown-item:active {
  background-color: transparent;
}
.cid-sfty4KWn8q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sfty4KWn8q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sfty4KWn8q .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sfty4KWn8q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sfty4KWn8q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfty4KWn8q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfty4KWn8q ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sfty4KWn8q ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sfty4KWn8q .navbar-buttons {
  margin-left: auto;
}
.cid-sfty4KWn8q button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sfty4KWn8q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sfty4KWn8q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sfty4KWn8q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sfty4KWn8q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sfty4KWn8q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sfty4KWn8q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sfty4KWn8q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
  width: 20px;
  right: -2px;
}
.cid-sfty4KWn8q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
  width: 20px;
  left: -2px;
}
.cid-sfty4KWn8q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sfty4KWn8q .navbar-dropdown {
  position: fixed;
}
.cid-sfty4KWn8q a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sfty4KWn8q .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sfty4KWn8q .right-menu,
.cid-sfty4KWn8q .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sfty4KWn8q .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sfty4KWn8q .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sfty4KWn8q .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sfty4KWn8q .menu-top {
  text-align: center;
  width: 100%;
  background-color: #6e9e88;
  padding: 0.5rem 0;
}
.cid-sfty4KWn8q .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sfty4KWn8q .card-wrapper {
  z-index: 3;
}
.cid-sfty4KWn8q .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sfty4KWn8q .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfty4KWn8q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sftxWD0Cpl {
  padding-top: 180px;
  background-image: url("../../../assets/images/55227543-s-848x565.jpg");
}
.cid-sftxWD0Cpl .container {
  margin-bottom: 15%;
}
.cid-sftxWD0Cpl .content-container .btn-bgr {
  z-index: 0;
}
.cid-sftxWD0Cpl .container-boxes {
  padding-bottom: 15px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sftxWD0Cpl .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-sftxWD0Cpl .box-item:first-child {
  background-color: #6e9e88;
  margin-top: -200px;
}
.cid-sftxWD0Cpl .box-item:nth-child(2) {
  background-color: #57c4bf;
}
.cid-sftxWD0Cpl .box-item:last-child {
  background-color: #fbbb04;
}
.cid-sftxWD0Cpl .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sftxWD0Cpl .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sftxWD0Cpl .box-list li:last-child {
  border-bottom: none;
}
.cid-sftxWD0Cpl .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sftxWD0Cpl .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sftxWD0Cpl .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sftxWD0Cpl .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-sftxWD0Cpl .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sftxWD0Cpl .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-sftxWD0Cpl .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sftxWD0Cpl .mbr-text,
.cid-sftxWD0Cpl .mbr-section-btn {
  color: #232323;
}
.cid-sftxWD0Cpl H1 {
  color: #232323;
}
.cid-sfyLZdsDYY {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sfyLZdsDYY .container-fluid {
  padding: 0 3rem;
}
.cid-sfyLZdsDYY .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-sfyLZdsDYY svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-sfyLZdsDYY .signature > span {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sfyLZdsDYY .blockquote-quote {
    text-align: left;
  }
  .cid-sfyLZdsDYY .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sfyLZdsDYY .mbr-text {
  text-align: right;
}
.cid-sfygxkxzfw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfygxkxzfw .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #6e9e88;
}
.cid-sfygxkxzfw img {
  width: 100%;
}
.cid-sfygxkxzfw p {
  margin-top: 6rem;
}
.cid-sfygxkxzfw .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sfygxkxzfw .content-wrapper {
  padding-top: 6rem;
}
.cid-sfygxkxzfw h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sfygxkxzfw .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sfygxkxzfw p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sfygxkxzfw .back {
    width: 100%;
    height: 75%;
  }
  .cid-sfygxkxzfw .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-sfygxkxzfw p {
    margin-top: 4rem;
  }
}
.cid-sfygxkxzfw .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-sfygxkxzfw .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-sfygxkxzfw .content-wrapper {
    padding-right: 3rem;
  }
  .cid-sfygxkxzfw h4 {
    right: 2rem;
  }
}
.cid-sg3ldnjLWL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sg3ldnjLWL .mbr-text,
.cid-sg3ldnjLWL blockquote {
  color: #232323;
}
.cid-sfygBa8V2H {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfygBa8V2H .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-sfygBa8V2H .modal-body .close {
  background: #1b1b1b;
}
.cid-sfygBa8V2H .modal-body .close span {
  font-style: normal;
}
.cid-sfygBa8V2H .carousel-inner > .active,
.cid-sfygBa8V2H .carousel-inner > .next,
.cid-sfygBa8V2H .carousel-inner > .prev {
  display: flex;
}
.cid-sfygBa8V2H .carousel-control .icon-next,
.cid-sfygBa8V2H .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sfygBa8V2H .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sfygBa8V2H .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sfygBa8V2H .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-sfygBa8V2H .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sfygBa8V2H .boxed-slider > div {
  position: relative;
}
.cid-sfygBa8V2H .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-sfygBa8V2H .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sfygBa8V2H .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sfygBa8V2H .mbr-table-cell {
  padding: 0;
}
.cid-sfygBa8V2H .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sfygBa8V2H .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sfygBa8V2H .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-sfygBa8V2H .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-sfygBa8V2H .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-sfygBa8V2H .carousel-item .container {
    width: 100%;
  }
}
.cid-sfygBa8V2H .carousel-item-next.carousel-item-left,
.cid-sfygBa8V2H .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-sfygBa8V2H .active.carousel-item-right,
.cid-sfygBa8V2H .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-sfygBa8V2H .active.carousel-item-left,
.cid-sfygBa8V2H .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-sfygBa8V2H .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sfygBa8V2H .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfygBa8V2H .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfygBa8V2H .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sfygBa8V2H .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sfygBa8V2H .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sfygBa8V2H .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sfygBa8V2H .mbr-slider .carousel-indicators li.active,
.cid-sfygBa8V2H .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sfygBa8V2H .mbr-slider .carousel-indicators li::after,
.cid-sfygBa8V2H .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sfygBa8V2H .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sfygBa8V2H .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sfygBa8V2H .mbr-slider > .container img {
  width: 100%;
}
.cid-sfygBa8V2H .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sfygBa8V2H .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sfygBa8V2H .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sfygBa8V2H .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sfygBa8V2H .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sfygBa8V2H .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sfygBa8V2H .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sfygBa8V2H .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-sfygBa8V2H .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sfygBa8V2H .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sfygBa8V2H .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sfygBa8V2H .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sfygBa8V2H .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sfygBa8V2H .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sfygBa8V2H .carousel-inner {
  height: 100%;
}
.cid-sfygBa8V2H .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sfygBa8V2H .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 600px;
  overflow: hidden;
}
.cid-sfygBa8V2H .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-sfygBa8V2H .content-slider-wrap {
  width: 100%;
}
.cid-sg3mcqTISV {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sg3mcqTISV .container-fluid {
  padding: 0 3rem;
}
.cid-sg3mcqTISV .media-container-column {
  padding: 0 2rem;
}
.cid-sg3mcqTISV .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #6e9e88;
}
@media (max-width: 767px) {
  .cid-sg3mcqTISV .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sg3lRmKrVM {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sg3lRmKrVM H1 {
  color: #6e9e88;
}
.cid-sg3lRmKrVM .mbr-text,
.cid-sg3lRmKrVM .mbr-section-btn {
  color: #716c80;
}
.cid-sg3lRmKrVM img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-sg3lRmKrVM .col-lg-6 {
    padding: 0 2rem;
  }
}
.cid-sg3v5mrDPz {
  padding-top: 90px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/wp-20170728-20-38-16-pro-2000x1127.jpg");
}
.cid-sg3v5mrDPz .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #ffffff;
}
.cid-sg3v5mrDPz .block {
  background-color: #57c4bf;
}
.cid-sg3v5mrDPz img {
  width: 100%;
}
.cid-sg3v5mrDPz .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
  display: flex;
  justify-content: flex-end;
}
.cid-sg3v5mrDPz .content {
  max-width: 600px;
}
.cid-sg3v5mrDPz h4 {
  position: absolute;
  transform: rotate(270deg);
  transform-origin: bottom left;
  left: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sg3v5mrDPz .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sg3v5mrDPz h4 {
    left: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sg3v5mrDPz .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sg3v5mrDPz h4 {
    left: 2rem;
    bottom: 30%;
  }
  .cid-sg3v5mrDPz .content-wrapper {
    padding-left: 3rem;
  }
}
.cid-sg3xb0E8Ti {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sg3xb0E8Ti H1 {
  color: #57c4bf;
}
.cid-sg3xb0E8Ti .mbr-text,
.cid-sg3xb0E8Ti .mbr-section-btn {
  color: #716c80;
}
.cid-sg3xb0E8Ti img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-sg3xb0E8Ti .col-lg-6 {
    padding: 0 2rem;
  }
}
.cid-sg3qEaLGBO {
  padding-top: 150px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/spas-terrasse-1600x1000.jpg");
}
.cid-sg3qEaLGBO .container-fluid {
  padding: 0 3rem;
}
.cid-sg3qEaLGBO .media-container-column {
  padding: 0 2rem;
}
.cid-sg3qEaLGBO .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-sg3qEaLGBO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sg3sH86xL7 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fbbb04;
}
.cid-sg3sH86xL7 .mbr-overlay {
  background: #ffa0a4;
  background: linear-gradient(45deg, #ffa0a4, #000000);
  background: radial-gradient(#ffa0a4, #000000);
}
.cid-sg3sH86xL7 .mbr-section-title {
  margin: 0;
}
.cid-sg3sH86xL7 .mbr-text,
.cid-sg3sH86xL7 .mbr-section-btn {
  text-align: left;
}
.cid-sg3FtvSDwh {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 400px) {
  .cid-sg3FtvSDwh h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sg3FtvSDwh h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-sg3FtvSDwh .media-container-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-sg3FtvSDwh .socicon-bg-facebook {
  color: #3e5b98;
}
.cid-sg3FtvSDwh .socicon-bg-twitter {
  color: #4da7de;
}
.cid-sg3FtvSDwh .socicon-bg-googleplus {
  color: #dd4b39;
}
.cid-sg3FtvSDwh .socicon-bg-vkontakte {
  color: #5a7fa6;
}
.cid-sg3FtvSDwh .socicon-bg-odnoklassniki {
  color: #f48420;
}
.cid-sg3FtvSDwh .socicon-bg-pinterest {
  color: #c92619;
}
.cid-sg3FtvSDwh .socicon-bg-mail {
  color: #134785;
}
.cid-sg3FtvSDwh .btn-social {
  border: none !important;
}
.cid-sg3FtvSDwh .btn-social:hover {
  color: #000000;
  background: #ffffff;
}
.cid-sg3FtvSDwh [class^="socicon-"]:before,
.cid-sg3FtvSDwh [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-sg3FtvSDwh .btn {
    font-size: 20px !important;
  }
}
.cid-sg3FtvSDwh .mbr-section-title {
  color: #6e9e88;
}
.cid-siAyj41qWw {
  overflow-x: hidden !important;
}
.cid-siAyj41qWw .container-fluid {
  padding: 0 3rem;
}
.cid-siAyj41qWw .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/79947446-long-1694x565.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-siAyj41qWw .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-siAyj41qWw .mbr-overlay {
  z-index: 1;
}
.cid-siAyj41qWw .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-siAyj41qWw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-siAyj41qWw .mbr-section-title {
  color: #ffffff;
}
.cid-siAyj41qWw .mbr-section-subtitle,
.cid-siAyj41qWw .mbr-section-btn {
  color: #000000;
}
.cid-sfyogaJjEP {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sfyogaJjEP .container-fluid {
  padding: 0 3rem;
}
.cid-sfyogaJjEP .media-container-column {
  padding: 0 2rem;
}
.cid-sfyogaJjEP .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #6e9e88;
}
@media (max-width: 767px) {
  .cid-sfyogaJjEP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-siAfdFXA9d {
  padding-top: 0px;
  padding-bottom: 0px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-siAfdFXA9d .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siAfdFXA9d .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siAfdFXA9d .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siAfdFXA9d .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siAfdFXA9d .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #6e9e88;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siAfdFXA9d .icon-focus {
  display: none;
}
.cid-siAfdFXA9d .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-siAfdFXA9d ul {
  font-size: 0;
}
.cid-siAfdFXA9d .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-siAfdFXA9d .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-siAfdFXA9d .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #6e9e88);
}
.cid-siAfdFXA9d .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-siAfdFXA9d .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-siAfdFXA9d .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-siAfdFXA9d .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-siAfdFXA9d .btn:hover {
  background: transparent !important;
}
.cid-siAfdFXA9d .btn:hover:before {
  background: transparent !important;
}
.cid-siAfdFXA9d .btn:before {
  background-color: transparent !important;
}
.cid-siAfdFXA9d .btn:focus {
  box-shadow: none;
}
.cid-siAfdFXA9d .mbr-section-title {
  position: relative;
  z-index: 1;
  color: #6e9e88;
}
.cid-siAhkz6z9o {
  padding-top: 0px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-siAhkz6z9o .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siAhkz6z9o .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siAhkz6z9o .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siAhkz6z9o .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siAhkz6z9o .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #6e9e88;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siAhkz6z9o .icon-focus {
  display: none;
}
.cid-siAhkz6z9o .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-siAhkz6z9o ul {
  font-size: 0;
}
.cid-siAhkz6z9o .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-siAhkz6z9o .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-siAhkz6z9o .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #6e9e88);
}
.cid-siAhkz6z9o .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-siAhkz6z9o .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-siAhkz6z9o .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-siAhkz6z9o .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-siAhkz6z9o .btn:hover {
  background: transparent !important;
}
.cid-siAhkz6z9o .btn:hover:before {
  background: transparent !important;
}
.cid-siAhkz6z9o .btn:before {
  background-color: transparent !important;
}
.cid-siAhkz6z9o .btn:focus {
  box-shadow: none;
}
.cid-siAhkz6z9o .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-sfuxgQh8ia {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/logo-fond-1-800x400.png");
}
.cid-sfuxgQh8ia .card {
  padding: 1rem;
}
.cid-sfuxgQh8ia .card-title {
  padding: .5rem 1rem .5rem 6.5rem;
  margin-left: -2rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #6e9e88, #57c4bf);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-sfuxgQh8ia .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-sfuxgQh8ia .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-sfuxgQh8ia .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sfuxgQh8ia .card-sign {
  padding-top: .5rem;
}
.cid-sfuxgQh8ia .underline .line {
  width: 5rem;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.cid-sfuxgQh8ia .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-sfuxgQh8ia .card-title {
    text-align: center;
  }
  .cid-sfuxgQh8ia p.mbr-text,
  .cid-sfuxgQh8ia p.date {
    text-align: center;
  }
}
.cid-sfuxgQh8ia .card-box {
  background: #ffffff;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-sfuxgQh8ia .card-text,
.cid-sfuxgQh8ia .mbr-subtitle {
  color: #8d97ad;
}
.cid-sfuxgQh8ia H2 {
  color: #6e9e88;
}
.cid-sfupWeVndC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/pugnat-20-copie-2000x1500.jpg");
}
.cid-sfupWeVndC .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-sfupWeVndC .content-panel {
  padding: 3rem;
  background-color: #6e9e88;
}
@media (min-width: 767px) {
  .cid-sfupWeVndC .text-block {
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-sfupWeVndC .google-map {
  width: 100%;
  height: 30rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sfupWeVndC .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-sfupWeVndC .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-sfupWeVndC .google-map .place-card {
  margin-left: 40px !important;
}
.cid-sfut9jcBD1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sfut9jcBD1 .content {
    text-align: center;
  }
  .cid-sfut9jcBD1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sfut9jcBD1 .img-logo img {
  height: 6rem;
  width: auto;
}
.cid-sfut9jcBD1 .form-control {
  margin-bottom: 1rem;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: 0.25rem;
}
.cid-sfut9jcBD1 .form-control:focus,
.cid-sfut9jcBD1 .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #57c4bf;
}
.cid-sfut9jcBD1 .form-group {
  margin-bottom: 1rem;
}
.cid-sfut9jcBD1 input::-webkit-input-placeholder,
.cid-sfut9jcBD1 textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-sfut9jcBD1 input:-moz-placeholder,
.cid-sfut9jcBD1 textarea:-moz-placeholder {
  color: #656565;
}
.cid-sfut9jcBD1 .jq-selectbox li,
.cid-sfut9jcBD1 .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sfut9jcBD1 .jq-selectbox li:hover,
.cid-sfut9jcBD1 .jq-selectbox li.selected {
  background-color: #57c4bf;
  color: #000000;
}
.cid-sfut9jcBD1 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sfut9jcBD1 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #57c4bf;
}
.cid-sfut9jcBD1 textarea.form-control {
  resize: none;
}
.cid-sfut9jcBD1 .input-group-btn {
  display: inline-block;
}
.cid-sfut9jcBD1 .input-group-btn .btn {
  margin: 0 !important;
  padding: 0.75rem 1.5625rem !important;
  text-transform: none;
}
.cid-sfut9jcBD1 .form-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sfut9jcBD1 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sfut9jcBD1 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sfut9jcBD1 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sfut9jcBD1 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sfut9jcBD1 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sfut9jcBD1 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sfut9jcBD1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sfut9jcBD1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sfut9jcBD1 .form-control,
.cid-sfut9jcBD1 .input-group-btn .btn {
  border-radius: 3px;
}
.cid-sfut9jcBD1 .foot-title,
.cid-sfut9jcBD1 .img-logo {
  color: #000000;
}
.cid-sfut9jcBD1 P {
  color: #000000;
}
