@import url(https://fonts.googleapis.com/css?family=Dancing+Script:400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i);





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Dancing Script', handwriting;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Dancing Script', handwriting;
  font-size: 2rem;
}
.display-7 {
  font-family: 'Source Sans Pro', 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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #192540 !important;
}
.bg-success {
  background-color: #427b91 !important;
}
.bg-info {
  background-color: #84a7a0 !important;
}
.bg-warning {
  background-color: #3c303b !important;
}
.bg-danger {
  background-color: #58585a !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: #040509;
  border-color: #040509;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #192540 !important;
  border-color: #192540 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #040509 !important;
  border-color: #040509 !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: #040509 !important;
  border-color: #040509 !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: #82671f;
  border-color: #82671f;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #c0982e !important;
  border-color: #c0982e !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #82671f !important;
  border-color: #82671f !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: #82671f !important;
  border-color: #82671f !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: #5d827a;
  border-color: #5d827a;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #84a7a0 !important;
  border-color: #84a7a0 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #5d827a !important;
  border-color: #5d827a !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: #5d827a !important;
  border-color: #5d827a !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: #2a4e5c;
  border-color: #2a4e5c;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #427b91 !important;
  border-color: #427b91 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #2a4e5c !important;
  border-color: #2a4e5c !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: #2a4e5c !important;
  border-color: #2a4e5c !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: #120e11;
  border-color: #120e11;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #3c303b !important;
  border-color: #3c303b !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #120e11 !important;
  border-color: #120e11 !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: #120e11 !important;
  border-color: #120e11 !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: #323233;
  border-color: #323233;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #58585a !important;
  border-color: #58585a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #323233 !important;
  border-color: #323233 !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: #323233 !important;
  border-color: #323233 !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;
}
.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;
}
.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: #192540;
  border-color: #192540;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #192540;
  border-color: #192540;
}
.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: #192540 !important;
  border-color: #192540 !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: #c0982e;
  border-color: #c0982e;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #6e571a;
  color: #6e571a !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #c0982e;
  border-color: #c0982e;
}
.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: #c0982e !important;
  border-color: #c0982e !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: #84a7a0;
  border-color: #84a7a0;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #52736c;
  color: #52736c !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #84a7a0;
  border-color: #84a7a0;
}
.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: #84a7a0 !important;
  border-color: #84a7a0 !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: #427b91;
  border-color: #427b91;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #22404b;
  color: #22404b !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #427b91;
  border-color: #427b91;
}
.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: #427b91 !important;
  border-color: #427b91 !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: #3c303b;
  border-color: #3c303b;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #030303;
  color: #030303 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #3c303b;
  border-color: #3c303b;
}
.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: #3c303b !important;
  border-color: #3c303b !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: #58585a;
  border-color: #58585a;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #262626;
  color: #262626 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #58585a;
  border-color: #58585a;
}
.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: #58585a !important;
  border-color: #58585a !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;
}
.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;
}
.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: #192540 !important;
}
.text-secondary {
  color: #c0982e !important;
}
.text-success {
  color: #427b91 !important;
}
.text-info {
  color: #84a7a0 !important;
}
.text-warning {
  color: #3c303b !important;
}
.text-danger {
  color: #58585a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #6e571a !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #22404b !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #52736c !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #030303 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #262626 !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: #427b91;
}
.alert-info {
  background-color: #84a7a0;
}
.alert-warning {
  background-color: #3c303b;
}
.alert-danger {
  background-color: #58585a;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #192540;
  border-color: #192540;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #192540;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #758fc9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #89b7c9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cedcd9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b29fb1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #98989a;
}
/* Scroll to top button*/
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #192540;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #192540;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #192540;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #192540;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #192540;
}
/* Headers*/
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .nav-item:focus,
.cid-rqZCl9ilPq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rqZCl9ilPq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link {
    position: relative;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #192540, #c0982e);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rqZCl9ilPq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rqZCl9ilPq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rqZCl9ilPq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rqZCl9ilPq .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rqZCl9ilPq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rqZCl9ilPq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rqZCl9ilPq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rqZCl9ilPq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rqZCl9ilPq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rqZCl9ilPq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rqZCl9ilPq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rqZCl9ilPq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rqZCl9ilPq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rqZCl9ilPq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rqZCl9ilPq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rqZCl9ilPq .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rqZCl9ilPq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rqZCl9ilPq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rqZCl9ilPq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rqZCl9ilPq .dropdown-item.active,
.cid-rqZCl9ilPq .dropdown-item:active {
  background-color: transparent;
}
.cid-rqZCl9ilPq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rqZCl9ilPq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rqZCl9ilPq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rqZCl9ilPq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rqZCl9ilPq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rqZCl9ilPq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rqZCl9ilPq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rqZCl9ilPq .navbar-buttons {
  text-align: center;
}
.cid-rqZCl9ilPq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rqZCl9ilPq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rqZCl9ilPq a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rqZCl9ilPq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rqZCl9ilPq .navbar {
    height: 77px;
  }
  .cid-rqZCl9ilPq .navbar.opened {
    height: auto;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rqZCrmo4ra {
  background-image: url("../../../assets/images/shutterstock-1432268171-2000x1333.jpg");
}
.cid-rqZCrmo4ra .mbr-overlay {
  background: #192540;
  background: linear-gradient(45deg, #192540, #427b91);
}
.cid-rqZCrmo4ra .mbr-section-title {
  margin: 0;
}
.cid-rqZCrmo4ra H1 {
  color: #c0982e;
}
.cid-rqZCTBwbbi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #192540;
}
.cid-rqZCTBwbbi .container-fluid {
  padding: 0 3rem;
}
.cid-rqZCTBwbbi .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rqZCTBwbbi svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rqZCTBwbbi .signature > span {
  color: #192540;
}
@media (max-width: 767px) {
  .cid-rqZCTBwbbi .blockquote-quote {
    text-align: left;
  }
  .cid-rqZCTBwbbi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rqZCTBwbbi .mbr-section-title {
  color: #c0982e;
}
.cid-rqZCTBwbbi .mbr-text,
.cid-rqZCTBwbbi .blockquote-quote {
  color: #cccccc;
}
.cid-rul2aylSHA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rul2aylSHA .mbr-text {
  color: #767676;
}
.cid-rul2aylSHA h4 {
  text-align: center;
}
.cid-rul2aylSHA p {
  text-align: center;
}
.cid-rul2aylSHA .card .card-img {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rul2aylSHA .card:hover .step {
  color: #ffffff;
  border: 0px solid transparent;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rul2aylSHA .card:hover .step:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cid-rul2aylSHA .step {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rul2aylSHA .step:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.3s;
  background: linear-gradient(45deg, #096693, #c0982e);
  border-radius: 50%;
}
.cid-rul2aylSHA .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rul2aylSHA .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #192540, #c0982e);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-rul2aylSHA .mbr-section-title,
  .cid-rul2aylSHA .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-rqZGjTznas {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #192540;
}
.cid-rqZGjTznas .container-fluid {
  padding: 0 3rem;
}
.cid-rqZGjTznas .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rqZGjTznas svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rqZGjTznas .signature > span {
  color: #192540;
}
@media (max-width: 767px) {
  .cid-rqZGjTznas .blockquote-quote {
    text-align: left;
  }
  .cid-rqZGjTznas .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rqZGjTznas .mbr-section-title {
  color: #c0982e;
}
.cid-rqZGjTznas .mbr-text,
.cid-rqZGjTznas .blockquote-quote {
  color: #cccccc;
}
.cid-rqZKc1DEcg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/logo-icon-manolin-grey-transparant-553x576.png");
}
.cid-rqZKc1DEcg .container-fluid {
  padding: 0 3rem;
}
.cid-rqZKc1DEcg .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #192540 50%, #c0982e 120%);
  display: inline-block;
}
.cid-rqZKc1DEcg .card {
  border-radius: 25px;
  margin-bottom: 2rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-rqZKc1DEcg .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-rqZKc1DEcg .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
  padding-right: 2rem;
}
.cid-rqZKc1DEcg .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rqZKc1DEcg .card .card-header a.panel-title:hover .sign {
  background-color: #427b91 !important;
}
.cid-rqZKc1DEcg .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #c0982e;
  padding: 2rem;
  padding-top: 26px;
  color: white;
}
.cid-rqZKc1DEcg .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rqZKc1DEcg .card .card-header a.panel-title h4 .toggle-title {
  user-select: initial;
  pointer-events: auto;
}
.cid-rqZKc1DEcg .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-rqZKc1DEcg .container-fluid {
    padding: 0 1rem;
  }
  .cid-rqZKc1DEcg .header-text {
    padding: 1rem !important;
  }
  .cid-rqZKc1DEcg .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-rqZKc1DEcg .panel-body {
    width: calc(100% - 48px);
  }
}
.cid-rJ7LCyLyoJ {
  overflow: hidden !important;
  background-color: #b2ccd2;
}
.cid-rJ7LCyLyoJ .container-fluid {
  padding: 0 5rem;
}
.cid-rJ7LCyLyoJ .animated-element {
  color: #efefef;
}
.cid-rJ7LCyLyoJ .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-rJ7LCyLyoJ .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-rJ7LCyLyoJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-rJ7LCyLyoJ .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-rqZKrcxU6M {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c1c1c1;
}
.cid-rqZKrcxU6M .social-media {
  margin-top: 1.5rem;
}
.cid-rqZKrcxU6M .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rqZKrcxU6M .social-media ul li {
  margin-right: 1.5rem;
  display: inline-block;
}
.cid-rqZKrcxU6M .mbr-list ul {
  margin: 0;
  padding: 0;
}
.cid-rqZKrcxU6M .mbr-list ul li {
  margin-bottom: 0.5rem;
}
.cid-rqZKrcxU6M ul {
  list-style: none;
}
.cid-rqZKrcxU6M hr {
  margin-top: 2rem;
}
.cid-rqZKrcxU6M .sub-info {
  margin-top: 2rem;
}
.cid-rqZKrcxU6M .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rqZKrcxU6M .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rqZKrcxU6M .mbr-list,
.cid-rqZKrcxU6M .social-media UL {
  text-align: left;
}
.cid-rqZKrcxU6M .mbr-section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rqZKrcxU6M .mbr-list,
  .cid-rqZKrcxU6M .mbr-section-title {
    text-align: center !important;
  }
  .cid-rqZKrcxU6M .social-media {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rqZKrcxU6M .social-media ul li {
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .cid-rqZKrcxU6M .mbr-list {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rqZKrcxU6M .list-column {
    margin-bottom: 2rem;
  }
  .cid-rqZKrcxU6M hr {
    margin-top: 0;
    margin-bottom: .5rem;
  }
}
.cid-rqZMljaDwW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-rqZMljaDwW .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rqZMljaDwW .row-element,
.cid-rqZMljaDwW .image-element {
  padding: 0;
}
.cid-rqZMljaDwW .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rqZMljaDwW .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rqZMljaDwW .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rqZMljaDwW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #192540, #c0982e);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rqZMljaDwW .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rqZMljaDwW .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rqZMljaDwW .text-content {
    padding: 2rem 1rem;
  }
  .cid-rqZMljaDwW .underline .line {
    height: 2px;
  }
  .cid-rqZMljaDwW .mbr-title,
  .cid-rqZMljaDwW .underline,
  .cid-rqZMljaDwW .mbr-text,
  .cid-rqZMljaDwW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .nav-item:focus,
.cid-rqZCl9ilPq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rqZCl9ilPq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link {
    position: relative;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #192540, #c0982e);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rqZCl9ilPq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rqZCl9ilPq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rqZCl9ilPq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rqZCl9ilPq .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rqZCl9ilPq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rqZCl9ilPq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rqZCl9ilPq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rqZCl9ilPq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rqZCl9ilPq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rqZCl9ilPq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rqZCl9ilPq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rqZCl9ilPq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rqZCl9ilPq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rqZCl9ilPq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rqZCl9ilPq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rqZCl9ilPq .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rqZCl9ilPq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rqZCl9ilPq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rqZCl9ilPq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rqZCl9ilPq .dropdown-item.active,
.cid-rqZCl9ilPq .dropdown-item:active {
  background-color: transparent;
}
.cid-rqZCl9ilPq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rqZCl9ilPq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rqZCl9ilPq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rqZCl9ilPq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rqZCl9ilPq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rqZCl9ilPq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rqZCl9ilPq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rqZCl9ilPq .navbar-buttons {
  text-align: center;
}
.cid-rqZCl9ilPq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rqZCl9ilPq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rqZCl9ilPq a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rqZCl9ilPq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rqZCl9ilPq .navbar {
    height: 77px;
  }
  .cid-rqZCl9ilPq .navbar.opened {
    height: auto;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rr5DOkJ3Cj {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #fcf5e4;
  background: linear-gradient(90deg, #fcf5e4, #ffffff);
}
.cid-rr5DOkJ3Cj .container-fluid {
  padding: 0 3rem;
}
.cid-rr5DOkJ3Cj .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #c0982e;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-rr5DOkJ3Cj .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #c0982e;
}
.cid-rr5DOkJ3Cj .table-wrap:hover .table-pricing,
.cid-rr5DOkJ3Cj .table-wrap:hover .table-icon {
  color: #ffffff !important;
}
.cid-rr5DOkJ3Cj .table-wrap:hover .table-heading,
.cid-rr5DOkJ3Cj .table-wrap:hover .mbr-section-subtitle {
  color: #ffffff !important;
}
.cid-rr5DOkJ3Cj .section-heading {
  margin-bottom: 2rem;
}
.cid-rr5DOkJ3Cj .table-heading {
  margin-bottom: 2em;
}
.cid-rr5DOkJ3Cj .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-rr5DOkJ3Cj .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #192540, #c0982e);
  display: inline-block;
}
.cid-rr5DOkJ3Cj ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-rr5DOkJ3Cj ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rr5DOkJ3Cj ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-rr5DOkJ3Cj hr {
  display: none;
  background: #c0982e;
}
.cid-rr5DOkJ3Cj hr {
  display: block;
}
.cid-rr5DOkJ3Cj .table-heading,
.cid-rr5DOkJ3Cj .table-pricing,
.cid-rr5DOkJ3Cj .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-rr5DOkJ3Cj .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-rr5DOkJ3Cj .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rr5DOkJ3Cj .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-rr5DOkJ3Cj .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-rr5DOkJ3Cj .container-fluid {
    padding: 0 0rem;
  }
}
.cid-rr5DOkJ3Cj .table-pricing,
.cid-rr5DOkJ3Cj .table-icon {
  color: #c0982e;
}
.cid-rr5DOkJ3Cj .mbr-section-title,
.cid-rr5DOkJ3Cj .underline {
  color: #c0982e;
}
.cid-rqZCTBwbbi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #192540;
}
.cid-rqZCTBwbbi .container-fluid {
  padding: 0 3rem;
}
.cid-rqZCTBwbbi .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rqZCTBwbbi svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rqZCTBwbbi .signature > span {
  color: #192540;
}
@media (max-width: 767px) {
  .cid-rqZCTBwbbi .blockquote-quote {
    text-align: left;
  }
  .cid-rqZCTBwbbi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rqZCTBwbbi .mbr-section-title {
  color: #c0982e;
}
.cid-rqZCTBwbbi .mbr-text,
.cid-rqZCTBwbbi .blockquote-quote {
  color: #cccccc;
}
.cid-rqZKrcxU6M {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c1c1c1;
}
.cid-rqZKrcxU6M .social-media {
  margin-top: 1.5rem;
}
.cid-rqZKrcxU6M .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rqZKrcxU6M .social-media ul li {
  margin-right: 1.5rem;
  display: inline-block;
}
.cid-rqZKrcxU6M .mbr-list ul {
  margin: 0;
  padding: 0;
}
.cid-rqZKrcxU6M .mbr-list ul li {
  margin-bottom: 0.5rem;
}
.cid-rqZKrcxU6M ul {
  list-style: none;
}
.cid-rqZKrcxU6M hr {
  margin-top: 2rem;
}
.cid-rqZKrcxU6M .sub-info {
  margin-top: 2rem;
}
.cid-rqZKrcxU6M .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rqZKrcxU6M .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rqZKrcxU6M .mbr-list,
.cid-rqZKrcxU6M .social-media UL {
  text-align: left;
}
.cid-rqZKrcxU6M .mbr-section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rqZKrcxU6M .mbr-list,
  .cid-rqZKrcxU6M .mbr-section-title {
    text-align: center !important;
  }
  .cid-rqZKrcxU6M .social-media {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rqZKrcxU6M .social-media ul li {
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .cid-rqZKrcxU6M .mbr-list {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rqZKrcxU6M .list-column {
    margin-bottom: 2rem;
  }
  .cid-rqZKrcxU6M hr {
    margin-top: 0;
    margin-bottom: .5rem;
  }
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .nav-item:focus,
.cid-rqZCl9ilPq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rqZCl9ilPq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link {
    position: relative;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #192540, #c0982e);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rqZCl9ilPq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rqZCl9ilPq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rqZCl9ilPq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rqZCl9ilPq .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rqZCl9ilPq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rqZCl9ilPq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rqZCl9ilPq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rqZCl9ilPq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rqZCl9ilPq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rqZCl9ilPq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rqZCl9ilPq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rqZCl9ilPq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rqZCl9ilPq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rqZCl9ilPq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rqZCl9ilPq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rqZCl9ilPq .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rqZCl9ilPq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rqZCl9ilPq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rqZCl9ilPq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rqZCl9ilPq .dropdown-item.active,
.cid-rqZCl9ilPq .dropdown-item:active {
  background-color: transparent;
}
.cid-rqZCl9ilPq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rqZCl9ilPq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rqZCl9ilPq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rqZCl9ilPq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rqZCl9ilPq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rqZCl9ilPq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rqZCl9ilPq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rqZCl9ilPq .navbar-buttons {
  text-align: center;
}
.cid-rqZCl9ilPq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rqZCl9ilPq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rqZCl9ilPq a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rqZCl9ilPq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rqZCl9ilPq .navbar {
    height: 77px;
  }
  .cid-rqZCl9ilPq .navbar.opened {
    height: auto;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rr5L7jDbr2 {
  padding-top: 120px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/logo-icon-manolin-grey-transparant-553x576.png");
}
.cid-rr5L7jDbr2 .container-fluid {
  padding: 0 3rem;
}
.cid-rr5L7jDbr2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rr5L7jDbr2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #192540, #c0982e);
  display: inline-block;
}
.cid-rr5L7jDbr2 .card {
  margin-bottom: 2rem;
}
.cid-rr5L7jDbr2 .card-img {
  width: auto !important;
}
.cid-rr5L7jDbr2 .card-img .mbr-iconfont {
  color: #c0982e;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #c0982e, #84a7a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-rr5L7jDbr2 .content-row {
  word-wrap: break-word;
}
.cid-rr5L7jDbr2 .media {
  width: initial;
  height: initial;
  margin: initial;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rr5L7jDbr2 .media .media-body {
  -webkit-flex: none;
  flex: none;
}
.cid-rr5L7jDbr2 .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-rr5L7jDbr2 .card-title {
  color: #c0982e;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rr5L7jDbr2 .card-title,
  .cid-rr5L7jDbr2 .card-box {
    text-align: left;
  }
  .cid-rr5L7jDbr2 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rr5L7jDbr2 .mbr-section-title,
.cid-rr5L7jDbr2 .underline {
  color: #192540;
}
.cid-rqZCTBwbbi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #192540;
}
.cid-rqZCTBwbbi .container-fluid {
  padding: 0 3rem;
}
.cid-rqZCTBwbbi .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rqZCTBwbbi svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rqZCTBwbbi .signature > span {
  color: #192540;
}
@media (max-width: 767px) {
  .cid-rqZCTBwbbi .blockquote-quote {
    text-align: left;
  }
  .cid-rqZCTBwbbi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rqZCTBwbbi .mbr-section-title {
  color: #c0982e;
}
.cid-rqZCTBwbbi .mbr-text,
.cid-rqZCTBwbbi .blockquote-quote {
  color: #cccccc;
}
.cid-rqZKrcxU6M {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c1c1c1;
}
.cid-rqZKrcxU6M .social-media {
  margin-top: 1.5rem;
}
.cid-rqZKrcxU6M .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rqZKrcxU6M .social-media ul li {
  margin-right: 1.5rem;
  display: inline-block;
}
.cid-rqZKrcxU6M .mbr-list ul {
  margin: 0;
  padding: 0;
}
.cid-rqZKrcxU6M .mbr-list ul li {
  margin-bottom: 0.5rem;
}
.cid-rqZKrcxU6M ul {
  list-style: none;
}
.cid-rqZKrcxU6M hr {
  margin-top: 2rem;
}
.cid-rqZKrcxU6M .sub-info {
  margin-top: 2rem;
}
.cid-rqZKrcxU6M .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rqZKrcxU6M .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rqZKrcxU6M .mbr-list,
.cid-rqZKrcxU6M .social-media UL {
  text-align: left;
}
.cid-rqZKrcxU6M .mbr-section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rqZKrcxU6M .mbr-list,
  .cid-rqZKrcxU6M .mbr-section-title {
    text-align: center !important;
  }
  .cid-rqZKrcxU6M .social-media {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rqZKrcxU6M .social-media ul li {
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .cid-rqZKrcxU6M .mbr-list {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rqZKrcxU6M .list-column {
    margin-bottom: 2rem;
  }
  .cid-rqZKrcxU6M hr {
    margin-top: 0;
    margin-bottom: .5rem;
  }
}
.cid-rqZMljaDwW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-rqZMljaDwW .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rqZMljaDwW .row-element,
.cid-rqZMljaDwW .image-element {
  padding: 0;
}
.cid-rqZMljaDwW .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rqZMljaDwW .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rqZMljaDwW .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rqZMljaDwW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #192540, #c0982e);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rqZMljaDwW .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rqZMljaDwW .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rqZMljaDwW .text-content {
    padding: 2rem 1rem;
  }
  .cid-rqZMljaDwW .underline .line {
    height: 2px;
  }
  .cid-rqZMljaDwW .mbr-title,
  .cid-rqZMljaDwW .underline,
  .cid-rqZMljaDwW .mbr-text,
  .cid-rqZMljaDwW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .nav-item:focus,
.cid-rqZCl9ilPq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rqZCl9ilPq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link {
    position: relative;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #192540, #c0982e);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rqZCl9ilPq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rqZCl9ilPq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rqZCl9ilPq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rqZCl9ilPq .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rqZCl9ilPq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rqZCl9ilPq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rqZCl9ilPq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rqZCl9ilPq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rqZCl9ilPq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rqZCl9ilPq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rqZCl9ilPq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rqZCl9ilPq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rqZCl9ilPq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rqZCl9ilPq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rqZCl9ilPq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rqZCl9ilPq .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rqZCl9ilPq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rqZCl9ilPq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rqZCl9ilPq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rqZCl9ilPq .dropdown-item.active,
.cid-rqZCl9ilPq .dropdown-item:active {
  background-color: transparent;
}
.cid-rqZCl9ilPq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rqZCl9ilPq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rqZCl9ilPq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rqZCl9ilPq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rqZCl9ilPq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rqZCl9ilPq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rqZCl9ilPq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rqZCl9ilPq .navbar-buttons {
  text-align: center;
}
.cid-rqZCl9ilPq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rqZCl9ilPq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rqZCl9ilPq a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rqZCl9ilPq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rqZCl9ilPq .navbar {
    height: 77px;
  }
  .cid-rqZCl9ilPq .navbar.opened {
    height: auto;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rr5v5lAIqF {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #fcf5e4;
  background: linear-gradient(90deg, #fcf5e4, #ffffff);
}
.cid-rr5v5lAIqF .container-fluid {
  padding: 0 3rem;
}
.cid-rr5v5lAIqF .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #c0982e;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-rr5v5lAIqF .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #c0982e;
}
.cid-rr5v5lAIqF .table-wrap:hover .table-pricing,
.cid-rr5v5lAIqF .table-wrap:hover .table-icon {
  color: #ffffff !important;
}
.cid-rr5v5lAIqF .table-wrap:hover .table-heading,
.cid-rr5v5lAIqF .table-wrap:hover .mbr-section-subtitle {
  color: #ffffff !important;
}
.cid-rr5v5lAIqF .section-heading {
  margin-bottom: 2rem;
}
.cid-rr5v5lAIqF .table-heading {
  margin-bottom: 2em;
}
.cid-rr5v5lAIqF .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-rr5v5lAIqF .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #192540, #c0982e);
  display: inline-block;
}
.cid-rr5v5lAIqF ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-rr5v5lAIqF ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rr5v5lAIqF ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-rr5v5lAIqF hr {
  display: none;
  background: #c0982e;
}
.cid-rr5v5lAIqF hr {
  display: block;
}
.cid-rr5v5lAIqF .table-heading,
.cid-rr5v5lAIqF .table-pricing,
.cid-rr5v5lAIqF .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-rr5v5lAIqF .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-rr5v5lAIqF .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rr5v5lAIqF .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-rr5v5lAIqF .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-rr5v5lAIqF .container-fluid {
    padding: 0 0rem;
  }
}
.cid-rr5v5lAIqF .table-pricing,
.cid-rr5v5lAIqF .table-icon {
  color: #c0982e;
}
.cid-rr5v5lAIqF .mbr-section-title,
.cid-rr5v5lAIqF .underline {
  color: #c0982e;
}
.cid-rul4gXfCeA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #3c303b;
}
.cid-rul4gXfCeA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rul4gXfCeA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rul4gXfCeA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rul4gXfCeA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rul4gXfCeA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rul4gXfCeA .icon-focus {
  display: none;
}
.cid-rul4gXfCeA .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-rul4gXfCeA ul {
  font-size: 0;
}
.cid-rul4gXfCeA .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rul4gXfCeA .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rul4gXfCeA .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #192540, #c0982e);
}
.cid-rul4gXfCeA .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rul4gXfCeA .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rul4gXfCeA .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rul4gXfCeA .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rul4gXfCeA .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #192540, #c0982e);
  display: inline-block;
}
.cid-rul4gXfCeA .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rul4gXfCeA .btn:hover {
  background: transparent !important;
}
.cid-rul4gXfCeA .btn:hover:before {
  background: transparent !important;
}
.cid-rul4gXfCeA .btn:before {
  background-color: transparent !important;
}
.cid-rul4gXfCeA .btn:focus {
  box-shadow: none;
}
.cid-rul4gXfCeA .mbr-section-title,
.cid-rul4gXfCeA .underline {
  color: #ffffff;
}
.cid-rul4jQmgOQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #192540;
}
.cid-rul4jQmgOQ .container-fluid {
  padding: 0 3rem;
}
.cid-rul4jQmgOQ .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rul4jQmgOQ svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rul4jQmgOQ .signature > span {
  color: #192540;
}
@media (max-width: 767px) {
  .cid-rul4jQmgOQ .blockquote-quote {
    text-align: left;
  }
  .cid-rul4jQmgOQ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rul4jQmgOQ .mbr-section-title {
  color: #c0982e;
}
.cid-rul4jQmgOQ .mbr-text,
.cid-rul4jQmgOQ .blockquote-quote {
  color: #cccccc;
}
.cid-rqZKrcxU6M {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c1c1c1;
}
.cid-rqZKrcxU6M .social-media {
  margin-top: 1.5rem;
}
.cid-rqZKrcxU6M .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rqZKrcxU6M .social-media ul li {
  margin-right: 1.5rem;
  display: inline-block;
}
.cid-rqZKrcxU6M .mbr-list ul {
  margin: 0;
  padding: 0;
}
.cid-rqZKrcxU6M .mbr-list ul li {
  margin-bottom: 0.5rem;
}
.cid-rqZKrcxU6M ul {
  list-style: none;
}
.cid-rqZKrcxU6M hr {
  margin-top: 2rem;
}
.cid-rqZKrcxU6M .sub-info {
  margin-top: 2rem;
}
.cid-rqZKrcxU6M .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rqZKrcxU6M .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rqZKrcxU6M .mbr-list,
.cid-rqZKrcxU6M .social-media UL {
  text-align: left;
}
.cid-rqZKrcxU6M .mbr-section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rqZKrcxU6M .mbr-list,
  .cid-rqZKrcxU6M .mbr-section-title {
    text-align: center !important;
  }
  .cid-rqZKrcxU6M .social-media {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rqZKrcxU6M .social-media ul li {
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .cid-rqZKrcxU6M .mbr-list {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rqZKrcxU6M .list-column {
    margin-bottom: 2rem;
  }
  .cid-rqZKrcxU6M hr {
    margin-top: 0;
    margin-bottom: .5rem;
  }
}
.cid-rr5K1GsEfO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rr5K1GsEfO p {
  color: #767676;
}
.cid-rr5K1GsEfO .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rr5K1GsEfO .row-element,
.cid-rr5K1GsEfO .image-element {
  padding: 0;
}
.cid-rr5K1GsEfO .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rr5K1GsEfO .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rr5K1GsEfO .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rr5K1GsEfO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #192540, #c0982e);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rr5K1GsEfO .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rr5K1GsEfO .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rr5K1GsEfO .text-content {
    padding: 2rem 1rem;
  }
  .cid-rr5K1GsEfO .underline .line {
    height: 2px;
  }
  .cid-rr5K1GsEfO .mbr-title,
  .cid-rr5K1GsEfO .underline,
  .cid-rr5K1GsEfO .mbr-text,
  .cid-rr5K1GsEfO .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rr5K1GsEfO .mbr-text,
.cid-rr5K1GsEfO .mbr-section-btn {
  text-align: left;
}
.cid-rr5K1GsEfO .mbr-title,
.cid-rr5K1GsEfO .underline B {
  color: #c0982e;
}
.cid-rr5K1GsEfO .mbr-title,
.cid-rr5K1GsEfO .underline {
  text-align: left;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .nav-item:focus,
.cid-rqZCl9ilPq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rqZCl9ilPq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link {
    position: relative;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #192540, #c0982e);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rqZCl9ilPq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rqZCl9ilPq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rqZCl9ilPq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rqZCl9ilPq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rqZCl9ilPq .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rqZCl9ilPq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rqZCl9ilPq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rqZCl9ilPq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rqZCl9ilPq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rqZCl9ilPq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rqZCl9ilPq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rqZCl9ilPq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rqZCl9ilPq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rqZCl9ilPq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rqZCl9ilPq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rqZCl9ilPq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rqZCl9ilPq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rqZCl9ilPq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rqZCl9ilPq .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rqZCl9ilPq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rqZCl9ilPq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rqZCl9ilPq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rqZCl9ilPq .dropdown-item.active,
.cid-rqZCl9ilPq .dropdown-item:active {
  background-color: transparent;
}
.cid-rqZCl9ilPq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rqZCl9ilPq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rqZCl9ilPq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rqZCl9ilPq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rqZCl9ilPq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rqZCl9ilPq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rqZCl9ilPq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rqZCl9ilPq .navbar-buttons {
  text-align: center;
}
.cid-rqZCl9ilPq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rqZCl9ilPq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rqZCl9ilPq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rqZCl9ilPq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rqZCl9ilPq a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rqZCl9ilPq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rqZCl9ilPq .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-rqZCl9ilPq .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rqZCl9ilPq .navbar {
    height: 77px;
  }
  .cid-rqZCl9ilPq .navbar.opened {
    height: auto;
  }
  .cid-rqZCl9ilPq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rqZCTBwbbi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #192540;
}
.cid-rqZCTBwbbi .container-fluid {
  padding: 0 3rem;
}
.cid-rqZCTBwbbi .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rqZCTBwbbi svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rqZCTBwbbi .signature > span {
  color: #192540;
}
@media (max-width: 767px) {
  .cid-rqZCTBwbbi .blockquote-quote {
    text-align: left;
  }
  .cid-rqZCTBwbbi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rqZCTBwbbi .mbr-section-title {
  color: #c0982e;
}
.cid-rqZCTBwbbi .mbr-text,
.cid-rqZCTBwbbi .blockquote-quote {
  color: #cccccc;
}
.cid-ruFxn4JdVy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-ruFxn4JdVy p {
  color: #767676;
}
.cid-ruFxn4JdVy .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-ruFxn4JdVy .row-element,
.cid-ruFxn4JdVy .image-element {
  padding: 0;
}
.cid-ruFxn4JdVy .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ruFxn4JdVy .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-ruFxn4JdVy .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-ruFxn4JdVy .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #192540, #c0982e);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-ruFxn4JdVy .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-ruFxn4JdVy .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ruFxn4JdVy .text-content {
    padding: 2rem 1rem;
  }
  .cid-ruFxn4JdVy .underline .line {
    height: 2px;
  }
  .cid-ruFxn4JdVy .mbr-title,
  .cid-ruFxn4JdVy .underline,
  .cid-ruFxn4JdVy .mbr-text,
  .cid-ruFxn4JdVy .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ruFxn4JdVy .mbr-text,
.cid-ruFxn4JdVy .mbr-section-btn {
  text-align: left;
}
.cid-ruFxn4JdVy .mbr-title,
.cid-ruFxn4JdVy .underline B {
  color: #c0982e;
}
.cid-ruFxn4JdVy .mbr-title,
.cid-ruFxn4JdVy .underline {
  text-align: left;
}
.cid-rqZKrcxU6M {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c1c1c1;
}
.cid-rqZKrcxU6M .social-media {
  margin-top: 1.5rem;
}
.cid-rqZKrcxU6M .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rqZKrcxU6M .social-media ul li {
  margin-right: 1.5rem;
  display: inline-block;
}
.cid-rqZKrcxU6M .mbr-list ul {
  margin: 0;
  padding: 0;
}
.cid-rqZKrcxU6M .mbr-list ul li {
  margin-bottom: 0.5rem;
}
.cid-rqZKrcxU6M ul {
  list-style: none;
}
.cid-rqZKrcxU6M hr {
  margin-top: 2rem;
}
.cid-rqZKrcxU6M .sub-info {
  margin-top: 2rem;
}
.cid-rqZKrcxU6M .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rqZKrcxU6M .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rqZKrcxU6M .mbr-list,
.cid-rqZKrcxU6M .social-media UL {
  text-align: left;
}
.cid-rqZKrcxU6M .mbr-section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rqZKrcxU6M .mbr-list,
  .cid-rqZKrcxU6M .mbr-section-title {
    text-align: center !important;
  }
  .cid-rqZKrcxU6M .social-media {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rqZKrcxU6M .social-media ul li {
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .cid-rqZKrcxU6M .mbr-list {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rqZKrcxU6M .list-column {
    margin-bottom: 2rem;
  }
  .cid-rqZKrcxU6M hr {
    margin-top: 0;
    margin-bottom: .5rem;
  }
}
.cid-rujaVkBkP1 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-rujaVkBkP1 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rujaVkBkP1 .row-element,
.cid-rujaVkBkP1 .image-element {
  padding: 0;
}
.cid-rujaVkBkP1 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rujaVkBkP1 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rujaVkBkP1 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rujaVkBkP1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #192540, #c0982e);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rujaVkBkP1 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rujaVkBkP1 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rujaVkBkP1 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rujaVkBkP1 .underline .line {
    height: 2px;
  }
  .cid-rujaVkBkP1 .mbr-title,
  .cid-rujaVkBkP1 .underline,
  .cid-rujaVkBkP1 .mbr-text,
  .cid-rujaVkBkP1 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rujaVm3ZpD .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-rujaVm3ZpD .nav-item:focus,
.cid-rujaVm3ZpD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rujaVm3ZpD .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rujaVm3ZpD .nav-item .nav-link {
    position: relative;
  }
  .cid-rujaVm3ZpD .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #192540, #c0982e);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rujaVm3ZpD .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rujaVm3ZpD .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rujaVm3ZpD .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-rujaVm3ZpD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rujaVm3ZpD .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rujaVm3ZpD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rujaVm3ZpD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rujaVm3ZpD .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-rujaVm3ZpD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rujaVm3ZpD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rujaVm3ZpD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rujaVm3ZpD .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rujaVm3ZpD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rujaVm3ZpD .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rujaVm3ZpD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rujaVm3ZpD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rujaVm3ZpD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rujaVm3ZpD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rujaVm3ZpD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rujaVm3ZpD .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-rujaVm3ZpD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rujaVm3ZpD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rujaVm3ZpD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rujaVm3ZpD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rujaVm3ZpD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rujaVm3ZpD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rujaVm3ZpD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rujaVm3ZpD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rujaVm3ZpD .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-rujaVm3ZpD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rujaVm3ZpD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rujaVm3ZpD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rujaVm3ZpD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rujaVm3ZpD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rujaVm3ZpD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rujaVm3ZpD .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rujaVm3ZpD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rujaVm3ZpD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rujaVm3ZpD .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-rujaVm3ZpD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rujaVm3ZpD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rujaVm3ZpD .dropdown-item.active,
.cid-rujaVm3ZpD .dropdown-item:active {
  background-color: transparent;
}
.cid-rujaVm3ZpD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rujaVm3ZpD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rujaVm3ZpD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rujaVm3ZpD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rujaVm3ZpD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rujaVm3ZpD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rujaVm3ZpD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rujaVm3ZpD .navbar-buttons {
  text-align: center;
}
.cid-rujaVm3ZpD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rujaVm3ZpD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-rujaVm3ZpD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rujaVm3ZpD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rujaVm3ZpD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rujaVm3ZpD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rujaVm3ZpD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rujaVm3ZpD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rujaVm3ZpD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rujaVm3ZpD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rujaVm3ZpD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rujaVm3ZpD a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rujaVm3ZpD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rujaVm3ZpD .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-rujaVm3ZpD .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rujaVm3ZpD .navbar {
    height: 77px;
  }
  .cid-rujaVm3ZpD .navbar.opened {
    height: auto;
  }
  .cid-rujaVm3ZpD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rujaVmY5ZG {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #fcf5e4;
  background: linear-gradient(90deg, #fcf5e4, #ffffff);
}
.cid-rujaVmY5ZG .container-fluid {
  padding: 0 3rem;
}
.cid-rujaVmY5ZG .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #c0982e;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-rujaVmY5ZG .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #c0982e;
}
.cid-rujaVmY5ZG .table-wrap:hover .table-pricing,
.cid-rujaVmY5ZG .table-wrap:hover .table-icon {
  color: #ffffff !important;
}
.cid-rujaVmY5ZG .table-wrap:hover .table-heading,
.cid-rujaVmY5ZG .table-wrap:hover .mbr-section-subtitle {
  color: #ffffff !important;
}
.cid-rujaVmY5ZG .section-heading {
  margin-bottom: 2rem;
}
.cid-rujaVmY5ZG .table-heading {
  margin-bottom: 2em;
}
.cid-rujaVmY5ZG .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-rujaVmY5ZG .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #192540, #c0982e);
  display: inline-block;
}
.cid-rujaVmY5ZG ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-rujaVmY5ZG ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rujaVmY5ZG ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-rujaVmY5ZG hr {
  display: none;
  background: #c0982e;
}
.cid-rujaVmY5ZG hr {
  display: block;
}
.cid-rujaVmY5ZG .table-heading,
.cid-rujaVmY5ZG .table-pricing,
.cid-rujaVmY5ZG .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-rujaVmY5ZG .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-rujaVmY5ZG .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rujaVmY5ZG .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-rujaVmY5ZG .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-rujaVmY5ZG .container-fluid {
    padding: 0 0rem;
  }
}
.cid-rujaVmY5ZG .table-pricing,
.cid-rujaVmY5ZG .table-icon {
  color: #c0982e;
}
.cid-rujaVmY5ZG .mbr-section-title,
.cid-rujaVmY5ZG .underline {
  color: #c0982e;
}
.cid-rul3TCsS5b {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #3c303b;
}
.cid-rul3TCsS5b .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rul3TCsS5b .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rul3TCsS5b .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rul3TCsS5b .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rul3TCsS5b .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rul3TCsS5b .icon-focus {
  display: none;
}
.cid-rul3TCsS5b .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-rul3TCsS5b ul {
  font-size: 0;
}
.cid-rul3TCsS5b .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rul3TCsS5b .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rul3TCsS5b .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #192540, #c0982e);
}
.cid-rul3TCsS5b .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rul3TCsS5b .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rul3TCsS5b .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rul3TCsS5b .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rul3TCsS5b .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #192540, #c0982e);
  display: inline-block;
}
.cid-rul3TCsS5b .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rul3TCsS5b .btn:hover {
  background: transparent !important;
}
.cid-rul3TCsS5b .btn:hover:before {
  background: transparent !important;
}
.cid-rul3TCsS5b .btn:before {
  background-color: transparent !important;
}
.cid-rul3TCsS5b .btn:focus {
  box-shadow: none;
}
.cid-rul3TCsS5b .mbr-section-title,
.cid-rul3TCsS5b .underline {
  color: #ffffff;
}
.cid-rujaVp8Q3E {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #192540;
}
.cid-rujaVp8Q3E .container-fluid {
  padding: 0 3rem;
}
.cid-rujaVp8Q3E .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rujaVp8Q3E svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rujaVp8Q3E .signature > span {
  color: #192540;
}
@media (max-width: 767px) {
  .cid-rujaVp8Q3E .blockquote-quote {
    text-align: left;
  }
  .cid-rujaVp8Q3E .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rujaVp8Q3E .mbr-section-title {
  color: #c0982e;
}
.cid-rujaVp8Q3E .mbr-text,
.cid-rujaVp8Q3E .blockquote-quote {
  color: #cccccc;
}
.cid-rujaVpPVK8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c1c1c1;
}
.cid-rujaVpPVK8 .social-media {
  margin-top: 1.5rem;
}
.cid-rujaVpPVK8 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rujaVpPVK8 .social-media ul li {
  margin-right: 1.5rem;
  display: inline-block;
}
.cid-rujaVpPVK8 .mbr-list ul {
  margin: 0;
  padding: 0;
}
.cid-rujaVpPVK8 .mbr-list ul li {
  margin-bottom: 0.5rem;
}
.cid-rujaVpPVK8 ul {
  list-style: none;
}
.cid-rujaVpPVK8 hr {
  margin-top: 2rem;
}
.cid-rujaVpPVK8 .sub-info {
  margin-top: 2rem;
}
.cid-rujaVpPVK8 .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rujaVpPVK8 .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rujaVpPVK8 .mbr-list,
.cid-rujaVpPVK8 .social-media UL {
  text-align: left;
}
.cid-rujaVpPVK8 .mbr-section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rujaVpPVK8 .mbr-list,
  .cid-rujaVpPVK8 .mbr-section-title {
    text-align: center !important;
  }
  .cid-rujaVpPVK8 .social-media {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rujaVpPVK8 .social-media ul li {
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .cid-rujaVpPVK8 .mbr-list {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rujaVpPVK8 .list-column {
    margin-bottom: 2rem;
  }
  .cid-rujaVpPVK8 hr {
    margin-top: 0;
    margin-bottom: .5rem;
  }
}
.cid-rv56mJUZ2t {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-rv56mJUZ2t .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rv56mJUZ2t .row-element,
.cid-rv56mJUZ2t .image-element {
  padding: 0;
}
.cid-rv56mJUZ2t .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rv56mJUZ2t .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rv56mJUZ2t .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rv56mJUZ2t .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #192540, #c0982e);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rv56mJUZ2t .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rv56mJUZ2t .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rv56mJUZ2t .text-content {
    padding: 2rem 1rem;
  }
  .cid-rv56mJUZ2t .underline .line {
    height: 2px;
  }
  .cid-rv56mJUZ2t .mbr-title,
  .cid-rv56mJUZ2t .underline,
  .cid-rv56mJUZ2t .mbr-text,
  .cid-rv56mJUZ2t .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rv56mL7fOY .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-rv56mL7fOY .nav-item:focus,
.cid-rv56mL7fOY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rv56mL7fOY .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rv56mL7fOY .nav-item .nav-link {
    position: relative;
  }
  .cid-rv56mL7fOY .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #192540, #c0982e);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rv56mL7fOY .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rv56mL7fOY .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rv56mL7fOY .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-rv56mL7fOY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rv56mL7fOY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rv56mL7fOY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rv56mL7fOY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rv56mL7fOY .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-rv56mL7fOY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rv56mL7fOY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rv56mL7fOY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rv56mL7fOY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rv56mL7fOY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rv56mL7fOY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rv56mL7fOY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rv56mL7fOY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rv56mL7fOY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rv56mL7fOY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rv56mL7fOY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rv56mL7fOY .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-rv56mL7fOY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rv56mL7fOY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rv56mL7fOY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rv56mL7fOY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rv56mL7fOY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rv56mL7fOY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rv56mL7fOY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rv56mL7fOY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rv56mL7fOY .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-rv56mL7fOY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rv56mL7fOY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rv56mL7fOY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rv56mL7fOY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rv56mL7fOY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rv56mL7fOY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rv56mL7fOY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rv56mL7fOY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rv56mL7fOY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rv56mL7fOY .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-rv56mL7fOY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rv56mL7fOY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rv56mL7fOY .dropdown-item.active,
.cid-rv56mL7fOY .dropdown-item:active {
  background-color: transparent;
}
.cid-rv56mL7fOY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rv56mL7fOY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rv56mL7fOY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rv56mL7fOY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rv56mL7fOY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rv56mL7fOY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rv56mL7fOY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rv56mL7fOY .navbar-buttons {
  text-align: center;
}
.cid-rv56mL7fOY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rv56mL7fOY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-rv56mL7fOY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rv56mL7fOY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rv56mL7fOY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rv56mL7fOY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rv56mL7fOY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rv56mL7fOY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rv56mL7fOY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rv56mL7fOY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rv56mL7fOY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rv56mL7fOY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rv56mL7fOY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rv56mL7fOY .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-rv56mL7fOY .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rv56mL7fOY .navbar {
    height: 77px;
  }
  .cid-rv56mL7fOY .navbar.opened {
    height: auto;
  }
  .cid-rv56mL7fOY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rv56mM2Avf {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #fcf5e4;
  background: linear-gradient(90deg, #fcf5e4, #ffffff);
}
.cid-rv56mM2Avf .container-fluid {
  padding: 0 3rem;
}
.cid-rv56mM2Avf .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #c0982e;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-rv56mM2Avf .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #c0982e;
}
.cid-rv56mM2Avf .table-wrap:hover .table-pricing,
.cid-rv56mM2Avf .table-wrap:hover .table-icon {
  color: #ffffff !important;
}
.cid-rv56mM2Avf .table-wrap:hover .table-heading,
.cid-rv56mM2Avf .table-wrap:hover .mbr-section-subtitle {
  color: #ffffff !important;
}
.cid-rv56mM2Avf .section-heading {
  margin-bottom: 2rem;
}
.cid-rv56mM2Avf .table-heading {
  margin-bottom: 2em;
}
.cid-rv56mM2Avf .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-rv56mM2Avf .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #192540, #c0982e);
  display: inline-block;
}
.cid-rv56mM2Avf ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-rv56mM2Avf ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rv56mM2Avf ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-rv56mM2Avf hr {
  display: none;
  background: #c0982e;
}
.cid-rv56mM2Avf hr {
  display: block;
}
.cid-rv56mM2Avf .table-heading,
.cid-rv56mM2Avf .table-pricing,
.cid-rv56mM2Avf .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-rv56mM2Avf .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-rv56mM2Avf .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rv56mM2Avf .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-rv56mM2Avf .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-rv56mM2Avf .container-fluid {
    padding: 0 0rem;
  }
}
.cid-rv56mM2Avf .table-pricing,
.cid-rv56mM2Avf .table-icon {
  color: #c0982e;
}
.cid-rv56mM2Avf .mbr-section-title,
.cid-rv56mM2Avf .underline {
  color: #c0982e;
}
.cid-rv56mNwHui {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #3c303b;
}
.cid-rv56mNwHui .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rv56mNwHui .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rv56mNwHui .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rv56mNwHui .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rv56mNwHui .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rv56mNwHui .icon-focus {
  display: none;
}
.cid-rv56mNwHui .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-rv56mNwHui ul {
  font-size: 0;
}
.cid-rv56mNwHui .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rv56mNwHui .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rv56mNwHui .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #192540, #c0982e);
}
.cid-rv56mNwHui .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rv56mNwHui .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rv56mNwHui .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rv56mNwHui .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rv56mNwHui .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #192540, #c0982e);
  display: inline-block;
}
.cid-rv56mNwHui .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rv56mNwHui .btn:hover {
  background: transparent !important;
}
.cid-rv56mNwHui .btn:hover:before {
  background: transparent !important;
}
.cid-rv56mNwHui .btn:before {
  background-color: transparent !important;
}
.cid-rv56mNwHui .btn:focus {
  box-shadow: none;
}
.cid-rv56mNwHui .mbr-section-title,
.cid-rv56mNwHui .underline {
  color: #ffffff;
}
.cid-rv56mPz3Ps {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #192540;
}
.cid-rv56mPz3Ps .container-fluid {
  padding: 0 3rem;
}
.cid-rv56mPz3Ps .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rv56mPz3Ps svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rv56mPz3Ps .signature > span {
  color: #192540;
}
@media (max-width: 767px) {
  .cid-rv56mPz3Ps .blockquote-quote {
    text-align: left;
  }
  .cid-rv56mPz3Ps .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rv56mPz3Ps .mbr-section-title {
  color: #c0982e;
}
.cid-rv56mPz3Ps .mbr-text,
.cid-rv56mPz3Ps .blockquote-quote {
  color: #cccccc;
}
.cid-rv59DeDxxf {
  background: #ffffff;
}
.cid-rv59DeDxxf .container-fluid {
  padding: 0 3rem;
}
.cid-rv59DeDxxf .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rv59DeDxxf .container-fluid {
    padding: 0 1rem;
  }
  .cid-rv59DeDxxf .video-block {
    width: 100% !important;
  }
}
.cid-rv5awtgFnn {
  background: #ffffff;
}
.cid-rv5awtgFnn .container-fluid {
  padding: 0 3rem;
}
.cid-rv5awtgFnn .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rv5awtgFnn .container-fluid {
    padding: 0 1rem;
  }
  .cid-rv5awtgFnn .video-block {
    width: 100% !important;
  }
}
.cid-rv56mQldV1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c1c1c1;
}
.cid-rv56mQldV1 .social-media {
  margin-top: 1.5rem;
}
.cid-rv56mQldV1 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rv56mQldV1 .social-media ul li {
  margin-right: 1.5rem;
  display: inline-block;
}
.cid-rv56mQldV1 .mbr-list ul {
  margin: 0;
  padding: 0;
}
.cid-rv56mQldV1 .mbr-list ul li {
  margin-bottom: 0.5rem;
}
.cid-rv56mQldV1 ul {
  list-style: none;
}
.cid-rv56mQldV1 hr {
  margin-top: 2rem;
}
.cid-rv56mQldV1 .sub-info {
  margin-top: 2rem;
}
.cid-rv56mQldV1 .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-rv56mQldV1 .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-rv56mQldV1 .mbr-list,
.cid-rv56mQldV1 .social-media UL {
  text-align: left;
}
.cid-rv56mQldV1 .mbr-section-title {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-rv56mQldV1 .mbr-list,
  .cid-rv56mQldV1 .mbr-section-title {
    text-align: center !important;
  }
  .cid-rv56mQldV1 .social-media {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rv56mQldV1 .social-media ul li {
    margin: 0;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .cid-rv56mQldV1 .mbr-list {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rv56mQldV1 .list-column {
    margin-bottom: 2rem;
  }
  .cid-rv56mQldV1 hr {
    margin-top: 0;
    margin-bottom: .5rem;
  }
}
