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





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Ubuntu', 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 {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #caa036 !important;
}
.bg-success {
  background-color: #d1b883 !important;
}
.bg-info {
  background-color: #16a16c !important;
}
.bg-warning {
  background-color: #b2ccd2 !important;
}
.bg-danger {
  background-color: #232323 !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: #8e7025;
  border-color: #8e7025;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #caa036 !important;
  border-color: #caa036 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #8e7025 !important;
  border-color: #8e7025 !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: #8e7025 !important;
  border-color: #8e7025 !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: #a4830a;
  border-color: #a4830a;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ecbd0f !important;
  border-color: #ecbd0f !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #a4830a !important;
  border-color: #a4830a !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a4830a !important;
  border-color: #a4830a !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: #0d5e3f;
  border-color: #0d5e3f;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #16a16c !important;
  border-color: #16a16c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #0d5e3f !important;
  border-color: #0d5e3f !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: #0d5e3f !important;
  border-color: #0d5e3f !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: #bc984b;
  border-color: #bc984b;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #d1b883 !important;
  border-color: #d1b883 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #bc984b !important;
  border-color: #bc984b !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: #bc984b !important;
  border-color: #bc984b !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: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !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: #82acb6 !important;
  border-color: #82acb6 !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: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !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: #caa036;
  border-color: #caa036;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #7a6020;
  color: #7a6020 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #caa036;
  border-color: #caa036;
}
.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: #caa036 !important;
  border-color: #caa036 !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: #ecbd0f;
  border-color: #ecbd0f;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #8c7009;
  color: #8c7009 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ecbd0f;
  border-color: #ecbd0f;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ecbd0f !important;
  border-color: #ecbd0f !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: #16a16c;
  border-color: #16a16c;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #0a4730;
  color: #0a4730 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #16a16c;
  border-color: #16a16c;
}
.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: #16a16c !important;
  border-color: #16a16c !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: #d1b883;
  border-color: #d1b883;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #ae8b40;
  color: #ae8b40 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #d1b883;
  border-color: #d1b883;
}
.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: #d1b883 !important;
  border-color: #d1b883 !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: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.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: #b2ccd2 !important;
  border-color: #b2ccd2 !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: #232323;
  border-color: #232323;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #232323;
  border-color: #232323;
}
.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: #232323 !important;
  border-color: #232323 !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: #caa036 !important;
}
.text-secondary {
  color: #ecbd0f !important;
}
.text-success {
  color: #d1b883 !important;
}
.text-info {
  color: #16a16c !important;
}
.text-warning {
  color: #b2ccd2 !important;
}
.text-danger {
  color: #232323 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #7a6020 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8c7009 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ae8b40 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #0a4730 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #72a1ac !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !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: #d1b883;
}
.alert-info {
  background-color: #16a16c;
}
.alert-warning {
  background-color: #b2ccd2;
}
.alert-danger {
  background-color: #232323;
}
.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: #caa036;
  border-color: #caa036;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #caa036;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f5ecd7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #4fe7ad;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d5d5d5;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #caa036;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #caa036;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #caa036;
  border-bottom-color: #caa036;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #caa036 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ecbd0f !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("../../../data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23caa036' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rx7U9iORwj .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-rx7U9iORwj .nav-item:focus,
.cid-rx7U9iORwj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rx7U9iORwj .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rx7U9iORwj .nav-item .nav-link {
    position: relative;
  }
  .cid-rx7U9iORwj .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #caa036, #ecbd0f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rx7U9iORwj .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rx7U9iORwj .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rx7U9iORwj .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-rx7U9iORwj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rx7U9iORwj .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rx7U9iORwj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rx7U9iORwj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rx7U9iORwj .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-rx7U9iORwj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rx7U9iORwj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rx7U9iORwj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-rx7U9iORwj .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rx7U9iORwj .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rx7U9iORwj .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rx7U9iORwj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rx7U9iORwj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rx7U9iORwj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-rx7U9iORwj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rx7U9iORwj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rx7U9iORwj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rx7U9iORwj .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-rx7U9iORwj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rx7U9iORwj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rx7U9iORwj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rx7U9iORwj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rx7U9iORwj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rx7U9iORwj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rx7U9iORwj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rx7U9iORwj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rx7U9iORwj .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-rx7U9iORwj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rx7U9iORwj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rx7U9iORwj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rx7U9iORwj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rx7U9iORwj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rx7U9iORwj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rx7U9iORwj .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rx7U9iORwj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rx7U9iORwj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rx7U9iORwj .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-rx7U9iORwj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rx7U9iORwj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rx7U9iORwj .dropdown-item.active,
