@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: 'Poppins', sans-serif;
  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: #a38dfd !important;
}
.bg-success {
  background-color: #2bb941 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1d7b2b;
  border-color: #1d7b2b;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #2bb941 !important;
  border-color: #2bb941 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1d7b2b !important;
  border-color: #1d7b2b !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: #1d7b2b !important;
  border-color: #1d7b2b !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fe525b !important;
  border-color: #fe525b !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #2bb941;
  border-color: #2bb941;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #186624;
  color: #186624 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #2bb941;
  border-color: #2bb941;
}
.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: #2bb941 !important;
  border-color: #2bb941 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #a38dfd !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #2bb941 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5229fb !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #186624 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #2bb941;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a38dfd;
  border-color: #a38dfd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a38dfd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #82e291;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
blockquote {
  border-color: #a38dfd;
}
/* 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: #a38dfd;
  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: #a38dfd;
  border-bottom-color: #a38dfd;
}
.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: #a38dfd !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='%23a38dfd' %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-tqAQgqMGMC .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tqAQgqMGMC .nav-item:focus,
.cid-tqAQgqMGMC .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tqAQgqMGMC .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tqAQgqMGMC .nav-item .nav-link {
    position: relative;
  }
  .cid-tqAQgqMGMC .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tqAQgqMGMC .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-tqAQgqMGMC .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqAQgqMGMC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tqAQgqMGMC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqAQgqMGMC .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tqAQgqMGMC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tqAQgqMGMC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tqAQgqMGMC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqAQgqMGMC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqAQgqMGMC .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-tqAQgqMGMC .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #293c40;
  background: linear-gradient(#473d3c, #293c40);
}
.cid-tqAQgqMGMC .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-tqAQgqMGMC .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tqAQgqMGMC .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tqAQgqMGMC .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tqAQgqMGMC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tqAQgqMGMC .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tqAQgqMGMC .navbar.collapsed .navbar-collapse.show,
.cid-tqAQgqMGMC .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tqAQgqMGMC .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tqAQgqMGMC .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tqAQgqMGMC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tqAQgqMGMC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqAQgqMGMC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqAQgqMGMC .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-tqAQgqMGMC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqAQgqMGMC .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tqAQgqMGMC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tqAQgqMGMC .navbar.collapsed .right-menu,
.cid-tqAQgqMGMC .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tqAQgqMGMC .navbar .navbar-collapse.show,
  .cid-tqAQgqMGMC .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tqAQgqMGMC .navbar .navbar-collapse.show .brand-container,
  .cid-tqAQgqMGMC .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tqAQgqMGMC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqAQgqMGMC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tqAQgqMGMC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqAQgqMGMC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqAQgqMGMC .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-tqAQgqMGMC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tqAQgqMGMC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqAQgqMGMC .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-tqAQgqMGMC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tqAQgqMGMC .navbar .right-menu,
  .cid-tqAQgqMGMC .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tqAQgqMGMC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqAQgqMGMC .navbar.navbar-short .mbr-overlay {
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-tqAQgqMGMC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tqAQgqMGMC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tqAQgqMGMC .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tqAQgqMGMC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqAQgqMGMC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqAQgqMGMC .dropdown-item.active,
.cid-tqAQgqMGMC .dropdown-item:active {
  background-color: transparent;
}
.cid-tqAQgqMGMC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqAQgqMGMC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqAQgqMGMC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqAQgqMGMC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #293c40;
}
.cid-tqAQgqMGMC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqAQgqMGMC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqAQgqMGMC ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tqAQgqMGMC ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tqAQgqMGMC .navbar-buttons {
  margin-left: auto;
}
.cid-tqAQgqMGMC button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqAQgqMGMC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tqAQgqMGMC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tqAQgqMGMC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tqAQgqMGMC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tqAQgqMGMC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tqAQgqMGMC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tqAQgqMGMC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tqAQgqMGMC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tqAQgqMGMC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tqAQgqMGMC .navbar-dropdown {
  position: fixed;
}
.cid-tqAQgqMGMC a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqAQgqMGMC .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tqAQgqMGMC .right-menu,
.cid-tqAQgqMGMC .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tqAQgqMGMC .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tqAQgqMGMC .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tqAQgqMGMC .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tqAQgqMGMC .menu-top {
  text-align: center;
  width: 100%;
  background-color: #2bb941;
  padding: .5rem 0;
}
.cid-tqAQgqMGMC .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tqAQgqMGMC .card-wrapper {
  z-index: 3;
}
.cid-tqAQgqMGMC .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tqAQgqMGMC .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqAQgqMGMC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqA1vqT3j0 .modal-body .close {
  background: #1b1b1b;
}
.cid-tqA1vqT3j0 .modal-body .close span {
  font-style: normal;
}
.cid-tqA1vqT3j0 .carousel-inner > .active,
.cid-tqA1vqT3j0 .carousel-inner > .next,
.cid-tqA1vqT3j0 .carousel-inner > .prev {
  display: table;
}
.cid-tqA1vqT3j0 .carousel-control .icon-next,
.cid-tqA1vqT3j0 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tqA1vqT3j0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tqA1vqT3j0 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tqA1vqT3j0 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tqA1vqT3j0 .boxed-slider > div {
  position: relative;
}
.cid-tqA1vqT3j0 .container img {
  width: 100%;
}
.cid-tqA1vqT3j0 .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-tqA1vqT3j0 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tqA1vqT3j0 .mbr-table-cell {
  padding: 0;
}
.cid-tqA1vqT3j0 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tqA1vqT3j0 .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-tqA1vqT3j0 .mbr-overlay {
  z-index: 1;
}
.cid-tqA1vqT3j0 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tqA1vqT3j0 .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-tqA1vqT3j0 .carousel-item .container {
    width: 100%;
  }
}
.cid-tqA1vqT3j0 .carousel-item-next.carousel-item-left,
.cid-tqA1vqT3j0 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-tqA1vqT3j0 .active.carousel-item-right,
.cid-tqA1vqT3j0 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-tqA1vqT3j0 .active.carousel-item-left,
.cid-tqA1vqT3j0 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-tqA1vqT3j0 .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-tqA1vqT3j0 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tqA1vqT3j0 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tqA1vqT3j0 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tqA1vqT3j0 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tqA1vqT3j0 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tqA1vqT3j0 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tqA1vqT3j0 .mbr-slider .carousel-indicators li.active,
.cid-tqA1vqT3j0 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tqA1vqT3j0 .mbr-slider .carousel-indicators li::after,
.cid-tqA1vqT3j0 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tqA1vqT3j0 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tqA1vqT3j0 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tqA1vqT3j0 .mbr-slider > .container img {
  width: 100%;
}
.cid-tqA1vqT3j0 .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-tqA1vqT3j0 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tqA1vqT3j0 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tqA1vqT3j0 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tqA1vqT3j0 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tqA1vqT3j0 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-tqA1vqT3j0 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tqA1vqT3j0 .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-tqA1vqT3j0 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tqA1vqT3j0 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tqA1vqT3j0 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tqA1vqT3j0 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tqA1vqT3j0 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tqA5q71f6R {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tqA5q71f6R .container-fluid {
  padding: 0 3rem;
}
.cid-tqA5q71f6R .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-tqA5q71f6R .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqA5q71f6R .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tqA5q71f6R .card .card-wrapper {
  height: 1%;
}
.cid-tqA5q71f6R .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-tqA5q71f6R .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tqA5q71f6R .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #2bb941;
}
.cid-tqA5q71f6R .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tqA5q71f6R .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-tqA5q71f6R .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-tqA5q71f6R .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tqA5q71f6R .mbr-section-title,
.cid-tqA5q71f6R .underline {
  text-align: center;
}
.cid-tqA5q71f6R .card-img > .img-name {
  color: #003608;
  text-align: left;
}
.cid-tqA5rdZXGS {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/novo-camuflado-1600x1052.jpg");
}
.cid-tqA5rdZXGS .card-wrapper {
  z-index: 3;
}
.cid-tqA5rdZXGS .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tqA5rdZXGS:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tqA5rdZXGS .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tqA5rdZXGS .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tqA5rdZXGS .text-block {
  text-align: right !important;
}
.cid-upNqIL5IM8 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-upNqIL5IM8 .container-fluid {
  padding: 0 3rem;
}
.cid-upNqIL5IM8 .media-container-column {
  padding: 0 2rem;
}
.cid-upNqIL5IM8 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-upNqIL5IM8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-upNhGGPcZE {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-upNhGGPcZE .mbr-shop {
  display: table;
  width: 100%;
}
.cid-upNhGGPcZE .mbr-shop .row {
  margin: 0;
}
.cid-upNhGGPcZE .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-upNhGGPcZE .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-upNhGGPcZE .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-upNhGGPcZE .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-upNhGGPcZE .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-upNhGGPcZE .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-upNhGGPcZE .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-upNhGGPcZE .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-upNhGGPcZE .mbr-shop .hide-modal {
  display: none;
}
.cid-upNhGGPcZE .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-upNhGGPcZE .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-upNhGGPcZE .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-upNhGGPcZE .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-upNhGGPcZE .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-upNhGGPcZE .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-upNhGGPcZE .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-upNhGGPcZE .mbr-shop .filter-by-pu,
.cid-upNhGGPcZE .mbr-shop .filter-by-pd,
.cid-upNhGGPcZE .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-upNhGGPcZE .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-upNhGGPcZE .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-upNhGGPcZE .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-upNhGGPcZE .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-upNhGGPcZE .mbr-shop .galleryItem h4,
.cid-upNhGGPcZE .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-upNhGGPcZE .mbr-shop .galleryItem h5,
.cid-upNhGGPcZE .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-upNhGGPcZE .mbr-shop .galleryItem p,
.cid-upNhGGPcZE .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-upNhGGPcZE .mbr-shop .item-button {
  text-align: center;
}
.cid-upNhGGPcZE .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-upNhGGPcZE .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-upNhGGPcZE .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-upNhGGPcZE .mbr-shop .sidebar-block {
  position: relative;
}
.cid-upNhGGPcZE .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-upNhGGPcZE .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: #ffa0a4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-upNhGGPcZE .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-upNhGGPcZE .mbr-shop .mbr-gallery-item__hided h4,
.cid-upNhGGPcZE .mbr-shop .mbr-gallery-item__hided h5,
.cid-upNhGGPcZE .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-upNhGGPcZE .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-upNhGGPcZE .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-upNhGGPcZE .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-upNhGGPcZE .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-upNhGGPcZE .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-upNhGGPcZE .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-upNhGGPcZE .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-upNhGGPcZE .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-upNhGGPcZE .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-upNhGGPcZE .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-upNhGGPcZE .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-upNhGGPcZE .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-upNhGGPcZE .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-upNhGGPcZE .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-upNhGGPcZE .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-upNhGGPcZE .mbr-shop .range-controls {
  position: relative;
}
.cid-upNhGGPcZE .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-upNhGGPcZE .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-upNhGGPcZE .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-upNhGGPcZE .mbr-shop .toggle:hover,
.cid-upNhGGPcZE .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-upNhGGPcZE .mbr-shop .min-toggle {
  left: 0;
}
.cid-upNhGGPcZE .mbr-shop .max-toggle {
  right: 0;
}
.cid-upNhGGPcZE .mbr-shop .hided-by-price {
  display: none;
}
.cid-upNhGGPcZE .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-upNhGGPcZE .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-upNhGGPcZE .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-upNhGGPcZE .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-upNhGGPcZE .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-upNhGGPcZE .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-upNhGGPcZE .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-upNhGGPcZE .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-upNhGGPcZE .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-upNhGGPcZE .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-upNhGGPcZE .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-upNhGGPcZE .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-upNhGGPcZE .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-upNhGGPcZE .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-upNhGGPcZE .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-upNhGGPcZE .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-upNhGGPcZE .mbr-shop .shop-items .onsale,
.cid-upNhGGPcZE .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-upNhGGPcZE .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-upNhGGPcZE .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-upNhGGPcZE .mbr-shop .price-range {
  display: inline-block;
}
.cid-upNhGGPcZE .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-upNhGGPcZE .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-upNhGGPcZE .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-upNhGGPcZE .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-upNhGGPcZE .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-upNhGGPcZE .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-upNhGGPcZE .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-upNhGGPcZE .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-upNhGGPcZE .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-upNhGGPcZE .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-upNhGGPcZE .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-upNhGGPcZE .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-upNhGGPcZE .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-upNhGGPcZE .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-upNhGGPcZE .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-upNhGGPcZE .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-upNhGGPcZE .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-upNhGGPcZE .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-upNhGGPcZE .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-upNhGGPcZE .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-upNhGGPcZE .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-upNhGGPcZE .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-upNhGGPcZE .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-upNhGGPcZE .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-upNhGGPcZE .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-upNhGGPcZE .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-upNhGGPcZE .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-upNhGGPcZE .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-upNhGGPcZE .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-upNhGGPcZE .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-upNhGGPcZE .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-upNhGGPcZE .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-upNhGGPcZE .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-upNhGGPcZE .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-upNhGGPcZE .sort-buttons {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-upNhGGPcZE .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-upNhGGPcZE .shop-item-price,
.cid-upNhGGPcZE .price-block {
  color: #000000;
}
.cid-tqBkc7PIJc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tqBkc7PIJc p {
  color: #767676;
}
.cid-tqBkc7PIJc .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tqBkc7PIJc .row-element,
.cid-tqBkc7PIJc .image-element {
  padding: 0;
}
.cid-tqBkc7PIJc .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqBkc7PIJc .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tqBkc7PIJc .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tqBkc7PIJc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tqBkc7PIJc .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tqBkc7PIJc .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tqBkc7PIJc .text-content {
    padding: 2rem 1rem;
  }
  .cid-tqBkc7PIJc .underline .line {
    height: 2px;
  }
  .cid-tqBkc7PIJc .mbr-title,
  .cid-tqBkc7PIJc .underline,
  .cid-tqBkc7PIJc .mbr-text,
  .cid-tqBkc7PIJc .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tqBkc7PIJc .mbr-title,
.cid-tqBkc7PIJc .underline {
  color: #ffffff;
}
.cid-tqBkc7PIJc .mbr-text,
.cid-tqBkc7PIJc .mbr-section-btn {
  color: #ffffff;
}
.cid-uGABgBEgxo {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-uGABgBEgxo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uGABgBEgxo ul li {
  padding: 1rem 0;
}
.cid-uGABgBEgxo ul li:hover {
  color: #a38dfd;
}
.cid-uGABgBEgxo .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-uGABgBEgxo .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-uGABgBEgxo .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-uGABgBEgxo .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uGABgBEgxo .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-uGABgBEgxo .map {
    height: auto;
  }
}
.cid-uGABgBEgxo .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uGABgBEgxo .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-uGABgBEgxo .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uGABgBEgxo .social-list a:hover {
  opacity: 1;
}
.cid-uGABgBEgxo .row-element,
.cid-uGABgBEgxo .image-element {
  padding: 0;
}
.cid-uGABgBEgxo .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uGABgBEgxo .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uGABgBEgxo .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uGABgBEgxo .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uGABgBEgxo .text-content {
    padding: 2rem 1rem;
  }
  .cid-uGABgBEgxo .underline .line {
    height: 2px;
  }
  .cid-uGABgBEgxo .mbr-title,
  .cid-uGABgBEgxo .underline,
  .cid-uGABgBEgxo .mbr-text,
  .cid-uGABgBEgxo .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uGABgBEgxo .mbr-title,
.cid-uGABgBEgxo .underline {
  color: #ffffff;
}
.cid-uGABgBEgxo .mbr-text,
.cid-uGABgBEgxo .mbr-section-btn {
  color: #ffffff;
}
.cid-uGABgBEgxo mbr-list LI {
  color: #ffffff;
}
.cid-uGABgBEgxo mbr-list {
  text-align: center;
}
.cid-uGABgBEgxo .mbr-list,
.cid-uGABgBEgxo .social-list mbr-list {
  color: #ffffff;
}
.cid-uGABgBEgxo .mbr-text {
  color: #ffffff;
}
#custom-html-1h {
  /* Type valid CSS here */
}
#custom-html-1h div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1h p {
  font-size: 60px;
  color: #777;
}
#custom-html-1h .imagem-brilho {
  transition: all 0.3s ease;
}
#custom-html-1h .imagem-brilho:hover {
  filter: brightness(1.3);
  box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.6);
}
.cid-tqAjhCo1w4 {
  padding-top: 0px;
  padding-bottom: 105px;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tqAjhCo1w4 .carousel {
  z-index: 2;
  position: relative;
}
.cid-tqAjhCo1w4 .user {
  padding: 0!important;
}
.cid-tqAjhCo1w4 .big-icon {
  top: 1rem;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #149dcc;
  opacity: 0.5;
}
.cid-tqAjhCo1w4 .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-tqAjhCo1w4 .carousel-item.active,
.cid-tqAjhCo1w4 .carousel-item-next,
.cid-tqAjhCo1w4 .carousel-item-prev {
  display: flex;
}
.cid-tqAjhCo1w4 .user_name {
  margin: 0;
}
.cid-tqAjhCo1w4 .carousel-controls a {
  font-size: 2rem;
}
.cid-tqAjhCo1w4 .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #232323;
  background: transparent;
  opacity: 0.5;
}
.cid-tqAjhCo1w4 .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-tqAjhCo1w4 ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-tqAjhCo1w4 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #232323;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-tqAjhCo1w4 .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tqAjhCo1w4 .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-tqAjhCo1w4 .user_text {
  color: #232323;
  text-align: left;
}
.cid-tqAjhCo1w4 .user_desk {
  color: #767676;
}
.cid-tqAjhCo1w4 .user_desk,
.cid-tqAjhCo1w4 .carousel-item {
  text-align: left;
}
.cid-tqAjhCo1w4 .carousel-indicators {
  margin: 0;
  margin-left: 0.5rem;
  justify-content: flex-start !important;
}
@media (max-width: 767px) {
  .cid-tqAjhCo1w4 .carousel-indicators {
    margin: auto;
    justify-content: center!important;
  }
}
.cid-tqAjhCo1w4 .carousel-control-next {
  right: -30px;
  transform: translateX(50%);
}
.cid-tqAjhCo1w4 .carousel-control-prev {
  left: -30px;
  transform: translateX(-50%);
}
.cid-tqAjL7FeLP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/foto-manobra-1-2000x1334.jpg");
}
.cid-tqAjL7FeLP .mbr-section-title span {
  display: block;
}
.cid-tqAjL7FeLP .first-column,
.cid-tqAjL7FeLP .second-column {
  margin-bottom: 1rem;
}
.cid-tqAjL7FeLP .first-column ul,
.cid-tqAjL7FeLP .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-tqAjL7FeLP .first-column ul li,
.cid-tqAjL7FeLP .second-column ul li {
  margin-bottom: 1rem;
}
.cid-tqAjL7FeLP .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-tqAjL7FeLP .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-tqAjL7FeLP .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-tqAjL7FeLP .card-support {
    text-align: center;
  }
}
.cid-tqAjL7FeLP .mbr-section-title,
.cid-tqAjL7FeLP .card-support {
  color: #ffffff;
}
.cid-tqAZ4lAaGk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #473d3c;
}
.cid-tqAZ4lAaGk p {
  text-align: center;
}
.cid-tqAZ4lAaGk .mbr-iconfont-social {
  font-size: 1rem;
  color: #000000;
}
.cid-tqAZ4lAaGk .social-list a:focus {
  text-decoration: none;
}
.cid-tqAZ4lAaGk .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 12px;
}
.cid-tqAZ4lAaGk .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tqAZ4lAaGk .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-size: 12px;
}
.cid-tqAZ4lAaGk .logo-footer {
  line-height: normal;
}
.cid-tqAZ4lAaGk .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tqAZ4lAaGk .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqAZ4lAaGk .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tqAQgqMGMC .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tqAQgqMGMC .nav-item:focus,
.cid-tqAQgqMGMC .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tqAQgqMGMC .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tqAQgqMGMC .nav-item .nav-link {
    position: relative;
  }
  .cid-tqAQgqMGMC .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tqAQgqMGMC .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-tqAQgqMGMC .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqAQgqMGMC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tqAQgqMGMC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqAQgqMGMC .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tqAQgqMGMC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tqAQgqMGMC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tqAQgqMGMC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqAQgqMGMC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqAQgqMGMC .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-tqAQgqMGMC .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #293c40;
  background: linear-gradient(#473d3c, #293c40);
}
.cid-tqAQgqMGMC .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-tqAQgqMGMC .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tqAQgqMGMC .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tqAQgqMGMC .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tqAQgqMGMC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tqAQgqMGMC .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tqAQgqMGMC .navbar.collapsed .navbar-collapse.show,
.cid-tqAQgqMGMC .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tqAQgqMGMC .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tqAQgqMGMC .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tqAQgqMGMC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tqAQgqMGMC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqAQgqMGMC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqAQgqMGMC .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-tqAQgqMGMC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqAQgqMGMC .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tqAQgqMGMC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tqAQgqMGMC .navbar.collapsed .right-menu,
.cid-tqAQgqMGMC .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tqAQgqMGMC .navbar .navbar-collapse.show,
  .cid-tqAQgqMGMC .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tqAQgqMGMC .navbar .navbar-collapse.show .brand-container,
  .cid-tqAQgqMGMC .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tqAQgqMGMC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqAQgqMGMC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tqAQgqMGMC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqAQgqMGMC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqAQgqMGMC .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-tqAQgqMGMC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tqAQgqMGMC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqAQgqMGMC .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-tqAQgqMGMC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tqAQgqMGMC .navbar .right-menu,
  .cid-tqAQgqMGMC .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tqAQgqMGMC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqAQgqMGMC .navbar.navbar-short .mbr-overlay {
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-tqAQgqMGMC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tqAQgqMGMC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tqAQgqMGMC .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tqAQgqMGMC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqAQgqMGMC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqAQgqMGMC .dropdown-item.active,
.cid-tqAQgqMGMC .dropdown-item:active {
  background-color: transparent;
}
.cid-tqAQgqMGMC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqAQgqMGMC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqAQgqMGMC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqAQgqMGMC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #293c40;
}
.cid-tqAQgqMGMC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqAQgqMGMC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqAQgqMGMC ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tqAQgqMGMC ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tqAQgqMGMC .navbar-buttons {
  margin-left: auto;
}
.cid-tqAQgqMGMC button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqAQgqMGMC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tqAQgqMGMC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tqAQgqMGMC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tqAQgqMGMC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tqAQgqMGMC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tqAQgqMGMC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tqAQgqMGMC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tqAQgqMGMC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tqAQgqMGMC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tqAQgqMGMC .navbar-dropdown {
  position: fixed;
}
.cid-tqAQgqMGMC a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqAQgqMGMC .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tqAQgqMGMC .right-menu,
.cid-tqAQgqMGMC .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tqAQgqMGMC .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tqAQgqMGMC .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tqAQgqMGMC .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tqAQgqMGMC .menu-top {
  text-align: center;
  width: 100%;
  background-color: #2bb941;
  padding: .5rem 0;
}
.cid-tqAQgqMGMC .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tqAQgqMGMC .card-wrapper {
  z-index: 3;
}
.cid-tqAQgqMGMC .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tqAQgqMGMC .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqAQgqMGMC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXWWobgTOF {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXWWobgTOF .container-fluid {
  padding: 0 3rem;
}
.cid-uXWWobgTOF .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXWWobgTOF .card {
  display: block;
}
.cid-uXWWobgTOF .card .card-wrapper {
  height: 1%;
}
.cid-uXWWobgTOF .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXWWobgTOF .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXWWobgTOF .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXWWobgTOF .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXWWobgTOF .prices {
  color: #ffffff;
}
.cid-uXWWobgTOF .oldPrice {
  text-decoration: line-through;
}
.cid-uXWWobgTOF .oldPrice,
.cid-uXWWobgTOF .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXWWobgTOF .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXWWobgTOF .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXWWobgTOF .mbr-section-title,
.cid-uXWWobgTOF .underline {
  color: #000000;
  text-align: center;
}
.cid-uXWWobgTOF .mbr-text,
.cid-uXWWobgTOF .mbr-section-btn {
  color: #000000;
}
.cid-uXWWobgTOF .prices,
.cid-uXWWobgTOF .mbr-section-btn {
  color: #000000;
}
.cid-uXWXDlXG73 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXWXDlXG73 .container-fluid {
  padding: 0 3rem;
}
.cid-uXWXDlXG73 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXWXDlXG73 .card {
  display: block;
}
.cid-uXWXDlXG73 .card .card-wrapper {
  height: 1%;
}
.cid-uXWXDlXG73 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXWXDlXG73 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXWXDlXG73 .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXWXDlXG73 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXWXDlXG73 .prices {
  color: #ffffff;
}
.cid-uXWXDlXG73 .oldPrice {
  text-decoration: line-through;
}
.cid-uXWXDlXG73 .oldPrice,
.cid-uXWXDlXG73 .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXWXDlXG73 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXWXDlXG73 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXWXDlXG73 .mbr-section-title,
.cid-uXWXDlXG73 .underline {
  color: #000000;
  text-align: center;
}
.cid-uXWXDlXG73 .mbr-text,
.cid-uXWXDlXG73 .mbr-section-btn {
  color: #000000;
}
.cid-uXWXDlXG73 .prices,
.cid-uXWXDlXG73 .mbr-section-btn {
  color: #000000;
}
.cid-uXWWoPpqpB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXWWoPpqpB .container-fluid {
  padding: 0 3rem;
}
.cid-uXWWoPpqpB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXWWoPpqpB .card {
  display: block;
}
.cid-uXWWoPpqpB .card .card-wrapper {
  height: 1%;
}
.cid-uXWWoPpqpB .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXWWoPpqpB .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXWWoPpqpB .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXWWoPpqpB .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXWWoPpqpB .prices {
  color: #ffffff;
}
.cid-uXWWoPpqpB .oldPrice {
  text-decoration: line-through;
}
.cid-uXWWoPpqpB .oldPrice,
.cid-uXWWoPpqpB .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXWWoPpqpB .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXWWoPpqpB .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXWWoPpqpB .mbr-section-title,
.cid-uXWWoPpqpB .underline {
  color: #000000;
  text-align: center;
}
.cid-uXWWoPpqpB .mbr-text,
.cid-uXWWoPpqpB .mbr-section-btn {
  color: #000000;
}
.cid-uXWWoPpqpB .prices,
.cid-uXWWoPpqpB .mbr-section-btn {
  color: #000000;
}
.cid-uXWXTOKsw4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXWXTOKsw4 .container-fluid {
  padding: 0 3rem;
}
.cid-uXWXTOKsw4 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXWXTOKsw4 .card {
  display: block;
}
.cid-uXWXTOKsw4 .card .card-wrapper {
  height: 1%;
}
.cid-uXWXTOKsw4 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXWXTOKsw4 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXWXTOKsw4 .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXWXTOKsw4 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXWXTOKsw4 .prices {
  color: #ffffff;
}
.cid-uXWXTOKsw4 .oldPrice {
  text-decoration: line-through;
}
.cid-uXWXTOKsw4 .oldPrice,
.cid-uXWXTOKsw4 .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXWXTOKsw4 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXWXTOKsw4 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXWXTOKsw4 .mbr-section-title,
.cid-uXWXTOKsw4 .underline {
  color: #000000;
  text-align: center;
}
.cid-uXWXTOKsw4 .mbr-text,
.cid-uXWXTOKsw4 .mbr-section-btn {
  color: #000000;
}
.cid-uXWXTOKsw4 .prices,
.cid-uXWXTOKsw4 .mbr-section-btn {
  color: #000000;
}
.cid-uXWXTurAcW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXWXTurAcW .container-fluid {
  padding: 0 3rem;
}
.cid-uXWXTurAcW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXWXTurAcW .card {
  display: block;
}
.cid-uXWXTurAcW .card .card-wrapper {
  height: 1%;
}
.cid-uXWXTurAcW .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXWXTurAcW .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXWXTurAcW .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXWXTurAcW .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXWXTurAcW .prices {
  color: #ffffff;
}
.cid-uXWXTurAcW .oldPrice {
  text-decoration: line-through;
}
.cid-uXWXTurAcW .oldPrice,
.cid-uXWXTurAcW .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXWXTurAcW .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXWXTurAcW .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXWXTurAcW .mbr-section-title,
.cid-uXWXTurAcW .underline {
  color: #000000;
  text-align: center;
}
.cid-uXWXTurAcW .mbr-text,
.cid-uXWXTurAcW .mbr-section-btn {
  color: #000000;
}
.cid-uXWXTurAcW .prices,
.cid-uXWXTurAcW .mbr-section-btn {
  color: #000000;
}
.cid-uXWXTcEpD7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXWXTcEpD7 .container-fluid {
  padding: 0 3rem;
}
.cid-uXWXTcEpD7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXWXTcEpD7 .card {
  display: block;
}
.cid-uXWXTcEpD7 .card .card-wrapper {
  height: 1%;
}
.cid-uXWXTcEpD7 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXWXTcEpD7 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXWXTcEpD7 .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXWXTcEpD7 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXWXTcEpD7 .prices {
  color: #ffffff;
}
.cid-uXWXTcEpD7 .oldPrice {
  text-decoration: line-through;
}
.cid-uXWXTcEpD7 .oldPrice,
.cid-uXWXTcEpD7 .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXWXTcEpD7 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXWXTcEpD7 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXWXTcEpD7 .mbr-section-title,
.cid-uXWXTcEpD7 .underline {
  color: #000000;
  text-align: center;
}
.cid-uXWXTcEpD7 .mbr-text,
.cid-uXWXTcEpD7 .mbr-section-btn {
  color: #000000;
}
.cid-uXWXTcEpD7 .prices,
.cid-uXWXTcEpD7 .mbr-section-btn {
  color: #000000;
}
.cid-uXWXSVBz2X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXWXSVBz2X .container-fluid {
  padding: 0 3rem;
}
.cid-uXWXSVBz2X .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXWXSVBz2X .card {
  display: block;
}
.cid-uXWXSVBz2X .card .card-wrapper {
  height: 1%;
}
.cid-uXWXSVBz2X .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXWXSVBz2X .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXWXSVBz2X .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXWXSVBz2X .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXWXSVBz2X .prices {
  color: #ffffff;
}
.cid-uXWXSVBz2X .oldPrice {
  text-decoration: line-through;
}
.cid-uXWXSVBz2X .oldPrice,
.cid-uXWXSVBz2X .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXWXSVBz2X .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXWXSVBz2X .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXWXSVBz2X .mbr-section-title,
.cid-uXWXSVBz2X .underline {
  color: #000000;
  text-align: center;
}
.cid-uXWXSVBz2X .mbr-text,
.cid-uXWXSVBz2X .mbr-section-btn {
  color: #000000;
}
.cid-uXWXSVBz2X .prices,
.cid-uXWXSVBz2X .mbr-section-btn {
  color: #000000;
}
.cid-uXWXSCpQKg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXWXSCpQKg .container-fluid {
  padding: 0 3rem;
}
.cid-uXWXSCpQKg .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXWXSCpQKg .card {
  display: block;
}
.cid-uXWXSCpQKg .card .card-wrapper {
  height: 1%;
}
.cid-uXWXSCpQKg .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXWXSCpQKg .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXWXSCpQKg .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXWXSCpQKg .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXWXSCpQKg .prices {
  color: #ffffff;
}
.cid-uXWXSCpQKg .oldPrice {
  text-decoration: line-through;
}
.cid-uXWXSCpQKg .oldPrice,
.cid-uXWXSCpQKg .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXWXSCpQKg .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXWXSCpQKg .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXWXSCpQKg .mbr-section-title,
.cid-uXWXSCpQKg .underline {
  color: #000000;
  text-align: center;
}
.cid-uXWXSCpQKg .mbr-text,
.cid-uXWXSCpQKg .mbr-section-btn {
  color: #000000;
}
.cid-uXWXSCpQKg .prices,
.cid-uXWXSCpQKg .mbr-section-btn {
  color: #000000;
}
.cid-uXWXROchpD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXWXROchpD .container-fluid {
  padding: 0 3rem;
}
.cid-uXWXROchpD .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXWXROchpD .card {
  display: block;
}
.cid-uXWXROchpD .card .card-wrapper {
  height: 1%;
}
.cid-uXWXROchpD .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXWXROchpD .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXWXROchpD .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXWXROchpD .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXWXROchpD .prices {
  color: #ffffff;
}
.cid-uXWXROchpD .oldPrice {
  text-decoration: line-through;
}
.cid-uXWXROchpD .oldPrice,
.cid-uXWXROchpD .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXWXROchpD .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXWXROchpD .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXWXROchpD .mbr-section-title,
.cid-uXWXROchpD .underline {
  color: #000000;
  text-align: center;
}
.cid-uXWXROchpD .mbr-text,
.cid-uXWXROchpD .mbr-section-btn {
  color: #000000;
}
.cid-uXWXROchpD .prices,
.cid-uXWXROchpD .mbr-section-btn {
  color: #000000;
}
#custom-html-2o {
  /* Type valid CSS here */
}
#custom-html-2o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2o p {
  font-size: 60px;
  color: #777;
}
#custom-html-2o .imagem-brilho {
  transition: all 0.3s ease;
}
#custom-html-2o .imagem-brilho:hover {
  filter: brightness(1.3);
  box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.6);
}
.cid-tqAjL7FeLP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/foto-manobra-1-2000x1334.jpg");
}
.cid-tqAjL7FeLP .mbr-section-title span {
  display: block;
}
.cid-tqAjL7FeLP .first-column,
.cid-tqAjL7FeLP .second-column {
  margin-bottom: 1rem;
}
.cid-tqAjL7FeLP .first-column ul,
.cid-tqAjL7FeLP .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-tqAjL7FeLP .first-column ul li,
.cid-tqAjL7FeLP .second-column ul li {
  margin-bottom: 1rem;
}
.cid-tqAjL7FeLP .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-tqAjL7FeLP .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-tqAjL7FeLP .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-tqAjL7FeLP .card-support {
    text-align: center;
  }
}
.cid-tqAjL7FeLP .mbr-section-title,
.cid-tqAjL7FeLP .card-support {
  color: #ffffff;
}
.cid-tqAZ4lAaGk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #473d3c;
}
.cid-tqAZ4lAaGk p {
  text-align: center;
}
.cid-tqAZ4lAaGk .mbr-iconfont-social {
  font-size: 1rem;
  color: #000000;
}
.cid-tqAZ4lAaGk .social-list a:focus {
  text-decoration: none;
}
.cid-tqAZ4lAaGk .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 12px;
}
.cid-tqAZ4lAaGk .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tqAZ4lAaGk .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-size: 12px;
}
.cid-tqAZ4lAaGk .logo-footer {
  line-height: normal;
}
.cid-tqAZ4lAaGk .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tqAZ4lAaGk .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqAZ4lAaGk .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-uBKVIlYkEh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBKVIlYkEh .nav-item:focus,
.cid-uBKVIlYkEh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uBKVIlYkEh .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uBKVIlYkEh .nav-item .nav-link {
    position: relative;
  }
  .cid-uBKVIlYkEh .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uBKVIlYkEh .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uBKVIlYkEh .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBKVIlYkEh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBKVIlYkEh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBKVIlYkEh .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uBKVIlYkEh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uBKVIlYkEh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBKVIlYkEh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBKVIlYkEh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBKVIlYkEh .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-uBKVIlYkEh .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #293c40;
  background: linear-gradient(#473d3c, #293c40);
}
.cid-uBKVIlYkEh .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-uBKVIlYkEh .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uBKVIlYkEh .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uBKVIlYkEh .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uBKVIlYkEh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uBKVIlYkEh .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uBKVIlYkEh .navbar.collapsed .navbar-collapse.show,
.cid-uBKVIlYkEh .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uBKVIlYkEh .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uBKVIlYkEh .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uBKVIlYkEh .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uBKVIlYkEh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBKVIlYkEh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBKVIlYkEh .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-uBKVIlYkEh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBKVIlYkEh .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uBKVIlYkEh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBKVIlYkEh .navbar.collapsed .right-menu,
.cid-uBKVIlYkEh .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uBKVIlYkEh .navbar .navbar-collapse.show,
  .cid-uBKVIlYkEh .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uBKVIlYkEh .navbar .navbar-collapse.show .brand-container,
  .cid-uBKVIlYkEh .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uBKVIlYkEh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBKVIlYkEh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uBKVIlYkEh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBKVIlYkEh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBKVIlYkEh .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-uBKVIlYkEh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uBKVIlYkEh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBKVIlYkEh .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-uBKVIlYkEh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uBKVIlYkEh .navbar .right-menu,
  .cid-uBKVIlYkEh .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uBKVIlYkEh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBKVIlYkEh .navbar.navbar-short .mbr-overlay {
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-uBKVIlYkEh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uBKVIlYkEh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uBKVIlYkEh .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBKVIlYkEh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBKVIlYkEh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBKVIlYkEh .dropdown-item.active,
.cid-uBKVIlYkEh .dropdown-item:active {
  background-color: transparent;
}
.cid-uBKVIlYkEh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBKVIlYkEh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBKVIlYkEh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBKVIlYkEh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #293c40;
}
.cid-uBKVIlYkEh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBKVIlYkEh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBKVIlYkEh ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uBKVIlYkEh ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uBKVIlYkEh .navbar-buttons {
  margin-left: auto;
}
.cid-uBKVIlYkEh button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uBKVIlYkEh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uBKVIlYkEh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBKVIlYkEh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBKVIlYkEh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBKVIlYkEh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBKVIlYkEh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBKVIlYkEh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uBKVIlYkEh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uBKVIlYkEh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBKVIlYkEh .navbar-dropdown {
  position: fixed;
}
.cid-uBKVIlYkEh a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uBKVIlYkEh .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBKVIlYkEh .right-menu,
.cid-uBKVIlYkEh .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uBKVIlYkEh .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uBKVIlYkEh .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uBKVIlYkEh .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uBKVIlYkEh .menu-top {
  text-align: center;
  width: 100%;
  background-color: #2bb941;
  padding: .5rem 0;
}
.cid-uBKVIlYkEh .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uBKVIlYkEh .card-wrapper {
  z-index: 3;
}
.cid-uBKVIlYkEh .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uBKVIlYkEh .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBKVIlYkEh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBKVImqwzm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #473d3c;
}
.cid-uBKVImqwzm p {
  text-align: center;
}
.cid-uBKVImqwzm .mbr-iconfont-social {
  font-size: 1rem;
  color: #000000;
}
.cid-uBKVImqwzm .social-list a:focus {
  text-decoration: none;
}
.cid-uBKVImqwzm .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 12px;
}
.cid-uBKVImqwzm .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-uBKVImqwzm .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-size: 12px;
}
.cid-uBKVImqwzm .logo-footer {
  line-height: normal;
}
.cid-uBKVImqwzm .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uBKVImqwzm .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uBKVImqwzm .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXV1fyWN0B {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXV1fyWN0B .container-fluid {
  padding: 0 3rem;
}
.cid-uXV1fyWN0B .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXV1fyWN0B .card {
  display: block;
}
.cid-uXV1fyWN0B .card .card-wrapper {
  height: 1%;
}
.cid-uXV1fyWN0B .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXV1fyWN0B .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXV1fyWN0B .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXV1fyWN0B .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXV1fyWN0B .prices {
  color: #ffffff;
}
.cid-uXV1fyWN0B .oldPrice {
  text-decoration: line-through;
}
.cid-uXV1fyWN0B .oldPrice,
.cid-uXV1fyWN0B .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXV1fyWN0B .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXV1fyWN0B .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXV1fyWN0B .mbr-section-title,
.cid-uXV1fyWN0B .underline {
  color: #000000;
  text-align: center;
}
.cid-uXV1fyWN0B .mbr-text,
.cid-uXV1fyWN0B .mbr-section-btn {
  color: #000000;
}
.cid-uXV1fyWN0B .prices,
.cid-uXV1fyWN0B .mbr-section-btn {
  color: #000000;
}
.cid-uXV1v3UB7l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXV1v3UB7l .container-fluid {
  padding: 0 3rem;
}
.cid-uXV1v3UB7l .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXV1v3UB7l .card {
  display: block;
}
.cid-uXV1v3UB7l .card .card-wrapper {
  height: 1%;
}
.cid-uXV1v3UB7l .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXV1v3UB7l .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXV1v3UB7l .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXV1v3UB7l .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXV1v3UB7l .prices {
  color: #ffffff;
}
.cid-uXV1v3UB7l .oldPrice {
  text-decoration: line-through;
}
.cid-uXV1v3UB7l .oldPrice,
.cid-uXV1v3UB7l .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXV1v3UB7l .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXV1v3UB7l .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXV1v3UB7l .mbr-section-title,
.cid-uXV1v3UB7l .underline {
  color: #000000;
  text-align: center;
}
.cid-uXV1v3UB7l .mbr-text,
.cid-uXV1v3UB7l .mbr-section-btn {
  color: #000000;
}
.cid-uXV1v3UB7l .prices,
.cid-uXV1v3UB7l .mbr-section-btn {
  color: #000000;
}
.cid-uXV1SZXKPw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXV1SZXKPw .container-fluid {
  padding: 0 3rem;
}
.cid-uXV1SZXKPw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXV1SZXKPw .card {
  display: block;
}
.cid-uXV1SZXKPw .card .card-wrapper {
  height: 1%;
}
.cid-uXV1SZXKPw .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXV1SZXKPw .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXV1SZXKPw .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXV1SZXKPw .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXV1SZXKPw .prices {
  color: #ffffff;
}
.cid-uXV1SZXKPw .oldPrice {
  text-decoration: line-through;
}
.cid-uXV1SZXKPw .oldPrice,
.cid-uXV1SZXKPw .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXV1SZXKPw .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXV1SZXKPw .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXV1SZXKPw .mbr-section-title,
.cid-uXV1SZXKPw .underline {
  color: #000000;
  text-align: center;
}
.cid-uXV1SZXKPw .mbr-text,
.cid-uXV1SZXKPw .mbr-section-btn {
  color: #000000;
}
.cid-uXV1SZXKPw .prices,
.cid-uXV1SZXKPw .mbr-section-btn {
  color: #000000;
}
.cid-uXV7klFUSl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXV7klFUSl .container-fluid {
  padding: 0 3rem;
}
.cid-uXV7klFUSl .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXV7klFUSl .card {
  display: block;
}
.cid-uXV7klFUSl .card .card-wrapper {
  height: 1%;
}
.cid-uXV7klFUSl .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXV7klFUSl .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXV7klFUSl .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXV7klFUSl .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXV7klFUSl .prices {
  color: #ffffff;
}
.cid-uXV7klFUSl .oldPrice {
  text-decoration: line-through;
}
.cid-uXV7klFUSl .oldPrice,
.cid-uXV7klFUSl .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXV7klFUSl .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXV7klFUSl .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXV7klFUSl .mbr-section-title,
.cid-uXV7klFUSl .underline {
  color: #000000;
  text-align: center;
}
.cid-uXV7klFUSl .mbr-text,
.cid-uXV7klFUSl .mbr-section-btn {
  color: #000000;
}
.cid-uXV7klFUSl .prices,
.cid-uXV7klFUSl .mbr-section-btn {
  color: #000000;
}
.cid-uXV2a8oWWL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXV2a8oWWL .container-fluid {
  padding: 0 3rem;
}
.cid-uXV2a8oWWL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXV2a8oWWL .card {
  display: block;
}
.cid-uXV2a8oWWL .card .card-wrapper {
  height: 1%;
}
.cid-uXV2a8oWWL .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXV2a8oWWL .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXV2a8oWWL .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXV2a8oWWL .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXV2a8oWWL .prices {
  color: #ffffff;
}
.cid-uXV2a8oWWL .oldPrice {
  text-decoration: line-through;
}
.cid-uXV2a8oWWL .oldPrice,
.cid-uXV2a8oWWL .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXV2a8oWWL .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXV2a8oWWL .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXV2a8oWWL .mbr-section-title,
.cid-uXV2a8oWWL .underline {
  color: #000000;
  text-align: center;
}
.cid-uXV2a8oWWL .mbr-text,
.cid-uXV2a8oWWL .mbr-section-btn {
  color: #000000;
}
.cid-uXV2a8oWWL .prices,
.cid-uXV2a8oWWL .mbr-section-btn {
  color: #000000;
}
.cid-uXV2Cqc88E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXV2Cqc88E .container-fluid {
  padding: 0 3rem;
}
.cid-uXV2Cqc88E .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXV2Cqc88E .card {
  display: block;
}
.cid-uXV2Cqc88E .card .card-wrapper {
  height: 1%;
}
.cid-uXV2Cqc88E .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXV2Cqc88E .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXV2Cqc88E .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXV2Cqc88E .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXV2Cqc88E .prices {
  color: #ffffff;
}
.cid-uXV2Cqc88E .oldPrice {
  text-decoration: line-through;
}
.cid-uXV2Cqc88E .oldPrice,
.cid-uXV2Cqc88E .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXV2Cqc88E .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXV2Cqc88E .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXV2Cqc88E .mbr-section-title,
.cid-uXV2Cqc88E .underline {
  color: #000000;
  text-align: center;
}
.cid-uXV2Cqc88E .mbr-text,
.cid-uXV2Cqc88E .mbr-section-btn {
  color: #000000;
}
.cid-uXV2Cqc88E .prices,
.cid-uXV2Cqc88E .mbr-section-btn {
  color: #000000;
}
.cid-uXV2LFeIQD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXV2LFeIQD .container-fluid {
  padding: 0 3rem;
}
.cid-uXV2LFeIQD .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXV2LFeIQD .card {
  display: block;
}
.cid-uXV2LFeIQD .card .card-wrapper {
  height: 1%;
}
.cid-uXV2LFeIQD .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXV2LFeIQD .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXV2LFeIQD .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXV2LFeIQD .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXV2LFeIQD .prices {
  color: #ffffff;
}
.cid-uXV2LFeIQD .oldPrice {
  text-decoration: line-through;
}
.cid-uXV2LFeIQD .oldPrice,
.cid-uXV2LFeIQD .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXV2LFeIQD .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXV2LFeIQD .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXV2LFeIQD .mbr-section-title,
.cid-uXV2LFeIQD .underline {
  color: #000000;
  text-align: center;
}
.cid-uXV2LFeIQD .mbr-text,
.cid-uXV2LFeIQD .mbr-section-btn {
  color: #000000;
}
.cid-uXV2LFeIQD .prices,
.cid-uXV2LFeIQD .mbr-section-btn {
  color: #000000;
}
.cid-uXV2Mkt9vz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXV2Mkt9vz .container-fluid {
  padding: 0 3rem;
}
.cid-uXV2Mkt9vz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXV2Mkt9vz .card {
  display: block;
}
.cid-uXV2Mkt9vz .card .card-wrapper {
  height: 1%;
}
.cid-uXV2Mkt9vz .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXV2Mkt9vz .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXV2Mkt9vz .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXV2Mkt9vz .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXV2Mkt9vz .prices {
  color: #ffffff;
}
.cid-uXV2Mkt9vz .oldPrice {
  text-decoration: line-through;
}
.cid-uXV2Mkt9vz .oldPrice,
.cid-uXV2Mkt9vz .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXV2Mkt9vz .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXV2Mkt9vz .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXV2Mkt9vz .mbr-section-title,
.cid-uXV2Mkt9vz .underline {
  color: #000000;
  text-align: center;
}
.cid-uXV2Mkt9vz .mbr-text,
.cid-uXV2Mkt9vz .mbr-section-btn {
  color: #000000;
}
.cid-uXV2Mkt9vz .prices,
.cid-uXV2Mkt9vz .mbr-section-btn {
  color: #000000;
}
.cid-uXX8tyoTuC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXX8tyoTuC .container-fluid {
  padding: 0 3rem;
}
.cid-uXX8tyoTuC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXX8tyoTuC .card {
  display: block;
}
.cid-uXX8tyoTuC .card .card-wrapper {
  height: 1%;
}
.cid-uXX8tyoTuC .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXX8tyoTuC .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXX8tyoTuC .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXX8tyoTuC .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXX8tyoTuC .prices {
  color: #ffffff;
}
.cid-uXX8tyoTuC .oldPrice {
  text-decoration: line-through;
}
.cid-uXX8tyoTuC .oldPrice,
.cid-uXX8tyoTuC .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXX8tyoTuC .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXX8tyoTuC .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXX8tyoTuC .mbr-section-title,
.cid-uXX8tyoTuC .underline {
  color: #000000;
  text-align: center;
}
.cid-uXX8tyoTuC .mbr-text,
.cid-uXX8tyoTuC .mbr-section-btn {
  color: #000000;
}
.cid-uXX8tyoTuC .prices,
.cid-uXX8tyoTuC .mbr-section-btn {
  color: #000000;
}
.cid-uXX8t5jUzU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXX8t5jUzU .container-fluid {
  padding: 0 3rem;
}
.cid-uXX8t5jUzU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXX8t5jUzU .card {
  display: block;
}
.cid-uXX8t5jUzU .card .card-wrapper {
  height: 1%;
}
.cid-uXX8t5jUzU .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXX8t5jUzU .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXX8t5jUzU .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXX8t5jUzU .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXX8t5jUzU .prices {
  color: #ffffff;
}
.cid-uXX8t5jUzU .oldPrice {
  text-decoration: line-through;
}
.cid-uXX8t5jUzU .oldPrice,
.cid-uXX8t5jUzU .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXX8t5jUzU .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXX8t5jUzU .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXX8t5jUzU .mbr-section-title,
.cid-uXX8t5jUzU .underline {
  color: #000000;
  text-align: center;
}
.cid-uXX8t5jUzU .mbr-text,
.cid-uXX8t5jUzU .mbr-section-btn {
  color: #000000;
}
.cid-uXX8t5jUzU .prices,
.cid-uXX8t5jUzU .mbr-section-btn {
  color: #000000;
}
#custom-html-2p {
  /* Type valid CSS here */
}
#custom-html-2p div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2p p {
  font-size: 60px;
  color: #777;
}
#custom-html-2p .imagem-brilho {
  transition: all 0.3s ease;
}
#custom-html-2p .imagem-brilho:hover {
  filter: brightness(1.3);
  box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.6);
}
.cid-uBKVIomzDw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/foto-manobra-1-2000x1334.jpg");
}
.cid-uBKVIomzDw .mbr-section-title span {
  display: block;
}
.cid-uBKVIomzDw .first-column,
.cid-uBKVIomzDw .second-column {
  margin-bottom: 1rem;
}
.cid-uBKVIomzDw .first-column ul,
.cid-uBKVIomzDw .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uBKVIomzDw .first-column ul li,
.cid-uBKVIomzDw .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uBKVIomzDw .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uBKVIomzDw .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uBKVIomzDw .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uBKVIomzDw .card-support {
    text-align: center;
  }
}
.cid-uBKVIomzDw .mbr-section-title,
.cid-uBKVIomzDw .card-support {
  color: #ffffff;
}
.cid-uBKVK0roAr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBKVK0roAr .nav-item:focus,
.cid-uBKVK0roAr .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uBKVK0roAr .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uBKVK0roAr .nav-item .nav-link {
    position: relative;
  }
  .cid-uBKVK0roAr .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uBKVK0roAr .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uBKVK0roAr .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBKVK0roAr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBKVK0roAr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBKVK0roAr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uBKVK0roAr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uBKVK0roAr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBKVK0roAr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBKVK0roAr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBKVK0roAr .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-uBKVK0roAr .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #293c40;
  background: linear-gradient(#473d3c, #293c40);
}
.cid-uBKVK0roAr .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-uBKVK0roAr .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uBKVK0roAr .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uBKVK0roAr .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uBKVK0roAr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uBKVK0roAr .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uBKVK0roAr .navbar.collapsed .navbar-collapse.show,
.cid-uBKVK0roAr .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uBKVK0roAr .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uBKVK0roAr .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uBKVK0roAr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uBKVK0roAr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBKVK0roAr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBKVK0roAr .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-uBKVK0roAr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBKVK0roAr .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uBKVK0roAr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBKVK0roAr .navbar.collapsed .right-menu,
.cid-uBKVK0roAr .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uBKVK0roAr .navbar .navbar-collapse.show,
  .cid-uBKVK0roAr .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uBKVK0roAr .navbar .navbar-collapse.show .brand-container,
  .cid-uBKVK0roAr .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uBKVK0roAr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBKVK0roAr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uBKVK0roAr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBKVK0roAr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBKVK0roAr .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-uBKVK0roAr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uBKVK0roAr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBKVK0roAr .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-uBKVK0roAr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uBKVK0roAr .navbar .right-menu,
  .cid-uBKVK0roAr .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uBKVK0roAr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBKVK0roAr .navbar.navbar-short .mbr-overlay {
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-uBKVK0roAr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uBKVK0roAr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uBKVK0roAr .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBKVK0roAr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBKVK0roAr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBKVK0roAr .dropdown-item.active,
.cid-uBKVK0roAr .dropdown-item:active {
  background-color: transparent;
}
.cid-uBKVK0roAr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBKVK0roAr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBKVK0roAr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBKVK0roAr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #293c40;
}
.cid-uBKVK0roAr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBKVK0roAr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBKVK0roAr ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uBKVK0roAr ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uBKVK0roAr .navbar-buttons {
  margin-left: auto;
}
.cid-uBKVK0roAr button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uBKVK0roAr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uBKVK0roAr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBKVK0roAr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBKVK0roAr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBKVK0roAr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBKVK0roAr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBKVK0roAr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uBKVK0roAr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uBKVK0roAr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBKVK0roAr .navbar-dropdown {
  position: fixed;
}
.cid-uBKVK0roAr a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uBKVK0roAr .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBKVK0roAr .right-menu,
.cid-uBKVK0roAr .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uBKVK0roAr .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uBKVK0roAr .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uBKVK0roAr .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uBKVK0roAr .menu-top {
  text-align: center;
  width: 100%;
  background-color: #2bb941;
  padding: .5rem 0;
}
.cid-uBKVK0roAr .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uBKVK0roAr .card-wrapper {
  z-index: 3;
}
.cid-uBKVK0roAr .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uBKVK0roAr .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBKVK0roAr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXUWczBBop {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uXUWczBBop .container-fluid {
  padding: 0 3rem;
}
.cid-uXUWczBBop .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXUWczBBop .card {
  display: block;
}
.cid-uXUWczBBop .card .card-wrapper {
  height: 1%;
}
.cid-uXUWczBBop .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXUWczBBop .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXUWczBBop .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXUWczBBop .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXUWczBBop .prices {
  color: #ffffff;
}
.cid-uXUWczBBop .oldPrice {
  text-decoration: line-through;
}
.cid-uXUWczBBop .oldPrice,
.cid-uXUWczBBop .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXUWczBBop .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXUWczBBop .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXUWczBBop .mbr-section-title,
.cid-uXUWczBBop .underline {
  color: #000000;
  text-align: center;
}
.cid-uXUWczBBop .mbr-text,
.cid-uXUWczBBop .mbr-section-btn {
  color: #000000;
}
.cid-uXUWczBBop .prices,
.cid-uXUWczBBop .mbr-section-btn {
  color: #000000;
}
.cid-uBKVK2u0CK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/foto-manobra-1-2000x1334.jpg");
}
.cid-uBKVK2u0CK .mbr-section-title span {
  display: block;
}
.cid-uBKVK2u0CK .first-column,
.cid-uBKVK2u0CK .second-column {
  margin-bottom: 1rem;
}
.cid-uBKVK2u0CK .first-column ul,
.cid-uBKVK2u0CK .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uBKVK2u0CK .first-column ul li,
.cid-uBKVK2u0CK .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uBKVK2u0CK .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uBKVK2u0CK .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uBKVK2u0CK .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uBKVK2u0CK .card-support {
    text-align: center;
  }
}
.cid-uBKVK2u0CK .mbr-section-title,
.cid-uBKVK2u0CK .card-support {
  color: #ffffff;
}
#custom-html-2q {
  /* Type valid CSS here */
}
#custom-html-2q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2q p {
  font-size: 60px;
  color: #777;
}
#custom-html-2q .imagem-brilho {
  transition: all 0.3s ease;
}
#custom-html-2q .imagem-brilho:hover {
  filter: brightness(1.3);
  box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.6);
}
.cid-uBKVK0NpXK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #473d3c;
}
.cid-uBKVK0NpXK p {
  text-align: center;
}
.cid-uBKVK0NpXK .mbr-iconfont-social {
  font-size: 1rem;
  color: #000000;
}
.cid-uBKVK0NpXK .social-list a:focus {
  text-decoration: none;
}
.cid-uBKVK0NpXK .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 12px;
}
.cid-uBKVK0NpXK .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-uBKVK0NpXK .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-size: 12px;
}
.cid-uBKVK0NpXK .logo-footer {
  line-height: normal;
}
.cid-uBKVK0NpXK .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uBKVK0NpXK .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uBKVK0NpXK .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-uBKVLiDh9c .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBKVLiDh9c .nav-item:focus,
.cid-uBKVLiDh9c .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uBKVLiDh9c .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uBKVLiDh9c .nav-item .nav-link {
    position: relative;
  }
  .cid-uBKVLiDh9c .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uBKVLiDh9c .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uBKVLiDh9c .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBKVLiDh9c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBKVLiDh9c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBKVLiDh9c .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uBKVLiDh9c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uBKVLiDh9c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBKVLiDh9c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBKVLiDh9c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBKVLiDh9c .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-uBKVLiDh9c .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #293c40;
  background: linear-gradient(#473d3c, #293c40);
}
.cid-uBKVLiDh9c .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-uBKVLiDh9c .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uBKVLiDh9c .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uBKVLiDh9c .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uBKVLiDh9c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uBKVLiDh9c .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uBKVLiDh9c .navbar.collapsed .navbar-collapse.show,
.cid-uBKVLiDh9c .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uBKVLiDh9c .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uBKVLiDh9c .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uBKVLiDh9c .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uBKVLiDh9c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBKVLiDh9c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBKVLiDh9c .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-uBKVLiDh9c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBKVLiDh9c .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uBKVLiDh9c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uBKVLiDh9c .navbar.collapsed .right-menu,
.cid-uBKVLiDh9c .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uBKVLiDh9c .navbar .navbar-collapse.show,
  .cid-uBKVLiDh9c .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uBKVLiDh9c .navbar .navbar-collapse.show .brand-container,
  .cid-uBKVLiDh9c .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uBKVLiDh9c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBKVLiDh9c .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uBKVLiDh9c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBKVLiDh9c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBKVLiDh9c .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-uBKVLiDh9c .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uBKVLiDh9c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBKVLiDh9c .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-uBKVLiDh9c .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uBKVLiDh9c .navbar .right-menu,
  .cid-uBKVLiDh9c .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uBKVLiDh9c .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBKVLiDh9c .navbar.navbar-short .mbr-overlay {
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-uBKVLiDh9c .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uBKVLiDh9c .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uBKVLiDh9c .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBKVLiDh9c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBKVLiDh9c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBKVLiDh9c .dropdown-item.active,
.cid-uBKVLiDh9c .dropdown-item:active {
  background-color: transparent;
}
.cid-uBKVLiDh9c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBKVLiDh9c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBKVLiDh9c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBKVLiDh9c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #293c40;
}
.cid-uBKVLiDh9c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBKVLiDh9c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBKVLiDh9c ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uBKVLiDh9c ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uBKVLiDh9c .navbar-buttons {
  margin-left: auto;
}
.cid-uBKVLiDh9c button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uBKVLiDh9c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uBKVLiDh9c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uBKVLiDh9c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uBKVLiDh9c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uBKVLiDh9c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uBKVLiDh9c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBKVLiDh9c nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uBKVLiDh9c nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uBKVLiDh9c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uBKVLiDh9c .navbar-dropdown {
  position: fixed;
}
.cid-uBKVLiDh9c a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uBKVLiDh9c .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uBKVLiDh9c .right-menu,
.cid-uBKVLiDh9c .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uBKVLiDh9c .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uBKVLiDh9c .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uBKVLiDh9c .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uBKVLiDh9c .menu-top {
  text-align: center;
  width: 100%;
  background-color: #2bb941;
  padding: .5rem 0;
}
.cid-uBKVLiDh9c .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uBKVLiDh9c .card-wrapper {
  z-index: 3;
}
.cid-uBKVLiDh9c .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uBKVLiDh9c .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBKVLiDh9c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXKSFGNTaJ {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uXKSFGNTaJ .container-fluid {
  padding: 0 3rem;
}
.cid-uXKSFGNTaJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXKSFGNTaJ .card {
  display: block;
}
.cid-uXKSFGNTaJ .card .card-wrapper {
  height: 1%;
}
.cid-uXKSFGNTaJ .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXKSFGNTaJ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXKSFGNTaJ .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXKSFGNTaJ .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKSFGNTaJ .prices {
  color: #ffffff;
}
.cid-uXKSFGNTaJ .oldPrice {
  text-decoration: line-through;
}
.cid-uXKSFGNTaJ .oldPrice,
.cid-uXKSFGNTaJ .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXKSFGNTaJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXKSFGNTaJ .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXKSFGNTaJ .mbr-section-title,
.cid-uXKSFGNTaJ .underline {
  text-align: center;
  color: #000000;
}
.cid-uXKSFGNTaJ .mbr-text,
.cid-uXKSFGNTaJ .mbr-section-btn {
  color: #000000;
}
.cid-uXKSFGNTaJ .prices,
.cid-uXKSFGNTaJ .mbr-section-btn {
  color: #000000;
}
#custom-html-2r {
  /* Type valid CSS here */
}
#custom-html-2r div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2r p {
  font-size: 60px;
  color: #777;
}
#custom-html-2r .imagem-brilho {
  transition: all 0.3s ease;
}
#custom-html-2r .imagem-brilho:hover {
  filter: brightness(1.3);
  box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.6);
}
.cid-uBKVLkwYvb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/foto-manobra-1-2000x1334.jpg");
}
.cid-uBKVLkwYvb .mbr-section-title span {
  display: block;
}
.cid-uBKVLkwYvb .first-column,
.cid-uBKVLkwYvb .second-column {
  margin-bottom: 1rem;
}
.cid-uBKVLkwYvb .first-column ul,
.cid-uBKVLkwYvb .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uBKVLkwYvb .first-column ul li,
.cid-uBKVLkwYvb .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uBKVLkwYvb .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uBKVLkwYvb .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uBKVLkwYvb .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uBKVLkwYvb .card-support {
    text-align: center;
  }
}
.cid-uBKVLkwYvb .mbr-section-title,
.cid-uBKVLkwYvb .card-support {
  color: #ffffff;
}
.cid-uBKVLj2ttR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #473d3c;
}
.cid-uBKVLj2ttR p {
  text-align: center;
}
.cid-uBKVLj2ttR .mbr-iconfont-social {
  font-size: 1rem;
  color: #000000;
}
.cid-uBKVLj2ttR .social-list a:focus {
  text-decoration: none;
}
.cid-uBKVLj2ttR .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 12px;
}
.cid-uBKVLj2ttR .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-uBKVLj2ttR .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-size: 12px;
}
.cid-uBKVLj2ttR .logo-footer {
  line-height: normal;
}
.cid-uBKVLj2ttR .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uBKVLj2ttR .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uBKVLj2ttR .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-uCYuQ7fR9Z .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCYuQ7fR9Z .nav-item:focus,
.cid-uCYuQ7fR9Z .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uCYuQ7fR9Z .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uCYuQ7fR9Z .nav-item .nav-link {
    position: relative;
  }
  .cid-uCYuQ7fR9Z .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uCYuQ7fR9Z .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uCYuQ7fR9Z .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCYuQ7fR9Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCYuQ7fR9Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCYuQ7fR9Z .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uCYuQ7fR9Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCYuQ7fR9Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uCYuQ7fR9Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCYuQ7fR9Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCYuQ7fR9Z .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-uCYuQ7fR9Z .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #293c40;
  background: linear-gradient(#473d3c, #293c40);
}
.cid-uCYuQ7fR9Z .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-uCYuQ7fR9Z .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uCYuQ7fR9Z .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uCYuQ7fR9Z .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uCYuQ7fR9Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uCYuQ7fR9Z .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCYuQ7fR9Z .navbar.collapsed .navbar-collapse.show,
.cid-uCYuQ7fR9Z .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCYuQ7fR9Z .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uCYuQ7fR9Z .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uCYuQ7fR9Z .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uCYuQ7fR9Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCYuQ7fR9Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCYuQ7fR9Z .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-uCYuQ7fR9Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCYuQ7fR9Z .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCYuQ7fR9Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCYuQ7fR9Z .navbar.collapsed .right-menu,
.cid-uCYuQ7fR9Z .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uCYuQ7fR9Z .navbar .navbar-collapse.show,
  .cid-uCYuQ7fR9Z .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCYuQ7fR9Z .navbar .navbar-collapse.show .brand-container,
  .cid-uCYuQ7fR9Z .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uCYuQ7fR9Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCYuQ7fR9Z .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uCYuQ7fR9Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCYuQ7fR9Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCYuQ7fR9Z .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-uCYuQ7fR9Z .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uCYuQ7fR9Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCYuQ7fR9Z .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-uCYuQ7fR9Z .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uCYuQ7fR9Z .navbar .right-menu,
  .cid-uCYuQ7fR9Z .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uCYuQ7fR9Z .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCYuQ7fR9Z .navbar.navbar-short .mbr-overlay {
  background: #293c40 !important;
  background: linear-gradient(#473d3c, #293c40) !important;
}
.cid-uCYuQ7fR9Z .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCYuQ7fR9Z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCYuQ7fR9Z .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCYuQ7fR9Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCYuQ7fR9Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCYuQ7fR9Z .dropdown-item.active,
.cid-uCYuQ7fR9Z .dropdown-item:active {
  background-color: transparent;
}
.cid-uCYuQ7fR9Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCYuQ7fR9Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCYuQ7fR9Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCYuQ7fR9Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #293c40;
}
.cid-uCYuQ7fR9Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCYuQ7fR9Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCYuQ7fR9Z ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uCYuQ7fR9Z ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uCYuQ7fR9Z .navbar-buttons {
  margin-left: auto;
}
.cid-uCYuQ7fR9Z button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uCYuQ7fR9Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uCYuQ7fR9Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCYuQ7fR9Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCYuQ7fR9Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCYuQ7fR9Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCYuQ7fR9Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCYuQ7fR9Z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uCYuQ7fR9Z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uCYuQ7fR9Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCYuQ7fR9Z .navbar-dropdown {
  position: fixed;
}
.cid-uCYuQ7fR9Z a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uCYuQ7fR9Z .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCYuQ7fR9Z .right-menu,
.cid-uCYuQ7fR9Z .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uCYuQ7fR9Z .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCYuQ7fR9Z .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCYuQ7fR9Z .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uCYuQ7fR9Z .menu-top {
  text-align: center;
  width: 100%;
  background-color: #2bb941;
  padding: .5rem 0;
}
.cid-uCYuQ7fR9Z .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uCYuQ7fR9Z .card-wrapper {
  z-index: 3;
}
.cid-uCYuQ7fR9Z .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uCYuQ7fR9Z .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCYuQ7fR9Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXUxI3eeay {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXUxI3eeay .container-fluid {
  padding: 0 3rem;
}
.cid-uXUxI3eeay .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXUxI3eeay .card {
  display: block;
}
.cid-uXUxI3eeay .card .card-wrapper {
  height: 1%;
}
.cid-uXUxI3eeay .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXUxI3eeay .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXUxI3eeay .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXUxI3eeay .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXUxI3eeay .prices {
  color: #ffffff;
}
.cid-uXUxI3eeay .oldPrice {
  text-decoration: line-through;
}
.cid-uXUxI3eeay .oldPrice,
.cid-uXUxI3eeay .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXUxI3eeay .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXUxI3eeay .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXUxI3eeay .mbr-section-title,
.cid-uXUxI3eeay .underline {
  color: #000000;
  text-align: center;
}
.cid-uXUxI3eeay .mbr-text,
.cid-uXUxI3eeay .mbr-section-btn {
  color: #000000;
}
.cid-uXUxI3eeay .prices,
.cid-uXUxI3eeay .mbr-section-btn {
  color: #000000;
}
.cid-uXUNg4huXh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXUNg4huXh .container-fluid {
  padding: 0 3rem;
}
.cid-uXUNg4huXh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXUNg4huXh .card {
  display: block;
}
.cid-uXUNg4huXh .card .card-wrapper {
  height: 1%;
}
.cid-uXUNg4huXh .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXUNg4huXh .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXUNg4huXh .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXUNg4huXh .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXUNg4huXh .prices {
  color: #ffffff;
}
.cid-uXUNg4huXh .oldPrice {
  text-decoration: line-through;
}
.cid-uXUNg4huXh .oldPrice,
.cid-uXUNg4huXh .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXUNg4huXh .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXUNg4huXh .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXUNg4huXh .mbr-section-title,
.cid-uXUNg4huXh .underline {
  color: #000000;
  text-align: center;
}
.cid-uXUNg4huXh .mbr-text,
.cid-uXUNg4huXh .mbr-section-btn {
  color: #000000;
}
.cid-uXUNg4huXh .prices,
.cid-uXUNg4huXh .mbr-section-btn {
  color: #000000;
}
.cid-uXUO0Zeai2 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uXUO0Zeai2 .container-fluid {
  padding: 0 3rem;
}
.cid-uXUO0Zeai2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXUO0Zeai2 .card {
  display: block;
}
.cid-uXUO0Zeai2 .card .card-wrapper {
  height: 1%;
}
.cid-uXUO0Zeai2 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXUO0Zeai2 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXUO0Zeai2 .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXUO0Zeai2 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXUO0Zeai2 .prices {
  color: #ffffff;
}
.cid-uXUO0Zeai2 .oldPrice {
  text-decoration: line-through;
}
.cid-uXUO0Zeai2 .oldPrice,
.cid-uXUO0Zeai2 .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXUO0Zeai2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXUO0Zeai2 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXUO0Zeai2 .mbr-section-title,
.cid-uXUO0Zeai2 .underline {
  color: #000000;
  text-align: center;
}
.cid-uXUO0Zeai2 .mbr-text,
.cid-uXUO0Zeai2 .mbr-section-btn {
  color: #000000;
}
.cid-uXUO0Zeai2 .prices,
.cid-uXUO0Zeai2 .mbr-section-btn {
  color: #000000;
}
.cid-uXUNCLz8NJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXUNCLz8NJ .container-fluid {
  padding: 0 3rem;
}
.cid-uXUNCLz8NJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXUNCLz8NJ .card {
  display: block;
}
.cid-uXUNCLz8NJ .card .card-wrapper {
  height: 1%;
}
.cid-uXUNCLz8NJ .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXUNCLz8NJ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXUNCLz8NJ .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXUNCLz8NJ .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXUNCLz8NJ .prices {
  color: #ffffff;
}
.cid-uXUNCLz8NJ .oldPrice {
  text-decoration: line-through;
}
.cid-uXUNCLz8NJ .oldPrice,
.cid-uXUNCLz8NJ .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXUNCLz8NJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXUNCLz8NJ .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXUNCLz8NJ .mbr-section-title,
.cid-uXUNCLz8NJ .underline {
  color: #000000;
  text-align: center;
}
.cid-uXUNCLz8NJ .mbr-text,
.cid-uXUNCLz8NJ .mbr-section-btn {
  color: #000000;
}
.cid-uXUNCLz8NJ .prices,
.cid-uXUNCLz8NJ .mbr-section-btn {
  color: #000000;
}
.cid-uXUVa2BgIX {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uXUVa2BgIX .container-fluid {
  padding: 0 3rem;
}
.cid-uXUVa2BgIX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
.cid-uXUVa2BgIX .card {
  display: block;
}
.cid-uXUVa2BgIX .card .card-wrapper {
  height: 1%;
}
.cid-uXUVa2BgIX .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-uXUVa2BgIX .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uXUVa2BgIX .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uXUVa2BgIX .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXUVa2BgIX .prices {
  color: #ffffff;
}
.cid-uXUVa2BgIX .oldPrice {
  text-decoration: line-through;
}
.cid-uXUVa2BgIX .oldPrice,
.cid-uXUVa2BgIX .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-uXUVa2BgIX .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXUVa2BgIX .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uXUVa2BgIX .mbr-section-title,
.cid-uXUVa2BgIX .underline {
  color: #000000;
  text-align: center;
}
.cid-uXUVa2BgIX .mbr-text,
.cid-uXUVa2BgIX .mbr-section-btn {
  color: #000000;
}
.cid-uXUVa2BgIX .prices,
.cid-uXUVa2BgIX .mbr-section-btn {
  color: #000000;
}
#custom-html-2t {
  /* Type valid CSS here */
}
#custom-html-2t div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2t p {
  font-size: 60px;
  color: #777;
}
#custom-html-2t .imagem-brilho {
  transition: all 0.3s ease;
}
#custom-html-2t .imagem-brilho:hover {
  filter: brightness(1.3);
  box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.6);
}
.cid-uCYuQ8euOB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/foto-manobra-1-2000x1334.jpg");
}
.cid-uCYuQ8euOB .mbr-section-title span {
  display: block;
}
.cid-uCYuQ8euOB .first-column,
.cid-uCYuQ8euOB .second-column {
  margin-bottom: 1rem;
}
.cid-uCYuQ8euOB .first-column ul,
.cid-uCYuQ8euOB .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uCYuQ8euOB .first-column ul li,
.cid-uCYuQ8euOB .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uCYuQ8euOB .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uCYuQ8euOB .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uCYuQ8euOB .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uCYuQ8euOB .card-support {
    text-align: center;
  }
}
.cid-uCYuQ8euOB .mbr-section-title,
.cid-uCYuQ8euOB .card-support {
  color: #ffffff;
}
.cid-uCYuQ8ZUnL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #473d3c;
}
.cid-uCYuQ8ZUnL p {
  text-align: center;
}
.cid-uCYuQ8ZUnL .mbr-iconfont-social {
  font-size: 1rem;
  color: #000000;
}
.cid-uCYuQ8ZUnL .social-list a:focus {
  text-decoration: none;
}
.cid-uCYuQ8ZUnL .text-copyright {
  width: 100%;
  color: #ffffff;
  font-size: 12px;
}
.cid-uCYuQ8ZUnL .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-uCYuQ8ZUnL .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-size: 12px;
}
.cid-uCYuQ8ZUnL .logo-footer {
  line-height: normal;
}
.cid-uCYuQ8ZUnL .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uCYuQ8ZUnL .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uCYuQ8ZUnL .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
#custom-html-2s {
  /* Type valid CSS here */
}
#custom-html-2s div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2s p {
  font-size: 60px;
  color: #777;
}
