body {
  font-family: Jost;
}
.display-1 {
  font-family: 'ZABALDEMO-ULTRA';
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3rem;
}
.display-2 {
  font-family: 'ZABALDEMO-SEMIBOLD';
  font-size: 1.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-4 {
  font-family: 'ZABALDEMO-REGULAR';
  font-size: 0.6rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 0.75rem;
}
.display-5 {
  font-family: 'ZABALDEMO-REGULAR';
  font-size: 1rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-7 {
  font-family: 'ZABALDEMO-REGULAR';
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 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: 992px) {
  .display-1 {
    font-size: 1.92rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.68rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.48rem;
    font-size: calc( 0.86rem + (0.6 - 0.86) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.86rem + (0.6 - 0.86) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffd400 !important;
}
.bg-success {
  background-color: #002339 !important;
}
.bg-info {
  background-color: #cad02b !important;
}
.bg-warning {
  background-color: #fff100 !important;
}
.bg-danger {
  background-color: #fdb813 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffd400 !important;
  border-color: #ffd400 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a88c00 !important;
  border-color: #a88c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #a88c00 !important;
  border-color: #a88c00 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #04354f !important;
  border-color: #04354f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #cad02b !important;
  border-color: #cad02b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #84881c !important;
  border-color: #84881c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #84881c !important;
  border-color: #84881c !important;
}
.btn-success,
.btn-success:active {
  background-color: #002339 !important;
  border-color: #002339 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fff100 !important;
  border-color: #fff100 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a89f00 !important;
  border-color: #a89f00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #a89f00 !important;
  border-color: #a89f00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fdb813 !important;
  border-color: #fdb813 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b88202 !important;
  border-color: #b88202 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b88202 !important;
  border-color: #b88202 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffd400;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a88c00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #ffd400 !important;
  border-color: #ffd400 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #04354f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #04354f !important;
  border-color: #04354f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cad02b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #84881c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #cad02b !important;
  border-color: #cad02b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #002339;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #002339 !important;
  border-color: #002339 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fff100;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a89f00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #fff100 !important;
  border-color: #fff100 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdb813;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b88202 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #fdb813 !important;
  border-color: #fdb813 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffd400 !important;
}
.text-secondary {
  color: #04354f !important;
}
.text-success {
  color: #002339 !important;
}
.text-info {
  color: #cad02b !important;
}
.text-warning {
  color: #fff100 !important;
}
.text-danger {
  color: #fdb813 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #997f00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #787b1a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #999100 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a97701 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffd400;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #cad02b;
}
.alert-warning {
  background-color: #fff100;
}
.alert-danger {
  background-color: #fdb813;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffd400;
  border-color: #ffd400;
  color: #191500;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffd400;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff6cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #20a9ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f4f6d1;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fffccc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fff5dd;
}
/* Scroll to top button*/
.form-control {
  font-family: 'ZABALDEMO-REGULAR';
  font-size: 0.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 0.75rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffd400 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'ZABALDEMO-REGULAR';
  font-size: 0.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 0.75rem;
}
blockquote {
  border-color: #ffd400;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffd400;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffd400;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffd400;
  border-bottom-color: #ffd400;
}
.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: #ffd400 !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: #04354f !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffd400' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tqbvT2ZzNL {
  z-index: 1000;
  width: 100%;
}
.cid-tqbvT2ZzNL nav.navbar {
  position: fixed;
}
.cid-tqbvT2ZzNL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqbvT2ZzNL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqbvT2ZzNL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqbvT2ZzNL .dropdown-item:hover,
.cid-tqbvT2ZzNL .dropdown-item:focus {
  background: #ffd400 !important;
  color: white !important;
}
.cid-tqbvT2ZzNL .dropdown-item:hover span {
  color: white;
}
.cid-tqbvT2ZzNL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqbvT2ZzNL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqbvT2ZzNL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqbvT2ZzNL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqbvT2ZzNL .nav-link {
  position: relative;
}
.cid-tqbvT2ZzNL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqbvT2ZzNL .container {
    flex-wrap: nowrap;
  }
}
.cid-tqbvT2ZzNL .iconfont-wrapper {
  color: #ffd400 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqbvT2ZzNL .dropdown-menu,
.cid-tqbvT2ZzNL .navbar.opened {
  background: #002339 !important;
}
.cid-tqbvT2ZzNL .nav-item:focus,
.cid-tqbvT2ZzNL .nav-link:focus {
  outline: none;
}
.cid-tqbvT2ZzNL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqbvT2ZzNL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqbvT2ZzNL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqbvT2ZzNL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqbvT2ZzNL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqbvT2ZzNL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqbvT2ZzNL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #002339;
}
.cid-tqbvT2ZzNL .navbar.opened {
  transition: all 0.3s;
}
.cid-tqbvT2ZzNL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqbvT2ZzNL .navbar .navbar-logo img {
  width: auto;
}
.cid-tqbvT2ZzNL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqbvT2ZzNL .navbar.collapsed {
  justify-content: center;
}
.cid-tqbvT2ZzNL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqbvT2ZzNL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqbvT2ZzNL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tqbvT2ZzNL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqbvT2ZzNL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqbvT2ZzNL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqbvT2ZzNL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqbvT2ZzNL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqbvT2ZzNL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqbvT2ZzNL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqbvT2ZzNL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqbvT2ZzNL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqbvT2ZzNL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqbvT2ZzNL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqbvT2ZzNL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqbvT2ZzNL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqbvT2ZzNL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqbvT2ZzNL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqbvT2ZzNL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqbvT2ZzNL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqbvT2ZzNL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqbvT2ZzNL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqbvT2ZzNL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqbvT2ZzNL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqbvT2ZzNL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tqbvT2ZzNL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqbvT2ZzNL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqbvT2ZzNL .dropdown-item.active,
.cid-tqbvT2ZzNL .dropdown-item:active {
  background-color: transparent;
}
.cid-tqbvT2ZzNL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqbvT2ZzNL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqbvT2ZzNL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqbvT2ZzNL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #002339;
}
.cid-tqbvT2ZzNL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqbvT2ZzNL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqbvT2ZzNL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqbvT2ZzNL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqbvT2ZzNL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqbvT2ZzNL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #002339;
}
.cid-tqbvT2ZzNL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqbvT2ZzNL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqbvT2ZzNL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqbvT2ZzNL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqbvT2ZzNL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqbvT2ZzNL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqbvT2ZzNL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqbvT2ZzNL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqbvT2ZzNL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqbvT2ZzNL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqbvT2ZzNL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqbvT2ZzNL .navbar {
    height: 70px;
  }
  .cid-tqbvT2ZzNL .navbar.opened {
    height: auto;
  }
  .cid-tqbvT2ZzNL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tInnXiWakE {
  background-color: #ffd400;
}
.cid-tInnXiWakE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tInnXiWakE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tInnXiWakE .card-wrapper {
  background: #ffd400;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tInnXiWakE .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tInnXiWakE .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tInnXiWakE .card-wrapper {
    padding: 4rem;
  }
}
.cid-tInnXiWakE .mbr-text,
.cid-tInnXiWakE .mbr-section-btn {
  color: #ffffff;
}
.cid-tInnXiWakE .card-title,
.cid-tInnXiWakE .card-box {
  text-align: center;
  color: #04354f;
}
.cid-tOZn1RyVyH {
  background-image: url("../../../assets/images/biryani-blockbuster-1-2000x1125.webp");
}
.cid-tOZn1RyVyH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOZn1RyVyH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tInjZmA8JD {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-tInjZmA8JD .carousel {
  width: 100%;
}
.cid-tInjZmA8JD .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tInjZmA8JD .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tInjZmA8JD .carousel-caption {
  bottom: 40px;
}
.cid-tInjZmA8JD .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tInjZmA8JD .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tInjZmA8JD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tInjZmA8JD .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tInjZmA8JD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tInjZmA8JD .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tInjZmA8JD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tInjZmA8JD .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tInjZmA8JD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tInjZmA8JD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tInjZmA8JD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tInjZmA8JD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tInjZmA8JD .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: 0.5;
  transition: all 0.3s;
}
.cid-tInjZmA8JD .carousel-indicators li.active,
.cid-tInjZmA8JD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tInjZmA8JD .carousel-indicators li::after,
.cid-tInjZmA8JD .carousel-indicators li::before {
  content: none;
}
.cid-tInjZmA8JD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tInjZmA8JD .carousel-indicators {
    display: none !important;
  }
}
.cid-typ6yBeXW8 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffd400;
}
.cid-typ6yBeXW8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-typ6yBeXW8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-typ6yBeXW8 .mbr-section-title {
  color: #cad02b;
  text-align: center;
}
.cid-typ6yBeXW8 .mbr-section-subtitle {
  color: #fdb813;
  text-align: center;
}
.cid-typ6yBeXW8 .mbr-text,
.cid-typ6yBeXW8 .mbr-section-btn {
  color: #002339;
  text-align: center;
}
.cid-typmSCHGvf {
  background-image: url("../../../assets/images/multi-biryanis-2000x1125.webp");
}
.cid-typmSCHGvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-typmSCHGvf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-typmSCHGvf .mbr-section-title {
  color: #ffd400;
  text-align: center;
}
.cid-typmSCHGvf .mbr-section-subtitle {
  color: #cad02b;
  text-align: center;
}
.cid-typmSCHGvf .mbr-text,
.cid-typmSCHGvf .mbr-section-btn {
  color: #cad02b;
  text-align: center;
}
.cid-typoqjWmeM {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/rb-tv-display-w-31-2000x1125.webp");
}
.cid-typoqjWmeM .mbr-fallback-image.disabled {
  display: none;
}
.cid-typoqjWmeM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-typoqjWmeM .mbr-section-title {
  color: #cad02b;
  text-align: center;
}
.cid-typoqjWmeM .mbr-section-subtitle {
  color: #fdb813;
  text-align: center;
}
.cid-typoqjWmeM .mbr-text,
.cid-typoqjWmeM .mbr-section-btn {
  color: #ffd400;
  text-align: center;
}
.cid-tsJjn5XtIx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fdb813;
}
.cid-tsJjn5XtIx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsJjn5XtIx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsJjn5XtIx .card-wrapper {
  background: #fdb813;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tsJjn5XtIx .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tsJjn5XtIx .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tsJjn5XtIx .card-wrapper {
    padding: 4rem;
  }
}
.cid-tsJjn5XtIx .mbr-text,
.cid-tsJjn5XtIx .mbr-section-btn {
  color: #002339;
}
.cid-tsJjn5XtIx .card-title,
.cid-tsJjn5XtIx .card-box {
  text-align: center;
  color: #002339;
}
.cid-typr58dc68 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/rb-tv-display-w-33-2000x1125.webp");
}
.cid-typr58dc68 .mbr-fallback-image.disabled {
  display: none;
}
.cid-typr58dc68 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-typr58dc68 .mbr-section-title {
  color: #fdb813;
  text-align: center;
}
.cid-typr58dc68 .mbr-section-subtitle {
  color: #cad02b;
  text-align: center;
}
.cid-typr58dc68 .mbr-text,
.cid-typr58dc68 .mbr-section-btn {
  color: #cad02b;
  text-align: center;
}
.cid-tqbZ7kJKR4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #04354f;
}
.cid-tqbZ7kJKR4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbZ7kJKR4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tqbZ7kJKR4 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tqbZ7kJKR4 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqbZ7kJKR4 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tqbZ7kJKR4 .card-wrapper {
  border-radius: 4px;
  background-color: #fdb813;
}
.cid-tqbZ7kJKR4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tqbZ7kJKR4 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tqbZ7kJKR4 .price {
  text-align: right;
  color: #000000;
}
.cid-tqbZ7kJKR4 .card-title {
  color: #000000;
}
.cid-typxVEHglx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/rb-tv-display-w-34-2000x1125.webp");
}
.cid-typxVEHglx .mbr-fallback-image.disabled {
  display: none;
}
.cid-typxVEHglx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-typxVEHglx .mbr-section-title {
  color: #04354f;
  text-align: center;
}
.cid-typxVEHglx .mbr-section-subtitle {
  color: #04354f;
  text-align: center;
}
.cid-typxVEHglx .mbr-text,
.cid-typxVEHglx .mbr-section-btn {
  color: #04354f;
  text-align: center;
}
.cid-typxo2MLtj {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffd400;
}
.cid-typxo2MLtj .mbr-fallback-image.disabled {
  display: none;
}
.cid-typxo2MLtj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-typxo2MLtj .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-typxo2MLtj .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-typxo2MLtj .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-typxo2MLtj .card-wrapper {
  border-radius: 4px;
  background-color: #fdb813;
}
.cid-typxo2MLtj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-typxo2MLtj .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-typxo2MLtj .price {
  text-align: right;
  color: #000000;
}
.cid-typxo2MLtj .card-title {
  color: #000000;
}
.cid-typDn1Yk4Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/rb-tv-display-w-35-2000x1125.webp");
}
.cid-typDn1Yk4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-typDn1Yk4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-typDn1Yk4Q .mbr-section-title {
  color: #fdb813;
  text-align: center;
}
.cid-typDn1Yk4Q .mbr-section-subtitle {
  color: #04354f;
  text-align: center;
}
.cid-typDn1Yk4Q .mbr-text,
.cid-typDn1Yk4Q .mbr-section-btn {
  color: #04354f;
  text-align: center;
}
.cid-typD436rdN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fdb813;
}
.cid-typD436rdN .mbr-fallback-image.disabled {
  display: none;
}
.cid-typD436rdN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-typD436rdN .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-typD436rdN .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-typD436rdN .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-typD436rdN .card-wrapper {
  border-radius: 4px;
  background-color: #fff100;
}
.cid-typD436rdN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-typD436rdN .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-typD436rdN .price {
  text-align: right;
  color: #04354f;
}
.cid-typD436rdN .card-title {
  color: #04354f;
}
.cid-typD436rdN .mbr-text {
  color: #04354f;
}
.cid-typAV4hDcJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/rb-tv-display-w-33-2000x1125.webp");
}
.cid-typAV4hDcJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-typAV4hDcJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-typAV4hDcJ .mbr-section-title {
  color: #fdb813;
  text-align: center;
}
.cid-typAV4hDcJ .mbr-section-subtitle {
  color: #fdb813;
  text-align: center;
}
.cid-typAV4hDcJ .mbr-text,
.cid-typAV4hDcJ .mbr-section-btn {
  color: #fdb813;
  text-align: center;
}
.cid-typEJeuEKq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #04354f;
}
.cid-typEJeuEKq .mbr-fallback-image.disabled {
  display: none;
}
.cid-typEJeuEKq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-typEJeuEKq .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-typEJeuEKq .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-typEJeuEKq .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-typEJeuEKq .card-wrapper {
  border-radius: 4px;
  background-color: #cad02b;
}
.cid-typEJeuEKq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-typEJeuEKq .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-typEJeuEKq .price {
  text-align: right;
  color: #04354f;
}
.cid-typEJeuEKq .card-title {
  color: #04354f;
}
.cid-typEJeuEKq .mbr-text {
  color: #04354f;
}
.cid-tzfnbNsASH {
  background-image: url("../../../assets/images/starters-2000x1125.webp");
}
.cid-tzfnbNsASH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzfnbNsASH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzfnbNsASH .mbr-section-title {
  color: #fdb813;
  text-align: center;
}
.cid-tzfnbNsASH .mbr-section-subtitle {
  color: #cad02b;
  text-align: center;
}
.cid-tzfnbNsASH .mbr-text,
.cid-tzfnbNsASH .mbr-section-btn {
  color: #cad02b;
  text-align: center;
}
.cid-tOZoNqxZKP {
  background-image: url("../../../assets/images/staters-blockbuster-2-1900x1068.webp");
}
.cid-tOZoNqxZKP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOZoNqxZKP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMrpiuKxNY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffd400;
}
.cid-tMrpiuKxNY img,
.cid-tMrpiuKxNY .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tMrpiuKxNY .item:focus,
.cid-tMrpiuKxNY span:focus {
  outline: none;
}
.cid-tMrpiuKxNY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tMrpiuKxNY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #cad02b;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tMrpiuKxNY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tMrpiuKxNY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMrpiuKxNY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tMrpiuKxNY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tMrpiuKxNY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tMrpiuKxNY .mbr-section-title {
  color: #232323;
}
.cid-tMrpiuKxNY .mbr-text,
.cid-tMrpiuKxNY .mbr-section-btn {
  text-align: left;
}
.cid-tMrpiuKxNY .item-title {
  text-align: left;
}
.cid-tMrpiuKxNY .item-subtitle {
  text-align: center;
}
.cid-tMrpj7bIbQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tMrpj7bIbQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMrpj7bIbQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMrpj7bIbQ .item {
  padding-bottom: 2rem;
}
.cid-tMrpj7bIbQ .item-wrapper {
  height: 200px;
  position: relative;
}
.cid-tMrpj7bIbQ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tMrpj7bIbQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tMrpj7bIbQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tMrpj7bIbQ .carousel-control,
.cid-tMrpj7bIbQ .close {
  background: #1b1b1b;
}
.cid-tMrpj7bIbQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tMrpj7bIbQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tMrpj7bIbQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tMrpj7bIbQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tMrpj7bIbQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tMrpj7bIbQ .close::before {
  content: '\e91a';
}
.cid-tMrpj7bIbQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tMrpj7bIbQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tMrpj7bIbQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMrpj7bIbQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tMrpj7bIbQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tMrpj7bIbQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tMrpj7bIbQ .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: 0.5;
  transition: all 0.3s;
}
.cid-tMrpj7bIbQ .carousel-indicators li.active,
.cid-tMrpj7bIbQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tMrpj7bIbQ .carousel-indicators li::after,
.cid-tMrpj7bIbQ .carousel-indicators li::before {
  content: none;
}
.cid-tMrpj7bIbQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tMrpj7bIbQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tMrpj7bIbQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tMrpj7bIbQ .carousel-indicators {
    display: none;
  }
}
.cid-tMrpj7bIbQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tMrpj7bIbQ .carousel-inner > .active {
  display: block;
}
.cid-tMrpj7bIbQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMrpj7bIbQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tMrpj7bIbQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tMrpj7bIbQ .carousel-control,
  .cid-tMrpj7bIbQ .carousel-indicators,
  .cid-tMrpj7bIbQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tMrpj7bIbQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tMrpj7bIbQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tMrpj7bIbQ .carousel-indicators .active,