.cid-rx7U9iORwj .dropdown-item:active {
  background-color: transparent;
}
.cid-rx7U9iORwj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rx7U9iORwj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rx7U9iORwj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rx7U9iORwj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rx7U9iORwj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rx7U9iORwj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rx7U9iORwj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rx7U9iORwj .navbar-buttons {
  text-align: center;
}
.cid-rx7U9iORwj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rx7U9iORwj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rx7U9iORwj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rx7U9iORwj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rx7U9iORwj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rx7U9iORwj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rx7U9iORwj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rx7U9iORwj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rx7U9iORwj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rx7U9iORwj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rx7U9iORwj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rx7U9iORwj a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rx7U9iORwj .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rx7U9iORwj .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-rx7U9iORwj .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rx7U9iORwj .navbar {
    height: 77px;
  }
  .cid-rx7U9iORwj .navbar.opened {
    height: auto;
  }
  .cid-rx7U9iORwj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rCjTwWpVZK {
  background-image: url("../../../assets/images/9999999-2000x10550.jpg");
}
.cid-rCjTwWpVZK .mbr-overlay {
  background: #fe525b;
  background: linear-gradient(45deg, #fe525b, #000000);
  background: radial-gradient(#fe525b, #000000);
}
.cid-rCjTwWpVZK .mbr-section-title {
  margin: 0;
}
.cid-rx7UpZ4eJc {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #d1b883;
}
.cid-rx7UpZ4eJc .mbr-section-subtitle {
  color: #876613;
}
.cid-rx7UpZ4eJc .mbr-text {
  color: #767676;
}
.cid-rx7UpZ4eJc .card {
  display: block;
  position: relative;
}
.cid-rx7UpZ4eJc .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rx7UpZ4eJc .card-wrapper {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rx7UpZ4eJc .card-wrapper .card-img {
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.cid-rx7UpZ4eJc .card-wrapper .card-img .mbr-overlay {
  background: #876613;
  display: block;
  opacity: 0.8;
  transition: all .3s;
  border-bottom-left-radius: 50%;
  background: linear-gradient(135deg, #876613, #767676);
}
.cid-rx7UpZ4eJc .card-wrapper .card-img .mbr-section-btn {
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  transition: opacity .3s;
  margin: auto;
}
.cid-rx7UpZ4eJc .card-wrapper .card-box {
  background-color: #d1b883;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-rx7UpZ4eJc .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rx7UpZ4eJc .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rx7UpZ4eJc .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rx7UpZ4eJc .popup-btn .mbr-overlay {
  opacity: 0;
  height: 0;
  bottom: 0;
  top: auto;
  border-bottom-left-radius: 0 !important;
}
.cid-rx7UpZ4eJc .popup-btn .mbr-section-btn {
  opacity: 0;
}
.cid-rx7UpZ4eJc .popup-btn:hover .mbr-overlay {
  opacity: 0.8;
  height: 100%;
}
.cid-rx7UpZ4eJc .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-rx7UpZ4eJc .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rx7UpZ4eJc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-rx7UpZ4eJc .mbr-section-title,
  .cid-rx7UpZ4eJc .underline,
  .cid-rx7UpZ4eJc .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-rx7UpZ4eJc .mbr-section-title,
.cid-rx7UpZ4eJc .underline {
  color: #876613;
}
.cid-rx7UpZ4eJc .card-title {
  color: #876613;
}
.cid-rx7UKcPUir {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rx7UKcPUir .container-fluid {
  padding: 0 3rem;
}
.cid-rx7UKcPUir .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #caa036 50%, #ecbd0f 120%);
  display: inline-block;
}
.cid-rx7UKcPUir .mbr-section-title {
  color: #000000;
}
.cid-rx7UKcPUir .mbr-section-subtitle {
  color: #000000;
}
.cid-rx7UKcPUir .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-rx7UKcPUir .header-text {
  padding: 2rem 1rem !important;
}
.cid-rx7UKcPUir .card {
  border-radius: 25px !important;
  background: #cccccc;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-rx7UKcPUir .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-rx7UKcPUir .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-rx7UKcPUir .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rx7UKcPUir .card .card-header a.panel-title:hover .sign {
  background-color: #d1b883 !important;
}
.cid-rx7UKcPUir .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #caa036;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-rx7UKcPUir .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rx7UKcPUir .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-rx7UKcPUir .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-rx7UKcPUir .container-fluid {
    padding: 0 1rem;
  }
  .cid-rx7UKcPUir .header-text {
    padding: 1rem !important;
  }
  .cid-rx7UKcPUir .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-rx7UKcPUir .panel-body {
    width: calc(100% - 48px);
  }
  .cid-rx7UKcPUir .panel-group {
    padding: 0;
  }
}
.cid-rx7UKcPUir .mbr-section-title,
.cid-rx7UKcPUir .underline {
  color: #ffffff;
}
.cid-rx7UMALc5S {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #d1b883;
}
.cid-rx7UMALc5S .container-fluid {
  padding: 0 3rem;
}
.cid-rx7UMALc5S .mbr-section-title {
  margin-bottom: 0;
  color: #876613;
}
.cid-rx7UMALc5S .mbr-iconfont {
  color: #876613;
  font-size: 1.6rem;
}
.cid-rx7UMALc5S .mbr-iconfont:hover {
  color: #efefef;
}
.cid-rx7UMALc5S .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
  margin-bottom: 1.5rem;
}
.cid-rx7UMALc5S .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
.cid-rx7UMALc5S .image-wrap {
  position: relative;
}
.cid-rx7UMALc5S .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-rx7UMALc5S .image-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-rx7UMALc5S .image-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-rx7UMALc5S .mbr-section-subtitle {
  line-height: 1.5;
}
.cid-rx7UMALc5S .card-wrap {
  margin-bottom: 3rem;
}
.cid-rx7UMALc5S .social-media {
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-rx7UMALc5S .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-rx7UMALc5S .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-rx7UMALc5S .img-overlay {
  background-color: #d1b883;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  border: 3px solid;
  border-color: #c3a35e;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-rx7UMALc5S .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
@media (max-width: 767px) {
  .cid-rx7UMALc5S .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rx7UMALc5S .underline,
.cid-rx7UMALc5S .mbr-title {
  color: #876613;
}
.cid-rx7UMALc5S .mbr-role {
  color: #876613;
}
.cid-rx7UOWoVVL {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-rx7UOWoVVL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rx7UOWoVVL .form-control,
.cid-rx7UOWoVVL .field-input {
  padding: 0.5rem;
  background-color: #d1b883;
  border-color: #ecbd0f;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rx7UOWoVVL .form-control input::-webkit-input-placeholder,
.cid-rx7UOWoVVL .field-input input::-webkit-input-placeholder,
.cid-rx7UOWoVVL .form-control textarea::-webkit-input-placeholder,
.cid-rx7UOWoVVL .field-input textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-rx7UOWoVVL .form-control input:-moz-placeholder,
.cid-rx7UOWoVVL .field-input input:-moz-placeholder,
.cid-rx7UOWoVVL .form-control textarea:-moz-placeholder,
.cid-rx7UOWoVVL .field-input textarea:-moz-placeholder {
  color: #232323;
}
.cid-rx7UOWoVVL .form-control:hover,
.cid-rx7UOWoVVL .field-input:hover,
.cid-rx7UOWoVVL .form-control:focus,
.cid-rx7UOWoVVL .field-input:focus {
  background-color: #876613;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-rx7UOWoVVL .form-control:hover input::-webkit-input-placeholder,
.cid-rx7UOWoVVL .field-input:hover input::-webkit-input-placeholder,
.cid-rx7UOWoVVL .form-control:focus input::-webkit-input-placeholder,
.cid-rx7UOWoVVL .field-input:focus input::-webkit-input-placeholder,
.cid-rx7UOWoVVL .form-control:hover textarea::-webkit-input-placeholder,
.cid-rx7UOWoVVL .field-input:hover textarea::-webkit-input-placeholder,
.cid-rx7UOWoVVL .form-control:focus textarea::-webkit-input-placeholder,
.cid-rx7UOWoVVL .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-rx7UOWoVVL .form-control:hover input:-moz-placeholder,
.cid-rx7UOWoVVL .field-input:hover input:-moz-placeholder,
.cid-rx7UOWoVVL .form-control:focus input:-moz-placeholder,
.cid-rx7UOWoVVL .field-input:focus input:-moz-placeholder,
.cid-rx7UOWoVVL .form-control:hover textarea:-moz-placeholder,
.cid-rx7UOWoVVL .field-input:hover textarea:-moz-placeholder,
.cid-rx7UOWoVVL .form-control:focus textarea:-moz-placeholder,
.cid-rx7UOWoVVL .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-rx7UOWoVVL .jq-number__spin:hover,
.cid-rx7UOWoVVL .jq-number__spin:focus {
  background-color: #876613;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-rx7UOWoVVL .jq-number__spin {
  background-color: #d1b883;
  border-color: #ecbd0f;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rx7UOWoVVL .jq-selectbox li,
.cid-rx7UOWoVVL .jq-selectbox li {
  background-color: #d1b883;
  color: #000000;
}
.cid-rx7UOWoVVL .jq-selectbox li:hover,
.cid-rx7UOWoVVL .jq-selectbox li.selected {
  background-color: #876613;
  color: #ffffff;
}
.cid-rx7UOWoVVL .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-rx7UOWoVVL .jq-number__spin.minus:hover:after,
.cid-rx7UOWoVVL .jq-number__spin.plus:hover:after {
  border-top-color: #d1b883;
  border-bottom-color: #d1b883;
}
.cid-rx7UOWoVVL .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-rx7UOWoVVL .jq-number__spin.minus:after,
.cid-rx7UOWoVVL .jq-number__spin.plus:after {
  border-top-color: #876613;
  border-bottom-color: #876613;
}
.cid-rx7UOWoVVL input::-webkit-clear-button {
  display: none;
}
.cid-rx7UOWoVVL input::-webkit-inner-spin-button {
  display: none;
}
.cid-rx7UOWoVVL input::-webkit-outer-spin-button {
  display: none;
}
.cid-rx7UOWoVVL input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-rx7UOWoVVL P {
  color: #ffffff;
}
.cid-rx7UOWoVVL LABEL {
  color: #d1b883;
}
.cid-rWTk4ZqwFn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-rWTk4ZqwFn .content {
    text-align: center;
  }
  .cid-rWTk4ZqwFn .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rWTk4ZqwFn .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWTk4ZqwFn .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWTk4ZqwFn .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWTk4ZqwFn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWTk4ZqwFn .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rWTk4ZqwFn .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-rWTk4ZqwFn .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rWTk4ZqwFn .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWTk4ZqwFn .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWTk4ZqwFn .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWTk4ZqwFn .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rTLtk8Apn8 .modal-body .close {
  background: #1b1b1b;
}
.cid-rTLtk8Apn8 .modal-body .close span {
  font-style: normal;
}
.cid-rTLtk8Apn8 .carousel-inner > .active,
.cid-rTLtk8Apn8 .carousel-inner > .next,
.cid-rTLtk8Apn8 .carousel-inner > .prev {
  display: table;
}
.cid-rTLtk8Apn8 .carousel-control .icon-next,
.cid-rTLtk8Apn8 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rTLtk8Apn8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rTLtk8Apn8 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rTLtk8Apn8 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rTLtk8Apn8 .boxed-slider > div {
  position: relative;
}
.cid-rTLtk8Apn8 .container img {
  width: 100%;
}
.cid-rTLtk8Apn8 .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-rTLtk8Apn8 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rTLtk8Apn8 .mbr-table-cell {
  padding: 0;
}
.cid-rTLtk8Apn8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rTLtk8Apn8 .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-rTLtk8Apn8 .mbr-overlay {
  z-index: 1;
}
.cid-rTLtk8Apn8 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rTLtk8Apn8 .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-rTLtk8Apn8 .carousel-item .container {
    width: 100%;
  }
}
.cid-rTLtk8Apn8 .carousel-item-next.carousel-item-left,
.cid-rTLtk8Apn8 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rTLtk8Apn8 .active.carousel-item-right,
.cid-rTLtk8Apn8 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rTLtk8Apn8 .active.carousel-item-left,
.cid-rTLtk8Apn8 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rTLtk8Apn8 .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-rTLtk8Apn8 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rTLtk8Apn8 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rTLtk8Apn8 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rTLtk8Apn8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rTLtk8Apn8 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rTLtk8Apn8 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rTLtk8Apn8 .mbr-slider .carousel-indicators li.active,
.cid-rTLtk8Apn8 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rTLtk8Apn8 .mbr-slider .carousel-indicators li::after,
.cid-rTLtk8Apn8 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rTLtk8Apn8 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rTLtk8Apn8 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rTLtk8Apn8 .mbr-slider > .container img {
  width: 100%;
}
.cid-rTLtk8Apn8 .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-rTLtk8Apn8 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rTLtk8Apn8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rTLtk8Apn8 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rTLtk8Apn8 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rTLtk8Apn8 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rTLtk8Apn8 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rTLtk8Apn8 .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-rTLtk8Apn8 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rTLtk8Apn8 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rTLtk8Apn8 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rTLtk8Apn8 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rTLtk8Apn8 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rCjY4Rxdha .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-rCjY4Rxdha .nav-item:focus,
.cid-rCjY4Rxdha .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rCjY4Rxdha .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rCjY4Rxdha .nav-item .nav-link {
    position: relative;
  }
  .cid-rCjY4Rxdha .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #caa036, #ecbd0f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rCjY4Rxdha .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rCjY4Rxdha .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rCjY4Rxdha .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-rCjY4Rxdha .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rCjY4Rxdha .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rCjY4Rxdha .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rCjY4Rxdha .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rCjY4Rxdha .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-rCjY4Rxdha .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rCjY4Rxdha .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rCjY4Rxdha .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-rCjY4Rxdha .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rCjY4Rxdha .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rCjY4Rxdha .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rCjY4Rxdha .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rCjY4Rxdha .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rCjY4Rxdha .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-rCjY4Rxdha .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rCjY4Rxdha .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rCjY4Rxdha .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rCjY4Rxdha .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-rCjY4Rxdha .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rCjY4Rxdha .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rCjY4Rxdha .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rCjY4Rxdha .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rCjY4Rxdha .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rCjY4Rxdha .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rCjY4Rxdha .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rCjY4Rxdha .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rCjY4Rxdha .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-rCjY4Rxdha .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rCjY4Rxdha .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rCjY4Rxdha .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rCjY4Rxdha .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rCjY4Rxdha .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rCjY4Rxdha .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rCjY4Rxdha .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rCjY4Rxdha .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rCjY4Rxdha .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rCjY4Rxdha .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-rCjY4Rxdha .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rCjY4Rxdha .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rCjY4Rxdha .dropdown-item.active,
.cid-rCjY4Rxdha .dropdown-item:active {
  background-color: transparent;
}
.cid-rCjY4Rxdha .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rCjY4Rxdha .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rCjY4Rxdha .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rCjY4Rxdha .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rCjY4Rxdha .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rCjY4Rxdha .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rCjY4Rxdha ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rCjY4Rxdha .navbar-buttons {
  text-align: center;
}
.cid-rCjY4Rxdha button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rCjY4Rxdha button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rCjY4Rxdha button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rCjY4Rxdha button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rCjY4Rxdha button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rCjY4Rxdha button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rCjY4Rxdha nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rCjY4Rxdha nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rCjY4Rxdha nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rCjY4Rxdha nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rCjY4Rxdha .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rCjY4Rxdha a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rCjY4Rxdha .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rCjY4Rxdha .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-rCjY4Rxdha .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rCjY4Rxdha .navbar {
    height: 77px;
  }
  .cid-rCjY4Rxdha .navbar.opened {
    height: auto;
  }
  .cid-rCjY4Rxdha .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rCkoqekBqW {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rCkoqekBqW .container-fluid {
  padding: 0 3rem;
}
.cid-rCkoqekBqW .mbr-section-title {
  color: #096693;
  text-align: right;
}
.cid-rCkoqekBqW .btn {
  margin-top: 0;
}
.cid-rCkoqekBqW .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-rCkoqekBqW .container-fluid {
    padding: 0 1rem;
  }
  .cid-rCkoqekBqW .btn {
    margin-top: 0.4rem;
  }
  .cid-rCkoqekBqW .mbr-section-btn {
    margin: 0;
  }
}
.cid-rCkoqekBqW .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-rWSu8CXsXh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
@media (min-width: 767px) {
  .cid-rWSu8CXsXh .container {
    padding: 1rem;
  }
}
.cid-rWSu8CXsXh .card-box {
  padding: 0 2rem;
}
.cid-rWSu8CXsXh .card {
  padding: 0!important;
}
.cid-rWSu8CXsXh .mbr-section-btn {
  padding-top: 2rem;
}
.cid-rWSu8CXsXh .container-fluid {
  padding: 0;
}
.cid-rWSu8CXsXh .card1 {
  background-image: url("../../../assets/images/1-3.jpeg");
}
.cid-rWSu8CXsXh .card2 {
  background-image: url("../../../assets/images/2.jpeg");
}
.cid-rWSu8CXsXh .card3 {
  background-image: url("../../../assets/images/3.jpeg");
}
.cid-rWSu8CXsXh .card4 {
  background-image: url("../../../assets/images/4.jpeg");
}
.cid-rWSu8CXsXh h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rWSu8CXsXh p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rWSu8CXsXh .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-rWSu8CXsXh .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-rWSu8CXsXh .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-rWSu8CXsXh .card-title {
  color: #ffffff;
}
.cid-rWSVqb48lp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
@media (min-width: 767px) {
  .cid-rWSVqb48lp .container {
    padding: 1rem;
  }
}
.cid-rWSVqb48lp .card-box {
  padding: 0 2rem;
}
.cid-rWSVqb48lp .card {
  padding: 0!important;
}
.cid-rWSVqb48lp .mbr-section-btn {
  padding-top: 2rem;
}
.cid-rWSVqb48lp .container-fluid {
  padding: 0;
}
.cid-rWSVqb48lp .card1 {
  background-image: url("../../../assets/images/5-1.jpeg");
}
.cid-rWSVqb48lp .card2 {
  background-image: url("../../../assets/images/8.jpeg");
}
.cid-rWSVqb48lp .card3 {
  background-image: url("../../../assets/images/10.jpeg");
}
.cid-rWSVqb48lp .card4 {
  background-image: url("../../../assets/images/13.jpeg");
}
.cid-rWSVqb48lp h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rWSVqb48lp p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rWSVqb48lp .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-rWSVqb48lp .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-rWSVqb48lp .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-rWSVrGWIZI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
@media (min-width: 767px) {
  .cid-rWSVrGWIZI .container {
    padding: 1rem;
  }
}
.cid-rWSVrGWIZI .card-box {
  padding: 0 2rem;
}
.cid-rWSVrGWIZI .card {
  padding: 0!important;
}
.cid-rWSVrGWIZI .mbr-section-btn {
  padding-top: 2rem;
}
.cid-rWSVrGWIZI .container-fluid {
  padding: 0;
}
.cid-rWSVrGWIZI .card1 {
  background-image: url("../../../assets/images/14-1.jpeg");
}
.cid-rWSVrGWIZI .card2 {
  background-image: url("../../../assets/images/15-1.jpeg");
}
.cid-rWSVrGWIZI .card3 {
  background-image: url("../../../assets/images/16.jpeg");
}
.cid-rWSVrGWIZI .card4 {
  background-image: url("../../../assets/images/17.jpeg");
}
.cid-rWSVrGWIZI h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rWSVrGWIZI p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rWSVrGWIZI .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-rWSVrGWIZI .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-rWSVrGWIZI .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-rWSVuv2TC7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
@media (min-width: 767px) {
  .cid-rWSVuv2TC7 .container {
    padding: 1rem;
  }
}
.cid-rWSVuv2TC7 .card-box {
  padding: 0 2rem;
}
.cid-rWSVuv2TC7 .card {
  padding: 0!important;
}
.cid-rWSVuv2TC7 .mbr-section-btn {
  padding-top: 2rem;
}
.cid-rWSVuv2TC7 .container-fluid {
  padding: 0;
}
.cid-rWSVuv2TC7 .card1 {
  background-image: url("../../../assets/images/20.jpeg");
}
.cid-rWSVuv2TC7 .card2 {
  background-image: url("../../../assets/images/21.jpeg");
}
.cid-rWSVuv2TC7 .card3 {
  background-image: url("../../../assets/images/22.jpeg");
}
.cid-rWSVuv2TC7 .card4 {
  background-image: url("../../../assets/images/24.jpeg");
}
.cid-rWSVuv2TC7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rWSVuv2TC7 p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rWSVuv2TC7 .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-rWSVuv2TC7 .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-rWSVuv2TC7 .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-rWSVwsZK5I {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
@media (min-width: 767px) {
  .cid-rWSVwsZK5I .container {
    padding: 1rem;
  }
}
.cid-rWSVwsZK5I .card-box {
  padding: 0 2rem;
}
.cid-rWSVwsZK5I .card {
  padding: 0!important;
}
.cid-rWSVwsZK5I .mbr-section-btn {
  padding-top: 2rem;
}
.cid-rWSVwsZK5I .container-fluid {
  padding: 0;
}
.cid-rWSVwsZK5I .card1 {
  background-image: url("../../../assets/images/25.jpeg");
}
.cid-rWSVwsZK5I .card2 {
  background-image: url("../../../assets/images/26.jpeg");
}
.cid-rWSVwsZK5I .card3 {
  background-image: url("../../../assets/images/27.jpeg");
}
.cid-rWSVwsZK5I .card4 {
  background-image: url("../../../assets/images/29.jpeg");
}
.cid-rWSVwsZK5I h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rWSVwsZK5I p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rWSVwsZK5I .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-rWSVwsZK5I .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-rWSVwsZK5I .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-rWSVI85FFR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-rWSVI85FFR .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rWSVI85FFR .row-element,
.cid-rWSVI85FFR .image-element {
  padding: 0;
}
.cid-rWSVI85FFR .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rWSVI85FFR .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rWSVI85FFR .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rWSVI85FFR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rWSVI85FFR .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rWSVI85FFR .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rWSVI85FFR .text-content {
    padding: 2rem 1rem;
  }
  .cid-rWSVI85FFR .underline .line {
    height: 2px;
  }
  .cid-rWSVI85FFR .mbr-title,
  .cid-rWSVI85FFR .underline,
  .cid-rWSVI85FFR .mbr-text,
  .cid-rWSVI85FFR .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rWSvjdNXMG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
.cid-rWSvjdNXMG .container-fluid {
  padding: 0 3rem;
}
.cid-rWSvjdNXMG .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
.cid-rWSvjdNXMG .card {
  display: block;
}
.cid-rWSvjdNXMG .card .card-wrapper {
  height: 1%;
}
.cid-rWSvjdNXMG .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rWSvjdNXMG .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rWSvjdNXMG .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rWSvjdNXMG .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWSvjdNXMG .prices {
  color: #ffffff;
}
.cid-rWSvjdNXMG .oldPrice {
  text-decoration: line-through;
}
.cid-rWSvjdNXMG .oldPrice,
.cid-rWSvjdNXMG .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rWSvjdNXMG .container-fluid {
    padding: 0 1rem;
  }
  .cid-rWSvjdNXMG .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rWSvjdNXMG .mbr-text,
.cid-rWSvjdNXMG .mbr-section-btn {
  color: #876613;
}
.cid-rWSvjdNXMG .prices,
.cid-rWSvjdNXMG .mbr-section-btn {
  color: #876613;
}
.cid-rWSMpRoX1q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
.cid-rWSMpRoX1q .container-fluid {
  padding: 0 3rem;
}
.cid-rWSMpRoX1q .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
.cid-rWSMpRoX1q .card {
  display: block;
}
.cid-rWSMpRoX1q .card .card-wrapper {
  height: 1%;
}
.cid-rWSMpRoX1q .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rWSMpRoX1q .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rWSMpRoX1q .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rWSMpRoX1q .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWSMpRoX1q .prices {
  color: #ffffff;
}
.cid-rWSMpRoX1q .oldPrice {
  text-decoration: line-through;
}
.cid-rWSMpRoX1q .oldPrice,
.cid-rWSMpRoX1q .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rWSMpRoX1q .container-fluid {
    padding: 0 1rem;
  }
  .cid-rWSMpRoX1q .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rWSMpRoX1q .prices,
.cid-rWSMpRoX1q .mbr-section-btn {
  color: #876613;
}
.cid-rWSMpRoX1q .mbr-text,
.cid-rWSMpRoX1q .mbr-section-btn {
  color: #876613;
}
.cid-rWSMQ7CtLq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
.cid-rWSMQ7CtLq .container-fluid {
  padding: 0 3rem;
}
.cid-rWSMQ7CtLq .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
.cid-rWSMQ7CtLq .card {
  display: block;
}
.cid-rWSMQ7CtLq .card .card-wrapper {
  height: 1%;
}
.cid-rWSMQ7CtLq .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rWSMQ7CtLq .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rWSMQ7CtLq .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rWSMQ7CtLq .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWSMQ7CtLq .prices {
  color: #ffffff;
}
.cid-rWSMQ7CtLq .oldPrice {
  text-decoration: line-through;
}
.cid-rWSMQ7CtLq .oldPrice,
.cid-rWSMQ7CtLq .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rWSMQ7CtLq .container-fluid {
    padding: 0 1rem;
  }
  .cid-rWSMQ7CtLq .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rWSMQ7CtLq .mbr-text,
.cid-rWSMQ7CtLq .mbr-section-btn {
  color: #876613;
}
.cid-rWSMQ7CtLq .prices,
.cid-rWSMQ7CtLq .mbr-section-btn {
  color: #876613;
}
.cid-rWSMRpvxle {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
.cid-rWSMRpvxle .container-fluid {
  padding: 0 3rem;
}
.cid-rWSMRpvxle .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
.cid-rWSMRpvxle .card {
  display: block;
}
.cid-rWSMRpvxle .card .card-wrapper {
  height: 1%;
}
.cid-rWSMRpvxle .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rWSMRpvxle .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rWSMRpvxle .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rWSMRpvxle .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWSMRpvxle .prices {
  color: #ffffff;
}
.cid-rWSMRpvxle .oldPrice {
  text-decoration: line-through;
}
.cid-rWSMRpvxle .oldPrice,
.cid-rWSMRpvxle .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rWSMRpvxle .container-fluid {
    padding: 0 1rem;
  }
  .cid-rWSMRpvxle .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rWSMRpvxle .mbr-text,
.cid-rWSMRpvxle .mbr-section-btn {
  color: #876613;
}
.cid-rWSMRpvxle .prices,
.cid-rWSMRpvxle .mbr-section-btn {
  color: #876613;
}
.cid-rWSMScIYdA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
.cid-rWSMScIYdA .container-fluid {
  padding: 0 3rem;
}
.cid-rWSMScIYdA .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
.cid-rWSMScIYdA .card {
  display: block;
}
.cid-rWSMScIYdA .card .card-wrapper {
  height: 1%;
}
.cid-rWSMScIYdA .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rWSMScIYdA .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rWSMScIYdA .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rWSMScIYdA .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWSMScIYdA .prices {
  color: #ffffff;
}
.cid-rWSMScIYdA .oldPrice {
  text-decoration: line-through;
}
.cid-rWSMScIYdA .oldPrice,
.cid-rWSMScIYdA .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rWSMScIYdA .container-fluid {
    padding: 0 1rem;
  }
  .cid-rWSMScIYdA .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rWSMScIYdA .mbr-text,
.cid-rWSMScIYdA .mbr-section-btn {
  color: #876613;
}
.cid-rWSMScIYdA .prices,
.cid-rWSMScIYdA .mbr-section-btn {
  color: #876613;
}
.cid-rTGUJDGNcN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rTGUJDGNcN .container-fluid {
  padding: 0 3rem;
}
.cid-rTGUJDGNcN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #caa036 50%, #ecbd0f 120%);
  display: inline-block;
}
.cid-rTGUJDGNcN .mbr-section-title {
  color: #000000;
}
.cid-rTGUJDGNcN .mbr-section-subtitle {
  color: #000000;
}
.cid-rTGUJDGNcN .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-rTGUJDGNcN .header-text {
  padding: 2rem 1rem !important;
}
.cid-rTGUJDGNcN .card {
  border-radius: 25px !important;
  background: #cccccc;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-rTGUJDGNcN .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-rTGUJDGNcN .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-rTGUJDGNcN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rTGUJDGNcN .card .card-header a.panel-title:hover .sign {
  background-color: #d1b883 !important;
}
.cid-rTGUJDGNcN .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #caa036;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-rTGUJDGNcN .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rTGUJDGNcN .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-rTGUJDGNcN .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-rTGUJDGNcN .container-fluid {
    padding: 0 1rem;
  }
  .cid-rTGUJDGNcN .header-text {
    padding: 1rem !important;
  }
  .cid-rTGUJDGNcN .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-rTGUJDGNcN .panel-body {
    width: calc(100% - 48px);
  }
  .cid-rTGUJDGNcN .panel-group {
    padding: 0;
  }
}
.cid-rTGUJDGNcN .mbr-section-title,
.cid-rTGUJDGNcN .underline {
  color: #ffffff;
}
.cid-rWSSkF4jnD.popup-builder {
  background-color: #ffffff;
}
.cid-rWSSkF4jnD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rWSSkF4jnD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rWSSkF4jnD .modal-content,
.cid-rWSSkF4jnD .modal-dialog {
  height: auto;
}
.cid-rWSSkF4jnD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rWSSkF4jnD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rWSSkF4jnD .form-wrapper .mbr-form .form-group,
  .cid-rWSSkF4jnD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rWSSkF4jnD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rWSSkF4jnD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWSSkF4jnD .mbr-text {
  text-align: center;
}
.cid-rWSSkF4jnD .pt-0 {
  padding-top: 0 !important;
}
.cid-rWSSkF4jnD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rWSSkF4jnD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rWSSkF4jnD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rWSSkF4jnD .modal-open {
  overflow: hidden;
}
.cid-rWSSkF4jnD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rWSSkF4jnD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rWSSkF4jnD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rWSSkF4jnD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rWSSkF4jnD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rWSSkF4jnD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rWSSkF4jnD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rWSSkF4jnD .modal-content {
  background: #d1b883;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rWSSkF4jnD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rWSSkF4jnD .modal-backdrop.fade {
  opacity: 0;
}
.cid-rWSSkF4jnD .modal-backdrop.show {
  opacity: .5;
}
.cid-rWSSkF4jnD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rWSSkF4jnD .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rWSSkF4jnD .modal-header .close:hover {
  opacity: 1;
}
.cid-rWSSkF4jnD .modal-header .close:focus {
  outline: none;
}
.cid-rWSSkF4jnD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rWSSkF4jnD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rWSSkF4jnD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rWSSkF4jnD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rWSSkF4jnD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rWSSkF4jnD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rWSSkF4jnD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rWSSkF4jnD .modal-sm {
    max-width: 300px;
  }
  .cid-rWSSkF4jnD .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rWSSkF4jnD .modal-lg,
  .cid-rWSSkF4jnD .modal-xl {
    max-width: 800px;
  }
  .cid-rWSSkF4jnD .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rWSSkF4jnD .modal-xl {
    max-width: 1140px;
  }
  .cid-rWSSkF4jnD .container {
    max-width: 1140px;
  }
}
.cid-rWSSkF4jnD .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rWSSkF4jnD .container {
    max-width: 720px;
  }
}
.cid-rWSSkF4jnD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rWSSkF4jnD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rWSSkF4jnD .form-group {
  margin-bottom: 1rem;
}
.cid-rWSSkF4jnD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rWSSkF4jnD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rWSSkF4jnD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rWSsNdgrOc.popup-builder {
  background-color: #ffffff;
}
.cid-rWSsNdgrOc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rWSsNdgrOc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rWSsNdgrOc .modal-content,
.cid-rWSsNdgrOc .modal-dialog {
  height: auto;
}
.cid-rWSsNdgrOc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rWSsNdgrOc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rWSsNdgrOc .form-wrapper .mbr-form .form-group,
  .cid-rWSsNdgrOc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rWSsNdgrOc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rWSsNdgrOc .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWSsNdgrOc .mbr-text {
  text-align: center;
}
.cid-rWSsNdgrOc .pt-0 {
  padding-top: 0 !important;
}
.cid-rWSsNdgrOc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rWSsNdgrOc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rWSsNdgrOc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rWSsNdgrOc .modal-open {
  overflow: hidden;
}
.cid-rWSsNdgrOc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rWSsNdgrOc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rWSsNdgrOc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rWSsNdgrOc .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rWSsNdgrOc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rWSsNdgrOc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rWSsNdgrOc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rWSsNdgrOc .modal-content {
  background: #d1b883;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rWSsNdgrOc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rWSsNdgrOc .modal-backdrop.fade {
  opacity: 0;
}
.cid-rWSsNdgrOc .modal-backdrop.show {
  opacity: .5;
}
.cid-rWSsNdgrOc .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rWSsNdgrOc .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rWSsNdgrOc .modal-header .close:hover {
  opacity: 1;
}
.cid-rWSsNdgrOc .modal-header .close:focus {
  outline: none;
}
.cid-rWSsNdgrOc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rWSsNdgrOc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rWSsNdgrOc .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rWSsNdgrOc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rWSsNdgrOc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rWSsNdgrOc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rWSsNdgrOc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rWSsNdgrOc .modal-sm {
    max-width: 300px;
  }
  .cid-rWSsNdgrOc .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rWSsNdgrOc .modal-lg,
  .cid-rWSsNdgrOc .modal-xl {
    max-width: 800px;
  }
  .cid-rWSsNdgrOc .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rWSsNdgrOc .modal-xl {
    max-width: 1140px;
  }
  .cid-rWSsNdgrOc .container {
    max-width: 1140px;
  }
}
.cid-rWSsNdgrOc .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rWSsNdgrOc .container {
    max-width: 720px;
  }
}
.cid-rWSsNdgrOc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rWSsNdgrOc .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rWSsNdgrOc .form-group {
  margin-bottom: 1rem;
}
.cid-rWSsNdgrOc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rWSsNdgrOc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rWSsNdgrOc .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rWTkdb5ItE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-rWTkdb5ItE .content {
    text-align: center;
  }
  .cid-rWTkdb5ItE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rWTkdb5ItE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWTkdb5ItE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWTkdb5ItE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWTkdb5ItE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWTkdb5ItE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rWTkdb5ItE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-rWTkdb5ItE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rWTkdb5ItE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWTkdb5ItE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWTkdb5ItE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWTkdb5ItE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rUIKbGRYMJ {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rUIKbGRYMJ .container-fluid {
  padding: 0 3rem;
}
.cid-rUIKbGRYMJ .mbr-section-title {
  color: #096693;
  text-align: right;
}
.cid-rUIKbGRYMJ .btn {
  margin-top: 0;
}
.cid-rUIKbGRYMJ .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-rUIKbGRYMJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-rUIKbGRYMJ .btn {
    margin-top: 0.4rem;
  }
  .cid-rUIKbGRYMJ .mbr-section-btn {
    margin: 0;
  }
}
.cid-rUIKbGRYMJ .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-rUIKbF3hng .modal-body .close {
  background: #1b1b1b;
}
.cid-rUIKbF3hng .modal-body .close span {
  font-style: normal;
}
.cid-rUIKbF3hng .carousel-inner > .active,
.cid-rUIKbF3hng .carousel-inner > .next,
.cid-rUIKbF3hng .carousel-inner > .prev {
  display: table;
}
.cid-rUIKbF3hng .carousel-control .icon-next,
.cid-rUIKbF3hng .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rUIKbF3hng .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rUIKbF3hng .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rUIKbF3hng .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rUIKbF3hng .boxed-slider > div {
  position: relative;
}
.cid-rUIKbF3hng .container img {
  width: 100%;
}
.cid-rUIKbF3hng .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-rUIKbF3hng .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rUIKbF3hng .mbr-table-cell {
  padding: 0;
}
.cid-rUIKbF3hng .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rUIKbF3hng .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-rUIKbF3hng .mbr-overlay {
  z-index: 1;
}
.cid-rUIKbF3hng .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rUIKbF3hng .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-rUIKbF3hng .carousel-item .container {
    width: 100%;
  }
}
.cid-rUIKbF3hng .carousel-item-next.carousel-item-left,
.cid-rUIKbF3hng .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rUIKbF3hng .active.carousel-item-right,
.cid-rUIKbF3hng .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rUIKbF3hng .active.carousel-item-left,
.cid-rUIKbF3hng .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rUIKbF3hng .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-rUIKbF3hng .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rUIKbF3hng .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rUIKbF3hng .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rUIKbF3hng .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rUIKbF3hng .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rUIKbF3hng .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rUIKbF3hng .mbr-slider .carousel-indicators li.active,
.cid-rUIKbF3hng .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rUIKbF3hng .mbr-slider .carousel-indicators li::after,
.cid-rUIKbF3hng .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rUIKbF3hng .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rUIKbF3hng .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rUIKbF3hng .mbr-slider > .container img {
  width: 100%;
}
.cid-rUIKbF3hng .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-rUIKbF3hng .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rUIKbF3hng .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rUIKbF3hng .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rUIKbF3hng .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rUIKbF3hng .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rUIKbF3hng .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rUIKbF3hng .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-rUIKbF3hng .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rUIKbF3hng .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rUIKbF3hng .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rUIKbF3hng .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rUIKbF3hng .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rUIKbFPyQd .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-rUIKbFPyQd .nav-item:focus,
.cid-rUIKbFPyQd .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rUIKbFPyQd .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rUIKbFPyQd .nav-item .nav-link {
    position: relative;
  }
  .cid-rUIKbFPyQd .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #caa036, #ecbd0f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rUIKbFPyQd .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rUIKbFPyQd .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUIKbFPyQd .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-rUIKbFPyQd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUIKbFPyQd .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rUIKbFPyQd .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rUIKbFPyQd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rUIKbFPyQd .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-rUIKbFPyQd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rUIKbFPyQd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rUIKbFPyQd .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-rUIKbFPyQd .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rUIKbFPyQd .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rUIKbFPyQd .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rUIKbFPyQd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rUIKbFPyQd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rUIKbFPyQd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-rUIKbFPyQd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rUIKbFPyQd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rUIKbFPyQd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rUIKbFPyQd .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-rUIKbFPyQd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rUIKbFPyQd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rUIKbFPyQd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rUIKbFPyQd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rUIKbFPyQd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rUIKbFPyQd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rUIKbFPyQd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rUIKbFPyQd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rUIKbFPyQd .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-rUIKbFPyQd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rUIKbFPyQd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rUIKbFPyQd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rUIKbFPyQd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rUIKbFPyQd .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rUIKbFPyQd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rUIKbFPyQd .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rUIKbFPyQd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rUIKbFPyQd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rUIKbFPyQd .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-rUIKbFPyQd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rUIKbFPyQd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rUIKbFPyQd .dropdown-item.active,
.cid-rUIKbFPyQd .dropdown-item:active {
  background-color: transparent;
}
.cid-rUIKbFPyQd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rUIKbFPyQd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rUIKbFPyQd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rUIKbFPyQd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rUIKbFPyQd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rUIKbFPyQd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUIKbFPyQd ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUIKbFPyQd .navbar-buttons {
  text-align: center;
}
.cid-rUIKbFPyQd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUIKbFPyQd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rUIKbFPyQd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUIKbFPyQd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUIKbFPyQd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUIKbFPyQd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUIKbFPyQd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUIKbFPyQd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUIKbFPyQd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUIKbFPyQd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUIKbFPyQd .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rUIKbFPyQd a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rUIKbFPyQd .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rUIKbFPyQd .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-rUIKbFPyQd .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rUIKbFPyQd .navbar {
    height: 77px;
  }
  .cid-rUIKbFPyQd .navbar.opened {
    height: auto;
  }
  .cid-rUIKbFPyQd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rWT5ciOCD6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
@media (min-width: 767px) {
  .cid-rWT5ciOCD6 .container {
    padding: 1rem;
  }
}
.cid-rWT5ciOCD6 .card-box {
  padding: 0 2rem;
}
.cid-rWT5ciOCD6 .card {
  padding: 0!important;
}
.cid-rWT5ciOCD6 .mbr-section-btn {
  padding-top: 2rem;
}
.cid-rWT5ciOCD6 .container-fluid {
  padding: 0;
}
.cid-rWT5ciOCD6 .card1 {
  background-image: url("../../../assets/images/img-20190924-wa0007-2.jpeg");
}
.cid-rWT5ciOCD6 .card2 {
  background-image: url("../../../assets/images/img-20190924-wa0011-1.jpeg");
}
.cid-rWT5ciOCD6 .card3 {
  background-image: url("../../../assets/images/img-20190924-wa0015.jpeg");
}
.cid-rWT5ciOCD6 .card4 {
  background-image: url("../../../assets/images/img-20190924-wa0018.jpeg");
}
.cid-rWT5ciOCD6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rWT5ciOCD6 p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rWT5ciOCD6 .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-rWT5ciOCD6 .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-rWT5ciOCD6 .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-rWT7KcKwpd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
@media (min-width: 767px) {
  .cid-rWT7KcKwpd .container {
    padding: 1rem;
  }
}
.cid-rWT7KcKwpd .card-box {
  padding: 0 2rem;
}
.cid-rWT7KcKwpd .card {
  padding: 0!important;
}
.cid-rWT7KcKwpd .mbr-section-btn {
  padding-top: 2rem;
}
.cid-rWT7KcKwpd .container-fluid {
  padding: 0;
}
.cid-rWT7KcKwpd .card1 {
  background-image: url("../../../assets/images/img-20190924-wa0019.jpeg");
}
.cid-rWT7KcKwpd .card2 {
  background-image: url("../../../assets/images/img-20190924-wa0023.jpeg");
}
.cid-rWT7KcKwpd .card3 {
  background-image: url("../../../assets/images/img-20190924-wa0025.jpg");
}
.cid-rWT7KcKwpd .card4 {
  background-image: url("../../../assets/images/img-20190924-wa0026.jpeg");
}
.cid-rWT7KcKwpd h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rWT7KcKwpd p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rWT7KcKwpd .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-rWT7KcKwpd .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-rWT7KcKwpd .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-rWT7LA8jPh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
@media (min-width: 767px) {
  .cid-rWT7LA8jPh .container {
    padding: 1rem;
  }
}
.cid-rWT7LA8jPh .card-box {
  padding: 0 2rem;
}
.cid-rWT7LA8jPh .card {
  padding: 0!important;
}
.cid-rWT7LA8jPh .mbr-section-btn {
  padding-top: 2rem;
}
.cid-rWT7LA8jPh .container-fluid {
  padding: 0;
}
.cid-rWT7LA8jPh .card1 {
  background-image: url("../../../assets/images/img-20190924-wa0031-1.jpeg");
}
.cid-rWT7LA8jPh .card2 {
  background-image: url("../../../assets/images/img-20190924-wa0034.jpeg");
}
.cid-rWT7LA8jPh .card3 {
  background-image: url("../../../assets/images/img-20190924-wa0036.jpeg");
}
.cid-rWT7LA8jPh .card4 {
  background-image: url("../../../assets/images/img-20190924-wa0038.jpeg");
}
.cid-rWT7LA8jPh h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rWT7LA8jPh p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rWT7LA8jPh .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-rWT7LA8jPh .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-rWT7LA8jPh .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-rUIKbJ2jIt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rUIKbJ2jIt .container-fluid {
  padding: 0 3rem;
}
.cid-rUIKbJ2jIt .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #caa036 50%, #ecbd0f 120%);
  display: inline-block;
}
.cid-rUIKbJ2jIt .mbr-section-title {
  color: #000000;
}
.cid-rUIKbJ2jIt .mbr-section-subtitle {
  color: #000000;
}
.cid-rUIKbJ2jIt .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-rUIKbJ2jIt .header-text {
  padding: 2rem 1rem !important;
}
.cid-rUIKbJ2jIt .card {
  border-radius: 25px !important;
  background: #cccccc;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-rUIKbJ2jIt .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-rUIKbJ2jIt .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-rUIKbJ2jIt .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rUIKbJ2jIt .card .card-header a.panel-title:hover .sign {
  background-color: #d1b883 !important;
}
.cid-rUIKbJ2jIt .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #caa036;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-rUIKbJ2jIt .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rUIKbJ2jIt .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-rUIKbJ2jIt .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-rUIKbJ2jIt .container-fluid {
    padding: 0 1rem;
  }
  .cid-rUIKbJ2jIt .header-text {
    padding: 1rem !important;
  }
  .cid-rUIKbJ2jIt .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-rUIKbJ2jIt .panel-body {
    width: calc(100% - 48px);
  }
  .cid-rUIKbJ2jIt .panel-group {
    padding: 0;
  }
}
.cid-rUIKbJ2jIt .mbr-section-title,
.cid-rUIKbJ2jIt .underline {
  color: #ffffff;
}
.cid-rWXCmhfsA7.popup-builder {
  background-color: #ffffff;
}
.cid-rWXCmhfsA7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rWXCmhfsA7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rWXCmhfsA7 .modal-content,
.cid-rWXCmhfsA7 .modal-dialog {
  height: auto;
}
.cid-rWXCmhfsA7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rWXCmhfsA7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rWXCmhfsA7 .form-wrapper .mbr-form .form-group,
  .cid-rWXCmhfsA7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rWXCmhfsA7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rWXCmhfsA7 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWXCmhfsA7 .mbr-text {
  text-align: center;
}
.cid-rWXCmhfsA7 .pt-0 {
  padding-top: 0 !important;
}
.cid-rWXCmhfsA7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rWXCmhfsA7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rWXCmhfsA7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rWXCmhfsA7 .modal-open {
  overflow: hidden;
}
.cid-rWXCmhfsA7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rWXCmhfsA7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rWXCmhfsA7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rWXCmhfsA7 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rWXCmhfsA7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rWXCmhfsA7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rWXCmhfsA7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rWXCmhfsA7 .modal-content {
  background: #d1b883;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rWXCmhfsA7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rWXCmhfsA7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-rWXCmhfsA7 .modal-backdrop.show {
  opacity: .5;
}
.cid-rWXCmhfsA7 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rWXCmhfsA7 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rWXCmhfsA7 .modal-header .close:hover {
  opacity: 1;
}
.cid-rWXCmhfsA7 .modal-header .close:focus {
  outline: none;
}
.cid-rWXCmhfsA7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rWXCmhfsA7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rWXCmhfsA7 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rWXCmhfsA7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rWXCmhfsA7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rWXCmhfsA7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rWXCmhfsA7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rWXCmhfsA7 .modal-sm {
    max-width: 300px;
  }
  .cid-rWXCmhfsA7 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rWXCmhfsA7 .modal-lg,
  .cid-rWXCmhfsA7 .modal-xl {
    max-width: 800px;
  }
  .cid-rWXCmhfsA7 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rWXCmhfsA7 .modal-xl {
    max-width: 1140px;
  }
  .cid-rWXCmhfsA7 .container {
    max-width: 1140px;
  }
}
.cid-rWXCmhfsA7 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rWXCmhfsA7 .container {
    max-width: 720px;
  }
}
.cid-rWXCmhfsA7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rWXCmhfsA7 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rWXCmhfsA7 .form-group {
  margin-bottom: 1rem;
}
.cid-rWXCmhfsA7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rWXCmhfsA7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rWXCmhfsA7 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rWTkg7e0mH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-rWTkg7e0mH .content {
    text-align: center;
  }
  .cid-rWTkg7e0mH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rWTkg7e0mH .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWTkg7e0mH .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWTkg7e0mH .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWTkg7e0mH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWTkg7e0mH .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rWTkg7e0mH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-rWTkg7e0mH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rWTkg7e0mH .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWTkg7e0mH .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWTkg7e0mH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWTkg7e0mH .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rUISBdPPlN .modal-body .close {
  background: #1b1b1b;
}
.cid-rUISBdPPlN .modal-body .close span {
  font-style: normal;
}
.cid-rUISBdPPlN .carousel-inner > .active,
.cid-rUISBdPPlN .carousel-inner > .next,
.cid-rUISBdPPlN .carousel-inner > .prev {
  display: table;
}
.cid-rUISBdPPlN .carousel-control .icon-next,
.cid-rUISBdPPlN .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rUISBdPPlN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rUISBdPPlN .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rUISBdPPlN .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rUISBdPPlN .boxed-slider > div {
  position: relative;
}
.cid-rUISBdPPlN .container img {
  width: 100%;
}
.cid-rUISBdPPlN .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-rUISBdPPlN .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rUISBdPPlN .mbr-table-cell {
  padding: 0;
}
.cid-rUISBdPPlN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rUISBdPPlN .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-rUISBdPPlN .mbr-overlay {
  z-index: 1;
}
.cid-rUISBdPPlN .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rUISBdPPlN .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-rUISBdPPlN .carousel-item .container {
    width: 100%;
  }
}
.cid-rUISBdPPlN .carousel-item-next.carousel-item-left,
.cid-rUISBdPPlN .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rUISBdPPlN .active.carousel-item-right,
.cid-rUISBdPPlN .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rUISBdPPlN .active.carousel-item-left,
.cid-rUISBdPPlN .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rUISBdPPlN .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-rUISBdPPlN .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rUISBdPPlN .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rUISBdPPlN .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rUISBdPPlN .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rUISBdPPlN .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rUISBdPPlN .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rUISBdPPlN .mbr-slider .carousel-indicators li.active,
.cid-rUISBdPPlN .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rUISBdPPlN .mbr-slider .carousel-indicators li::after,
.cid-rUISBdPPlN .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rUISBdPPlN .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rUISBdPPlN .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rUISBdPPlN .mbr-slider > .container img {
  width: 100%;
}
.cid-rUISBdPPlN .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-rUISBdPPlN .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rUISBdPPlN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rUISBdPPlN .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rUISBdPPlN .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rUISBdPPlN .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rUISBdPPlN .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rUISBdPPlN .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-rUISBdPPlN .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rUISBdPPlN .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rUISBdPPlN .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rUISBdPPlN .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rUISBdPPlN .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rWTic2Y1L3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #876613;
}
.cid-rWTic2Y1L3 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rWTic2Y1L3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
.cid-rWTic2Y1L3 .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-rWTic2Y1L3 .number-wrap {
  color: #ffffff;
  background: #767676;
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 10px 13px 10px;
  margin: 0;
  min-width: 118px;
  max-width: 100%;
  background: linear-gradient(135deg, #767676, #000000);
}
.cid-rWTic2Y1L3 .number {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
}
.cid-rWTic2Y1L3 .period {
  display: block;
  padding-top: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-rWTic2Y1L3 .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
}
.cid-rWTic2Y1L3 .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rWTic2Y1L3 .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-rWTic2Y1L3 .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
  }
  .cid-rWTic2Y1L3 .number-wrap {
    min-width: auto;
  }
  .cid-rWTic2Y1L3 .number {
    white-space: nowrap;
  }
}
@media (max-width: 440px) {
  .cid-rWTic2Y1L3 .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-rWTic2Y1L3 .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-rWTic2Y1L3 .number {
    font-size: 28px;
  }
  .cid-rWTic2Y1L3 .period {
    font-size: 0.7rem;
  }
}
.cid-rWTic2Y1L3 .mbr-section-title,
.cid-rWTic2Y1L3 .underline {
  color: #ffffff;
}
.cid-rUISBeTYl8 .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-rUISBeTYl8 .nav-item:focus,
.cid-rUISBeTYl8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rUISBeTYl8 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rUISBeTYl8 .nav-item .nav-link {
    position: relative;
  }
  .cid-rUISBeTYl8 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #caa036, #ecbd0f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rUISBeTYl8 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rUISBeTYl8 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUISBeTYl8 .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-rUISBeTYl8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUISBeTYl8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rUISBeTYl8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rUISBeTYl8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rUISBeTYl8 .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-rUISBeTYl8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rUISBeTYl8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rUISBeTYl8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-rUISBeTYl8 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rUISBeTYl8 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rUISBeTYl8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rUISBeTYl8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rUISBeTYl8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rUISBeTYl8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-rUISBeTYl8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rUISBeTYl8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rUISBeTYl8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rUISBeTYl8 .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-rUISBeTYl8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rUISBeTYl8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rUISBeTYl8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rUISBeTYl8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rUISBeTYl8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rUISBeTYl8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rUISBeTYl8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rUISBeTYl8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rUISBeTYl8 .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-rUISBeTYl8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rUISBeTYl8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rUISBeTYl8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rUISBeTYl8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rUISBeTYl8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rUISBeTYl8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rUISBeTYl8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rUISBeTYl8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rUISBeTYl8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rUISBeTYl8 .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-rUISBeTYl8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rUISBeTYl8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rUISBeTYl8 .dropdown-item.active,
