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





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #7d3644 !important;
}
.bg-success {
  background-color: #578f34 !important;
}
.bg-info {
  background-color: #1dce11 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #481f27;
  border-color: #481f27;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #7d3644;
  border-color: #7d3644;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #481f27;
  border-color: #481f27;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #481f27 !important;
  border-color: #481f27 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #481f27;
  border-color: #481f27;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #7d3644;
  border-color: #7d3644;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #481f27;
  border-color: #481f27;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #481f27 !important;
  border-color: #481f27 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13870b;
  border-color: #13870b;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1dce11;
  border-color: #1dce11;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13870b;
  border-color: #13870b;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13870b !important;
  border-color: #13870b !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #355720;
  border-color: #355720;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #578f34;
  border-color: #578f34;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #355720;
  border-color: #355720;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #355720 !important;
  border-color: #355720 !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);
  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;
  border-color: #82786e;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b;
  border-color: #59524b;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  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);
  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;
  border-color: #879a9f;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479;
  border-color: #617479;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  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);
  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;
  border-color: #333333;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #ffffff !important;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #ffffff !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #7d3644;
  border-color: #7d3644;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #36171d;
  color: #36171d !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #7d3644;
  border-color: #7d3644;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #7d3644 !important;
  border-color: #7d3644 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #7d3644;
  border-color: #7d3644;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #36171d;
  color: #36171d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #7d3644;
  border-color: #7d3644;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #7d3644 !important;
  border-color: #7d3644 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1dce11;
  border-color: #1dce11;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #107009;
  color: #107009 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1dce11;
  border-color: #1dce11;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1dce11 !important;
  border-color: #1dce11 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #578f34;
  border-color: #578f34;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #294419;
  color: #294419 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #578f34;
  border-color: #578f34;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #578f34 !important;
  border-color: #578f34 !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);
  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 {
  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);
  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 {
  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);
  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 {
  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);
  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 {
  transform: scale(10);
}
.text-primary {
  color: #7d3644 !important;
}
.text-secondary {
  color: #7d3644 !important;
}
.text-success {
  color: #578f34 !important;
}
.text-info {
  color: #1dce11 !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: #36171d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #36171d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #294419 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #107009 !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: #70c770;
}
.alert-info {
  background-color: #1dce11;
}
.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 {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #7d3644;
  border-color: #7d3644;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #7d3644;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c27181;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #97cd75;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b7f9b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #7d3644;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #7d3644;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #7d3644;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #7d3644;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #7d3644;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.scroll-background {
  background-repeat: repeat-x !important;
}
.cid-qzJqXxf3uM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qzJqXxf3uM .nav-item:focus,
.cid-qzJqXxf3uM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qzJqXxf3uM .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qzJqXxf3uM .nav-item .nav-link {
    position: relative;
  }
  .cid-qzJqXxf3uM .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #7d3644, #7d3644);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qzJqXxf3uM .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qzJqXxf3uM .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qzJqXxf3uM .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-qzJqXxf3uM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qzJqXxf3uM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qzJqXxf3uM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qzJqXxf3uM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qzJqXxf3uM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qzJqXxf3uM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qzJqXxf3uM .navbar {
  min-height: 77px;
  justify-content: center;
  background: none;
}
.cid-qzJqXxf3uM .navbar .mbr-overlay {
  transition: all .3s;
  background: #ffffff;
}
.cid-qzJqXxf3uM .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qzJqXxf3uM .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-qzJqXxf3uM .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-qzJqXxf3uM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qzJqXxf3uM .navbar.collapsed .navbar-collapse.show,
.cid-qzJqXxf3uM .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
}
.cid-qzJqXxf3uM .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-qzJqXxf3uM .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  order: -1;
}
.cid-qzJqXxf3uM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qzJqXxf3uM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qzJqXxf3uM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qzJqXxf3uM .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-qzJqXxf3uM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qzJqXxf3uM .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-qzJqXxf3uM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qzJqXxf3uM .navbar .navbar-collapse.show,
  .cid-qzJqXxf3uM .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
  }
  .cid-qzJqXxf3uM .navbar .navbar-collapse.show .brand-container,
  .cid-qzJqXxf3uM .navbar .navbar-collapse.collapsing .brand-container {
    order: -1;
  }
  .cid-qzJqXxf3uM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qzJqXxf3uM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qzJqXxf3uM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qzJqXxf3uM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qzJqXxf3uM .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-qzJqXxf3uM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qzJqXxf3uM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qzJqXxf3uM .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-qzJqXxf3uM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
}
.cid-qzJqXxf3uM .navbar.navbar-short {
  min-height: 60px;
}
.cid-qzJqXxf3uM .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-qzJqXxf3uM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qzJqXxf3uM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qzJqXxf3uM .navbar-brand {
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qzJqXxf3uM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qzJqXxf3uM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qzJqXxf3uM .dropdown-item.active,
.cid-qzJqXxf3uM .dropdown-item:active {
  background-color: transparent;
}
.cid-qzJqXxf3uM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qzJqXxf3uM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qzJqXxf3uM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qzJqXxf3uM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qzJqXxf3uM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qzJqXxf3uM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qzJqXxf3uM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qzJqXxf3uM .navbar-buttons {
  margin-left: auto;
}
.cid-qzJqXxf3uM button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  align-self: center;
}
.cid-qzJqXxf3uM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qzJqXxf3uM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qzJqXxf3uM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qzJqXxf3uM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qzJqXxf3uM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qzJqXxf3uM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qzJqXxf3uM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-qzJqXxf3uM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-qzJqXxf3uM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qzJqXxf3uM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qzJqXxf3uM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qzJqXxf3uM .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qzJqXxf3uM .right-menu,
.cid-qzJqXxf3uM .left-menu {
  flex-basis: 45%;
}
.cid-qzJqXxf3uM .left-menu .navbar-nav {
  justify-content: flex-end;
}
.cid-qzJqXxf3uM .left-menu .navbar-nav ul {
  justify-content: flex-end;
}
.cid-qzJqXxf3uM .brand-container {
  padding: 0 2rem;
  flex-shrink: 0;
}
.cid-qzJqXxf3uM .menu-top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #7d3644;
  padding: .5rem 0;
}
.cid-qzJqXxf3uM .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34%;
  font-size: 0;
  z-index: 2;
}
.cid-qzJqXxf3uM .card-wrapper {
  z-index: 3;
}
.cid-qzJqXxf3uM .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qzJqXxf3uM .navbar-collapse {
  padding-top: 3rem;
}
.cid-qzJqXxf3uM nav.collapsed {
  padding-top: 3rem;
}
.cid-qzJqXxf3uM .opened {
  padding-top: .5rem;
}
@media (max-width: 991px) {
  .cid-qzJqXxf3uM .full-link {
    height: 2.7rem;
  }
  .cid-qzJqXxf3uM .navbar-dropdown {
    padding-top: 3rem;
  }
  .cid-qzJqXxf3uM .navbar-collapse {
    padding-top: 0;
  }
}
.cid-qzJCbKdDcb {
  background-image: url("../../../assets/images/69c5e349448651c462cceeffae256ae2-1200-80-1181x664.jpg");
}
.cid-qzJCbKdDcb .container-fluid {
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-qzJCbKdDcb .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qzJCbKdDcb .mbr-section-subtitle,
.cid-qzJCbKdDcb .mbr-section-btn {
  text-align: center;
}
.cid-qzJCbKdDcb .mbr-section-title {
  text-align: center;
}
.cid-qzJGsZMIRw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qzJGsZMIRw .mbr-text {
  color: #767676;
}
.cid-qzJGsZMIRw h4 {
  text-align: center;
}
.cid-qzJGsZMIRw p {
  text-align: center;
}
.cid-qzJGsZMIRw .card .card-img {
  display: flex;
  justify-content: center;
}
.cid-qzJGsZMIRw .card:hover .step {
  color: #ffffff;
  border: 0px solid transparent;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-qzJGsZMIRw .card:hover .step:before {
  transform: scale(1);
}
.cid-qzJGsZMIRw .step {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s;
}
.cid-qzJGsZMIRw .step:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0);
  transition-duration: 0.3s;
  background: linear-gradient(45deg, #7d3644, #efefef);
  border-radius: 50%;
}
.cid-qzJGsZMIRw .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzJGsZMIRw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7d3644, #7d3644);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-qzJGsZMIRw .mbr-section-title,
  .cid-qzJGsZMIRw .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qzJGsZMIRw .card-title,
.cid-qzJGsZMIRw .card-img {
  color: #7d3644;
}
.cid-qzJNfoj1sh {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qzJNfoj1sh .mbr-text,
.cid-qzJNfoj1sh blockquote {
  color: #232323;
}
.cid-qzJIUh9LdU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qzJIUh9LdU .container-fluid {
  padding: 0 3rem;
}
.cid-qzJIUh9LdU .media-container-column {
  padding: 0 2rem;
}
.cid-qzJIUh9LdU .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qzJIUh9LdU .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qzJxID6blK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzJxID6blK p {
  color: #767676;
}
.cid-qzJxID6blK .row-element,
.cid-qzJxID6blK .image-element {
  padding: 0;
}
.cid-qzJxID6blK .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzJxID6blK .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzJxID6blK .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzJxID6blK .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7d3644, #7d3644);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzJxID6blK .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzJxID6blK .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzJxID6blK .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzJxID6blK .underline .line {
    height: 2px;
  }
  .cid-qzJxID6blK .mbr-title,
  .cid-qzJxID6blK .underline,
  .cid-qzJxID6blK .mbr-text,
  .cid-qzJxID6blK .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzJxKbKn34 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #7ccbf1;
}
.cid-qzJxKbKn34 p {
  color: #767676;
}
.cid-qzJxKbKn34 .main {
  flex-direction: row-reverse;
}
.cid-qzJxKbKn34 .row-element,
.cid-qzJxKbKn34 .image-element {
  padding: 0;
}
.cid-qzJxKbKn34 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzJxKbKn34 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzJxKbKn34 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzJxKbKn34 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7d3644, #7d3644);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzJxKbKn34 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzJxKbKn34 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzJxKbKn34 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzJxKbKn34 .underline .line {
    height: 2px;
  }
  .cid-qzJxKbKn34 .mbr-title,
  .cid-qzJxKbKn34 .underline,
  .cid-qzJxKbKn34 .mbr-text,
  .cid-qzJxKbKn34 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzJxLKqwIk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-qzJxLKqwIk .row-element,
