body {
  font-family: Dosis;
}
.display-1 {
  font-family: 'Dosis', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Dosis', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((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.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #ffbc00 !important;
}
.bg-success {
  background-color: #137f4b !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffbc00 !important;
  border-color: #ffbc00 !important;
  color: #ffffff !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: #a87c00 !important;
  border-color: #a87c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a87c00 !important;
  border-color: #a87c00 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !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: #236895 !important;
  border-color: #236895 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #236895 !important;
  border-color: #236895 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !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: #a82b00 !important;
  border-color: #a82b00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a82b00 !important;
  border-color: #a82b00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #137f4b !important;
  border-color: #137f4b !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: #08341e !important;
  border-color: #08341e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #08341e !important;
  border-color: #08341e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !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: #969696 !important;
  border-color: #969696 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #969696 !important;
  border-color: #969696 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #444444 !important;
  border-color: #444444 !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: #191919 !important;
  border-color: #191919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #191919 !important;
  border-color: #191919 !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: #ffbc00;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a87c00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffbc00 !important;
  border-color: #ffbc00 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3e97d1;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #236895 !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: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff4100;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a82b00 !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: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #137f4b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #08341e !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: #137f4b !important;
  border-color: #137f4b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c1c1c1;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #969696 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #444444;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #191919 !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: #444444 !important;
  border-color: #444444 !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: #ffbc00 !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #137f4b !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #997100 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #062617 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #992700 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #111111 !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: #ffbc00;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffbc00;
  border-color: #ffbc00;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffbc00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff2cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #31e08c;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #ffbc00 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #ffbc00;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffbc00;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffbc00;
}
.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: #ffbc00;
  border-bottom-color: #ffbc00;
}
.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: #ffbc00 !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: #3e97d1 !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='%23ffbc00' %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-rzMrgNeUFf .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rzMrgNeUFf .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rzMrgNeUFf .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-rzMrgNeUFf .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rzMrgNeUFf .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-rzMrgNeUFf .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzMrgNeUFf .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-rzMrgNeUFf .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffbc00;
}
.cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-rzMrgNeUFf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzMrgNeUFf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 91.64285714vh;
  }
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzMrgNeUFf .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-rzMrgNeUFf .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-rzMrgNeUFf .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-rzMrgNeUFf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-rzMrgNeUFf .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-rzMrgNeUFf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzMrgNeUFf .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-rzMrgNeUFf .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-rzMrgNeUFf .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-rzMrgNeUFf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzMrgNeUFf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-rzMrgNeUFf .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-rzMrgNeUFf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzMrgNeUFf .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rzMrgNeUFf .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rzMrgNeUFf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzMrgNeUFf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzMrgNeUFf .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-rzMrgNeUFf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzMrgNeUFf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzMrgNeUFf .dropdown-item.active,
.cid-rzMrgNeUFf .dropdown-item:active {
  background-color: transparent;
}
.cid-rzMrgNeUFf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzMrgNeUFf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzMrgNeUFf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzMrgNeUFf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rzMrgNeUFf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-rzMrgNeUFf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzMrgNeUFf ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rzMrgNeUFf .navbar-buttons {
  text-align: center;
}
.cid-rzMrgNeUFf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzMrgNeUFf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzMrgNeUFf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzMrgNeUFf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMrgNeUFf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMrgNeUFf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzMrgNeUFf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMrgNeUFf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzMrgNeUFf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzMrgNeUFf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMrgNeUFf .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-rzMrgNeUFf a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-rzMrgNeUFf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rzMrgNeUFf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-rzMrgNeUFf .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-rzMrgNeUFf .nav-link:hover,
.cid-rzMrgNeUFf .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sEcmN9mXoY {
  padding-top: 45px;
  background-color: #ffffff;
}
.cid-sEcmN9mXoY .text-content {
  padding-bottom: 0px;
}
.cid-sEcmN9mXoY .content-container .btn-bgr {
  z-index: 0;
}
.cid-sEcmN9mXoY .box-item-text {
  color: #ffffff;
}
.cid-sEcmN9mXoY .box-item {
  padding: 2.5rem;
}
.cid-sEcmN9mXoY .box-item:first-child {
  background-color: #137f4b;
}
.cid-sEcmN9mXoY .box-item:nth-child(2) {
  background-color: #bf1f1f;
}
.cid-sEcmN9mXoY .box-item:last-child {
  background-color: #4479d9;
}
.cid-sEcmN9mXoY .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sEcmN9mXoY .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sEcmN9mXoY .box-list li:last-child {
  border-bottom: none;
}
.cid-sEcmN9mXoY .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sEcmN9mXoY .mbr-iconfont {
  color: #ffbc00;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-sEcmN9mXoY .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-sEcmN9mXoY .mbr-section-subtitle,
  .cid-sEcmN9mXoY .mbr-section-title,
  .cid-sEcmN9mXoY .mbr-text,
  .cid-sEcmN9mXoY .mbr-section-btn,
  .cid-sEcmN9mXoY .icon-block-top,
  .cid-sEcmN9mXoY .box-item-title,
  .cid-sEcmN9mXoY .box-item-text {
    text-align: center !important;
  }
}
.cid-sEcmN9mXoY .mbr-section-title {
  color: #137f4b;
}
.cid-sEcmN9mXoY .mbr-text,
.cid-sEcmN9mXoY .mbr-section-btn {
  color: #232323;
}
.cid-sEcmN9mXoY .mbr-section-subtitle {
  color: #767676;
}
.cid-sEcmN9mXoY .icon-block-top,
.cid-sEcmN9mXoY .box-item-title {
  color: #ffffff;
}
.cid-sEccK7U4MA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sEccK7U4MA .mbr-text,
.cid-sEccK7U4MA .mbr-section-btn {
  color: #232323;
}
.cid-sEccK7U4MA .card-title,
.cid-sEccK7U4MA .card-box {
  color: #fafafa;
}
.cid-sEccK7U4MA .mbr-text,
.cid-sEccK7U4MA .link-wrap {
  color: #ffffff;
}
.cid-sEcruohsma {
  background-color: #137f4b;
}
.cid-sEcruohsma .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sEcruohsma .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sEcruohsma .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sEcruohsma .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-sEcruohsma .image-element {
    padding-left: 0;
  }
}
.cid-sEcruohsma .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-sEcruohsma .mbr-text {
  color: #cccccc;
  line-height: 27px;
}
.cid-sEcruohsma .brown {
  color: #ffbc00;
}
.cid-sEcruohsma .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sEcruohsma .paragraphs-wrapper .first-paragraph,
.cid-sEcruohsma .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sEcruohsma .image-element {
    padding-top: 1rem;
  }
  .cid-sEcruohsma .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sEcruohsma .paragraphs-wrapper .first-paragraph,
  .cid-sEcruohsma .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-sEcruohsma .first-paragraph,
  .cid-sEcruohsma .second-paragraph {
    width: 50%;
  }
  .cid-sEcruohsma .first-paragraph {
    padding-right: .5rem;
  }
  .cid-sEcruohsma .second-paragraph {
    padding-left: .5rem;
  }
  .cid-sEcruohsma .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-sEcruohsma .mbr-section-title,
  .cid-sEcruohsma .mbr-section-btn {
    text-align: left;
  }
}
.cid-sEcruohsma .mbr-text,
.cid-sEcruohsma .mbr-section-btn {
  color: #cccccc;
}
.cid-sEcruohsma .title,
.cid-sEcruohsma .brown {
  color: #ffe161;
}
.cid-sEcuQMvq2v {
  padding-top: 450px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/whatsapp-image-2021-07-25-at-16.02.07-1024x768.jpg");
}
.cid-sEcuQMvq2v .link-wrap {
  width: 100%;
}
.cid-sEcuQMvq2v .link {
  display: inline-block;
}
.cid-sEcuQMvq2v .card-wrapper {
  background: white;
  padding: 4rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.cid-sEcuQMvq2v .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 2rem;
  font-weight: 600;
}
.cid-sEcuQMvq2v .link a:before {
  position: absolute;
  right: 0px;
  font-weight: 900;
  top: 55%;
  transform: translateY(-50%);
  content: "\e960";
  font-family: 'Moririse2' !important;
  color: #ffffff;
  font-size: 0.7rem;
  background: #0077ff;
  padding: 5px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sEcuQMvq2v .link a:hover {
  text-decoration: underline;
}
.cid-sEcuQMvq2v .link,
.cid-sEcuQMvq2v .link-wrap {
  color: #0077ff;
}
.cid-sEcuQMvq2v .mbr-text,
.cid-sEcuQMvq2v .mbr-section-btn {
  color: #333333;
}
@media (max-width: 767px) {
  .cid-sEcuQMvq2v {
    padding-top: 150px;
  }
  .cid-sEcuQMvq2v .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sEd34uRdNQ {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #137f4b;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sEd34uRdNQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sEd34uRdNQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sEd34uRdNQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sEd34uRdNQ .title {
  padding: 0 2rem;
}
.cid-sEd34uRdNQ .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
  height: 300px !important;
}
.cid-sEd34uRdNQ .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-sEd34uRdNQ .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
  pointer-events: none;
}
.cid-sEd34uRdNQ .mbr-gallery-item div:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
}
.cid-sEd34uRdNQ .mbr-gallery-item div:hover:before {
  opacity: 0.3;
  width: 0;
}
.cid-sEd34uRdNQ .mbr-gallery-item div:hover:after {
  opacity: 0.3;
  height: 0;
}
.cid-sEd34uRdNQ .container {
  padding: 0 1rem;
}
.cid-sEd34uRdNQ .mbr-gallery-item--p4 {
  padding: 1rem !important;
}
.cid-sEd34uRdNQ .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sEd34uRdNQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sEd34uRdNQ .icon-focus {
  display: none;
}
.cid-sEd34uRdNQ .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-sEd34uRdNQ .btn-primary-outline:hover {
  background: transparent !important;
  color: #ffbc00 !important;
}
.cid-sEd34uRdNQ li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-sEd34uRdNQ li {
  position: relative;
}
.cid-sEd34uRdNQ .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-sEd34uRdNQ .btn {
  font-family: Dosis !important;
}
.cid-sEd34uRdNQ .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sEd34uRdNQ .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sEd34uRdNQ li:not(:last-child):after {
    top: 9px;
  }
  .cid-sEd34uRdNQ .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-sEd34uRdNQ .container {
    padding: 0rem;
  }
  .cid-sEd34uRdNQ .title {
    padding: 0 1rem;
  }
}
.cid-sEd34uRdNQ H2 {
  color: #ffffff;
}
.cid-rzMrbJWA9w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rzMrbJWA9w .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rzMrbJWA9w .photo-split {
  padding: 0;
}
.cid-rzMrbJWA9w .photo-split img {
  width: 100%;
}
.cid-rzMrbJWA9w .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-rzMrbJWA9w .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rzMrbJWA9w .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-rzMrbJWA9w .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-rzMrbJWA9w .wrap-block {
  padding: 3rem 3rem;
}
.cid-rzMrbJWA9w .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-rzMrbJWA9w .wrap-block ul li {
  display: inline-block;
}
.cid-rzMrbJWA9w .wrap-block ul li span {
  text-align: center;
}
.cid-rzMrbJWA9w .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-rzMrbJWA9w .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rzMrbJWA9w .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rzMrbJWA9w .mbr-list,
.cid-rzMrbJWA9w .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-rzMrbJWA9w .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-rzMrbJWA9w .mbr-section-title,
  .cid-rzMrbJWA9w .mbr-section-subtitle,
  .cid-rzMrbJWA9w .mbr-text {
    text-align: center !important;
  }
  .cid-rzMrbJWA9w .social-list {
    text-align: center !important;
  }
}
.cid-sEd4Vdg3yY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/whatsapp-image-2021-07-25-at-15.51.27-1280x960.jpg");
}
.cid-sEd4Vdg3yY .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.7;
}
.cid-sEd4Vdg3yY input,
.cid-sEd4Vdg3yY textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .cid-sEd4Vdg3yY .img-col {
    order: 2;
    text-align: center;
  }
  .cid-sEd4Vdg3yY img {
    max-width: 200px;
    margin: auto;
  }
  .cid-sEd4Vdg3yY .form-row {
    flex-direction: column;
  }
  .cid-sEd4Vdg3yY .btn {
    width: 100%;
  }
}
.cid-sEd4Vdg3yY .btn {
  border-radius: 30px;
  margin: 0 !important;
  min-height: 4rem;
}
.cid-sEd4Vdg3yY .form-control,
.cid-sEd4Vdg3yY .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
  transition: 0.4s;
  min-height: 4rem;
  box-shadow: none;
  outline: none;
}
.cid-sEd4Vdg3yY .form-control::-webkit-input-placeholder,
.cid-sEd4Vdg3yY .field-input::-webkit-input-placeholder,
.cid-sEd4Vdg3yY .form-control::-webkit-input-placeholder,
.cid-sEd4Vdg3yY .field-input::-webkit-input-placeholder {
  color: #808080;
}
.cid-sEd4Vdg3yY .form-control:-moz-placeholder,
.cid-sEd4Vdg3yY .field-input:-moz-placeholder,
.cid-sEd4Vdg3yY .form-control:-moz-placeholder,
.cid-sEd4Vdg3yY .field-input:-moz-placeholder {
  color: #808080;
}
.cid-sEd4Vdg3yY .form-control:hover,
.cid-sEd4Vdg3yY .field-input:hover,
.cid-sEd4Vdg3yY .form-control:focus,
.cid-sEd4Vdg3yY .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
  box-shadow: none;
  outline: none;
}
.cid-sEd4Vdg3yY .form-control:hover::-webkit-input-placeholder,
.cid-sEd4Vdg3yY .field-input:hover::-webkit-input-placeholder,
.cid-sEd4Vdg3yY .form-control:focus::-webkit-input-placeholder,
.cid-sEd4Vdg3yY .field-input:focus::-webkit-input-placeholder,
.cid-sEd4Vdg3yY .form-control:hover::-webkit-input-placeholder,
.cid-sEd4Vdg3yY .field-input:hover::-webkit-input-placeholder,
.cid-sEd4Vdg3yY .form-control:focus::-webkit-input-placeholder,
.cid-sEd4Vdg3yY .field-input:focus::-webkit-input-placeholder {
  color: #808080;
}
.cid-sEd4Vdg3yY .form-control:hover:-moz-placeholder,
.cid-sEd4Vdg3yY .field-input:hover:-moz-placeholder,
.cid-sEd4Vdg3yY .form-control:focus:-moz-placeholder,
.cid-sEd4Vdg3yY .field-input:focus:-moz-placeholder,
.cid-sEd4Vdg3yY .form-control:hover:-moz-placeholder,
.cid-sEd4Vdg3yY .field-input:hover:-moz-placeholder,
.cid-sEd4Vdg3yY .form-control:focus:-moz-placeholder,
.cid-sEd4Vdg3yY .field-input:focus:-moz-placeholder {
  color: #808080;
}
.cid-sEd4Vdg3yY .jq-number__spin:hover,
.cid-sEd4Vdg3yY .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sEd4Vdg3yY .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sEd4Vdg3yY .jq-selectbox li,
.cid-sEd4Vdg3yY .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sEd4Vdg3yY .jq-selectbox li:hover,
.cid-sEd4Vdg3yY .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sEd4Vdg3yY .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sEd4Vdg3yY .jq-number__spin.minus:hover:after,
.cid-sEd4Vdg3yY .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sEd4Vdg3yY .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sEd4Vdg3yY .jq-number__spin.minus:after,
.cid-sEd4Vdg3yY .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sEd4Vdg3yY input::-webkit-clear-button {
  display: none;
}
.cid-sEd4Vdg3yY input::-webkit-inner-spin-button {
  display: none;
}
.cid-sEd4Vdg3yY input::-webkit-outer-spin-button {
  display: none;
}
.cid-sEd4Vdg3yY input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sEd4Vdg3yY .mbr-text,
.cid-sEd4Vdg3yY .mbr-section-btn {
  color: #000000;
}
.cid-sEd8cjovMH {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sEd8cjovMH .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sEd8cjovMH .row {
  border-bottom: 1px solid #137f4b;
}
.cid-sEd8cjovMH H2 {
  color: #e7272d;
}
.cid-sEd8cjovMH .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sEd8cjovMH .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sEd8cjovMH .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #137f4b;
}
.cid-sEd8cjovMH .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #137f4b;
}
.cid-sEd8cjovMH .col-lg-12 {
  overflow: hidden;
}
.cid-sEd8cjovMH H4 {
  color: #fbbe36;
}
.cid-sEd8cjovMH .mbr-text,
.cid-sEd8cjovMH .mbr-section-btn {
  color: #137f4b;
}
@media (max-width: 767px) {
  .cid-sEd8cjovMH .logo-wrap:before {
    content: none;
  }
  .cid-sEd8cjovMH .logo-wrap:after {
    content: none;
  }
}
.cid-sEd8cjovMH H3 {
  color: #000000;
}
.cid-sEcxZlvN4q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #137f4b;
}
.cid-sEcxZlvN4q .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sEcxZlvN4q .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-sEcxZlvN4q .mbr-list {
  margin: 0;
}
.cid-sEcxZlvN4q .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-sEcxZlvN4q .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-sEcxZlvN4q .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-sEcxZlvN4q .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