.cid-rUISBeTYl8 .dropdown-item:active {
  background-color: transparent;
}
.cid-rUISBeTYl8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rUISBeTYl8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rUISBeTYl8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rUISBeTYl8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rUISBeTYl8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rUISBeTYl8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUISBeTYl8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUISBeTYl8 .navbar-buttons {
  text-align: center;
}
.cid-rUISBeTYl8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUISBeTYl8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rUISBeTYl8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUISBeTYl8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUISBeTYl8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUISBeTYl8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUISBeTYl8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUISBeTYl8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUISBeTYl8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUISBeTYl8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUISBeTYl8 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rUISBeTYl8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rUISBeTYl8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rUISBeTYl8 .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-rUISBeTYl8 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rUISBeTYl8 .navbar {
    height: 77px;
  }
  .cid-rUISBeTYl8 .navbar.opened {
    height: auto;
  }
  .cid-rUISBeTYl8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUISBhWGgB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rUISBhWGgB .container-fluid {
  padding: 0 3rem;
}
.cid-rUISBhWGgB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #caa036 50%, #ecbd0f 120%);
  display: inline-block;
}
.cid-rUISBhWGgB .mbr-section-title {
  color: #000000;
}
.cid-rUISBhWGgB .mbr-section-subtitle {
  color: #000000;
}
.cid-rUISBhWGgB .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-rUISBhWGgB .header-text {
  padding: 2rem 1rem !important;
}
.cid-rUISBhWGgB .card {
  border-radius: 25px !important;
  background: #cccccc;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-rUISBhWGgB .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-rUISBhWGgB .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-rUISBhWGgB .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rUISBhWGgB .card .card-header a.panel-title:hover .sign {
  background-color: #d1b883 !important;
}
.cid-rUISBhWGgB .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #caa036;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-rUISBhWGgB .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rUISBhWGgB .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-rUISBhWGgB .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-rUISBhWGgB .container-fluid {
    padding: 0 1rem;
  }
  .cid-rUISBhWGgB .header-text {
    padding: 1rem !important;
  }
  .cid-rUISBhWGgB .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-rUISBhWGgB .panel-body {
    width: calc(100% - 48px);
  }
  .cid-rUISBhWGgB .panel-group {
    padding: 0;
  }
}
.cid-rUISBhWGgB .mbr-section-title,
.cid-rUISBhWGgB .underline {
  color: #ffffff;
}
.cid-rWTkmNYgXR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-rWTkmNYgXR .content {
    text-align: center;
  }
  .cid-rWTkmNYgXR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rWTkmNYgXR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWTkmNYgXR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWTkmNYgXR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWTkmNYgXR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWTkmNYgXR .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rWTkmNYgXR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-rWTkmNYgXR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rWTkmNYgXR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWTkmNYgXR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWTkmNYgXR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWTkmNYgXR .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rUISCezKjx .modal-body .close {
  background: #1b1b1b;
}
.cid-rUISCezKjx .modal-body .close span {
  font-style: normal;
}
.cid-rUISCezKjx .carousel-inner > .active,
.cid-rUISCezKjx .carousel-inner > .next,
.cid-rUISCezKjx .carousel-inner > .prev {
  display: table;
}
.cid-rUISCezKjx .carousel-control .icon-next,
.cid-rUISCezKjx .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rUISCezKjx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rUISCezKjx .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rUISCezKjx .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rUISCezKjx .boxed-slider > div {
  position: relative;
}
.cid-rUISCezKjx .container img {
  width: 100%;
}
.cid-rUISCezKjx .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-rUISCezKjx .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rUISCezKjx .mbr-table-cell {
  padding: 0;
}
.cid-rUISCezKjx .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rUISCezKjx .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-rUISCezKjx .mbr-overlay {
  z-index: 1;
}
.cid-rUISCezKjx .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rUISCezKjx .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-rUISCezKjx .carousel-item .container {
    width: 100%;
  }
}
.cid-rUISCezKjx .carousel-item-next.carousel-item-left,
.cid-rUISCezKjx .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rUISCezKjx .active.carousel-item-right,
.cid-rUISCezKjx .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rUISCezKjx .active.carousel-item-left,
.cid-rUISCezKjx .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rUISCezKjx .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-rUISCezKjx .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rUISCezKjx .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rUISCezKjx .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rUISCezKjx .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rUISCezKjx .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rUISCezKjx .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rUISCezKjx .mbr-slider .carousel-indicators li.active,
.cid-rUISCezKjx .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rUISCezKjx .mbr-slider .carousel-indicators li::after,
.cid-rUISCezKjx .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rUISCezKjx .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rUISCezKjx .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rUISCezKjx .mbr-slider > .container img {
  width: 100%;
}
.cid-rUISCezKjx .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-rUISCezKjx .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rUISCezKjx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rUISCezKjx .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rUISCezKjx .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rUISCezKjx .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rUISCezKjx .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rUISCezKjx .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-rUISCezKjx .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rUISCezKjx .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rUISCezKjx .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rUISCezKjx .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rUISCezKjx .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rUISCfdbO7 .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-rUISCfdbO7 .nav-item:focus,
.cid-rUISCfdbO7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rUISCfdbO7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rUISCfdbO7 .nav-item .nav-link {
    position: relative;
  }
  .cid-rUISCfdbO7 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #caa036, #ecbd0f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rUISCfdbO7 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rUISCfdbO7 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUISCfdbO7 .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-rUISCfdbO7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUISCfdbO7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rUISCfdbO7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rUISCfdbO7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rUISCfdbO7 .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-rUISCfdbO7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rUISCfdbO7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rUISCfdbO7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-rUISCfdbO7 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rUISCfdbO7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rUISCfdbO7 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rUISCfdbO7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rUISCfdbO7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rUISCfdbO7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-rUISCfdbO7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rUISCfdbO7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rUISCfdbO7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rUISCfdbO7 .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-rUISCfdbO7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rUISCfdbO7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rUISCfdbO7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rUISCfdbO7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rUISCfdbO7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rUISCfdbO7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rUISCfdbO7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rUISCfdbO7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rUISCfdbO7 .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-rUISCfdbO7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rUISCfdbO7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rUISCfdbO7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rUISCfdbO7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rUISCfdbO7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rUISCfdbO7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rUISCfdbO7 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rUISCfdbO7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rUISCfdbO7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rUISCfdbO7 .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-rUISCfdbO7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rUISCfdbO7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rUISCfdbO7 .dropdown-item.active,
