body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.1rem;
}
.display-5 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.6rem;
}
.display-7 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.2rem;
}
/* ---- 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.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: #007000 !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #bbbbbb !important;
}
.bg-danger {
  background-color: #ffffff !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: #002400;
  border-color: #002400;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #007000 !important;
  border-color: #007000 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #002400 !important;
  border-color: #002400 !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: #002400 !important;
  border-color: #002400 !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: #959595;
  border-color: #959595;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #959595 !important;
  border-color: #959595 !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: #959595 !important;
  border-color: #959595 !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: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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: #007000;
  border-color: #007000;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #000a00;
  color: #000a00 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #007000;
  border-color: #007000;
}
.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: #007000 !important;
  border-color: #007000 !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: #bbbbbb;
  border-color: #bbbbbb;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #888888;
  color: #888888 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}
.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: #bbbbbb !important;
  border-color: #bbbbbb !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: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.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: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #007000 !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #bbbbbb !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000a00 !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: #888888 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !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: #bbbbbb;
}
.alert-danger {
  background-color: #ffffff;
}
.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: #007000;
  border-color: #007000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #007000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #00f000;
}
.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: #fbfbfb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.2rem;
}
blockquote {
  border-color: #007000;
}
/* 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: #007000;
  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: #007000;
  border-bottom-color: #007000;
}
.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: #ffffff !important;
  background-color: #007000 !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: #fe525b !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='%23007000' %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-rb0rDWu9Pf .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;
  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-rb0rDWu9Pf .nav-item:focus,
.cid-rb0rDWu9Pf .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rb0rDWu9Pf .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rb0rDWu9Pf .nav-item .nav-link {
    position: relative;
  }
  .cid-rb0rDWu9Pf .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #007000, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rb0rDWu9Pf .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rb0rDWu9Pf .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rb0rDWu9Pf .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-rb0rDWu9Pf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rb0rDWu9Pf .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rb0rDWu9Pf .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rb0rDWu9Pf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rb0rDWu9Pf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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-rb0rDWu9Pf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rb0rDWu9Pf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rb0rDWu9Pf .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #006600;
}
.cid-rb0rDWu9Pf .navbar.opened {
  transition: all .3s;
  background: #006600 !important;
}
.cid-rb0rDWu9Pf .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rb0rDWu9Pf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rb0rDWu9Pf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rb0rDWu9Pf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rb0rDWu9Pf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rb0rDWu9Pf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rb0rDWu9Pf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rb0rDWu9Pf .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-rb0rDWu9Pf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rb0rDWu9Pf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rb0rDWu9Pf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rb0rDWu9Pf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rb0rDWu9Pf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rb0rDWu9Pf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rb0rDWu9Pf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rb0rDWu9Pf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rb0rDWu9Pf .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-rb0rDWu9Pf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rb0rDWu9Pf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rb0rDWu9Pf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rb0rDWu9Pf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rb0rDWu9Pf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rb0rDWu9Pf .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rb0rDWu9Pf .navbar.navbar-short {
  background: #006600 !important;
  min-height: 60px;
}
.cid-rb0rDWu9Pf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rb0rDWu9Pf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rb0rDWu9Pf .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rb0rDWu9Pf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rb0rDWu9Pf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rb0rDWu9Pf .dropdown-item.active,
.cid-rb0rDWu9Pf .dropdown-item:active {
  background-color: transparent;
}
.cid-rb0rDWu9Pf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rb0rDWu9Pf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rb0rDWu9Pf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rb0rDWu9Pf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #006600;
}
.cid-rb0rDWu9Pf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rb0rDWu9Pf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rb0rDWu9Pf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rb0rDWu9Pf .navbar-buttons {
  text-align: center;
}
.cid-rb0rDWu9Pf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rb0rDWu9Pf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rb0rDWu9Pf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rb0rDWu9Pf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rb0rDWu9Pf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rb0rDWu9Pf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rb0rDWu9Pf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rb0rDWu9Pf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rb0rDWu9Pf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rb0rDWu9Pf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rb0rDWu9Pf .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rb0rDWu9Pf a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rb0rDWu9Pf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rb0rDWu9Pf .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rb0rDWu9Pf .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rb0rDWu9Pf .navbar {
    height: 77px;
  }
  .cid-rb0rDWu9Pf .navbar.opened {
    height: auto;
  }
  .cid-rb0rDWu9Pf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rb0KySpI1i {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rb0KySpI1i .content-slider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.cid-rb0KySpI1i .modal-body .close {
  background: #1b1b1b;
}
.cid-rb0KySpI1i .modal-body .close span {
  font-style: normal;
}
.cid-rb0KySpI1i .carousel-inner > .active,
.cid-rb0KySpI1i .carousel-inner > .next,
.cid-rb0KySpI1i .carousel-inner > .prev {
  display: flex;
}
.cid-rb0KySpI1i .carousel-control .icon-next,
.cid-rb0KySpI1i .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rb0KySpI1i .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rb0KySpI1i .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-rb0KySpI1i .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-rb0KySpI1i .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rb0KySpI1i .boxed-slider > div {
  position: relative;
}
.cid-rb0KySpI1i .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkitobject-position: center;
}
.cid-rb0KySpI1i .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-rb0KySpI1i .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rb0KySpI1i .mbr-table-cell {
  padding: 0;
}
.cid-rb0KySpI1i .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rb0KySpI1i .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rb0KySpI1i .mbr-overlay {
  z-index: 1;
}
.cid-rb0KySpI1i .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-rb0KySpI1i .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-rb0KySpI1i .carousel-item .container {
    width: 100%;
  }
}
.cid-rb0KySpI1i .carousel-item-next.carousel-item-left,
.cid-rb0KySpI1i .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rb0KySpI1i .active.carousel-item-right,
.cid-rb0KySpI1i .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rb0KySpI1i .active.carousel-item-left,
.cid-rb0KySpI1i .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rb0KySpI1i .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;
}
.cid-rb0KySpI1i .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rb0KySpI1i .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rb0KySpI1i .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-rb0KySpI1i .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rb0KySpI1i .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rb0KySpI1i .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 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-rb0KySpI1i .mbr-slider .carousel-indicators li.active,
.cid-rb0KySpI1i .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rb0KySpI1i .mbr-slider .carousel-indicators li::after,
.cid-rb0KySpI1i .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rb0KySpI1i .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rb0KySpI1i .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rb0KySpI1i .mbr-slider > .container img {
  width: 100%;
}
.cid-rb0KySpI1i .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-rb0KySpI1i .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rb0KySpI1i .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rb0KySpI1i .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rb0KySpI1i .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rb0KySpI1i .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-rb0KySpI1i .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rb0KySpI1i .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rb0KySpI1i .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rb0KySpI1i .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rb0KySpI1i .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rb0KySpI1i .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rb0KySpI1i .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rb0KySpI1i .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-rb0KySpI1i .carousel-inner {
  height: 100%;
}
.cid-rb0KySpI1i .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-rb0KySpI1i .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 400px;
  overflow: hidden;
}
.cid-rb0KySpI1i .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-rb0KySpI1i .content-slider-wrap {
  width: 100%;
}
.cid-rb0KySpI1i P {
  color: #ffffff;
}
.cid-rb14DUbikv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-rb14DUbikv .mbr-text,
.cid-rb14DUbikv blockquote {
  color: #232323;
}
.cid-rb0Ui31VZp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rb0Ui31VZp .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rb0Ui31VZp .mbr-shop .row {
  margin: 0;
}
.cid-rb0Ui31VZp .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rb0Ui31VZp .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rb0Ui31VZp .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rb0Ui31VZp .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rb0Ui31VZp .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rb0Ui31VZp .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rb0Ui31VZp .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rb0Ui31VZp .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rb0Ui31VZp .mbr-shop .hide-modal {
  display: none;
}
.cid-rb0Ui31VZp .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rb0Ui31VZp .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rb0Ui31VZp .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rb0Ui31VZp .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rb0Ui31VZp .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-rb0Ui31VZp .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rb0Ui31VZp .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rb0Ui31VZp .mbr-shop .filter-by-pu,
.cid-rb0Ui31VZp .mbr-shop .filter-by-pd,
.cid-rb0Ui31VZp .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rb0Ui31VZp .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rb0Ui31VZp .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rb0Ui31VZp .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rb0Ui31VZp .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-rb0Ui31VZp .mbr-shop .galleryItem h4,
.cid-rb0Ui31VZp .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-rb0Ui31VZp .mbr-shop .galleryItem h5,
.cid-rb0Ui31VZp .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-rb0Ui31VZp .mbr-shop .galleryItem p,
.cid-rb0Ui31VZp .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-rb0Ui31VZp .mbr-shop .item-button {
  text-align: center;
}
.cid-rb0Ui31VZp .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rb0Ui31VZp .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rb0Ui31VZp .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rb0Ui31VZp .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rb0Ui31VZp .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.08);
  top: -20px;
  right: 3px;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rb0Ui31VZp .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: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rb0Ui31VZp .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rb0Ui31VZp .mbr-shop .mbr-gallery-item__hided h4,
.cid-rb0Ui31VZp .mbr-shop .mbr-gallery-item__hided h5,
.cid-rb0Ui31VZp .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rb0Ui31VZp .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rb0Ui31VZp .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rb0Ui31VZp .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-rb0Ui31VZp .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rb0Ui31VZp .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-rb0Ui31VZp .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rb0Ui31VZp .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-rb0Ui31VZp .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rb0Ui31VZp .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rb0Ui31VZp .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rb0Ui31VZp .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rb0Ui31VZp .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rb0Ui31VZp .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-rb0Ui31VZp .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rb0Ui31VZp .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-rb0Ui31VZp .mbr-shop .range-controls {
  position: relative;
}
.cid-rb0Ui31VZp .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rb0Ui31VZp .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rb0Ui31VZp .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-rb0Ui31VZp .mbr-shop .toggle:hover,
.cid-rb0Ui31VZp .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rb0Ui31VZp .mbr-shop .min-toggle {
  left: 0;
}
.cid-rb0Ui31VZp .mbr-shop .max-toggle {
  right: 0;
}
.cid-rb0Ui31VZp .mbr-shop .hided-by-price {
  display: none;
}
.cid-rb0Ui31VZp .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rb0Ui31VZp .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rb0Ui31VZp .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rb0Ui31VZp .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rb0Ui31VZp .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rb0Ui31VZp .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rb0Ui31VZp .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rb0Ui31VZp .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rb0Ui31VZp .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rb0Ui31VZp .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rb0Ui31VZp .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rb0Ui31VZp .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-rb0Ui31VZp .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rb0Ui31VZp .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rb0Ui31VZp .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rb0Ui31VZp .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rb0Ui31VZp .mbr-shop .shop-items .onsale,
.cid-rb0Ui31VZp .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rb0Ui31VZp .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rb0Ui31VZp .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rb0Ui31VZp .mbr-shop .price-range {
  display: inline-block;
}
.cid-rb0Ui31VZp .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rb0Ui31VZp .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rb0Ui31VZp .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rb0Ui31VZp .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rb0Ui31VZp .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rb0Ui31VZp .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rb0Ui31VZp .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rb0Ui31VZp .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rb0Ui31VZp .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rb0Ui31VZp .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rb0Ui31VZp .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rb0Ui31VZp .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rb0Ui31VZp .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rb0Ui31VZp .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rb0Ui31VZp .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rb0Ui31VZp .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rb0Ui31VZp .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rb0Ui31VZp .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rb0Ui31VZp .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rb0Ui31VZp .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rb0Ui31VZp .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rb0Ui31VZp .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rb0Ui31VZp .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rb0Ui31VZp .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rb0Ui31VZp .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rb0Ui31VZp .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rb0Ui31VZp .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rb0Ui31VZp .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rb0Ui31VZp .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rb0Ui31VZp .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rb0Ui31VZp .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rb0Ui31VZp .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rb0Ui31VZp .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rb0Ui31VZp .oldprice {
  padding-left: .8rem !important;
  text-decoration: line-through;
  color: #767676;
}
.cid-rb0Ui31VZp .mbr-gallery-item .sidebar_wraper {
  position: relative;
  background: #efefef;
}
.cid-rb0Ui31VZp .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  position: absolute;
  width: 100%;
  top: -4rem;
  opacity: 0;
  transiton: opacity .5s, top .5s;
}
.cid-rb0Ui31VZp .mbr-gallery-item .sidebar_wraper .price-block {
  padding-bottom: 10px;
}
.cid-rb0Ui31VZp .mbr-gallery-item:hover .sidebar_wraper .mbr-section-btn {
  top: -5rem;
  opacity: 1;
  transition: opacity .5s, top .5s;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rb0Ui31VZp .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-rb0Ui31VZp .range-controls {
    display: block !important;
  }
}
.cid-rb0Ui31VZp .sidebar-title B {
  color: #007000;
}
.cid-rb0Ui31VZp .item-title {
  text-align: center;
}
.cid-rb0Ui31VZp .card-description DIV {
  text-align: left;
}
.cid-rb0Ui31VZp .shop-item-price,
.cid-rb0Ui31VZp .price-block {
  text-align: center;
}
.cid-rb0Ui31VZp .card-description {
  color: #000000;
}
.cid-rb0Ui31VZp .sidebar-title {
  color: #006600;
}
.cid-uH2GzCJVVE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uH2GzCJVVE .item-img {
  position: relative;
}
.cid-uH2GzCJVVE .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uH2GzCJVVE .cardbg {
  background: #efefef;
  height: 100%;
  min-height: 300px;
}
.cid-uH2GzCJVVE .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uH2GzCJVVE .image-wrapper {
  overflow: hidden;
}
.cid-uH2GzCJVVE .item1 {
  margin-bottom: 2rem !important;
}
.cid-uH2GzCJVVE .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uH2GzCJVVE .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uH2GzCJVVE .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #006600;
}
.cid-uH2GzCJVVE .item1,
.cid-uH2GzCJVVE .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uH2GzCJVVE .item1 .item:hover,
.cid-uH2GzCJVVE .item .item:hover {
  cursor: pointer;
}
.cid-uH2GzCJVVE .item1:hover .link-icon-wrapper span,
.cid-uH2GzCJVVE .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uH2GzCJVVE .card2 {
    margin-top: 1rem;
  }
}
.cid-uH2GzCJVVE .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uH2GzCJVVE .link-icon-wrapper .icon-wrap {
  background: #007000;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uH2GzCJVVE .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uH2GzCJVVE .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uH2GzCJVVE .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uH2GzCJVVE .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uH2GzCJVVE .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uH2GzCJVVE .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uH2GzCJVVE .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uH2GzCJVVE img,
.cid-uH2GzCJVVE .item-img {
  width: 100%;
}
.cid-uH2GzCJVVE .item:focus,
.cid-uH2GzCJVVE span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uH2GzCJVVE .item {
    margin-bottom: 1rem;
  }
}
.cid-uH2GzCJVVE .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uH2GzCJVVE .item-title {
  text-align: left;
  color: #000000;
}
.cid-uH2GzCJVVE .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uH2GzCJVVE .mbr-section-subtitle,
.cid-uH2GzCJVVE .subtitle-wrap,
.cid-uH2GzCJVVE .mbr-section-btn {
  text-align: left;
  color: #007000;
}
.cid-uH2GzCJVVE .mbr-text,
.cid-uH2GzCJVVE .item .mbr-section-btn {
  color: #000000;
}
.cid-rb0yZxxVSA {
  padding-top: 45px;
  padding-bottom: 30px;
  background: #efefef;
}
.cid-rb0yZxxVSA .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rb0yZxxVSA .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #007000, #fe525b);
  display: inline-block;
}
.cid-rb0yZxxVSA .container-fluid {
  padding: 0 3rem;
}
.cid-rb0yZxxVSA .mbr-iconfont {
  color: #cccccc;
  font-size: 1.6rem;
}
.cid-rb0yZxxVSA .mbr-iconfont:hover {
  color: #ffa0a4;
}
.cid-rb0yZxxVSA .image-wrap img {
  border-radius: 50%;
  width: 40%;
  height: 40%;
}
.cid-rb0yZxxVSA .mbr-title {
  margin-bottom: 0;
}
.cid-rb0yZxxVSA .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-rb0yZxxVSA .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-rb0yZxxVSA .card-wrap {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-rb0yZxxVSA .card-wrap {
    padding: 0 1rem;
  }
  .cid-rb0yZxxVSA .container-fluid {
    padding: 0 1rem;
  }
  .cid-rb0yZxxVSA .mbr-role {
    margin-top: .5rem;
  }
}
.cid-rb0yZxxVSA .mbr-role SPAN {
  color: #000000;
}
.cid-rb0yZxxVSA .mbr-role {
  color: #006600;
}
.cid-rb0yZxxVSA .mbr-section-subtitle {
  color: #767676;
}
.cid-rb0yZxxVSA .social-media,
.cid-rb0yZxxVSA .image-wrap,
.cid-rb0yZxxVSA .mbr-title {
  color: #000000;
}
.cid-rb0yZxxVSA .mbr-section-subtitle DIV {
  color: #767676;
}
.cid-srGwTeTopU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srGwTeTopU .container {
  width: 90%;
  max-width: 90%;
  padding: 0;
}
.cid-srGwTeTopU H2 {
  color: #006600;
}
.cid-srGxJgOVPf {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-srGxJgOVPf .box1 {
  background-image: url("../../../assets/images/4x4-video-thumb-1920x1080.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-srGxJgOVPf .box2 {
  background-image: url("../../../assets/images/nde-video-thumb-1920x1080.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-srGxJgOVPf .icon-wrap {
  background-color: #006600 !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-srGxJgOVPf .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-srGxJgOVPf .icon-wrap span {
  padding-left: 8px;
}
.cid-srGxJgOVPf .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-srGxJgOVPf .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-srGxJgOVPf .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-srGxJgOVPf .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-srGxJgOVPf .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-srGxJgOVPf a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-srGxJgOVPf a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-srGxJgOVPf {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cid-srGxJgOVPf .box1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-srGxJgOVPf {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-srGxJgOVPf .box1,
  .cid-srGxJgOVPf .box2 {
    height: 250px;
  }
}
.cid-rNGCsR3161 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rNGCsR3161 .container-fluid {
  padding: 0 3rem;
}
.cid-rNGCsR3161 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rNGCsR3161 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #007000, #fe525b);
  display: inline-block;
}
.cid-rNGCsR3161 .card {
  margin-bottom: 2rem;
}
.cid-rNGCsR3161 .card-img {
  width: auto !important;
}
.cid-rNGCsR3161 .card-img .mbr-iconfont {
  color: #007000;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #007000, #007000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-rNGCsR3161 .content-row {
  word-wrap: break-word;
}
.cid-rNGCsR3161 .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rNGCsR3161 .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-rNGCsR3161 .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-rNGCsR3161 .card-title {
  color: #006600;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rNGCsR3161 .card-title,
  .cid-rNGCsR3161 .card-box {
    text-align: left;
  }
  .cid-rNGCsR3161 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-s2dJaOwu5Z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #006600;
}
.cid-s2dJaOwu5Z .text-block {
  padding-right: 5rem;
}
.cid-s2dJaOwu5Z .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-s2dJaOwu5Z .underline .line {
  width: 5rem;
  height: 3px;
  background: #ffffff;
  display: inline-block;
}
.cid-s2dJaOwu5Z .social-media ul li {
  margin: 0;
  margin-left: 1rem;
}
.cid-s2dJaOwu5Z .social-media ul li .mbr-iconfont {
  color: #cccccc;
}
.cid-s2dJaOwu5Z .social-media ul li .mbr-iconfont:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-s2dJaOwu5Z .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-s2dJaOwu5Z .img-block {
    margin-bottom: 1rem;
  }
  .cid-s2dJaOwu5Z .text-block {
    padding: 0 15px;
  }
}
.cid-s2dJaOwu5Z .mbr-section-text,
.cid-s2dJaOwu5Z .underline,
.cid-s2dJaOwu5Z .social-media {
  color: #ffffff;
}
.cid-s2dJaOwu5Z .mbr-section-title {
  color: #ffef00;
}
.cid-s2dJaOwu5Z .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uH3idE76eb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uH3idE76eb .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uH3idE76eb .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #007000;
}
.cid-uH3idE76eb .svg-top .st0 {
  fill: #efefef;
}
@media (max-width: 992px) {
  .cid-uH3idE76eb .svg-top {
    width: 1000px;
  }
}
@media (max-width: 768px) {
  .cid-uH3idE76eb .text-content {
    max-width: none;
  }
}
.cid-uH3idE76eb .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #007000;
  border: 2px solid #007000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uH3idE76eb .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uH3idE76eb .mbr-iconfont-social:hover {
  background-color: #007000;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uH3idE76eb .icons {
    justify-content: center !important;
  }
  .cid-uH3idE76eb .text-content * {
    text-align: center;
  }
}
.cid-uH3idE76eb P {
  color: #007000;
  text-align: center;
}
.cid-uH3idE76eb .mbr-section-title {
  color: #007000;
  text-align: center;
}
.cid-rMJpFmeexH {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMJpFmeexH .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMJpFmeexH .carousel-control-prev,
.cid-rMJpFmeexH .carousel-control-next {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rMJpFmeexH .carousel-item.active,
.cid-rMJpFmeexH .carousel-item-next,
.cid-rMJpFmeexH .carousel-item-prev {
  display: flex;
}
.cid-rMJpFmeexH .carousel-controls a {
  transition: opacity .5s;
}
.cid-rMJpFmeexH .carousel-controls a:hover span,
.cid-rMJpFmeexH .carousel-controls a:focus span {
  opacity: 1;
}
.cid-rMJpFmeexH .carousel-controls a:hover svg,
.cid-rMJpFmeexH .carousel-controls a:focus svg {
  transition: all .25s;
  stroke-width: 3;
}
.cid-rMJpFmeexH .carousel-controls a:active svg {
  transition: all .1s;
  stroke-width: 5;
}
.cid-rMJpFmeexH .user_image {
  overflow: hidden;
  display: flex;
}
.cid-rMJpFmeexH .user_image .user_image_inner {
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: 0 auto 3rem auto;
}
.cid-rMJpFmeexH .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rMJpFmeexH .user_text {
  color: #767676;
}
.cid-rMJpFmeexH .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rMJpFmeexH .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #007000, #fe525b);
  display: inline-block;
}
.cid-rMJpFmeexH .testimonials-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rMJpFmeexH svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rMJpFmeexH .user_name {
  color: #5a31fb;
}
.cid-rMJpFmeexH .carousel-controls svg {
  height: 60px;
}
@media (max-width: 230px) {
  .cid-rMJpFmeexH .user_image_inner {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .cid-rMJpFmeexH .testimonials-quote,
  .cid-rMJpFmeexH .user_text,
  .cid-rMJpFmeexH .user_name,
  .cid-rMJpFmeexH .user_desk {
    text-align: center !important;
  }
  .cid-rMJpFmeexH .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .cid-rMJpFmeexH .mbr-section-title,
  .cid-rMJpFmeexH .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-rMJpFmeexH .carousel-control-prev span {
    right: -1rem;
  }
  .cid-rMJpFmeexH .carousel-control-next span {
    left: -1rem;
  }
  .cid-rMJpFmeexH .user-text {
    padding-right: 2rem;
  }
  .cid-rMJpFmeexH .carousel-control-prev,
  .cid-rMJpFmeexH .carousel-control-next {
    -webkit-align-items: center;
    align-items: center;
  }
}
.cid-rMJpFmeexH .user_desk {
  color: #006600;
}
.cid-rb1JkPR7ld {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rb1JkPR7ld .container-fluid {
  padding: 0 3rem;
}
.cid-rb1JkPR7ld ul.list-inline {
  margin: 0;
  align-self: center;
}
.cid-rb1JkPR7ld ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rb1JkPR7ld ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-rb1JkPR7ld ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rb1JkPR7ld .container-fluid {
    padding: 0 1rem;
  }
  .cid-rb1JkPR7ld .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rb1JkPR7ld .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rb1JkPR7ld .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #007000, #fe525b);
  display: inline-block;
}
.cid-rb1JkPR7ld .mbr-section-subtitle {
  color: #007000;
}
.cid-rb1KyJGotJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #006600;
}
.cid-rb1KyJGotJ .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rb1KyJGotJ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rb1KyJGotJ .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rb1KyJGotJ .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rb1KyJGotJ .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rb1KyJGotJ .icon-transition span:hover {
  background-color: #fe525b;
}
.cid-rb1KyJGotJ .mbr-text {
  color: #c1c1c1;
}
@media (max-width: 991px) {
  .cid-rb1KyJGotJ .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rb1KyJGotJ .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rb1KyJGotJ .mbr-text {
    margin-bottom: 1.5rem;
  }
}