.cid-tMrpj7bIbQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tMrpj7bIbQ .carousel-indicators .active {
  background: #fff;
}
.cid-tMrpj7bIbQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tMrpj7bIbQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tMrpj7bIbQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tMrpj7bIbQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tMrpj7bIbQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tMrpj7bIbQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tMrpj7bIbQ .carousel {
  width: 100%;
}
.cid-tMrpj7bIbQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tMrpj7bIbQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tMrpj7bIbQ .modal.fade .modal-dialog,
.cid-tMrpj7bIbQ .modal.in .modal-dialog {
  transform: none;
}
.cid-tMrpj7bIbQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tMrpj7bIbQ H6 {
  text-align: center;
}
.cid-tytTVUlGl6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #04354f;
}
.cid-tytTVUlGl6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tytTVUlGl6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tytTVUlGl6 .card-wrapper {
  background-color: #cad02b;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #cad02b;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-tytTVUlGl6 .mbr-section-title,
.cid-tytTVUlGl6 .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tytTVUlGl6 .card-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tytTVUlGl6 .card-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tytTVUlGl6 .mbr-section-title {
  color: #cad02b;
}
.cid-tytTVUlGl6 .card-title {
  color: #04354f;
}
.cid-tytTVUlGl6 .price {
  color: #04354f;
}
.cid-tJetNk8MQj {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #cad02b;
}
.cid-tJetNk8MQj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJetNk8MQj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJetNk8MQj .mbr-text,
.cid-tJetNk8MQj .mbr-section-btn {
  color: #232323;
}
.cid-tJetNk8MQj .card-title,
.cid-tJetNk8MQj .card-box {
  color: #04354f;
}
.cid-tJetNk8MQj .mbr-text,
.cid-tJetNk8MQj .link-wrap {
  color: #ffffff;
}
.cid-tqc3oVAqZo {
  padding-top: 4rem;
  padding-bottom: 2rem;
  position: relative;
  background-color: #04354f;
}
.cid-tqc3oVAqZo .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-tqc3oVAqZo .image-wrapper img {
  display: block;
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
}
.cid-tqc3oVAqZo .item-img {
  margin-bottom: 18px;
  display: block;
  text-align: center;
}
.cid-tqc3oVAqZo .item-img img {
  width: 240px;
  height: auto;
  object-fit: contain;
  display: inline-block;
  transition: transform 0.29s cubic-bezier(0.4, 0.12, 0.4, 0.85);
}
.cid-tqc3oVAqZo .main_header {
  padding: 10%;
}
@media (min-width: 992px) {
  .cid-tqc3oVAqZo .main_header {
    padding: 0 15%;
  }
  .cid-tqc3oVAqZo .main_header:hover img {
    transform: translateX(7px);
  }
}
@media (max-width: 767px) {
  .cid-tqc3oVAqZo .main_header {
    padding: 30px 12px 4rem;
  }
}
.cid-tqc3oVAqZo .mbr-section-title {
  margin-bottom: 22px;
  color: #ffd400;
}
.cid-tqc3oVAqZo .mbr-text {
  margin: 11px 0 4px;
  color: #cad02b;
}
.cid-tqc3oVAqZo .header_address {
  margin-top: 26px;
}
.cid-tqy0rLWE6T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #cad02b;
}
.cid-tqy0rLWE6T img,
.cid-tqy0rLWE6T .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tqy0rLWE6T .item:focus,
.cid-tqy0rLWE6T span:focus {
  outline: none;
}
.cid-tqy0rLWE6T .item-wrapper {
  position: relative;
}
.cid-tqy0rLWE6T .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fff100;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqy0rLWE6T .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tqy0rLWE6T .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqy0rLWE6T .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tqy0rLWE6T .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tqy0rLWE6T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqy0rLWE6T .mbr-section-title {
  color: #002339;
}
.cid-tqy0rLWE6T .mbr-text,
.cid-tqy0rLWE6T .mbr-section-btn {
  text-align: center;
}
.cid-tqy0rLWE6T .item-title {
  text-align: center;
  color: #04354f;
}
.cid-tqy0rLWE6T .item-subtitle {
  text-align: center;
  color: #04354f;
}
.cid-tqy0rLWE6T .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tqy0rLWE6T .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tqy0rLWE6T .embla__button--next,
.cid-tqy0rLWE6T .embla__button--prev {
  display: flex;
}
.cid-tqy0rLWE6T .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tqy0rLWE6T .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tqy0rLWE6T .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tqy0rLWE6T .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tqy0rLWE6T .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tqy0rLWE6T .embla__button {
    top: auto;
  }
}
.cid-tqy0rLWE6T .embla {
  position: relative;
  width: 100%;
}
.cid-tqy0rLWE6T .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tqy0rLWE6T .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tqy0rLWE6T .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tqy0rLWE6T .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tqy0rLWE6T .mbr-section-subtitle {
  color: #002339;
}
.cid-tquiPKbbcP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fdb813;
}
.cid-tquiPKbbcP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tquiPKbbcP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tquiPKbbcP .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffd400;
  margin-left: 1rem;
}
.cid-tquiPKbbcP .panel-group {
  border: none;
}
.cid-tquiPKbbcP .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tquiPKbbcP .panel-body,
.cid-tquiPKbbcP .card-header {
  padding: 1rem 0;
}
.cid-tquiPKbbcP .panel-title-edit {
  color: #002339;
}
.cid-tquiPKbbcP .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tquiPKbbcP .panel-text {
  color: #002339;
}
.cid-tquiPKbbcP H3 {
  color: #002339;
}
.cid-tquiPKbbcP H4 {
  color: #002339;
}
.cid-typwdHqvLG {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/rb-tv-display-w-33-2000x1125.webp");
}
.cid-typwdHqvLG .mbr-fallback-image.disabled {
  display: none;
}
.cid-typwdHqvLG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-typwdHqvLG .mbr-section-title {
  color: #ffd400;
  text-align: center;
}
.cid-typwdHqvLG .mbr-section-subtitle {
  color: #04354f;
  text-align: center;
}
.cid-typwdHqvLG .mbr-text,
.cid-typwdHqvLG .mbr-section-btn {
  color: #04354f;
  text-align: center;
}
.cid-tyRGJwW9Ns {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #04354f;
}
.cid-tyRGJwW9Ns .carousel-item {
  padding-bottom: 30px;
  padding: 0 3rem;
}
.cid-tyRGJwW9Ns .carousel-item > div {
  width: 100%;
}
.cid-tyRGJwW9Ns .carousel-item.active,
.cid-tyRGJwW9Ns .carousel-item-next,
.cid-tyRGJwW9Ns .carousel-item-prev {
  display: flex;
}
.cid-tyRGJwW9Ns .carousel-controls a {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-tyRGJwW9Ns .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #ffd400;
  opacity: 0.9;
}
.cid-tyRGJwW9Ns .carousel-controls a:hover span {
  opacity: 1;
}
.cid-tyRGJwW9Ns .display-5 {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
}
.cid-tyRGJwW9Ns .mbr-text {
  color: #ffd400;
  text-align: left;
}
.cid-tyRGJwW9Ns .mbr-section-subtitle {
  color: #b68a54;
}
.cid-tyRGJwW9Ns .display-7 {
  font-size: 23px;
  line-height: 1.6;
  font-weight: 400;
}
.cid-tyRGJwW9Ns .signature {
  color: #cad02b;
}
.cid-tyRGJwW9Ns .desk {
  color: #fff100;
}
.cid-tyRGJwW9Ns .testimonial-photo {
  max-width: 120px;
  max-height: 120px;
  margin-bottom: 1.6rem;
  margin-right: 2rem;
  padding: 0;
  display: inline-block;
}
.cid-tyRGJwW9Ns .testimonial-photo img {
  min-width: 100%;
  min-height: 100%;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0% 10%;
  object-position: 0% 10%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.cid-tyRGJwW9Ns .testimonial-photo img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.cid-tyRGJwW9Ns .title-wrapper .line {
  background-color: #ffd400;
  color: #ffd400;
  height: 1px;
  margin: 30px 0 20px;
  display: inline-block;
}
.cid-tyRGJwW9Ns .carousel-indicators li {
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: 0 8px;
  background: #fff100;
  border: 2px solid black !important;
  border-radius: 50%;
  opacity: 1 !important;
}
.cid-tyRGJwW9Ns .carousel-indicators {
  bottom: 0px;
}
.cid-tyRGJwW9Ns .carousel-indicators .active {
  border: 0px solid #1b1b1b;
  background: #fdb813;
}
.cid-tyRGJwW9Ns ol {
  margin-bottom: 0rem;
}
.cid-tyRGJwW9Ns .mbr-iconfont {
  font-size: 2rem;
  position: absolute;
  top: -3.6rem;
  left: 1rem;
}
.cid-tyRGJwW9Ns .common-wrap {
  padding-top: 4rem;
}
@media (max-width: 1230px) {
  .cid-tyRGJwW9Ns .mbr-iconfont {
    display: none;
  }
  .cid-tyRGJwW9Ns .testimonial-photo {
    margin-right: 0;
  }
  .cid-tyRGJwW9Ns .common-wrap {
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .cid-tyRGJwW9Ns .carousel-item {
    padding: 0 5rem;
  }
}
@media (max-width: 992px) {
  .cid-tyRGJwW9Ns .common-wrap {
    margin-right: 9rem;
  }
}
@media (min-width: 768px) {
  .cid-tyRGJwW9Ns .carousel-controls a {
    width: 5%;
  }
}
@media (max-width: 960px) {
  .cid-tyRGJwW9Ns .testimonial-photo {
    margin-right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tyRGJwW9Ns .testimonial-photo {
    display: block;
    margin: 0 auto !important;
  }
  .cid-tyRGJwW9Ns .title-wrapper {
    margin: 5px auto;
  }
  .cid-tyRGJwW9Ns .title-wrapper .line {
    margin: 5px auto;
  }
  .cid-tyRGJwW9Ns .common-wrap {
    margin-right: 0;
  }
  .cid-tyRGJwW9Ns .display-5 {
    font-size: 1.5rem !important;
  }
  .cid-tyRGJwW9Ns .row {
    margin: 0 !important;
  }
  .cid-tyRGJwW9Ns .carousel-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 540px) {
  .cid-tyRGJwW9Ns .carousel-controls {
    display: none;
  }
}
.cid-tyRGJwW9Ns .mobi-mbri-quote-right {
  color: #ffb011;
}
.cid-tyRGJwW9Ns .container-fluid {
  max-width: 1440px;
}
.cid-tyRGJwW9Ns .mbr-section-title {
  color: #b68a54;
}
.cid-tyRGJwW9Ns .mbr-text DIV {
  text-align: left;
}
.cid-tqsaVGL3jA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #cad02b;
}
.cid-tqsaVGL3jA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqsaVGL3jA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqsaVGL3jA .google-map {
  height: 30rem;
  position: relative;
}
.cid-tqsaVGL3jA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tqsaVGL3jA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tqsaVGL3jA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tqsaVGL3jA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tqsaVGL3jA .mbr-section-title {
  color: #04354f;
}
.cid-tqsaVGL3jA .mbr-section-subtitle {
  color: #04354f;
}
.cid-tN03OTfphi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffd400;
}
.cid-tN03OTfphi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN03OTfphi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tN03OTfphi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tN03OTfphi .row {
  flex-direction: row-reverse;
}
.cid-tN03OTfphi img {
  width: 100%;
}
.cid-tKzT9cpRzM {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cad02b;
}
.cid-tKzT9cpRzM .mbr-overlay {
  background-color: #000000;
  opacity: 0.3;
}
.cid-tKzT9cpRzM input,
.cid-tKzT9cpRzM textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-tKzT9cpRzM .col-auto {
  width: 100%;
  text-align: center;
}
.cid-tKzT9cpRzM img {
  width: 90%;
  border-radius: 8px;
}
.cid-tKzT9cpRzM .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-tKzT9cpRzM textarea {
  min-height: 160px;
}
.cid-tKzT9cpRzM .form-control,
.cid-tKzT9cpRzM .field-input {
  padding: 0.5rem;
  background-color: #ffd400;
  border-color: #ffd400;
  color: #002339;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tKzT9cpRzM .form-control:hover,
.cid-tKzT9cpRzM .field-input:hover,
.cid-tKzT9cpRzM .form-control:focus,
.cid-tKzT9cpRzM .field-input:focus {
  background-color: #fdb813;
  border-color: #fdb813;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tKzT9cpRzM input::-webkit-input-placeholder,
.cid-tKzT9cpRzM textarea::-webkit-input-placeholder {
  color: #002339;
}
.cid-tKzT9cpRzM input:-moz-placeholder,
.cid-tKzT9cpRzM textarea:-moz-placeholder {
  color: #002339;
}
.cid-tKzT9cpRzM .jq-selectbox li,
.cid-tKzT9cpRzM .jq-selectbox li {
  background-color: #ffd400;
  color: #000000;
}
.cid-tKzT9cpRzM .jq-selectbox li:hover,
.cid-tKzT9cpRzM .jq-selectbox li.selected {
  background-color: #fdb813;
  color: #000000;
}
.cid-tKzT9cpRzM .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffd400;
}
.cid-tKzT9cpRzM .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #fdb813;
}
.cid-tKzT9cpRzM H5 {
  color: #04354f;
  padding-bottom: 2rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tKzT9cpRzM img {
    width: 100%;
  }
}
.cid-tqu6QumzaE {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #04354f;
}
.cid-tqu6QumzaE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqu6QumzaE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqu6QumzaE .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tqu6QumzaE .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tqu6QumzaE .row {
    text-align: center;
  }
  .cid-tqu6QumzaE .row > div {
    margin: auto;
  }
  .cid-tqu6QumzaE .social-row {
    justify-content: center;
  }
}
.cid-tqu6QumzaE .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tqu6QumzaE .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tqu6QumzaE .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqu6QumzaE .list {
    margin-bottom: 0rem;
  }
}
.cid-tqu6QumzaE .mbr-text {
  color: #ffd400;
}
.cid-tqu6QumzaE .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tqu6QumzaE .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tqu6QumzaE div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tqu6QumzaE H5 {
  color: #cad02b;
}
.cid-tySPKFNRpY {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #002339;
}
.cid-tySPKFNRpY .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-tySPKFNRpY .copyright-section,
.cid-tySPKFNRpY .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-tySPKFNRpY .line {
  margin: 10px 0;
  width: 100%;
}
.cid-tySPKFNRpY .logo-section img {
  margin: 0 auto;
}
.cid-tySPKFNRpY .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-tySPKFNRpY .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-tySPKFNRpY .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-tySPKFNRpY .social-media ul li {
    margin-left: 30px;
  }
  .cid-tySPKFNRpY .container-fluid {
    padding: 0 2rem;
  }
  .cid-tySPKFNRpY .menu-container {
    margin-bottom: 20px;
  }
  .cid-tySPKFNRpY .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-tySPKFNRpY .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-tySPKFNRpY .copyright-section {
    order: 1;
  }
  .cid-tySPKFNRpY .copyright-section hr {
    display: none;
  }
  .cid-tySPKFNRpY .social-media {
    margin-top: 30px;
  }
  .cid-tySPKFNRpY .social-media li:first-child {
    margin-left: 0;
  }
  .cid-tySPKFNRpY .line {
    margin: 25px 0;
  }
  .cid-tySPKFNRpY .mobirise-rights,
  .cid-tySPKFNRpY .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-tySPKFNRpY .mbr-text,
.cid-tySPKFNRpY .copyright-section {
  color: #cad02b;
}
