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





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 0.8rem;
}
.display-5 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #f0b945 !important;
}
.bg-success {
  background-color: #cc6600 !important;
}
.bg-info {
  background-color: #ddd5b9 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #a61115 !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: #d79811;
  border-color: #d79811;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f0b945 !important;
  border-color: #f0b945 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #d79811 !important;
  border-color: #d79811 !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: #d79811 !important;
  border-color: #d79811 !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: #3c1516;
  border-color: #3c1516;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #75292b !important;
  border-color: #75292b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #3c1516 !important;
  border-color: #3c1516 !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: #3c1516 !important;
  border-color: #3c1516 !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: #c4b686;
  border-color: #c4b686;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ddd5b9 !important;
  border-color: #ddd5b9 !important;
  color: #665a31 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #665a31 !important;
  background-color: #c4b686 !important;
  border-color: #c4b686 !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: #665a31 !important;
  background-color: #c4b686 !important;
  border-color: #c4b686 !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: #804000;
  border-color: #804000;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #cc6600 !important;
  border-color: #cc6600 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #804000 !important;
  border-color: #804000 !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: #804000 !important;
  border-color: #804000 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #610a0c;
  border-color: #610a0c;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #a61115 !important;
  border-color: #a61115 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #610a0c !important;
  border-color: #610a0c !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: #610a0c !important;
  border-color: #610a0c !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: #f0b945;
  border-color: #f0b945;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #c0870f;
  color: #c0870f !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #f0b945;
  border-color: #f0b945;
}
.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: #f0b945 !important;
  border-color: #f0b945 !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: #75292b;
  border-color: #75292b;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #290f0f;
  color: #290f0f !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #75292b;
  border-color: #75292b;
}
.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: #75292b !important;
  border-color: #75292b !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: #ddd5b9;
  border-color: #ddd5b9;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #bcac74;
  color: #bcac74 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #665a31 !important;
  background-color: #ddd5b9;
  border-color: #ddd5b9;
}
.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: #665a31 !important;
  background-color: #ddd5b9 !important;
  border-color: #ddd5b9 !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: #cc6600;
  border-color: #cc6600;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #663300;
  color: #663300 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #cc6600;
  border-color: #cc6600;
}
.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: #cc6600 !important;
  border-color: #cc6600 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a61115;
  border-color: #a61115;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #490809;
  color: #490809 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #a61115;
  border-color: #a61115;
}
.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: #a61115 !important;
  border-color: #a61115 !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: #f0b945 !important;
}
.text-secondary {
  color: #75292b !important;
}
.text-success {
  color: #cc6600 !important;
}
.text-info {
  color: #ddd5b9 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #a61115 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #c0870f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #290f0f !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #663300 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #bcac74 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #490809 !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: #cc6600;
}
.alert-info {
  background-color: #ddd5b9;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #a61115;
}
.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: #f0b945;
  border-color: #f0b945;
  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: #f0b945;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffcc99;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ec4a4e;
}
/* 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 {
  box-shadow: none;
  color: #565656;
  background-color: #efefef;
  border-radius: 22px;
  padding: 18px 25px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 3.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: #f0b945;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
@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: #f0b945;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #f0b945;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #f0b945;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #f0b945;
}
/* 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;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #f0b945;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f0b945;
  border-bottom-color: #f0b945;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f0b945 !important;
  box-shadow: none!important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #75292b !important;
  box-shadow: none !important;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .nav-item:focus,
.cid-rt1p7JkLUk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rt1p7JkLUk .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link {
    position: relative;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, white, white);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rt1p7JkLUk .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rt1p7JkLUk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rt1p7JkLUk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: linear-gradient(90deg, #f0b945 25%, rgba(240, 185, 69, 0.5));
}
.cid-rt1p7JkLUk .navbar.opened {
  transition: all .3s;
  background: #f0b945 !important;
}
.cid-rt1p7JkLUk .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rt1p7JkLUk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rt1p7JkLUk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rt1p7JkLUk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rt1p7JkLUk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rt1p7JkLUk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rt1p7JkLUk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rt1p7JkLUk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rt1p7JkLUk .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-rt1p7JkLUk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rt1p7JkLUk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rt1p7JkLUk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rt1p7JkLUk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rt1p7JkLUk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rt1p7JkLUk .navbar.navbar-short {
  background: #f0b945 !important;
  min-height: 60px;
}
.cid-rt1p7JkLUk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rt1p7JkLUk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rt1p7JkLUk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rt1p7JkLUk .dropdown-item.active,
.cid-rt1p7JkLUk .dropdown-item:active {
  background-color: transparent;
}
.cid-rt1p7JkLUk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rt1p7JkLUk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rt1p7JkLUk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rt1p7JkLUk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f0b945;
}
.cid-rt1p7JkLUk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rt1p7JkLUk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rt1p7JkLUk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rt1p7JkLUk .navbar-buttons {
  text-align: center;
}
.cid-rt1p7JkLUk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt1p7JkLUk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rt1p7JkLUk a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white !important;
}
.cid-rt1p7JkLUk a.nav-link:hover {
  color: white !important;
}
.cid-rt1p7JkLUk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rt1p7JkLUk .navbar {
    height: 77px;
  }
  .cid-rt1p7JkLUk .navbar.opened {
    height: auto;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt1tYcQD1K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rt1tYcQD1K .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-rt1tYcQD1K .modal-body .close {
  background: #1b1b1b;
}
.cid-rt1tYcQD1K .modal-body .close span {
  font-style: normal;
}
.cid-rt1tYcQD1K .carousel-inner > .active,
.cid-rt1tYcQD1K .carousel-inner > .next,
.cid-rt1tYcQD1K .carousel-inner > .prev {
  display: flex;
}
.cid-rt1tYcQD1K .carousel-control .icon-next,
.cid-rt1tYcQD1K .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rt1tYcQD1K .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rt1tYcQD1K .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-rt1tYcQD1K .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-rt1tYcQD1K .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rt1tYcQD1K .boxed-slider > div {
  position: relative;
}
.cid-rt1tYcQD1K .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-rt1tYcQD1K .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rt1tYcQD1K .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rt1tYcQD1K .mbr-table-cell {
  padding: 0;
}
.cid-rt1tYcQD1K .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rt1tYcQD1K .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rt1tYcQD1K .mbr-overlay {
  z-index: 1;
}
.cid-rt1tYcQD1K .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-rt1tYcQD1K .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rt1tYcQD1K .carousel-item .container {
    width: 100%;
  }
}
.cid-rt1tYcQD1K .carousel-item-next.carousel-item-left,
.cid-rt1tYcQD1K .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rt1tYcQD1K .active.carousel-item-right,
.cid-rt1tYcQD1K .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rt1tYcQD1K .active.carousel-item-left,
.cid-rt1tYcQD1K .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rt1tYcQD1K .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-rt1tYcQD1K .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rt1tYcQD1K .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rt1tYcQD1K .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-rt1tYcQD1K .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rt1tYcQD1K .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rt1tYcQD1K .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rt1tYcQD1K .mbr-slider .carousel-indicators li.active,
.cid-rt1tYcQD1K .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rt1tYcQD1K .mbr-slider .carousel-indicators li::after,
.cid-rt1tYcQD1K .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rt1tYcQD1K .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rt1tYcQD1K .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rt1tYcQD1K .mbr-slider > .container img {
  width: 100%;
}
.cid-rt1tYcQD1K .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rt1tYcQD1K .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rt1tYcQD1K .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rt1tYcQD1K .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rt1tYcQD1K .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rt1tYcQD1K .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-rt1tYcQD1K .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rt1tYcQD1K .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-rt1tYcQD1K .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rt1tYcQD1K .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rt1tYcQD1K .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rt1tYcQD1K .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rt1tYcQD1K .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rt1tYcQD1K .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-rt1tYcQD1K .carousel-inner {
  height: 100%;
}
.cid-rt1tYcQD1K .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-rt1tYcQD1K .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 600px;
  overflow: hidden;
}
.cid-rt1tYcQD1K .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-rt1tYcQD1K .content-slider-wrap {
  width: 100%;
}
.cid-rt1tYcQD1K H2 {
  color: #ffffff;
}
.cid-rt1tYcQD1K P {
  color: #ffffff;
}
.cid-rt6GmNg2mv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/13-1500x1000.jpg");
}
.cid-rt6GmNg2mv .container-fluid {
  padding: 0 3rem;
}
.cid-rt6GmNg2mv .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f0b945, #75292b);
  display: inline-block;
}
.cid-rt6GmNg2mv .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rt6GmNg2mv .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rt6GmNg2mv .card .card-wrapper {
  height: 1%;
}
.cid-rt6GmNg2mv .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 0px;
  z-index: 1;
}
.cid-rt6GmNg2mv .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rt6GmNg2mv .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #8264fd;
}
.cid-rt6GmNg2mv .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rt6GmNg2mv .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-rt6GmNg2mv .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rt6GmNg2mv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rt6GmNg2mv .mbr-section-title,
.cid-rt6GmNg2mv .underline {
  text-align: center;
  color: #3a5765;
}
.cid-rt1Y3lld1m {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/untitled-2-1920x1200.jpg");
}
.cid-rt1Y3lld1m .container-fluid {
  padding: 0 3rem;
}
.cid-rt1Y3lld1m .media-container-column {
  padding: 0 2rem;
}
.cid-rt1Y3lld1m .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rt1Y3lld1m .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rt1zkyegP6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #ddd5b9;
  background: linear-gradient(135deg, #f0b945, #ddd5b9);
}
.cid-rt1zkyegP6 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rt1zkyegP6 .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-rt1zkyegP6 .video-block {
    width: 100% !important;
  }
}
.cid-rt743he5ZI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bac2-5-1500x750.png");
}
.cid-rt743he5ZI .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-rt743he5ZI .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rt743he5ZI .mbr-form {
  display: -webkit-flex;
}
.cid-rt743he5ZI .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rt743he5ZI .btn-primary {
  border: 1px solid #f0b945 !important;
}
.cid-rt743he5ZI .btn-primary:hover {
  border: 1px solid #f0b945 !important;
}
.cid-rt743he5ZI .stripe {
  border-bottom: 1px solid #db7373;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rt743he5ZI .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-rt743he5ZI .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ddd5b9;
  width: 85%;
}
.cid-rt743he5ZI .mbr-text {
  color: #444;
}
.cid-rt743he5ZI h5 {
  margin-bottom: 0;
}
.cid-rt743he5ZI .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rt743he5ZI .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rt743he5ZI .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rt743he5ZI .socicon {
  font-size: 1.3rem;
  background: #f0b945;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rt743he5ZI .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
}
.cid-rt743he5ZI .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rt743he5ZI .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rt743he5ZI .social-list a:hover {
  opacity: 0.4;
}
.cid-rt743he5ZI .media-container-row > div {
  padding: 0px;
}
.cid-rt743he5ZI .text2 {
  color: #f0b945;
  text-align: left;
}
.cid-rt743he5ZI .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rt743he5ZI .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rt743he5ZI .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rt743he5ZI .social-list,
  .cid-rt743he5ZI .img-list {
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rt743he5ZI h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rt743he5ZI .form-control {
    max-width: 180px;
  }
}
.cid-rt743he5ZI .links span {
  color: #9e9e9e;
}
.cid-rt743he5ZI .logo-sub-title {
  text-align: left;
}
.cid-rt743he5ZI .logo-title {
  text-align: center;
  color: #ddd5b9;
}
.cid-rt743he5ZI .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rt743he5ZI .group-title SPAN {
  color: #ffffff;
}
.cid-rt743he5ZI .logo-title SPAN {
  color: #ffffff;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .nav-item:focus,
.cid-rt1p7JkLUk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rt1p7JkLUk .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link {
    position: relative;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, white, white);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rt1p7JkLUk .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rt1p7JkLUk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rt1p7JkLUk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: linear-gradient(90deg, #f0b945 25%, rgba(240, 185, 69, 0.5));
}
.cid-rt1p7JkLUk .navbar.opened {
  transition: all .3s;
  background: #f0b945 !important;
}
.cid-rt1p7JkLUk .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rt1p7JkLUk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rt1p7JkLUk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rt1p7JkLUk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rt1p7JkLUk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rt1p7JkLUk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rt1p7JkLUk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rt1p7JkLUk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rt1p7JkLUk .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-rt1p7JkLUk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rt1p7JkLUk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rt1p7JkLUk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rt1p7JkLUk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rt1p7JkLUk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rt1p7JkLUk .navbar.navbar-short {
  background: #f0b945 !important;
  min-height: 60px;
}
.cid-rt1p7JkLUk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rt1p7JkLUk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rt1p7JkLUk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rt1p7JkLUk .dropdown-item.active,
.cid-rt1p7JkLUk .dropdown-item:active {
  background-color: transparent;
}
.cid-rt1p7JkLUk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rt1p7JkLUk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rt1p7JkLUk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rt1p7JkLUk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f0b945;
}
.cid-rt1p7JkLUk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rt1p7JkLUk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rt1p7JkLUk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rt1p7JkLUk .navbar-buttons {
  text-align: center;
}
.cid-rt1p7JkLUk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt1p7JkLUk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rt1p7JkLUk a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white !important;
}
.cid-rt1p7JkLUk a.nav-link:hover {
  color: white !important;
}
.cid-rt1p7JkLUk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rt1p7JkLUk .navbar {
    height: 77px;
  }
  .cid-rt1p7JkLUk .navbar.opened {
    height: auto;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt7NLsd0x1 {
  background-image: url("../../../assets/images/5c17eb23a71ff-1214x697.jpg");
}
.cid-rt7NLsd0x1 .mbr-overlay {
  background: #db7373;
  background: linear-gradient(45deg, #db7373, #096693);
  background: radial-gradient(#db7373, #096693);
}
.cid-rt7NLsd0x1 .mbr-section-title {
  margin: 0;
}
.cid-rt7NLsd0x1 .mbr-text,
.cid-rt7NLsd0x1 .mbr-section-btn {
  color: #ffffff;
}
.cid-rt7NLsd0x1 H1 {
  color: #ffffff;
}
.cid-rt7QeIzDfw {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rt7QeIzDfw .container-fluid {
  padding: 0 3rem;
}
.cid-rt7QeIzDfw .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rt7QeIzDfw svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rt7QeIzDfw .signature > span {
  color: #f0b945;
}
@media (max-width: 767px) {
  .cid-rt7QeIzDfw .blockquote-quote {
    text-align: left;
  }
  .cid-rt7QeIzDfw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rt7QeIzDfw .mbr-section-title {
  color: #75292b;
}
.cid-rt7RCZoyKV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/16-1280x748.jpg");
}
.cid-rt7RCZoyKV p {
  color: #767676;
}
.cid-rt7RCZoyKV .row-element,
.cid-rt7RCZoyKV .image-element {
  padding: 0;
}
.cid-rt7RCZoyKV .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rt7RCZoyKV .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rt7RCZoyKV .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rt7RCZoyKV .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f0b945, #75292b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rt7RCZoyKV .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rt7RCZoyKV .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rt7RCZoyKV .text-content {
    padding: 2rem 1rem;
  }
  .cid-rt7RCZoyKV .underline .line {
    height: 2px;
  }
  .cid-rt7RCZoyKV .mbr-title,
  .cid-rt7RCZoyKV .underline,
  .cid-rt7RCZoyKV .mbr-text,
  .cid-rt7RCZoyKV .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rt7RCZoyKV .mbr-title,
.cid-rt7RCZoyKV .underline {
  text-align: left;
  color: #75292b;
}
.cid-rt7RCZoyKV .mbr-text,
.cid-rt7RCZoyKV .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-rumqfh88Eg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bac2-5-1500x750.png");
}
.cid-rumqfh88Eg .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-rumqfh88Eg .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rumqfh88Eg .mbr-form {
  display: -webkit-flex;
}
.cid-rumqfh88Eg .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rumqfh88Eg .btn-primary {
  border: 1px solid #f0b945 !important;
}
.cid-rumqfh88Eg .btn-primary:hover {
  border: 1px solid #f0b945 !important;
}
.cid-rumqfh88Eg .stripe {
  border-bottom: 1px solid #db7373;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rumqfh88Eg .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-rumqfh88Eg .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ddd5b9;
  width: 85%;
}
.cid-rumqfh88Eg .mbr-text {
  color: #444;
}
.cid-rumqfh88Eg h5 {
  margin-bottom: 0;
}
.cid-rumqfh88Eg .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rumqfh88Eg .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rumqfh88Eg .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rumqfh88Eg .socicon {
  font-size: 1.3rem;
  background: #f0b945;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rumqfh88Eg .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
}
.cid-rumqfh88Eg .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rumqfh88Eg .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rumqfh88Eg .social-list a:hover {
  opacity: 0.4;
}
.cid-rumqfh88Eg .media-container-row > div {
  padding: 0px;
}
.cid-rumqfh88Eg .text2 {
  color: #f0b945;
  text-align: left;
}
.cid-rumqfh88Eg .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rumqfh88Eg .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rumqfh88Eg .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rumqfh88Eg .social-list,
  .cid-rumqfh88Eg .img-list {
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rumqfh88Eg h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rumqfh88Eg .form-control {
    max-width: 180px;
  }
}
.cid-rumqfh88Eg .links span {
  color: #9e9e9e;
}
.cid-rumqfh88Eg .logo-sub-title {
  text-align: left;
}
.cid-rumqfh88Eg .logo-title {
  text-align: center;
  color: #ddd5b9;
}
.cid-rumqfh88Eg .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rumqfh88Eg .group-title SPAN {
  color: #ffffff;
}
.cid-rumqfh88Eg .logo-title SPAN {
  color: #ffffff;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .nav-item:focus,
.cid-rt1p7JkLUk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rt1p7JkLUk .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link {
    position: relative;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, white, white);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rt1p7JkLUk .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rt1p7JkLUk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rt1p7JkLUk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rt1p7JkLUk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: linear-gradient(90deg, #f0b945 25%, rgba(240, 185, 69, 0.5));
}
.cid-rt1p7JkLUk .navbar.opened {
  transition: all .3s;
  background: #f0b945 !important;
}
.cid-rt1p7JkLUk .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rt1p7JkLUk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rt1p7JkLUk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rt1p7JkLUk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rt1p7JkLUk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rt1p7JkLUk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rt1p7JkLUk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rt1p7JkLUk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rt1p7JkLUk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rt1p7JkLUk .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-rt1p7JkLUk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rt1p7JkLUk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rt1p7JkLUk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rt1p7JkLUk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rt1p7JkLUk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rt1p7JkLUk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rt1p7JkLUk .navbar.navbar-short {
  background: #f0b945 !important;
  min-height: 60px;
}
.cid-rt1p7JkLUk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rt1p7JkLUk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rt1p7JkLUk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rt1p7JkLUk .dropdown-item.active,
.cid-rt1p7JkLUk .dropdown-item:active {
  background-color: transparent;
}
.cid-rt1p7JkLUk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rt1p7JkLUk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rt1p7JkLUk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rt1p7JkLUk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f0b945;
}
.cid-rt1p7JkLUk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rt1p7JkLUk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rt1p7JkLUk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rt1p7JkLUk .navbar-buttons {
  text-align: center;
}
.cid-rt1p7JkLUk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rt1p7JkLUk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rt1p7JkLUk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt1p7JkLUk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rt1p7JkLUk a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white !important;
}
.cid-rt1p7JkLUk a.nav-link:hover {
  color: white !important;
}
.cid-rt1p7JkLUk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rt1p7JkLUk .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-rt1p7JkLUk .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rt1p7JkLUk .navbar {
    height: 77px;
  }
  .cid-rt1p7JkLUk .navbar.opened {
    height: auto;
  }
  .cid-rt1p7JkLUk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt7VVdNxP7 {
  padding-top: 210px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/24-2000x1334.jpg");
}
.cid-rt7VVdNxP7 .mbr-overlay {
  background: #db7373;
  background: linear-gradient(45deg, #db7373, #096693);
  background: radial-gradient(#db7373, #096693);
}
.cid-rt7VVdNxP7 .mbr-section-title {
  margin: 0;
}
.cid-rt7XlDBz4F {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ddd5b9;
  background: linear-gradient(0deg, #ddd5b9, #ffffff);
}
.cid-rt7XlDBz4F .counter-container {
  color: #767676;
}
.cid-rt7XlDBz4F .counter-container ul {
  margin-bottom: 0;
}
.cid-rt7XlDBz4F .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rt7XlDBz4F .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #cc6600;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cc6600, #a61115);
  content: '✓';
}
.cid-rumqiMBnyW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bac2-5-1500x750.png");
}
.cid-rumqiMBnyW .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-rumqiMBnyW .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rumqiMBnyW .mbr-form {
  display: -webkit-flex;
}
.cid-rumqiMBnyW .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rumqiMBnyW .btn-primary {
  border: 1px solid #f0b945 !important;
}
.cid-rumqiMBnyW .btn-primary:hover {
  border: 1px solid #f0b945 !important;
}
.cid-rumqiMBnyW .stripe {
  border-bottom: 1px solid #db7373;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rumqiMBnyW .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-rumqiMBnyW .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ddd5b9;
  width: 85%;
}
.cid-rumqiMBnyW .mbr-text {
  color: #444;
}
.cid-rumqiMBnyW h5 {
  margin-bottom: 0;
}
.cid-rumqiMBnyW .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rumqiMBnyW .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rumqiMBnyW .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rumqiMBnyW .socicon {
  font-size: 1.3rem;
  background: #f0b945;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rumqiMBnyW .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
}
.cid-rumqiMBnyW .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rumqiMBnyW .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rumqiMBnyW .social-list a:hover {
  opacity: 0.4;
}
.cid-rumqiMBnyW .media-container-row > div {
  padding: 0px;
}
.cid-rumqiMBnyW .text2 {
  color: #f0b945;
  text-align: left;
}
.cid-rumqiMBnyW .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rumqiMBnyW .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rumqiMBnyW .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rumqiMBnyW .social-list,
  .cid-rumqiMBnyW .img-list {
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rumqiMBnyW h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rumqiMBnyW .form-control {
    max-width: 180px;
  }
}
.cid-rumqiMBnyW .links span {
  color: #9e9e9e;
}
.cid-rumqiMBnyW .logo-sub-title {
  text-align: left;
}
.cid-rumqiMBnyW .logo-title {
  text-align: center;
  color: #ddd5b9;
}
.cid-rumqiMBnyW .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rumqiMBnyW .group-title SPAN {
  color: #ffffff;
}
.cid-rumqiMBnyW .logo-title SPAN {
  color: #ffffff;
}
.cid-rt81ePf2rN .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-rt81ePf2rN .nav-item:focus,
.cid-rt81ePf2rN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rt81ePf2rN .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rt81ePf2rN .nav-item .nav-link {
    position: relative;
  }
  .cid-rt81ePf2rN .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, white, white);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rt81ePf2rN .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rt81ePf2rN .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt81ePf2rN .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-rt81ePf2rN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rt81ePf2rN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rt81ePf2rN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rt81ePf2rN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rt81ePf2rN .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-rt81ePf2rN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rt81ePf2rN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rt81ePf2rN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: linear-gradient(90deg, #f0b945 25%, rgba(240, 185, 69, 0.5));
}
.cid-rt81ePf2rN .navbar.opened {
  transition: all .3s;
  background: #f0b945 !important;
}
.cid-rt81ePf2rN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rt81ePf2rN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rt81ePf2rN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rt81ePf2rN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rt81ePf2rN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-rt81ePf2rN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rt81ePf2rN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rt81ePf2rN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rt81ePf2rN .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-rt81ePf2rN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rt81ePf2rN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rt81ePf2rN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rt81ePf2rN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rt81ePf2rN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rt81ePf2rN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rt81ePf2rN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rt81ePf2rN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rt81ePf2rN .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-rt81ePf2rN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rt81ePf2rN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rt81ePf2rN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rt81ePf2rN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rt81ePf2rN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rt81ePf2rN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rt81ePf2rN .navbar.navbar-short {
  background: #f0b945 !important;
  min-height: 60px;
}
.cid-rt81ePf2rN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rt81ePf2rN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rt81ePf2rN .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-rt81ePf2rN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rt81ePf2rN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rt81ePf2rN .dropdown-item.active,
.cid-rt81ePf2rN .dropdown-item:active {
  background-color: transparent;
}
.cid-rt81ePf2rN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rt81ePf2rN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rt81ePf2rN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rt81ePf2rN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f0b945;
}
.cid-rt81ePf2rN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rt81ePf2rN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rt81ePf2rN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rt81ePf2rN .navbar-buttons {
  text-align: center;
}
.cid-rt81ePf2rN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rt81ePf2rN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rt81ePf2rN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rt81ePf2rN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rt81ePf2rN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rt81ePf2rN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rt81ePf2rN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt81ePf2rN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rt81ePf2rN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rt81ePf2rN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt81ePf2rN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rt81ePf2rN a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white !important;
}
.cid-rt81ePf2rN a.nav-link:hover {
  color: white !important;
}
.cid-rt81ePf2rN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rt81ePf2rN .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-rt81ePf2rN .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rt81ePf2rN .navbar {
    height: 77px;
  }
  .cid-rt81ePf2rN .navbar.opened {
    height: auto;
  }
  .cid-rt81ePf2rN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt81eR5gPr {
  padding-top: 210px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/cuidados-igreja-530x353.jpg");
}
.cid-rt81eR5gPr .mbr-overlay {
  background: #ff7d84;
  background: linear-gradient(45deg, #ff7d84, #096693);
  background: radial-gradient(#ff7d84, #096693);
}
.cid-rt81eR5gPr .mbr-section-title {
  margin: 0;
}
.cid-rt81eSDRiu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ddd5b9;
  background: linear-gradient(0deg, #ddd5b9, #ffffff);
}
.cid-rt81eSDRiu .counter-container {
  color: #767676;
}
.cid-rt81eSDRiu .counter-container ul {
  margin-bottom: 0;
}
.cid-rt81eSDRiu .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rt81eSDRiu .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #cc6600;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cc6600, #a61115);
  content: '✓';
}
.cid-rumquLBuBz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bac2-5-1500x750.png");
}
.cid-rumquLBuBz .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-rumquLBuBz .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rumquLBuBz .mbr-form {
  display: -webkit-flex;
}
.cid-rumquLBuBz .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rumquLBuBz .btn-primary {
  border: 1px solid #f0b945 !important;
}
.cid-rumquLBuBz .btn-primary:hover {
  border: 1px solid #f0b945 !important;
}
.cid-rumquLBuBz .stripe {
  border-bottom: 1px solid #db7373;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rumquLBuBz .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-rumquLBuBz .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ddd5b9;
  width: 85%;
}
.cid-rumquLBuBz .mbr-text {
  color: #444;
}
.cid-rumquLBuBz h5 {
  margin-bottom: 0;
}
.cid-rumquLBuBz .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rumquLBuBz .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rumquLBuBz .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rumquLBuBz .socicon {
  font-size: 1.3rem;
  background: #f0b945;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rumquLBuBz .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
}
.cid-rumquLBuBz .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rumquLBuBz .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rumquLBuBz .social-list a:hover {
  opacity: 0.4;
}
.cid-rumquLBuBz .media-container-row > div {
  padding: 0px;
}
.cid-rumquLBuBz .text2 {
  color: #f0b945;
  text-align: left;
}
.cid-rumquLBuBz .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rumquLBuBz .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rumquLBuBz .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rumquLBuBz .social-list,
  .cid-rumquLBuBz .img-list {
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rumquLBuBz h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rumquLBuBz .form-control {
    max-width: 180px;
  }
}
.cid-rumquLBuBz .links span {
  color: #9e9e9e;
}
.cid-rumquLBuBz .logo-sub-title {
  text-align: left;
}
.cid-rumquLBuBz .logo-title {
  text-align: center;
  color: #ddd5b9;
}
.cid-rumquLBuBz .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rumquLBuBz .group-title SPAN {
  color: #ffffff;
}
.cid-rumquLBuBz .logo-title SPAN {
  color: #ffffff;
}
.cid-rt83GFdcc1 .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-rt83GFdcc1 .nav-item:focus,
.cid-rt83GFdcc1 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rt83GFdcc1 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rt83GFdcc1 .nav-item .nav-link {
    position: relative;
  }
  .cid-rt83GFdcc1 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, white, white);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rt83GFdcc1 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rt83GFdcc1 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt83GFdcc1 .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-rt83GFdcc1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rt83GFdcc1 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rt83GFdcc1 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rt83GFdcc1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rt83GFdcc1 .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-rt83GFdcc1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rt83GFdcc1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rt83GFdcc1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: linear-gradient(90deg, #f0b945 25%, rgba(240, 185, 69, 0.5));
}
.cid-rt83GFdcc1 .navbar.opened {
  transition: all .3s;
  background: #f0b945 !important;
}
.cid-rt83GFdcc1 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rt83GFdcc1 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rt83GFdcc1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rt83GFdcc1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rt83GFdcc1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-rt83GFdcc1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rt83GFdcc1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rt83GFdcc1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rt83GFdcc1 .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-rt83GFdcc1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rt83GFdcc1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rt83GFdcc1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rt83GFdcc1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rt83GFdcc1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rt83GFdcc1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rt83GFdcc1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rt83GFdcc1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rt83GFdcc1 .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-rt83GFdcc1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rt83GFdcc1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rt83GFdcc1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rt83GFdcc1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rt83GFdcc1 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rt83GFdcc1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rt83GFdcc1 .navbar.navbar-short {
  background: #f0b945 !important;
  min-height: 60px;
}
.cid-rt83GFdcc1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rt83GFdcc1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rt83GFdcc1 .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-rt83GFdcc1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rt83GFdcc1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rt83GFdcc1 .dropdown-item.active,
.cid-rt83GFdcc1 .dropdown-item:active {
  background-color: transparent;
}
.cid-rt83GFdcc1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rt83GFdcc1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rt83GFdcc1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rt83GFdcc1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f0b945;
}
.cid-rt83GFdcc1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rt83GFdcc1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rt83GFdcc1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rt83GFdcc1 .navbar-buttons {
  text-align: center;
}
.cid-rt83GFdcc1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rt83GFdcc1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rt83GFdcc1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rt83GFdcc1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rt83GFdcc1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rt83GFdcc1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rt83GFdcc1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt83GFdcc1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rt83GFdcc1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rt83GFdcc1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt83GFdcc1 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rt83GFdcc1 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white !important;
}
.cid-rt83GFdcc1 a.nav-link:hover {
  color: white !important;
}
.cid-rt83GFdcc1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rt83GFdcc1 .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-rt83GFdcc1 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rt83GFdcc1 .navbar {
    height: 77px;
  }
  .cid-rt83GFdcc1 .navbar.opened {
    height: auto;
  }
  .cid-rt83GFdcc1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt83GHcH0F {
  padding-top: 210px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/sunset-sun-sky-clouds-field-ears-grass-road-footpath-nature-2000x1395.jpg");
}
.cid-rt83GHcH0F .mbr-overlay {
  background: #ff7d84;
  background: linear-gradient(45deg, #ff7d84, #096693);
  background: radial-gradient(#ff7d84, #096693);
}
.cid-rt83GHcH0F .mbr-section-title {
  margin: 0;
}
.cid-rulqLZj1e3 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-rulqLZj1e3 h4 {
  display: flex;
  color: #000000;
}
.cid-rulqLZj1e3 .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-rulqLZj1e3 .wrap {
  display: flex;
}
.cid-rulqLZj1e3 .icon {
  background: #a61115;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  color: white!important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-rulqLZj1e3 img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-rulqLZj1e3 .mbr-section-title {
  color: #333333;
  text-align: center;
}
.cid-rulqLZj1e3 p {
  margin: 0;
}
.cid-rulqLZj1e3 .card .card-header a.panel-title {
  background-color: none!important;
  margin-top: 0px!important;
}
.cid-rulqLZj1e3 .mbr-section-subtitle {
  font-weight: 500;
  color: #656565;
  text-align: center;
}
.cid-rulqLZj1e3 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-rulqLZj1e3 .panel-group {
  width: 100%;
}
.cid-rulqLZj1e3 .panel-title {
  border-bottom: 1px solid #f0b945;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rulqLZj1e3 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rulqLZj1e3 .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #efefef;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rulqLZj1e3 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rulqLZj1e3 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rulqLZj1e3 .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-rulqLZj1e3 .card .panel-body {
  background: #efefef;
}
.cid-rulqLZj1e3 .sign {
  color: #000000;
}
.cid-rulqLZj1e3 .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-rulqLZj1e3 .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-rulqLZj1e3 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-rulqLZj1e3 .header-text,
.cid-rulqLZj1e3 .sign {
  color: #333333;
}
.cid-rumqyzefTW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bac2-5-1500x750.png");
}
.cid-rumqyzefTW .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-rumqyzefTW .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rumqyzefTW .mbr-form {
  display: -webkit-flex;
}
.cid-rumqyzefTW .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rumqyzefTW .btn-primary {
  border: 1px solid #f0b945 !important;
}
.cid-rumqyzefTW .btn-primary:hover {
  border: 1px solid #f0b945 !important;
}
.cid-rumqyzefTW .stripe {
  border-bottom: 1px solid #db7373;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rumqyzefTW .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-rumqyzefTW .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ddd5b9;
  width: 85%;
}
.cid-rumqyzefTW .mbr-text {
  color: #444;
}
.cid-rumqyzefTW h5 {
  margin-bottom: 0;
}
.cid-rumqyzefTW .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rumqyzefTW .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rumqyzefTW .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rumqyzefTW .socicon {
  font-size: 1.3rem;
  background: #f0b945;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rumqyzefTW .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
}
.cid-rumqyzefTW .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rumqyzefTW .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rumqyzefTW .social-list a:hover {
  opacity: 0.4;
}
.cid-rumqyzefTW .media-container-row > div {
  padding: 0px;
}
.cid-rumqyzefTW .text2 {
  color: #f0b945;
  text-align: left;
}
.cid-rumqyzefTW .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rumqyzefTW .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rumqyzefTW .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rumqyzefTW .social-list,
  .cid-rumqyzefTW .img-list {
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rumqyzefTW h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rumqyzefTW .form-control {
    max-width: 180px;
  }
}
.cid-rumqyzefTW .links span {
  color: #9e9e9e;
}
.cid-rumqyzefTW .logo-sub-title {
  text-align: left;
}
.cid-rumqyzefTW .logo-title {
  text-align: center;
  color: #ddd5b9;
}
.cid-rumqyzefTW .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rumqyzefTW .group-title SPAN {
  color: #ffffff;
}
.cid-rumqyzefTW .logo-title SPAN {
  color: #ffffff;
}
.cid-rt85VWQEua .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-rt85VWQEua .nav-item:focus,
.cid-rt85VWQEua .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rt85VWQEua .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rt85VWQEua .nav-item .nav-link {
    position: relative;
  }
  .cid-rt85VWQEua .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, white, white);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rt85VWQEua .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rt85VWQEua .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt85VWQEua .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-rt85VWQEua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rt85VWQEua .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rt85VWQEua .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rt85VWQEua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rt85VWQEua .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-rt85VWQEua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rt85VWQEua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rt85VWQEua .navbar {
  min-height: 77px;
  transition: all .3s;
  background: linear-gradient(90deg, #f0b945 25%, rgba(240, 185, 69, 0.5));
}
.cid-rt85VWQEua .navbar.opened {
  transition: all .3s;
  background: #f0b945 !important;
}
.cid-rt85VWQEua .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rt85VWQEua .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rt85VWQEua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rt85VWQEua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rt85VWQEua .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-rt85VWQEua .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rt85VWQEua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rt85VWQEua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rt85VWQEua .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-rt85VWQEua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rt85VWQEua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rt85VWQEua .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rt85VWQEua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rt85VWQEua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rt85VWQEua .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rt85VWQEua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rt85VWQEua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rt85VWQEua .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-rt85VWQEua .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rt85VWQEua .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rt85VWQEua .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rt85VWQEua .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rt85VWQEua .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rt85VWQEua .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rt85VWQEua .navbar.navbar-short {
  background: #f0b945 !important;
  min-height: 60px;
}
.cid-rt85VWQEua .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rt85VWQEua .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rt85VWQEua .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-rt85VWQEua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rt85VWQEua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rt85VWQEua .dropdown-item.active,
.cid-rt85VWQEua .dropdown-item:active {
  background-color: transparent;
}
.cid-rt85VWQEua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rt85VWQEua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rt85VWQEua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rt85VWQEua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f0b945;
}
.cid-rt85VWQEua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rt85VWQEua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rt85VWQEua ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rt85VWQEua .navbar-buttons {
  text-align: center;
}
.cid-rt85VWQEua button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rt85VWQEua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rt85VWQEua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rt85VWQEua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rt85VWQEua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rt85VWQEua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rt85VWQEua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt85VWQEua nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rt85VWQEua nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rt85VWQEua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rt85VWQEua .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rt85VWQEua a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white !important;
}
.cid-rt85VWQEua a.nav-link:hover {
  color: white !important;
}
.cid-rt85VWQEua .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rt85VWQEua .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-rt85VWQEua .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rt85VWQEua .navbar {
    height: 77px;
  }
  .cid-rt85VWQEua .navbar.opened {
    height: auto;
  }
  .cid-rt85VWQEua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rt85VZeTrk {
  padding-top: 210px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/untitled-3-1920x1080.jpg");
}
.cid-rt85VZeTrk .mbr-overlay {
  background: #096693;
  background: linear-gradient(45deg, #096693, #cc6600);
  background: radial-gradient(#096693, #cc6600);
}
.cid-rt85VZeTrk .mbr-section-title {
  margin: 0;
}
.cid-rt869pjJmU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ddd5b9;
}
.cid-rt869pjJmU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rt869pjJmU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rt869pjJmU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rt869pjJmU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rt869pjJmU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ddd5b9;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ddd5b9, #ddd5b9);
}
.cid-rt869pjJmU .icon-focus {
  display: none;
}
.cid-rt869pjJmU .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-rt869pjJmU ul {
  font-size: 0;
}
.cid-rt869pjJmU .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-rt869pjJmU .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-rt869pjJmU .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #f0b945, #75292b);
}
.cid-rt869pjJmU .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rt869pjJmU .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rt869pjJmU .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-rt869pjJmU .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rt869pjJmU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f0b945, #75292b);
  display: inline-block;
}
.cid-rt869pjJmU .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rt869pjJmU .btn:hover {
  background: transparent !important;
}
.cid-rt869pjJmU .btn:hover:before {
  background: transparent !important;
}
.cid-rt869pjJmU .btn:before {
  background-color: transparent !important;
}
.cid-rt869pjJmU .btn:focus {
  box-shadow: none;
}
.cid-rumqCmOKnR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bac2-5-1500x750.png");
}
.cid-rumqCmOKnR .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-rumqCmOKnR .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rumqCmOKnR .mbr-form {
  display: -webkit-flex;
}
.cid-rumqCmOKnR .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rumqCmOKnR .btn-primary {
  border: 1px solid #f0b945 !important;
}
.cid-rumqCmOKnR .btn-primary:hover {
  border: 1px solid #f0b945 !important;
}
.cid-rumqCmOKnR .stripe {
  border-bottom: 1px solid #db7373;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rumqCmOKnR .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-rumqCmOKnR .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ddd5b9;
  width: 85%;
}
.cid-rumqCmOKnR .mbr-text {
  color: #444;
}
.cid-rumqCmOKnR h5 {
  margin-bottom: 0;
}
.cid-rumqCmOKnR .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rumqCmOKnR .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rumqCmOKnR .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rumqCmOKnR .socicon {
  font-size: 1.3rem;
  background: #f0b945;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rumqCmOKnR .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
}
.cid-rumqCmOKnR .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rumqCmOKnR .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rumqCmOKnR .social-list a:hover {
  opacity: 0.4;
}
.cid-rumqCmOKnR .media-container-row > div {
  padding: 0px;
}
.cid-rumqCmOKnR .text2 {
  color: #f0b945;
  text-align: left;
}
.cid-rumqCmOKnR .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rumqCmOKnR .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rumqCmOKnR .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rumqCmOKnR .social-list,
  .cid-rumqCmOKnR .img-list {
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rumqCmOKnR h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rumqCmOKnR .form-control {
    max-width: 180px;
  }
}
.cid-rumqCmOKnR .links span {
  color: #9e9e9e;
}
.cid-rumqCmOKnR .logo-sub-title {
  text-align: left;
}
.cid-rumqCmOKnR .logo-title {
  text-align: center;
  color: #ddd5b9;
}
.cid-rumqCmOKnR .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rumqCmOKnR .group-title SPAN {
  color: #ffffff;
}
.cid-rumqCmOKnR .logo-title SPAN {
  color: #ffffff;
}
.cid-rtjyCTHlHQ {
  padding-top: 195px;
  padding-bottom: 90px;
}
.cid-rtjyCTHlHQ .container-fluid {
  padding: 0 3rem;
}
.cid-rtjyCTHlHQ .mbr-section-title {
  margin-bottom: 1.5em;
}
.cid-rtjyCTHlHQ .input-main {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rtjyCTHlHQ .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-rtjyCTHlHQ .form-group {
  margin-bottom: 1.4em;
}
.cid-rtjyCTHlHQ .form-control {
  background-color: #efefef;
  border-radius: 0px;
  padding: 18px 25px;
}
.cid-rtjyCTHlHQ input.form-control {
  border: 1px solid #ddd;
}
.cid-rtjyCTHlHQ textarea.form-control {
  padding: 1rem;
  min-height: 209px;
}
.cid-rtjyCTHlHQ .input-group-btn .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-rtjyCTHlHQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-rtjyCTHlHQ .input-group-btn .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-rtjyCTHlHQ H1 {
  color: #ffffff;
}
.cid-rtjyCTHlHQ H5 {
  color: #ffffff;
}
.cid-rtjHyT3rqa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #cc6600;
}
.cid-rtjHyT3rqa .container-fluid {
  padding: 0 3rem;
}
.cid-rtjHyT3rqa .media-container-column {
  padding: 0 2rem;
}
.cid-rtjHyT3rqa .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rtjHyT3rqa .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rtjHyT3rqa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rtjwTG0JxH .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-rtjwTG0JxH .nav-item:focus,
.cid-rtjwTG0JxH .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rtjwTG0JxH .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rtjwTG0JxH .nav-item .nav-link {
    position: relative;
  }
  .cid-rtjwTG0JxH .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, white, white);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rtjwTG0JxH .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rtjwTG0JxH .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rtjwTG0JxH .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-rtjwTG0JxH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rtjwTG0JxH .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rtjwTG0JxH .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rtjwTG0JxH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rtjwTG0JxH .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-rtjwTG0JxH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rtjwTG0JxH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rtjwTG0JxH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: linear-gradient(90deg, #f0b945 25%, rgba(240, 185, 69, 0.5));
}
.cid-rtjwTG0JxH .navbar.opened {
  transition: all .3s;
  background: #f0b945 !important;
}
.cid-rtjwTG0JxH .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rtjwTG0JxH .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rtjwTG0JxH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rtjwTG0JxH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rtjwTG0JxH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-rtjwTG0JxH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rtjwTG0JxH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rtjwTG0JxH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rtjwTG0JxH .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-rtjwTG0JxH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rtjwTG0JxH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rtjwTG0JxH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rtjwTG0JxH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rtjwTG0JxH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rtjwTG0JxH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rtjwTG0JxH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rtjwTG0JxH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rtjwTG0JxH .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-rtjwTG0JxH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rtjwTG0JxH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rtjwTG0JxH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rtjwTG0JxH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rtjwTG0JxH .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rtjwTG0JxH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rtjwTG0JxH .navbar.navbar-short {
  background: #f0b945 !important;
  min-height: 60px;
}
.cid-rtjwTG0JxH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rtjwTG0JxH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rtjwTG0JxH .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-rtjwTG0JxH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rtjwTG0JxH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rtjwTG0JxH .dropdown-item.active,
.cid-rtjwTG0JxH .dropdown-item:active {
  background-color: transparent;
}
.cid-rtjwTG0JxH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rtjwTG0JxH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rtjwTG0JxH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rtjwTG0JxH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f0b945;
}
.cid-rtjwTG0JxH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rtjwTG0JxH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rtjwTG0JxH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rtjwTG0JxH .navbar-buttons {
  text-align: center;
}
.cid-rtjwTG0JxH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rtjwTG0JxH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rtjwTG0JxH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rtjwTG0JxH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rtjwTG0JxH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rtjwTG0JxH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rtjwTG0JxH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rtjwTG0JxH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rtjwTG0JxH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rtjwTG0JxH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rtjwTG0JxH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rtjwTG0JxH a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white !important;
}
.cid-rtjwTG0JxH a.nav-link:hover {
  color: white !important;
}
.cid-rtjwTG0JxH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rtjwTG0JxH .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-rtjwTG0JxH .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rtjwTG0JxH .navbar {
    height: 77px;
  }
  .cid-rtjwTG0JxH .navbar.opened {
    height: auto;
  }
  .cid-rtjwTG0JxH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rumqK79GG2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bac2-5-1500x750.png");
}
.cid-rumqK79GG2 .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-rumqK79GG2 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rumqK79GG2 .mbr-form {
  display: -webkit-flex;
}
.cid-rumqK79GG2 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rumqK79GG2 .btn-primary {
  border: 1px solid #f0b945 !important;
}
.cid-rumqK79GG2 .btn-primary:hover {
  border: 1px solid #f0b945 !important;
}
.cid-rumqK79GG2 .stripe {
  border-bottom: 1px solid #db7373;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rumqK79GG2 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-rumqK79GG2 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ddd5b9;
  width: 85%;
}
.cid-rumqK79GG2 .mbr-text {
  color: #444;
}
.cid-rumqK79GG2 h5 {
  margin-bottom: 0;
}
.cid-rumqK79GG2 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rumqK79GG2 .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rumqK79GG2 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rumqK79GG2 .socicon {
  font-size: 1.3rem;
  background: #f0b945;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rumqK79GG2 .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
}
.cid-rumqK79GG2 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rumqK79GG2 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rumqK79GG2 .social-list a:hover {
  opacity: 0.4;
}
.cid-rumqK79GG2 .media-container-row > div {
  padding: 0px;
}
.cid-rumqK79GG2 .text2 {
  color: #f0b945;
  text-align: left;
}
.cid-rumqK79GG2 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rumqK79GG2 .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rumqK79GG2 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rumqK79GG2 .social-list,
  .cid-rumqK79GG2 .img-list {
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rumqK79GG2 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rumqK79GG2 .form-control {
    max-width: 180px;
  }
}
.cid-rumqK79GG2 .links span {
  color: #9e9e9e;
}
.cid-rumqK79GG2 .logo-sub-title {
  text-align: left;
}
.cid-rumqK79GG2 .logo-title {
  text-align: center;
  color: #ddd5b9;
}
.cid-rumqK79GG2 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rumqK79GG2 .group-title SPAN {
  color: #ffffff;
}
.cid-rumqK79GG2 .logo-title SPAN {
  color: #ffffff;
}
.cid-rtFR0a5hGb .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-rtFR0a5hGb .nav-item:focus,
.cid-rtFR0a5hGb .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rtFR0a5hGb .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rtFR0a5hGb .nav-item .nav-link {
    position: relative;
  }
  .cid-rtFR0a5hGb .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, white, white);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rtFR0a5hGb .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rtFR0a5hGb .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rtFR0a5hGb .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-rtFR0a5hGb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rtFR0a5hGb .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rtFR0a5hGb .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rtFR0a5hGb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rtFR0a5hGb .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-rtFR0a5hGb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rtFR0a5hGb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rtFR0a5hGb .navbar {
  min-height: 77px;
  transition: all .3s;
  background: linear-gradient(90deg, #f0b945 25%, rgba(240, 185, 69, 0.5));
}
.cid-rtFR0a5hGb .navbar.opened {
  transition: all .3s;
  background: #f0b945 !important;
}
.cid-rtFR0a5hGb .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rtFR0a5hGb .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rtFR0a5hGb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rtFR0a5hGb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rtFR0a5hGb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-rtFR0a5hGb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rtFR0a5hGb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rtFR0a5hGb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rtFR0a5hGb .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-rtFR0a5hGb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rtFR0a5hGb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rtFR0a5hGb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rtFR0a5hGb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rtFR0a5hGb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rtFR0a5hGb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rtFR0a5hGb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rtFR0a5hGb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rtFR0a5hGb .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-rtFR0a5hGb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rtFR0a5hGb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rtFR0a5hGb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rtFR0a5hGb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rtFR0a5hGb .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rtFR0a5hGb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rtFR0a5hGb .navbar.navbar-short {
  background: #f0b945 !important;
  min-height: 60px;
}
.cid-rtFR0a5hGb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rtFR0a5hGb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rtFR0a5hGb .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-rtFR0a5hGb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rtFR0a5hGb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rtFR0a5hGb .dropdown-item.active,
.cid-rtFR0a5hGb .dropdown-item:active {
  background-color: transparent;
}
.cid-rtFR0a5hGb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rtFR0a5hGb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rtFR0a5hGb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rtFR0a5hGb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f0b945;
}
.cid-rtFR0a5hGb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rtFR0a5hGb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rtFR0a5hGb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rtFR0a5hGb .navbar-buttons {
  text-align: center;
}
.cid-rtFR0a5hGb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rtFR0a5hGb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rtFR0a5hGb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rtFR0a5hGb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rtFR0a5hGb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rtFR0a5hGb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rtFR0a5hGb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rtFR0a5hGb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rtFR0a5hGb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rtFR0a5hGb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rtFR0a5hGb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rtFR0a5hGb a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white !important;
}
.cid-rtFR0a5hGb a.nav-link:hover {
  color: white !important;
}
.cid-rtFR0a5hGb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rtFR0a5hGb .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-rtFR0a5hGb .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rtFR0a5hGb .navbar {
    height: 77px;
  }
  .cid-rtFR0a5hGb .navbar.opened {
    height: auto;
  }
  .cid-rtFR0a5hGb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rtFXUhLiTn {
  padding-top: 210px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/untitled-3-1920x1080.jpg");
}
.cid-rtFXUhLiTn .container-fluid {
  padding: 0 3rem;
}
.cid-rtFXUhLiTn .mbr-section-title {
  margin-bottom: 1.5em;
}
.cid-rtFXUhLiTn .input-main {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rtFXUhLiTn .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-rtFXUhLiTn .form-group {
  margin-bottom: 1.4em;
}
.cid-rtFXUhLiTn .form-control {
  background-color: #efefef;
  border-radius: 0px;
  padding: 18px 25px;
}
.cid-rtFXUhLiTn input.form-control {
  border: 1px solid #ddd;
}
.cid-rtFXUhLiTn textarea.form-control {
  padding: 1rem;
  min-height: 209px;
}
.cid-rtFXUhLiTn .input-group-btn .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-rtFXUhLiTn .container-fluid {
    padding: 0 1rem;
  }
  .cid-rtFXUhLiTn .input-group-btn .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-rtFXUhLiTn H1 {
  color: #ffffff;
}
.cid-rtFXUhLiTn P {
  color: #ffffff;
  text-align: center;
}
.cid-rtFXUhLiTn H5 {
  color: #ffffff;
  text-align: center;
}
.cid-rumqG6GHCH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bac2-5-1500x750.png");
}
.cid-rumqG6GHCH .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-rumqG6GHCH .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rumqG6GHCH .mbr-form {
  display: -webkit-flex;
}
.cid-rumqG6GHCH .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rumqG6GHCH .btn-primary {
  border: 1px solid #f0b945 !important;
}
.cid-rumqG6GHCH .btn-primary:hover {
  border: 1px solid #f0b945 !important;
}
.cid-rumqG6GHCH .stripe {
  border-bottom: 1px solid #db7373;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rumqG6GHCH .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-rumqG6GHCH .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ddd5b9;
  width: 85%;
}
.cid-rumqG6GHCH .mbr-text {
  color: #444;
}
.cid-rumqG6GHCH h5 {
  margin-bottom: 0;
}
.cid-rumqG6GHCH .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rumqG6GHCH .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rumqG6GHCH .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rumqG6GHCH .socicon {
  font-size: 1.3rem;
  background: #f0b945;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rumqG6GHCH .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
}
.cid-rumqG6GHCH .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rumqG6GHCH .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rumqG6GHCH .social-list a:hover {
  opacity: 0.4;
}
.cid-rumqG6GHCH .media-container-row > div {
  padding: 0px;
}
.cid-rumqG6GHCH .text2 {
  color: #f0b945;
  text-align: left;
}
.cid-rumqG6GHCH .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rumqG6GHCH .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rumqG6GHCH .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rumqG6GHCH .social-list,
  .cid-rumqG6GHCH .img-list {
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rumqG6GHCH h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rumqG6GHCH .form-control {
    max-width: 180px;
  }
}
.cid-rumqG6GHCH .links span {
  color: #9e9e9e;
}
.cid-rumqG6GHCH .logo-sub-title {
  text-align: left;
}
.cid-rumqG6GHCH .logo-title {
  text-align: center;
  color: #ddd5b9;
}
.cid-rumqG6GHCH .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rumqG6GHCH .group-title SPAN {
  color: #ffffff;
}
.cid-rumqG6GHCH .logo-title SPAN {
  color: #ffffff;
}
.cid-rulX23ftbS .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-rulX23ftbS .nav-item:focus,
.cid-rulX23ftbS .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rulX23ftbS .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rulX23ftbS .nav-item .nav-link {
    position: relative;
  }
  .cid-rulX23ftbS .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, white, white);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rulX23ftbS .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rulX23ftbS .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rulX23ftbS .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-rulX23ftbS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rulX23ftbS .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rulX23ftbS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rulX23ftbS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rulX23ftbS .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-rulX23ftbS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rulX23ftbS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rulX23ftbS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: linear-gradient(90deg, #f0b945 25%, rgba(240, 185, 69, 0.5));
}
.cid-rulX23ftbS .navbar.opened {
  transition: all .3s;
  background: #f0b945 !important;
}
.cid-rulX23ftbS .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rulX23ftbS .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rulX23ftbS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rulX23ftbS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rulX23ftbS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-rulX23ftbS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rulX23ftbS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rulX23ftbS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rulX23ftbS .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-rulX23ftbS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rulX23ftbS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rulX23ftbS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rulX23ftbS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rulX23ftbS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rulX23ftbS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rulX23ftbS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rulX23ftbS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rulX23ftbS .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-rulX23ftbS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rulX23ftbS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rulX23ftbS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rulX23ftbS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rulX23ftbS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rulX23ftbS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rulX23ftbS .navbar.navbar-short {
  background: #f0b945 !important;
  min-height: 60px;
}
.cid-rulX23ftbS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rulX23ftbS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rulX23ftbS .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-rulX23ftbS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rulX23ftbS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rulX23ftbS .dropdown-item.active,
.cid-rulX23ftbS .dropdown-item:active {
  background-color: transparent;
}
.cid-rulX23ftbS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rulX23ftbS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rulX23ftbS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rulX23ftbS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f0b945;
}
.cid-rulX23ftbS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rulX23ftbS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rulX23ftbS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rulX23ftbS .navbar-buttons {
  text-align: center;
}
.cid-rulX23ftbS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rulX23ftbS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rulX23ftbS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rulX23ftbS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rulX23ftbS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rulX23ftbS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rulX23ftbS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rulX23ftbS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rulX23ftbS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rulX23ftbS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rulX23ftbS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rulX23ftbS a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white !important;
}
.cid-rulX23ftbS a.nav-link:hover {
  color: white !important;
}
.cid-rulX23ftbS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rulX23ftbS .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-rulX23ftbS .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rulX23ftbS .navbar {
    height: 77px;
  }
  .cid-rulX23ftbS .navbar.opened {
    height: auto;
  }
  .cid-rulX23ftbS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rulX24HOpg {
  padding-top: 210px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/22-2000x1336.jpg");
}
.cid-rulX24HOpg .mbr-overlay {
  background: #db7373;
  background: linear-gradient(45deg, #db7373, #096693);
  background: radial-gradient(#db7373, #096693);
}
.cid-rulX24HOpg .mbr-section-title {
  margin: 0;
}
.cid-rumDOpw090 {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rumDOpw090 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-rumDOpw090 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rumDOpw090 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #f0b945, #75292b);
  display: inline-block;
}
.cid-rumDOpw090 .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-rumDOpw090 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rumDOpw090 .wrapper {
  padding: 2rem 1rem 1rem 1rem;
  background: #f0b945;
}
.cid-rumDOpw090 .card-overlay {
  display: none;
}
.cid-rumDOpw090 .mbr-section-title,
.cid-rumDOpw090 .underline,
.cid-rumDOpw090 .mbr-section-subtitle {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .cid-rumDOpw090 .image-element:hover .card-overlay {
    opacity: .5;
    border-bottom-right-radius: 7rem;
  }
  .cid-rumDOpw090 .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-rumDOpw090 .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-rumDOpw090 .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-rumDOpw090 .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rumDOpw090 .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rumDOpw090 .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rumDOpw090 .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rumDOpw090 .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-rumDOpw090 .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-rumDOpw090 .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-rumDOpw090 .underline .line {
    height: 2px;
  }
  .cid-rumDOpw090 .card-title,
  .cid-rumDOpw090 .underline,
  .cid-rumDOpw090 .mbr-text,
  .cid-rumDOpw090 .mbr-section-btn,
  .cid-rumDOpw090 .mbr-section-subtitle,
  .cid-rumDOpw090 .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-rumDOpw090 .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cid-rumDOpw090 .mbr-section-title,
  .cid-rumDOpw090 .underline,
  .cid-rumDOpw090 .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-rumDOpw090 .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-rum9XmeNVl {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(90deg, #ddd5b9, #ddd5b9);
}
.cid-rum9XmeNVl .mbr-overlay {
  background: #167aa0;
}
.cid-rum9XmeNVl .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rum9XmeNVl H1 {
  text-align: left;
  color: #75292b;
}
.cid-rum9XmeNVl .mbr-section-subtitle,
.cid-rum9XmeNVl mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-rumqmGhZYi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bac2-5-1500x750.png");
}
.cid-rumqmGhZYi .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-rumqmGhZYi .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rumqmGhZYi .mbr-form {
  display: -webkit-flex;
}
.cid-rumqmGhZYi .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rumqmGhZYi .btn-primary {
  border: 1px solid #f0b945 !important;
}
.cid-rumqmGhZYi .btn-primary:hover {
  border: 1px solid #f0b945 !important;
}
.cid-rumqmGhZYi .stripe {
  border-bottom: 1px solid #db7373;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rumqmGhZYi .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-rumqmGhZYi .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ddd5b9;
  width: 85%;
}
.cid-rumqmGhZYi .mbr-text {
  color: #444;
}
.cid-rumqmGhZYi h5 {
  margin-bottom: 0;
}
.cid-rumqmGhZYi .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rumqmGhZYi .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rumqmGhZYi .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rumqmGhZYi .socicon {
  font-size: 1.3rem;
  background: #f0b945;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rumqmGhZYi .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
}
.cid-rumqmGhZYi .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rumqmGhZYi .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rumqmGhZYi .social-list a:hover {
  opacity: 0.4;
}
.cid-rumqmGhZYi .media-container-row > div {
  padding: 0px;
}
.cid-rumqmGhZYi .text2 {
  color: #f0b945;
  text-align: left;
}
.cid-rumqmGhZYi .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rumqmGhZYi .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rumqmGhZYi .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rumqmGhZYi .social-list,
  .cid-rumqmGhZYi .img-list {
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rumqmGhZYi h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rumqmGhZYi .form-control {
    max-width: 180px;
  }
}
.cid-rumqmGhZYi .links span {
  color: #9e9e9e;
}
.cid-rumqmGhZYi .logo-sub-title {
  text-align: left;
}
.cid-rumqmGhZYi .logo-title {
  text-align: center;
  color: #ddd5b9;
}
.cid-rumqmGhZYi .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rumqmGhZYi .group-title SPAN {
  color: #ffffff;
}
.cid-rumqmGhZYi .logo-title SPAN {
  color: #ffffff;
}
.cid-rumh2QRvwk .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-rumh2QRvwk .nav-item:focus,
.cid-rumh2QRvwk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rumh2QRvwk .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rumh2QRvwk .nav-item .nav-link {
    position: relative;
  }
  .cid-rumh2QRvwk .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, white, white);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rumh2QRvwk .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rumh2QRvwk .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rumh2QRvwk .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-rumh2QRvwk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rumh2QRvwk .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rumh2QRvwk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rumh2QRvwk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rumh2QRvwk .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-rumh2QRvwk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rumh2QRvwk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rumh2QRvwk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: linear-gradient(90deg, #f0b945 25%, rgba(240, 185, 69, 0.5));
}
.cid-rumh2QRvwk .navbar.opened {
  transition: all .3s;
  background: #f0b945 !important;
}
.cid-rumh2QRvwk .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rumh2QRvwk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rumh2QRvwk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rumh2QRvwk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rumh2QRvwk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.7rem);
  }
}
.cid-rumh2QRvwk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rumh2QRvwk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rumh2QRvwk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rumh2QRvwk .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-rumh2QRvwk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rumh2QRvwk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rumh2QRvwk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rumh2QRvwk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rumh2QRvwk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rumh2QRvwk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rumh2QRvwk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rumh2QRvwk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rumh2QRvwk .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-rumh2QRvwk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rumh2QRvwk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rumh2QRvwk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rumh2QRvwk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rumh2QRvwk .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rumh2QRvwk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rumh2QRvwk .navbar.navbar-short {
  background: #f0b945 !important;
  min-height: 60px;
}
.cid-rumh2QRvwk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rumh2QRvwk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rumh2QRvwk .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-rumh2QRvwk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rumh2QRvwk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rumh2QRvwk .dropdown-item.active,
.cid-rumh2QRvwk .dropdown-item:active {
  background-color: transparent;
}
.cid-rumh2QRvwk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rumh2QRvwk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rumh2QRvwk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rumh2QRvwk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f0b945;
}
.cid-rumh2QRvwk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rumh2QRvwk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rumh2QRvwk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rumh2QRvwk .navbar-buttons {
  text-align: center;
}
.cid-rumh2QRvwk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rumh2QRvwk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rumh2QRvwk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rumh2QRvwk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rumh2QRvwk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rumh2QRvwk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rumh2QRvwk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rumh2QRvwk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rumh2QRvwk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rumh2QRvwk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rumh2QRvwk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rumh2QRvwk a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: white !important;
}
.cid-rumh2QRvwk a.nav-link:hover {
  color: white !important;
}
.cid-rumh2QRvwk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rumh2QRvwk .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-rumh2QRvwk .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rumh2QRvwk .navbar {
    height: 77px;
  }
  .cid-rumh2QRvwk .navbar.opened {
    height: auto;
  }
  .cid-rumh2QRvwk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rumh2SHZFN {
  padding-top: 210px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/c2-2000x1334.jpg");
}
.cid-rumh2SHZFN .mbr-overlay {
  background: #db7373;
  background: linear-gradient(45deg, #db7373, #096693);
  background: radial-gradient(#db7373, #096693);
}
.cid-rumh2SHZFN .mbr-section-title {
  margin: 0;
}
.cid-rumhuwcOzW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rumhuwcOzW .container-fluid {
  padding: 0 3rem;
}
.cid-rumhuwcOzW .mbr-text {
  color: #000000;
}
.cid-rumhuwcOzW .card-title {
  text-align: left;
  color: #ffa0a4;
}
.cid-rumhuwcOzW p {
  text-align: left;
}
.cid-rumhuwcOzW .card-img {
  text-align: left;
}
.cid-rumhuwcOzW .card .card-img span {
  color: #75292b;
  font-size: 60px;
  background: linear-gradient(45deg, #75292b, #cc6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rumhuwcOzW .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-rumhuwcOzW .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-rumhuwcOzW .card-title,
.cid-rumhuwcOzW .card-img {
  color: #a61115;
}
.cid-rumh2VOO9o {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(90deg, #ddd5b9, #ddd5b9);
}
.cid-rumh2VOO9o .mbr-overlay {
  background: #167aa0;
}
.cid-rumh2VOO9o .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rumh2VOO9o H1 {
  text-align: left;
  color: #75292b;
}
.cid-rumh2VOO9o .mbr-section-subtitle,
.cid-rumh2VOO9o mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-rumqqM6GtM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bac2-5-1500x750.png");
}
.cid-rumqqM6GtM .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-rumqqM6GtM .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rumqqM6GtM .mbr-form {
  display: -webkit-flex;
}
.cid-rumqqM6GtM .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rumqqM6GtM .btn-primary {
  border: 1px solid #f0b945 !important;
}
.cid-rumqqM6GtM .btn-primary:hover {
  border: 1px solid #f0b945 !important;
}
.cid-rumqqM6GtM .stripe {
  border-bottom: 1px solid #db7373;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rumqqM6GtM .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
  max-width: 220px;
}
.cid-rumqqM6GtM .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ddd5b9;
  width: 85%;
}
.cid-rumqqM6GtM .mbr-text {
  color: #444;
}
.cid-rumqqM6GtM h5 {
  margin-bottom: 0;
}
.cid-rumqqM6GtM .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rumqqM6GtM .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rumqqM6GtM .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rumqqM6GtM .socicon {
  font-size: 1.3rem;
  background: #f0b945;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rumqqM6GtM .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: flex-start;
}
.cid-rumqqM6GtM .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rumqqM6GtM .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rumqqM6GtM .social-list a:hover {
  opacity: 0.4;
}
.cid-rumqqM6GtM .media-container-row > div {
  padding: 0px;
}
.cid-rumqqM6GtM .text2 {
  color: #f0b945;
  text-align: left;
}
.cid-rumqqM6GtM .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rumqqM6GtM .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rumqqM6GtM .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rumqqM6GtM .social-list,
  .cid-rumqqM6GtM .img-list {
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rumqqM6GtM h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rumqqM6GtM .form-control {
    max-width: 180px;
  }
}
.cid-rumqqM6GtM .links span {
  color: #9e9e9e;
}
.cid-rumqqM6GtM .logo-sub-title {
  text-align: left;
}
.cid-rumqqM6GtM .logo-title {
  text-align: center;
  color: #ddd5b9;
}
.cid-rumqqM6GtM .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rumqqM6GtM .group-title SPAN {
  color: #ffffff;
}
.cid-rumqqM6GtM .logo-title SPAN {
  color: #ffffff;
}