.cid-qzJxLKqwIk .image-element {
  padding: 0;
}
.cid-qzJxLKqwIk .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzJxLKqwIk .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzJxLKqwIk .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzJxLKqwIk .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7d3644, #7d3644);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzJxLKqwIk .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzJxLKqwIk .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzJxLKqwIk .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzJxLKqwIk .underline .line {
    height: 2px;
  }
  .cid-qzJxLKqwIk .mbr-title,
  .cid-qzJxLKqwIk .underline,
  .cid-qzJxLKqwIk .mbr-text,
  .cid-qzJxLKqwIk .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzJxMrAHor {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-qzJxMrAHor p {
  color: #767676;
}
.cid-qzJxMrAHor .main {
  flex-direction: row-reverse;
}
.cid-qzJxMrAHor .row-element,
.cid-qzJxMrAHor .image-element {
  padding: 0;
}
.cid-qzJxMrAHor .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzJxMrAHor .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzJxMrAHor .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzJxMrAHor .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7d3644, #7d3644);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzJxMrAHor .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzJxMrAHor .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzJxMrAHor .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzJxMrAHor .underline .line {
    height: 2px;
  }
  .cid-qzJxMrAHor .mbr-title,
  .cid-qzJxMrAHor .underline,
  .cid-qzJxMrAHor .mbr-text,
  .cid-qzJxMrAHor .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzJADPit5i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzJADPit5i p {
  color: #767676;
}
.cid-qzJADPit5i .row-element,
.cid-qzJADPit5i .image-element {
  padding: 0;
}
.cid-qzJADPit5i .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzJADPit5i .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzJADPit5i .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzJADPit5i .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7d3644, #7d3644);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzJADPit5i .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzJADPit5i .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzJADPit5i .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzJADPit5i .underline .line {
    height: 2px;
  }
  .cid-qzJADPit5i .mbr-title,
  .cid-qzJADPit5i .underline,
  .cid-qzJADPit5i .mbr-text,
  .cid-qzJADPit5i .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzJBygAHPa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qzJBygAHPa p {
  color: #767676;
}
.cid-qzJBygAHPa .main {
  flex-direction: row-reverse;
}
.cid-qzJBygAHPa .row-element,
.cid-qzJBygAHPa .image-element {
  padding: 0;
}
.cid-qzJBygAHPa .image-element {
  display: flex;
  justify-content: center;
}
.cid-qzJBygAHPa .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qzJBygAHPa .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzJBygAHPa .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7d3644, #7d3644);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qzJBygAHPa .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qzJBygAHPa .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qzJBygAHPa .text-content {
    padding: 2rem 1rem;
  }
  .cid-qzJBygAHPa .underline .line {
    height: 2px;
  }
  .cid-qzJBygAHPa .mbr-title,
  .cid-qzJBygAHPa .underline,
  .cid-qzJBygAHPa .mbr-text,
  .cid-qzJBygAHPa .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qzJKqUpr3H {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qzJKqUpr3H .carousel-item {
  justify-content: center;
}
.cid-qzJKqUpr3H .carousel-control-prev {
  justify-content: flex-end;
  align-items: flex-end;
}
.cid-qzJKqUpr3H .carousel-control-next {
  justify-content: flex-start;
  align-items: flex-end;
}
.cid-qzJKqUpr3H .carousel-item.active,
.cid-qzJKqUpr3H .carousel-item-next,
.cid-qzJKqUpr3H .carousel-item-prev {
  display: flex;
}
.cid-qzJKqUpr3H .carousel-controls a {
  transition: opacity .5s;
}
.cid-qzJKqUpr3H .carousel-controls a:hover span,
.cid-qzJKqUpr3H .carousel-controls a:focus span {
  opacity: 1;
}
.cid-qzJKqUpr3H .carousel-controls a:hover svg,
.cid-qzJKqUpr3H .carousel-controls a:focus svg {
  transition: all .25s;
  stroke-width: 3;
}
.cid-qzJKqUpr3H .carousel-controls a:active svg {
  transition: all .1s;
  stroke-width: 5;
}
.cid-qzJKqUpr3H .user_image {
  overflow: hidden;
  display: flex;
}
.cid-qzJKqUpr3H .user_image .user_image_inner {
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: 0 auto 3rem auto;
}
.cid-qzJKqUpr3H .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qzJKqUpr3H .user_text {
  color: #767676;
}
.cid-qzJKqUpr3H .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzJKqUpr3H .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7d3644, #7d3644);
  display: inline-block;
}
.cid-qzJKqUpr3H .testimonials-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qzJKqUpr3H svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qzJKqUpr3H .user_name {
  color: #5a31fb;
}
.cid-qzJKqUpr3H .carousel-controls svg {
  height: 60px;
}
@media (max-width: 230px) {
  .cid-qzJKqUpr3H .user_image_inner {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .cid-qzJKqUpr3H .testimonials-quote,
  .cid-qzJKqUpr3H .user_text,
  .cid-qzJKqUpr3H .user_name,
  .cid-qzJKqUpr3H .user_desk {
    text-align: center !important;
  }
  .cid-qzJKqUpr3H .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .cid-qzJKqUpr3H .mbr-section-title,
  .cid-qzJKqUpr3H .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-qzJKqUpr3H .carousel-control-prev span {
    right: -1rem;
  }
  .cid-qzJKqUpr3H .carousel-control-next span {
    left: -1rem;
  }
  .cid-qzJKqUpr3H .user-text {
    padding-right: 2rem;
  }
  .cid-qzJKqUpr3H .carousel-control-prev,
  .cid-qzJKqUpr3H .carousel-control-next {
    align-items: center;
  }
}
.cid-qzK6aXQ6LO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qzK6aXQ6LO .container-fluid {
  padding: 0 3rem;
}
.cid-qzK6aXQ6LO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #7d3644 50%, #7d3644 120%);
  display: inline-block;
}
.cid-qzK6aXQ6LO .card {
  border-radius: 25px;
  margin-bottom: 2rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-qzK6aXQ6LO .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-qzK6aXQ6LO .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-qzK6aXQ6LO .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qzK6aXQ6LO .card .card-header a.panel-title:hover .sign {
  background-color: #18a46f !important;
}
.cid-qzK6aXQ6LO .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #7d3644;
  padding: 2rem;
  padding-top: 26px;
  color: white;
}
.cid-qzK6aXQ6LO .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.cid-qzK6aXQ6LO .card .card-header a.panel-title h4 .toggle-title {
  user-select: initial;
  pointer-events: auto;
}
.cid-qzK6aXQ6LO .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-qzK6aXQ6LO .container-fluid {
    padding: 0 1rem;
  }
  .cid-qzK6aXQ6LO .header-text {
    padding: 1rem !important;
  }
  .cid-qzK6aXQ6LO .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-qzK6aXQ6LO .panel-body {
    width: calc(100% - 48px);
  }
}
.cid-qzK6aXQ6LO .mbr-section-title,
.cid-qzK6aXQ6LO .underline {
  color: #7d3644;
}
.cid-qzK556aujw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qzK556aujw .container-fluid {
  padding: 0 3rem;
}
.cid-qzK556aujw .mbr-section-title {
  margin-bottom: 1.5em;
  color: #7d3644;
}
.cid-qzK556aujw .input-main {
  width: 99.6%;
  margin-left: .1em;
  justify-content: center;
}
.cid-qzK556aujw .input-main label {
  color: #7d3644;
}
.cid-qzK556aujw .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-qzK556aujw .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-qzK556aujw .input-wrap input {
  border: 1px solid #ddd;
  border-radius: 22px;
  background-color: #efefef;
  padding: 18px 25px;
  width: 96%;
}
.cid-qzK556aujw .form-group {
  padding: 0;
}
.cid-qzK556aujw .form-group textarea {
  background-color: #efefef;
  border-radius: 22px;
  padding: 1rem;
  width: 98%;
}
.cid-qzK556aujw .btn-row {
  padding-left: 0;
}
.cid-qzK556aujw .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-qzK556aujw .container-fluid {
    padding: 0 1rem;
  }
  .cid-qzK556aujw .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-qzL4jxTonA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/2016-tesla-model-x-100576685-h-1920x1096.jpg");
}
.cid-qzL4jxTonA [class^="socicon-"]:before,
.cid-qzL4jxTonA [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-qzL4jxTonA .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qzL4jxTonA .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7d3644, #7d3644);
  display: inline-block;
}
.cid-qzL4jxTonA .socicon {
  color: #5b686b;
}
.cid-qzL4jxTonA .btn-social {
  border-color: #1ba1e2;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-qzL4jxTonA .btn-social:hover {
  background: #1ba1e2;
}
.cid-qzL4jxTonA .btn-social:hover i.socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-qzL4jxTonA .btn {
    font-size: 20px !important;
  }
  .cid-qzL4jxTonA .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-qzL4fWM0pJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7d3644;
}
.cid-qzL4fWM0pJ .social-media {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qzL4fWM0pJ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qzL4fWM0pJ .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qzL4fWM0pJ .logo-section {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qzL4fWM0pJ .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qzL4fWM0pJ .icon-transition span:hover {
  background-color: #7d3644;
}
.cid-qzL4fWM0pJ .mbr-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qzL4fWM0pJ .social-media {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qzL4fWM0pJ .logo-section {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qzL4fWM0pJ .mbr-text {
    margin-bottom: 1.5rem;
  }
}