.cid-rUISCfdbO7 .dropdown-item:active {
  background-color: transparent;
}
.cid-rUISCfdbO7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rUISCfdbO7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rUISCfdbO7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rUISCfdbO7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rUISCfdbO7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rUISCfdbO7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUISCfdbO7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUISCfdbO7 .navbar-buttons {
  text-align: center;
}
.cid-rUISCfdbO7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUISCfdbO7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rUISCfdbO7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUISCfdbO7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUISCfdbO7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUISCfdbO7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUISCfdbO7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUISCfdbO7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUISCfdbO7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUISCfdbO7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUISCfdbO7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rUISCfdbO7 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rUISCfdbO7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rUISCfdbO7 .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-rUISCfdbO7 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rUISCfdbO7 .navbar {
    height: 77px;
  }
  .cid-rUISCfdbO7 .navbar.opened {
    height: auto;
  }
  .cid-rUISCfdbO7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rWTck0iT0U {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #d1b883;
}
.cid-rWTck0iT0U .container-fluid {
  padding: 0 3rem;
}
.cid-rWTck0iT0U .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
.cid-rWTck0iT0U .card {
  display: block;
}
.cid-rWTck0iT0U .card .card-wrapper {
  height: 1%;
}
.cid-rWTck0iT0U .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rWTck0iT0U .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rWTck0iT0U .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rWTck0iT0U .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWTck0iT0U .prices {
  color: #ffffff;
}
.cid-rWTck0iT0U .oldPrice {
  text-decoration: line-through;
}
.cid-rWTck0iT0U .oldPrice,
.cid-rWTck0iT0U .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rWTck0iT0U .container-fluid {
    padding: 0 1rem;
  }
  .cid-rWTck0iT0U .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rWTck0iT0U .mbr-section-title,
