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





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #a49692 !important;
}
.bg-success {
  background-color: #be565b !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: #7f6f6a;
  border-color: #7f6f6a;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a49692 !important;
  border-color: #a49692 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #7f6f6a !important;
  border-color: #7f6f6a !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: #7f6f6a !important;
  border-color: #7f6f6a !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: #c9c9c9;
  border-color: #c9c9c9;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !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: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !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: #90373c;
  border-color: #90373c;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #be565b !important;
  border-color: #be565b !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #90373c !important;
  border-color: #90373c !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: #90373c !important;
  border-color: #90373c !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: #a49692;
  border-color: #a49692;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #71635f;
  color: #71635f !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a49692;
  border-color: #a49692;
}
.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: #a49692 !important;
  border-color: #a49692 !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: #efefef;
  border-color: #efefef;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #707070 !important;
  background-color: #efefef;
  border-color: #efefef;
}
.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: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !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: #be565b;
  border-color: #be565b;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #7e3034;
  color: #7e3034 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #be565b;
  border-color: #be565b;
}
.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: #be565b !important;
  border-color: #be565b !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: #a49692 !important;
}
.text-secondary {
  color: #efefef !important;
}
.text-success {
  color: #be565b !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: #71635f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #bcbcbc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #7e3034 !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: #be565b;
}
.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: #a49692;
  border-color: #a49692;
  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: #a49692;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ded9d7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1b2b4;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #a49692;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .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;
}
@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: #a49692;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #a49692;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #a49692;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #a49692;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .nav-item:focus,
.cid-rgQzHRxoRq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgQzHRxoRq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link {
    position: relative;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a49692, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgQzHRxoRq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgQzHRxoRq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgQzHRxoRq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-rgQzHRxoRq .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rgQzHRxoRq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgQzHRxoRq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgQzHRxoRq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgQzHRxoRq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgQzHRxoRq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgQzHRxoRq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgQzHRxoRq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgQzHRxoRq .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-rgQzHRxoRq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgQzHRxoRq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgQzHRxoRq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgQzHRxoRq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rgQzHRxoRq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgQzHRxoRq .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rgQzHRxoRq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgQzHRxoRq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgQzHRxoRq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgQzHRxoRq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgQzHRxoRq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgQzHRxoRq .dropdown-item.active,
.cid-rgQzHRxoRq .dropdown-item:active {
  background-color: transparent;
}
.cid-rgQzHRxoRq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgQzHRxoRq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgQzHRxoRq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgQzHRxoRq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rgQzHRxoRq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgQzHRxoRq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgQzHRxoRq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rgQzHRxoRq .navbar-buttons {
  text-align: center;
}
.cid-rgQzHRxoRq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgQzHRxoRq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgQzHRxoRq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgQzHRxoRq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgQzHRxoRq .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgQzHRxoRq .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgQzHRxoRq .navbar {
    height: 77px;
  }
  .cid-rgQzHRxoRq .navbar.opened {
    height: auto;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rhe1s6ERbo {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rhe1s6ERbo .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-rhe1s6ERbo .modal-body .close {
  background: #1b1b1b;
}
.cid-rhe1s6ERbo .modal-body .close span {
  font-style: normal;
}
.cid-rhe1s6ERbo .carousel-inner > .active,
.cid-rhe1s6ERbo .carousel-inner > .next,
.cid-rhe1s6ERbo .carousel-inner > .prev {
  display: flex;
}
.cid-rhe1s6ERbo .carousel-control .icon-next,
.cid-rhe1s6ERbo .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rhe1s6ERbo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rhe1s6ERbo .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-rhe1s6ERbo .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-rhe1s6ERbo .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rhe1s6ERbo .boxed-slider > div {
  position: relative;
}
.cid-rhe1s6ERbo .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-rhe1s6ERbo .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-rhe1s6ERbo .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rhe1s6ERbo .mbr-table-cell {
  padding: 0;
}
.cid-rhe1s6ERbo .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rhe1s6ERbo .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-rhe1s6ERbo .mbr-overlay {
  z-index: 1;
}
.cid-rhe1s6ERbo .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-rhe1s6ERbo .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-rhe1s6ERbo .carousel-item .container {
    width: 100%;
  }
}
.cid-rhe1s6ERbo .carousel-item-next.carousel-item-left,
.cid-rhe1s6ERbo .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rhe1s6ERbo .active.carousel-item-right,
.cid-rhe1s6ERbo .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rhe1s6ERbo .active.carousel-item-left,
.cid-rhe1s6ERbo .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rhe1s6ERbo .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rhe1s6ERbo .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rhe1s6ERbo .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rhe1s6ERbo .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-rhe1s6ERbo .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rhe1s6ERbo .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rhe1s6ERbo .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rhe1s6ERbo .mbr-slider .carousel-indicators li.active,
.cid-rhe1s6ERbo .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rhe1s6ERbo .mbr-slider .carousel-indicators li::after,
.cid-rhe1s6ERbo .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rhe1s6ERbo .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rhe1s6ERbo .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rhe1s6ERbo .mbr-slider > .container img {
  width: 100%;
}
.cid-rhe1s6ERbo .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-rhe1s6ERbo .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rhe1s6ERbo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rhe1s6ERbo .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rhe1s6ERbo .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rhe1s6ERbo .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-rhe1s6ERbo .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rhe1s6ERbo .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-rhe1s6ERbo .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rhe1s6ERbo .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rhe1s6ERbo .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rhe1s6ERbo .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rhe1s6ERbo .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rhe1s6ERbo .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-rhe1s6ERbo .carousel-inner {
  height: 100%;
}
.cid-rhe1s6ERbo .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-rhe1s6ERbo .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 700px;
  overflow: hidden;
}
.cid-rhe1s6ERbo .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-rhe1s6ERbo .content-slider-wrap {
  width: 100%;
}
.cid-rhe1s6ERbo H2 {
  text-align: center;
}
.cid-rhe1s6ERbo P {
  text-align: center;
}
.cid-rhdDTzBeHQ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-rhdDTzBeHQ .container-fluid {
  padding: 0 2rem;
}
.cid-rhdDTzBeHQ .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-rhdDTzBeHQ .mbr-title {
  padding: 0 1rem;
}
.cid-rhdDTzBeHQ .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-rhdDTzBeHQ .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rhdDTzBeHQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
.cid-rhdDTzBeHQ .image-wrap {
  width: 100%;
}
.cid-rhdDTzBeHQ .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-rhdDTzBeHQ .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-rhdDTzBeHQ .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-rhdDTzBeHQ .container-fluid {
    padding: 0rem;
  }
}
.cid-rhdDTzBeHQ .underline,
.cid-rhdDTzBeHQ .mbr-title I {
  color: #767676;
}
.cid-rhdDTzBeHQ .underline,
.cid-rhdDTzBeHQ .mbr-title B {
  color: #767676;
}
.cid-rhdDTzBeHQ .mbr-text,
.cid-rhdDTzBeHQ .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-rhdDTzBeHQ .underline,
.cid-rhdDTzBeHQ .mbr-title {
  color: #767676;
}
.cid-rk29J5Xqs6 {
  padding-top: 90px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-rk29J5Xqs6 .container-fluid {
  padding: 0 3rem;
}
.cid-rk29J5Xqs6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
.cid-rk29J5Xqs6 .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rk29J5Xqs6 .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rk29J5Xqs6 .card .card-wrapper {
  height: 1%;
}
.cid-rk29J5Xqs6 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rk29J5Xqs6 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rk29J5Xqs6 .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: #fe525b;
}
.cid-rk29J5Xqs6 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rk29J5Xqs6 .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rk29J5Xqs6 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rk29J5Xqs6 .mbr-section-title,
.cid-rk29J5Xqs6 .underline {
  text-align: center;
  color: #ffffff;
}
.cid-rk29J5Xqs6 .mbr-card-text,
.cid-rk29J5Xqs6 .mbr-section-btn {
  color: #ffffff;
}
.cid-rjRymPGEAG {
  padding-top: 105px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-rjRymPGEAG .container-fluid {
  padding: 0 3rem;
}
.cid-rjRymPGEAG .media-container-column {
  padding: 0 2rem;
}
.cid-rjRymPGEAG .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rjRymPGEAG .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rjRxufWjtD {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-rjRxufWjtD .container-fluid {
  padding: 0 3rem;
}
.cid-rjRxufWjtD .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-rjRxufWjtD .card-title {
  text-align: left;
  color: #ffa0a4;
}
.cid-rjRxufWjtD p {
  text-align: left;
}
.cid-rjRxufWjtD .card-img {
  text-align: left;
}
.cid-rjRxufWjtD .card .card-img span {
  color: #efefef;
  font-size: 60px;
  background: linear-gradient(45deg, #efefef, #716561);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rjRxufWjtD .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-rjRxufWjtD .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-rjRxufWjtD .card-title,
.cid-rjRxufWjtD .card-img {
  text-align: center;
  color: #515151;
}
.cid-rjWOylGAeZ {
  padding-top: 30px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-rjWOylGAeZ .container-fluid {
  padding: 0 3rem;
}
.cid-rjWOylGAeZ .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-rjWOylGAeZ .card-title {
  text-align: left;
  color: #ffa0a4;
}
.cid-rjWOylGAeZ p {
  text-align: left;
}
.cid-rjWOylGAeZ .card-img {
  text-align: left;
}
.cid-rjWOylGAeZ .card .card-img span {
  color: #efefef;
  font-size: 60px;
  background: linear-gradient(45deg, #efefef, #716561);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rjWOylGAeZ .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-rjWOylGAeZ .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-rjWOylGAeZ .card-title,
.cid-rjWOylGAeZ .card-img {
  text-align: center;
  color: #515151;
}
.cid-rgQAkg8FIY {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #232323;
}
.cid-rgQAkg8FIY .container-fluid {
  padding: 0 3rem;
}
.cid-rgQAkg8FIY .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #efefef;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-rgQAkg8FIY .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #767676;
}
.cid-rgQAkg8FIY .table-wrap:hover .table-pricing,
.cid-rgQAkg8FIY .table-wrap:hover .table-icon {
  color: #ffffff !important;
}
.cid-rgQAkg8FIY .table-wrap:hover .table-heading,
.cid-rgQAkg8FIY .table-wrap:hover .mbr-section-subtitle {
  color: #ffffff !important;
}
.cid-rgQAkg8FIY .section-heading {
  margin-bottom: 2rem;
}
.cid-rgQAkg8FIY .table-heading {
  margin-bottom: 2em;
}
.cid-rgQAkg8FIY .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-rgQAkg8FIY .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #a49692, #efefef);
  display: inline-block;
}
.cid-rgQAkg8FIY ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-rgQAkg8FIY ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rgQAkg8FIY ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-rgQAkg8FIY hr {
  display: none;
  background: #efefef;
}
.cid-rgQAkg8FIY hr {
  display: block;
}
.cid-rgQAkg8FIY .table-heading,
.cid-rgQAkg8FIY .table-pricing,
.cid-rgQAkg8FIY .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-rgQAkg8FIY .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-rgQAkg8FIY .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rgQAkg8FIY .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-rgQAkg8FIY .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-rgQAkg8FIY .container-fluid {
    padding: 0 0rem;
  }
}
.cid-rgQAkg8FIY .mbr-section-title,
.cid-rgQAkg8FIY .underline {
  color: #ffffff;
}
.cid-rgQAkg8FIY .table-pricing,
.cid-rgQAkg8FIY .table-icon {
  color: #ffffff;
  text-align: center;
}
.cid-rgQAkg8FIY .mbr-section-subtitle,
.cid-rgQAkg8FIY .mbr-section-btn {
  color: #cccccc;
  text-align: center;
}
.cid-rgQEFAZCkx {
  padding-top: 15px;
  padding-bottom: 105px;
  background: #232323;
}
.cid-rgQEFAZCkx .container-fluid {
  padding: 0 3rem;
}
.cid-rgQEFAZCkx .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #efefef;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-rgQEFAZCkx .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #767676;
}
.cid-rgQEFAZCkx .table-wrap:hover .table-pricing,
.cid-rgQEFAZCkx .table-wrap:hover .table-icon {
  color: #ffffff !important;
}
.cid-rgQEFAZCkx .table-wrap:hover .table-heading,
.cid-rgQEFAZCkx .table-wrap:hover .mbr-section-subtitle {
  color: #ffffff !important;
}
.cid-rgQEFAZCkx .section-heading {
  margin-bottom: 2rem;
}
.cid-rgQEFAZCkx .table-heading {
  margin-bottom: 2em;
}
.cid-rgQEFAZCkx .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-rgQEFAZCkx .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #a49692, #efefef);
  display: inline-block;
}
.cid-rgQEFAZCkx ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-rgQEFAZCkx ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rgQEFAZCkx ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-rgQEFAZCkx hr {
  display: none;
  background: #efefef;
}
.cid-rgQEFAZCkx hr {
  display: block;
}
.cid-rgQEFAZCkx .table-heading,
.cid-rgQEFAZCkx .table-pricing,
.cid-rgQEFAZCkx .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-rgQEFAZCkx .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-rgQEFAZCkx .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rgQEFAZCkx .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-rgQEFAZCkx .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-rgQEFAZCkx .container-fluid {
    padding: 0 0rem;
  }
}
.cid-rgQEFAZCkx .table-pricing,
.cid-rgQEFAZCkx .table-icon {
  color: #ffffff;
  text-align: center;
}
.cid-rgQEFAZCkx .mbr-section-subtitle,
.cid-rgQEFAZCkx .mbr-section-btn {
  color: #cccccc;
  text-align: center;
}
.cid-rhe97YVDZh {
  overflow-x: hidden !important;
}
.cid-rhe97YVDZh .container-fluid {
  padding: 0 3rem;
}
.cid-rhe97YVDZh .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-rhe97YVDZh .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-rhe97YVDZh .mbr-overlay {
  z-index: 1;
}
.cid-rhe97YVDZh .block-content {
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 150px;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-rhe97YVDZh .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rhe97YVDZh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-rhe97YVDZh .mbr-section-subtitle,
.cid-rhe97YVDZh .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-rgQApXndAV {
  padding-top: 75px;
  padding-bottom: 135px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-rgQApXndAV ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-rgQApXndAV ul li {
  padding: 1rem 0;
}
.cid-rgQApXndAV ul li:hover {
  color: #a49692;
}
.cid-rgQApXndAV .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-rgQApXndAV .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-rgQApXndAV .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-rgQApXndAV .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rgQApXndAV .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-rgQApXndAV .map {
    height: auto;
  }
}
.cid-rgQApXndAV .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rgQApXndAV .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
}
.cid-rgQApXndAV .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rgQApXndAV .social-list a:hover {
  opacity: 1;
}
.cid-rgQApXndAV .row-element,
.cid-rgQApXndAV .image-element {
  padding: 0;
}
.cid-rgQApXndAV .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgQApXndAV .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rgQApXndAV .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rgQApXndAV .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rgQApXndAV .text-content {
    padding: 2rem 1rem;
  }
  .cid-rgQApXndAV .underline .line {
    height: 2px;
  }
  .cid-rgQApXndAV .mbr-title,
  .cid-rgQApXndAV .underline,
  .cid-rgQApXndAV .mbr-text,
  .cid-rgQApXndAV .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rgQApXndAV .mbr-title,
.cid-rgQApXndAV .underline {
  color: #ffffff;
  text-align: center;
}
.cid-rgQApXndAV .mbr-text,
.cid-rgQApXndAV .mbr-section-btn {
  color: #ffffff;
}
.cid-rgQApXndAV mbr-list LI {
  color: #ffffff;
}
.cid-rgQApXndAV mbr-list {
  text-align: center;
}
.cid-rgQApXndAV .mbr-list,
.cid-rgQApXndAV .social-list mbr-list {
  color: #ffffff;
  text-align: center;
}
.cid-rgQApXndAV .mbr-text {
  text-align: center;
}
.cid-rgQAuLPxdR {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #232323;
}
.cid-rgQAuLPxdR .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rgQAuLPxdR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rgQAuLPxdR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rgQAuLPxdR .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rgQAuLPxdR .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-rgQAuLPxdR .icon-transition span:hover {
  background-color: #efefef;
}
.cid-rgQAuLPxdR .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-rgQAuLPxdR .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rgQAuLPxdR .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rgQAuLPxdR .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .nav-item:focus,
.cid-rgQzHRxoRq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgQzHRxoRq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link {
    position: relative;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a49692, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgQzHRxoRq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgQzHRxoRq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgQzHRxoRq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-rgQzHRxoRq .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rgQzHRxoRq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgQzHRxoRq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgQzHRxoRq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgQzHRxoRq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgQzHRxoRq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgQzHRxoRq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgQzHRxoRq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgQzHRxoRq .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-rgQzHRxoRq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgQzHRxoRq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgQzHRxoRq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgQzHRxoRq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rgQzHRxoRq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgQzHRxoRq .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rgQzHRxoRq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgQzHRxoRq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgQzHRxoRq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgQzHRxoRq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgQzHRxoRq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgQzHRxoRq .dropdown-item.active,
.cid-rgQzHRxoRq .dropdown-item:active {
  background-color: transparent;
}
.cid-rgQzHRxoRq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgQzHRxoRq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgQzHRxoRq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgQzHRxoRq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rgQzHRxoRq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgQzHRxoRq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgQzHRxoRq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rgQzHRxoRq .navbar-buttons {
  text-align: center;
}
.cid-rgQzHRxoRq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgQzHRxoRq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgQzHRxoRq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgQzHRxoRq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgQzHRxoRq .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgQzHRxoRq .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgQzHRxoRq .navbar {
    height: 77px;
  }
  .cid-rgQzHRxoRq .navbar.opened {
    height: auto;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-riHEoj5R7S {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-riHEoj5R7S .container-fluid {
  padding: 0 3rem;
}
.cid-riHEoj5R7S .media-container-column {
  padding: 0 2rem;
}
.cid-riHEoj5R7S .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-riHEoj5R7S .container-fluid {
    padding: 0 1rem;
  }
}
.cid-riHEoj5R7S .mbr-section-title SPAN {
  color: #ffffff;
}
.cid-riHEbtFZoC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-riHEbtFZoC .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-riHEbtFZoC .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-riHEbtFZoC .row-element,
.cid-riHEbtFZoC .image-element {
  padding: 0;
}
.cid-riHEbtFZoC .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-riHEbtFZoC .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-riHEbtFZoC .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-riHEbtFZoC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-riHEbtFZoC .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-riHEbtFZoC .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-riHEbtFZoC .text-content {
    padding: 2rem 1rem;
  }
  .cid-riHEbtFZoC .underline .line {
    height: 2px;
  }
  .cid-riHEbtFZoC .mbr-title,
  .cid-riHEbtFZoC .underline,
  .cid-riHEbtFZoC .mbr-text,
  .cid-riHEbtFZoC .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rk265i1cly {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rk265i1cly .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rk265i1cly .row-element,
.cid-rk265i1cly .image-element {
  padding: 0;
}
.cid-rk265i1cly .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rk265i1cly .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rk265i1cly .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rk265i1cly .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rk265i1cly .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rk265i1cly .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rk265i1cly .text-content {
    padding: 2rem 1rem;
  }
  .cid-rk265i1cly .underline .line {
    height: 2px;
  }
  .cid-rk265i1cly .mbr-title,
  .cid-rk265i1cly .underline,
  .cid-rk265i1cly .mbr-text,
  .cid-rk265i1cly .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rk265i1cly .mbr-title,
.cid-rk265i1cly .underline {
  color: #232323;
}
.cid-rk265i1cly .mbr-text,
.cid-rk265i1cly .mbr-section-btn {
  color: #232323;
}
.cid-riHEcGITzW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-riHEcGITzW .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-riHEcGITzW .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-riHEcGITzW .row-element,
.cid-riHEcGITzW .image-element {
  padding: 0;
}
.cid-riHEcGITzW .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-riHEcGITzW .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-riHEcGITzW .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-riHEcGITzW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-riHEcGITzW .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-riHEcGITzW .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-riHEcGITzW .text-content {
    padding: 2rem 1rem;
  }
  .cid-riHEcGITzW .underline .line {
    height: 2px;
  }
  .cid-riHEcGITzW .mbr-title,
  .cid-riHEcGITzW .underline,
  .cid-riHEcGITzW .mbr-text,
  .cid-riHEcGITzW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rjM0GiJ6Qw {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rjM0GiJ6Qw .mbr-text {
  color: #767676;
}
.cid-rjM0GiJ6Qw h4 {
  text-align: center;
}
.cid-rjM0GiJ6Qw p {
  text-align: center;
}
.cid-rjM0GiJ6Qw .card .card-img {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rjM0GiJ6Qw .card:hover .step {
  color: #ffffff;
  border: 0px solid transparent;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rjM0GiJ6Qw .card:hover .step:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cid-rjM0GiJ6Qw .step {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rjM0GiJ6Qw .step:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.3s;
  background: linear-gradient(45deg, #ffffff, #879a9f);
  border-radius: 50%;
}
.cid-rjM0GiJ6Qw .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjM0GiJ6Qw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-rjM0GiJ6Qw .mbr-section-title,
  .cid-rjM0GiJ6Qw .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-rjM0GiJ6Qw .card-title,
.cid-rjM0GiJ6Qw .card-img {
  text-align: center;
}
.cid-rgQAuLPxdR {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #232323;
}
.cid-rgQAuLPxdR .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rgQAuLPxdR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rgQAuLPxdR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rgQAuLPxdR .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rgQAuLPxdR .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-rgQAuLPxdR .icon-transition span:hover {
  background-color: #efefef;
}
.cid-rgQAuLPxdR .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-rgQAuLPxdR .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rgQAuLPxdR .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rgQAuLPxdR .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .nav-item:focus,
.cid-rgQzHRxoRq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgQzHRxoRq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link {
    position: relative;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a49692, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgQzHRxoRq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgQzHRxoRq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgQzHRxoRq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-rgQzHRxoRq .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rgQzHRxoRq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgQzHRxoRq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgQzHRxoRq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgQzHRxoRq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgQzHRxoRq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgQzHRxoRq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgQzHRxoRq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgQzHRxoRq .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-rgQzHRxoRq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgQzHRxoRq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgQzHRxoRq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgQzHRxoRq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rgQzHRxoRq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgQzHRxoRq .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rgQzHRxoRq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgQzHRxoRq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgQzHRxoRq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgQzHRxoRq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgQzHRxoRq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgQzHRxoRq .dropdown-item.active,
.cid-rgQzHRxoRq .dropdown-item:active {
  background-color: transparent;
}
.cid-rgQzHRxoRq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgQzHRxoRq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgQzHRxoRq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgQzHRxoRq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rgQzHRxoRq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgQzHRxoRq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgQzHRxoRq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rgQzHRxoRq .navbar-buttons {
  text-align: center;
}
.cid-rgQzHRxoRq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgQzHRxoRq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgQzHRxoRq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgQzHRxoRq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgQzHRxoRq .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgQzHRxoRq .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgQzHRxoRq .navbar {
    height: 77px;
  }
  .cid-rgQzHRxoRq .navbar.opened {
    height: auto;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rjLdWLeMAq {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rjLdWLeMAq .container-fluid {
  padding: 0 3rem;
}
.cid-rjLdWLeMAq .media-container-column {
  padding: 0 2rem;
}
.cid-rjLdWLeMAq .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rjLdWLeMAq .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rjLdNilF6p {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rjLdNilF6p .mbr-text,
.cid-rjLdNilF6p blockquote {
  color: #232323;
}
.cid-rjLdNilF6p .mbr-text DIV {
  text-align: left;
}
.cid-rjLepuROHu {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rjLepuROHu .container-fluid {
  padding: 0 3rem;
}
.cid-rjLepuROHu .media-container-column {
  padding: 0 2rem;
}
.cid-rjLepuROHu .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rjLepuROHu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rjLeC1fSvK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rjLeC1fSvK .mbr-text,
.cid-rjLeC1fSvK blockquote {
  color: #232323;
}
.cid-rjLeC1fSvK .mbr-text DIV {
  text-align: left;
}
.cid-rgQAuLPxdR {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #232323;
}
.cid-rgQAuLPxdR .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rgQAuLPxdR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rgQAuLPxdR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rgQAuLPxdR .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rgQAuLPxdR .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-rgQAuLPxdR .icon-transition span:hover {
  background-color: #efefef;
}
.cid-rgQAuLPxdR .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-rgQAuLPxdR .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rgQAuLPxdR .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rgQAuLPxdR .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .nav-item:focus,
.cid-rgQzHRxoRq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgQzHRxoRq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link {
    position: relative;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a49692, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgQzHRxoRq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgQzHRxoRq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgQzHRxoRq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-rgQzHRxoRq .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rgQzHRxoRq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgQzHRxoRq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgQzHRxoRq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgQzHRxoRq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgQzHRxoRq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgQzHRxoRq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgQzHRxoRq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgQzHRxoRq .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-rgQzHRxoRq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgQzHRxoRq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgQzHRxoRq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgQzHRxoRq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rgQzHRxoRq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgQzHRxoRq .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rgQzHRxoRq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgQzHRxoRq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgQzHRxoRq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgQzHRxoRq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgQzHRxoRq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgQzHRxoRq .dropdown-item.active,
.cid-rgQzHRxoRq .dropdown-item:active {
  background-color: transparent;
}
.cid-rgQzHRxoRq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgQzHRxoRq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgQzHRxoRq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgQzHRxoRq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rgQzHRxoRq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgQzHRxoRq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgQzHRxoRq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rgQzHRxoRq .navbar-buttons {
  text-align: center;
}
.cid-rgQzHRxoRq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgQzHRxoRq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgQzHRxoRq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgQzHRxoRq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgQzHRxoRq .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgQzHRxoRq .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgQzHRxoRq .navbar {
    height: 77px;
  }
  .cid-rgQzHRxoRq .navbar.opened {
    height: auto;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rjLhGuqqqL {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-rjLhGuqqqL .container-fluid {
  padding: 0 3rem;
}
.cid-rjLhGuqqqL .media-container-column {
  padding: 0 2rem;
}
.cid-rjLhGuqqqL .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-rjLhGuqqqL .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rjLhGuqqqL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rjLhfAJjZQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rjLhfAJjZQ .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rjLhfAJjZQ .row-element,
.cid-rjLhfAJjZQ .image-element {
  padding: 0;
}
.cid-rjLhfAJjZQ .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rjLhfAJjZQ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rjLhfAJjZQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjLhfAJjZQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rjLhfAJjZQ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rjLhfAJjZQ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rjLhfAJjZQ .text-content {
    padding: 2rem 1rem;
  }
  .cid-rjLhfAJjZQ .underline .line {
    height: 2px;
  }
  .cid-rjLhfAJjZQ .mbr-title,
  .cid-rjLhfAJjZQ .underline,
  .cid-rjLhfAJjZQ .mbr-text,
  .cid-rjLhfAJjZQ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rjLhfAJjZQ .mbr-text,
.cid-rjLhfAJjZQ .mbr-section-btn {
  color: #484848;
}
.cid-rjLhfAJjZQ .mbr-title,
.cid-rjLhfAJjZQ .underline {
  color: #484848;
}
.cid-rjLhivhSJ3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-rjLhivhSJ3 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rjLhivhSJ3 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rjLhivhSJ3 .row-element,
.cid-rjLhivhSJ3 .image-element {
  padding: 0;
}
.cid-rjLhivhSJ3 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rjLhivhSJ3 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rjLhivhSJ3 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjLhivhSJ3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rjLhivhSJ3 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rjLhivhSJ3 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rjLhivhSJ3 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rjLhivhSJ3 .underline .line {
    height: 2px;
  }
  .cid-rjLhivhSJ3 .mbr-title,
  .cid-rjLhivhSJ3 .underline,
  .cid-rjLhivhSJ3 .mbr-text,
  .cid-rjLhivhSJ3 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rjLhkUdJtW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rjLhkUdJtW .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rjLhkUdJtW .row-element,
.cid-rjLhkUdJtW .image-element {
  padding: 0;
}
.cid-rjLhkUdJtW .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rjLhkUdJtW .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rjLhkUdJtW .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjLhkUdJtW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rjLhkUdJtW .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rjLhkUdJtW .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rjLhkUdJtW .text-content {
    padding: 2rem 1rem;
  }
  .cid-rjLhkUdJtW .underline .line {
    height: 2px;
  }
  .cid-rjLhkUdJtW .mbr-title,
  .cid-rjLhkUdJtW .underline,
  .cid-rjLhkUdJtW .mbr-text,
  .cid-rjLhkUdJtW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rjLhkUdJtW .mbr-title,
.cid-rjLhkUdJtW .underline {
  color: #484848;
}
.cid-rjLhkUdJtW .mbr-text,
.cid-rjLhkUdJtW .mbr-section-btn {
  color: #484848;
}
.cid-rjLhlqd4Cx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-rjLhlqd4Cx .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rjLhlqd4Cx .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rjLhlqd4Cx .row-element,
.cid-rjLhlqd4Cx .image-element {
  padding: 0;
}
.cid-rjLhlqd4Cx .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rjLhlqd4Cx .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rjLhlqd4Cx .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjLhlqd4Cx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rjLhlqd4Cx .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rjLhlqd4Cx .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rjLhlqd4Cx .text-content {
    padding: 2rem 1rem;
  }
  .cid-rjLhlqd4Cx .underline .line {
    height: 2px;
  }
  .cid-rjLhlqd4Cx .mbr-title,
  .cid-rjLhlqd4Cx .underline,
  .cid-rjLhlqd4Cx .mbr-text,
  .cid-rjLhlqd4Cx .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rjLhlU1PLa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rjLhlU1PLa .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rjLhlU1PLa .row-element,
.cid-rjLhlU1PLa .image-element {
  padding: 0;
}
.cid-rjLhlU1PLa .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rjLhlU1PLa .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rjLhlU1PLa .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjLhlU1PLa .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rjLhlU1PLa .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rjLhlU1PLa .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rjLhlU1PLa .text-content {
    padding: 2rem 1rem;
  }
  .cid-rjLhlU1PLa .underline .line {
    height: 2px;
  }
  .cid-rjLhlU1PLa .mbr-title,
  .cid-rjLhlU1PLa .underline,
  .cid-rjLhlU1PLa .mbr-text,
  .cid-rjLhlU1PLa .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rjLhlU1PLa .mbr-title,
.cid-rjLhlU1PLa .underline {
  color: #484848;
}
.cid-rjLhlU1PLa .mbr-text,
.cid-rjLhlU1PLa .mbr-section-btn {
  color: #484848;
}
.cid-rjWPYB0ny4 {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #232323;
}
.cid-rjWPYB0ny4 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rjWPYB0ny4 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rjWPYB0ny4 .row-element,
.cid-rjWPYB0ny4 .image-element {
  padding: 0;
}
.cid-rjWPYB0ny4 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rjWPYB0ny4 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rjWPYB0ny4 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjWPYB0ny4 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rjWPYB0ny4 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rjWPYB0ny4 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rjWPYB0ny4 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rjWPYB0ny4 .underline .line {
    height: 2px;
  }
  .cid-rjWPYB0ny4 .mbr-title,
  .cid-rjWPYB0ny4 .underline,
  .cid-rjWPYB0ny4 .mbr-text,
  .cid-rjWPYB0ny4 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rgQAuLPxdR {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #232323;
}
.cid-rgQAuLPxdR .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rgQAuLPxdR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rgQAuLPxdR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rgQAuLPxdR .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rgQAuLPxdR .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-rgQAuLPxdR .icon-transition span:hover {
  background-color: #efefef;
}
.cid-rgQAuLPxdR .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-rgQAuLPxdR .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rgQAuLPxdR .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rgQAuLPxdR .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .nav-item:focus,
.cid-rgQzHRxoRq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgQzHRxoRq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link {
    position: relative;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a49692, #efefef);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgQzHRxoRq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgQzHRxoRq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgQzHRxoRq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgQzHRxoRq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-rgQzHRxoRq .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rgQzHRxoRq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgQzHRxoRq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgQzHRxoRq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgQzHRxoRq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgQzHRxoRq .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-rgQzHRxoRq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgQzHRxoRq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgQzHRxoRq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgQzHRxoRq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgQzHRxoRq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgQzHRxoRq .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-rgQzHRxoRq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgQzHRxoRq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgQzHRxoRq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgQzHRxoRq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgQzHRxoRq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rgQzHRxoRq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgQzHRxoRq .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rgQzHRxoRq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgQzHRxoRq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgQzHRxoRq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgQzHRxoRq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgQzHRxoRq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgQzHRxoRq .dropdown-item.active,
.cid-rgQzHRxoRq .dropdown-item:active {
  background-color: transparent;
}
.cid-rgQzHRxoRq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgQzHRxoRq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgQzHRxoRq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgQzHRxoRq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rgQzHRxoRq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgQzHRxoRq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgQzHRxoRq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rgQzHRxoRq .navbar-buttons {
  text-align: center;
}
.cid-rgQzHRxoRq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgQzHRxoRq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgQzHRxoRq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgQzHRxoRq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgQzHRxoRq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgQzHRxoRq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgQzHRxoRq .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgQzHRxoRq .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgQzHRxoRq .navbar {
    height: 77px;
  }
  .cid-rgQzHRxoRq .navbar.opened {
    height: auto;
  }
  .cid-rgQzHRxoRq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rjLnQ91CGY {
  padding-top: 120px;
  padding-bottom: 90px;
  background: #232323;
}
.cid-rjLnQ91CGY .container-fluid {
  padding: 0 3rem;
}
.cid-rjLnQ91CGY .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjLnQ91CGY .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
.cid-rjLnQ91CGY .title-wrap {
  padding-left: 0;
  padding-right: 0;
}
.cid-rjLnQ91CGY .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-rjLnQ91CGY .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-rjLnQ91CGY .image-wrap img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rjLnQ91CGY .content-section {
  padding: 3rem;
}
.cid-rjLnQ91CGY .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-rjLnQ91CGY .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #ffffff;
  padding: 0rem;
  z-index: 10;
  border-radius: 15px;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .cid-rjLnQ91CGY .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-rjLnQ91CGY .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-rjLnQ91CGY .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-rjLnQ91CGY .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-rjLnQ91CGY .underline,
.cid-rjLnQ91CGY .mbr-title {
  color: #efefef;
}
.cid-rjLnQ91CGY .mbr-text DIV {
  text-align: left;
}
.cid-rjMI9OjnSy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rjMI9OjnSy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rjMI9OjnSy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rjMI9OjnSy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rjMI9OjnSy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rjMI9OjnSy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rjMI9OjnSy .icon-focus {
  display: none;
}
.cid-rjMI9OjnSy .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-rjMI9OjnSy ul {
  font-size: 0;
}
.cid-rjMI9OjnSy .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rjMI9OjnSy .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rjMI9OjnSy .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #a49692, #efefef);
}
.cid-rjMI9OjnSy .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rjMI9OjnSy .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rjMI9OjnSy .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rjMI9OjnSy .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjMI9OjnSy .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
.cid-rjMI9OjnSy .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rjMI9OjnSy .btn:hover {
  background: transparent !important;
}
.cid-rjMI9OjnSy .btn:hover:before {
  background: transparent !important;
}
.cid-rjMI9OjnSy .btn:before {
  background-color: transparent !important;
}
.cid-rjMI9OjnSy .btn:focus {
  box-shadow: none;
}
.cid-rjLot0ccbE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rjLot0ccbE .mbr-text {
  color: #767676;
}
.cid-rjLot0ccbE h4 {
  text-align: center;
}
.cid-rjLot0ccbE p {
  text-align: center;
}
.cid-rjLot0ccbE .card .card-img {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rjLot0ccbE .card:hover .step {
  color: #ffffff;
  border: 0px solid transparent;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rjLot0ccbE .card:hover .step:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cid-rjLot0ccbE .step {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rjLot0ccbE .step:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.3s;
  background: linear-gradient(45deg, #ffffff, #828282);
  border-radius: 50%;
}
.cid-rjLot0ccbE .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rjLot0ccbE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a49692, #efefef);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-rjLot0ccbE .mbr-section-title,
  .cid-rjLot0ccbE .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-rgQAuLPxdR {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #232323;
}
.cid-rgQAuLPxdR .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rgQAuLPxdR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rgQAuLPxdR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rgQAuLPxdR .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rgQAuLPxdR .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-rgQAuLPxdR .icon-transition span:hover {
  background-color: #efefef;
}
.cid-rgQAuLPxdR .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-rgQAuLPxdR .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rgQAuLPxdR .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rgQAuLPxdR .mbr-text {
    margin-bottom: 1.5rem;
  }
}