.cid-rWTck0iT0U .underline {
  color: #876613;
}
.cid-rWTck0iT0U .mbr-section-subtitle {
  color: #876613;
}
.cid-rWTck0iT0U .mbr-text,
.cid-rWTck0iT0U .mbr-section-btn {
  color: #876613;
}
.cid-rWTck0iT0U .prices,
.cid-rWTck0iT0U .mbr-section-btn {
  color: #876613;
}
.cid-rWTgSFVG3j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d1b883;
}
.cid-rWTgSFVG3j .container-fluid {
  padding: 0 3rem;
}
.cid-rWTgSFVG3j .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #caa036, #ecbd0f);
  display: inline-block;
}
.cid-rWTgSFVG3j .card {
  display: block;
}
.cid-rWTgSFVG3j .card .card-wrapper {
  height: 1%;
}
.cid-rWTgSFVG3j .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-rWTgSFVG3j .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rWTgSFVG3j .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rWTgSFVG3j .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWTgSFVG3j .prices {
  color: #ffffff;
}
.cid-rWTgSFVG3j .oldPrice {
  text-decoration: line-through;
}
.cid-rWTgSFVG3j .oldPrice,
.cid-rWTgSFVG3j .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-rWTgSFVG3j .container-fluid {
    padding: 0 1rem;
  }
  .cid-rWTgSFVG3j .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rWTgSFVG3j .mbr-section-title,
.cid-rWTgSFVG3j .underline {
  color: #876613;
}
.cid-rWTgSFVG3j .mbr-section-subtitle {
  color: #876613;
}
.cid-rWTgSFVG3j .mbr-text,
.cid-rWTgSFVG3j .mbr-section-btn {
  color: #876613;
}
.cid-rWTgSFVG3j .prices,
.cid-rWTgSFVG3j .mbr-section-btn {
  color: #876613;
}
.cid-rUISChIp1f {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rUISChIp1f .container-fluid {
  padding: 0 3rem;
}
.cid-rUISChIp1f .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #caa036 50%, #ecbd0f 120%);
  display: inline-block;
}
.cid-rUISChIp1f .mbr-section-title {
  color: #000000;
}
.cid-rUISChIp1f .mbr-section-subtitle {
  color: #000000;
}
.cid-rUISChIp1f .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-rUISChIp1f .header-text {
  padding: 2rem 1rem !important;
}
.cid-rUISChIp1f .card {
  border-radius: 25px !important;
  background: #cccccc;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-rUISChIp1f .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-rUISChIp1f .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-rUISChIp1f .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rUISChIp1f .card .card-header a.panel-title:hover .sign {
  background-color: #d1b883 !important;
}
.cid-rUISChIp1f .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #caa036;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-rUISChIp1f .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rUISChIp1f .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-rUISChIp1f .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-rUISChIp1f .container-fluid {
    padding: 0 1rem;
  }
  .cid-rUISChIp1f .header-text {
    padding: 1rem !important;
  }
  .cid-rUISChIp1f .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-rUISChIp1f .panel-body {
    width: calc(100% - 48px);
  }
  .cid-rUISChIp1f .panel-group {
    padding: 0;
  }
}
.cid-rUISChIp1f .mbr-section-title,
.cid-rUISChIp1f .underline {
  color: #ffffff;
}
.cid-rWTf7a04M9.popup-builder {
  background-color: #ffffff;
}
.cid-rWTf7a04M9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rWTf7a04M9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rWTf7a04M9 .modal-content,
.cid-rWTf7a04M9 .modal-dialog {
  height: auto;
}
.cid-rWTf7a04M9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rWTf7a04M9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rWTf7a04M9 .form-wrapper .mbr-form .form-group,
  .cid-rWTf7a04M9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rWTf7a04M9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rWTf7a04M9 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWTf7a04M9 .mbr-text {
  text-align: center;
}
.cid-rWTf7a04M9 .pt-0 {
  padding-top: 0 !important;
}
.cid-rWTf7a04M9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rWTf7a04M9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rWTf7a04M9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rWTf7a04M9 .modal-open {
  overflow: hidden;
}
.cid-rWTf7a04M9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rWTf7a04M9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rWTf7a04M9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rWTf7a04M9 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rWTf7a04M9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rWTf7a04M9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rWTf7a04M9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rWTf7a04M9 .modal-content {
  background: #d1b883;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rWTf7a04M9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rWTf7a04M9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-rWTf7a04M9 .modal-backdrop.show {
  opacity: .5;
}
.cid-rWTf7a04M9 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rWTf7a04M9 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rWTf7a04M9 .modal-header .close:hover {
  opacity: 1;
}
.cid-rWTf7a04M9 .modal-header .close:focus {
  outline: none;
}
.cid-rWTf7a04M9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rWTf7a04M9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rWTf7a04M9 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rWTf7a04M9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rWTf7a04M9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rWTf7a04M9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rWTf7a04M9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rWTf7a04M9 .modal-sm {
    max-width: 300px;
  }
  .cid-rWTf7a04M9 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rWTf7a04M9 .modal-lg,
  .cid-rWTf7a04M9 .modal-xl {
    max-width: 800px;
  }
  .cid-rWTf7a04M9 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rWTf7a04M9 .modal-xl {
    max-width: 1140px;
  }
  .cid-rWTf7a04M9 .container {
    max-width: 1140px;
  }
}
.cid-rWTf7a04M9 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rWTf7a04M9 .container {
    max-width: 720px;
  }
}
.cid-rWTf7a04M9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rWTf7a04M9 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rWTf7a04M9 .form-group {
  margin-bottom: 1rem;
}
.cid-rWTf7a04M9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rWTf7a04M9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rWTf7a04M9 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-rWTkjlZisX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-rWTkjlZisX .content {
    text-align: center;
  }
  .cid-rWTkjlZisX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rWTkjlZisX .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWTkjlZisX .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWTkjlZisX .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWTkjlZisX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWTkjlZisX .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rWTkjlZisX .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-rWTkjlZisX .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rWTkjlZisX .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWTkjlZisX .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWTkjlZisX .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWTkjlZisX .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
