body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Gilda Display', serif;
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Gilda Display', serif;
  font-size: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Gilda Display', serif;
  font-size: 1.9rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.04rem;
}
.display-7 {
  font-family: 'Gilda Display', serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 10px 15px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #9f2b19 !important;
}
.bg-success {
  background-color: #92bda3 !important;
}
.bg-info {
  background-color: #9f2b19 !important;
}
.bg-warning {
  background-color: #b7b6b6 !important;
}
.bg-danger {
  background-color: #e2f706 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #9f2b19 !important;
  border-color: #9f2b19 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #5d190f !important;
  border-color: #5d190f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #5d190f !important;
  border-color: #5d190f !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #9f2b19 !important;
  border-color: #9f2b19 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #5d190f !important;
  border-color: #5d190f !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5d190f !important;
  border-color: #5d190f !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #e2f706 !important;
  border-color: #e2f706 !important;
  color: #000000 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #000000 !important;
  background-color: #9eac04 !important;
  border-color: #9eac04 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000000 !important;
  background-color: #9eac04 !important;
  border-color: #9eac04 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #47130b !important;
  color: #47130b !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #9f2b19 !important;
  border-color: #9f2b19 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #9f2b19 !important;
  border-color: #9f2b19 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #47130b !important;
  color: #47130b !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #9f2b19 !important;
  border-color: #9f2b19 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #9f2b19 !important;
  border-color: #9f2b19 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #58916f !important;
  color: #58916f !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #848383 !important;
  color: #848383 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #879304 !important;
  color: #879304 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #000000 !important;
  background-color: #e2f706 !important;
  border-color: #e2f706 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #000000 !important;
  background-color: #e2f706 !important;
  border-color: #e2f706 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #9f2b19 !important;
}
.text-secondary {
  color: #333333 !important;
}
.text-success {
  color: #92bda3 !important;
}
.text-info {
  color: #9f2b19 !important;
}
.text-warning {
  color: #b7b6b6 !important;
}
.text-danger {
  color: #e2f706 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #47130b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #58916f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #47130b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #848383 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #879304 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #9f2b19;
}
.alert-warning {
  background-color: #b7b6b6;
}
.alert-danger {
  background-color: #e2f706;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #9f2b19;
  border-color: #9f2b19;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #9f2b19;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e46753;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1ede6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e46753;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f6f6f6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f9fecb;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Gilda Display', serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #9f2b19;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #9f2b19;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #9f2b19;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #9f2b19;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #9f2b19;
  border-bottom-color: #9f2b19;
}
.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: #ffffff !important;
  background-color: #9f2b19 !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: #333333 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%239f2b19' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-raapr1sk57 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/02.jpg");
}
.cid-raapr1sk57 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-raapr1sk57 .mbr-iconfont {
  font-size: 80px;
}
.cid-sG87AUE0BZ.popup-builder {
  background-color: #ffffff;
}
.cid-sG87AUE0BZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sG87AUE0BZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sG87AUE0BZ .modal-content,
.cid-sG87AUE0BZ .modal-dialog {
  height: auto;
}
.cid-sG87AUE0BZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sG87AUE0BZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sG87AUE0BZ .form-wrapper .mbr-form .form-group,
  .cid-sG87AUE0BZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sG87AUE0BZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sG87AUE0BZ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sG87AUE0BZ .mbr-text {
  text-align: center;
}
.cid-sG87AUE0BZ .pt-0 {
  padding-top: 0 !important;
}
.cid-sG87AUE0BZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sG87AUE0BZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sG87AUE0BZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sG87AUE0BZ .modal-open {
  overflow: hidden;
}
.cid-sG87AUE0BZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sG87AUE0BZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sG87AUE0BZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sG87AUE0BZ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sG87AUE0BZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sG87AUE0BZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sG87AUE0BZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sG87AUE0BZ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sG87AUE0BZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sG87AUE0BZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-sG87AUE0BZ .modal-backdrop.show {
  opacity: .5;
}
.cid-sG87AUE0BZ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sG87AUE0BZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sG87AUE0BZ .modal-header {
    padding: 1rem;
  }
}
.cid-sG87AUE0BZ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sG87AUE0BZ .modal-header .close:hover {
  opacity: 1;
}
.cid-sG87AUE0BZ .modal-header .close:focus {
  outline: none;
}
.cid-sG87AUE0BZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sG87AUE0BZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sG87AUE0BZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sG87AUE0BZ .modal-body {
    padding: 1rem;
  }
}
.cid-sG87AUE0BZ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sG87AUE0BZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sG87AUE0BZ .modal-footer {
    padding: 1rem;
  }
}
.cid-sG87AUE0BZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sG87AUE0BZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sG87AUE0BZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sG87AUE0BZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sG87AUE0BZ .modal-sm {
    max-width: 300px;
  }
  .cid-sG87AUE0BZ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sG87AUE0BZ .modal-lg,
  .cid-sG87AUE0BZ .modal-xl {
    max-width: 800px;
  }
  .cid-sG87AUE0BZ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sG87AUE0BZ .modal-xl {
    max-width: 1140px;
  }
  .cid-sG87AUE0BZ .container {
    max-width: 1140px;
  }
}
.cid-sG87AUE0BZ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sG87AUE0BZ .container {
    max-width: 720px;
  }
}
.cid-sG87AUE0BZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sG87AUE0BZ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sG87AUE0BZ .form-group {
  margin-bottom: 1rem;
}
.cid-sG87AUE0BZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sG87AUE0BZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sG87AUE0BZ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sG87AUE0BZ .mbr-section-btn {
  margin: 0;
}
.cid-sG87AUE0BZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-sMnceaZwEt {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sMnceaZwEt .card {
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMnceaZwEt .card .card-img {
  width: 20%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sMnceaZwEt .card .card-box {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 80%;
  padding-left: 1rem;
}
.cid-sMnceaZwEt .card .card-img span {
  color: #878787;
  font-size: 60px;
}
.cid-sMnceaZwEt .mbr-text {
  color: #878787;
}
@media (max-width: 767px) {
  .cid-sMnceaZwEt .card {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sMnceaZwEt .card .card-img {
    width: 100%;
    padding-bottom: 1.5rem;
  }
  .cid-sMnceaZwEt .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-sMnceaZwEt .card .card-box .card-title,
  .cid-sMnceaZwEt .card .card-box .mbr-text,
  .cid-sMnceaZwEt .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-sMnceaZwEt .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-sMnceaZwEt .card .card-img {
    text-align: right !important;
  }
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-reEPXSgamn {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-reEPXSgamn .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-reEPXSgamn .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-reEPXSgamn .title {
    width: 100% !important;
  }
}
.cid-reEuf6O2LK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-reEuf6O2LK .counter-container ol {
  margin-bottom: 0;
}
.cid-reEuf6O2LK .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-reEPTOaRJt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #c0d9ca;
}
.cid-reEPTOaRJt .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-reEPTOaRJt .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-reEPTOaRJt .title {
    width: 100% !important;
  }
}
.cid-reERdGRIkS {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #c0d9ca;
}
.cid-reERdGRIkS .counter-container ol {
  margin-bottom: 0;
}
.cid-reERdGRIkS .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-reEmn9oEj4 {
  padding-top: 30px;
  padding-bottom: 90px;
  background: #efefef;
}
.cid-reEmn9oEj4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-reEmn9oEj4 .star1 .star-1 {
  fill: #ffffff;
}
.cid-reEmn9oEj4 .star1 .star-2,
.cid-reEmn9oEj4 .star1 .star-3,
.cid-reEmn9oEj4 .star1 .star-4,
.cid-reEmn9oEj4 .star1 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-reEmn9oEj4 .star2 .star-1,
.cid-reEmn9oEj4 .star2 .star-2 {
  fill: #ffffff;
}
.cid-reEmn9oEj4 .star2 .star-3,
.cid-reEmn9oEj4 .star2 .star-4,
.cid-reEmn9oEj4 .star2 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-reEmn9oEj4 .star3 .star-1,
.cid-reEmn9oEj4 .star3 .star-2,
.cid-reEmn9oEj4 .star3 .star-3 {
  fill: #ffffff;
}
.cid-reEmn9oEj4 .star3 .star-4,
.cid-reEmn9oEj4 .star3 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-reEmn9oEj4 .star4 .star-1,
.cid-reEmn9oEj4 .star4 .star-2,
.cid-reEmn9oEj4 .star4 .star-3,
.cid-reEmn9oEj4 .star4 .star-4 {
  fill: #ffffff;
}
.cid-reEmn9oEj4 .star4 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-reEmn9oEj4 .star5 .star-1,
.cid-reEmn9oEj4 .star5 .star-2,
.cid-reEmn9oEj4 .star5 .star-3,
.cid-reEmn9oEj4 .star5 .star-4,
.cid-reEmn9oEj4 .star5 .star-5 {
  fill: #ffffff;
}
.cid-reEmn9oEj4 .table {
  margin: 0;
}
.cid-reEmn9oEj4 .table .table-wrapper {
  padding: 2rem;
  background: #ffffff;
  position: relative;
}
.cid-reEmn9oEj4 .table .table-wrapper .table-head-wrapper {
  background: #c19b76;
  margin: -2rem;
  margin-bottom: 0 !important;
  padding: 2rem 1rem;
}
.cid-reEmn9oEj4 .table .table-wrapper .table-head-wrapper span {
  width: 100%;
  display: block;
}
.cid-reEmn9oEj4 .table .table-wrapper .table-purchase {
  padding-bottom: 2rem;
}
.cid-reEmn9oEj4 .table .table-wrapper .table-purchase .table-pricing {
  margin: 0;
  margin-top: .5rem !important;
}
.cid-reEmn9oEj4 .table .table-wrapper .list-group {
  list-style: none;
  padding: 2rem 0;
  padding-bottom: 0;
}
.cid-reEmn9oEj4 .table .table-wrapper .list-group li {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: .4rem;
}
.cid-reEmn9oEj4 .table .table-wrapper .list-group li .mbr-iconfont {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-reEmn9oEj4 .table .table-wrapper .list-group li .items-text {
  width: 100%;
}
.cid-reEmn9oEj4 .table .table-wrapper .mbr-section-btn {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-reEmn9oEj4 .table:not(.last-table) {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-reEmn9oEj4 .table.first-row-table {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-reEmn9oEj4 .table {
    margin-bottom: 0;
  }
}
.cid-reEmn9oEj4 .mbr-section-subtitle,
.cid-reEmn9oEj4 .underline {
  color: #000000;
}
.cid-reEmn9oEj4 .main-title {
  color: #232323;
}
.cid-reEmn15qOp {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1-1920x1279.jpg");
}
.cid-reEmn15qOp .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-reEmn15qOp .main-head {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-reEmn15qOp .first-table {
  margin: 0;
}
.cid-reEmn15qOp .first-table.two-items {
  margin-right: 15px;
}
.cid-reEmn15qOp .first-table .table-head-wrapper {
  background: #ff9a8a;
}
.cid-reEmn15qOp .second-table {
  margin: 0;
  margin-left: 15px;
}
.cid-reEmn15qOp .second-table .table-head-wrapper {
  background: #c19b76;
}
.cid-reEmn15qOp .table {
  padding: 2rem;
  background: #fcfcfc;
  position: relative;
}
.cid-reEmn15qOp .table .table-wrapper .table-head-wrapper {
  margin: -2rem;
  margin-bottom: 0 !important;
  padding: 2rem;
  padding-bottom: 0 !important;
}
.cid-reEmn15qOp .table .table-wrapper .table-head-wrapper span {
  width: 100%;
  display: block;
}
.cid-reEmn15qOp .table .table-wrapper .table-purchase {
  padding-bottom: 2rem;
}
.cid-reEmn15qOp .table .table-wrapper .table-purchase .table-pricing {
  margin: 0;
  margin-top: .5rem !important;
}
.cid-reEmn15qOp .table .table-wrapper .list-group {
  padding-top: 2rem;
  list-style: none;
}
.cid-reEmn15qOp .table .table-wrapper .list-group li {
  padding: .4rem;
  border-bottom: 1px solid #efefef;
}
.cid-reEmn15qOp .table .table-wrapper .list-group li .mbr-iconfont {
  font-size: 30px;
}
@media (max-width: 767px) {
  .cid-reEmn15qOp .first-table,
  .cid-reEmn15qOp .second-table {
    margin: 0 15px;
  }
  .cid-reEmn15qOp .first-table {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-reEmn15qOp .items-row {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-reEmn15qOp .first-table,
  .cid-reEmn15qOp .second-table {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .cid-reEmn15qOp .main-head {
    padding-bottom: 2rem;
  }
}
.cid-reEmn15qOp .main-title {
  color: #000000;
}
.cid-reEmn15qOp .main-text,
.cid-reEmn15qOp .main-btn {
  color: #232323;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-rfl22VAe6W {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-rfl22VAe6W .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rfl22VAe6W .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-rfl22VAe6W .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-rfl22VAe6W .form1 .input-wrap {
  margin-bottom: 1rem;
}
.cid-rfl22VAe6W .form1 .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-rfl22VAe6W .form1 .input-group-btn {
  width: 100%;
}
.cid-rfl22VAe6W .form1 .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-rfl22VAe6W .form1 .form-label-outside {
  color: #333333;
}
@media (max-width: 767px) {
  .cid-rfl22VAe6W .form1 {
    padding: 1.5rem;
  }
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-rfHMimJrwc {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/naptruj2-1893x85216.png");
}
.cid-rfHMimJrwc .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rfHMimJrwc .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rfHMimJrwc .card .card-header {
  background: #487f91;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rfHMimJrwc .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rfHMimJrwc .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rfHMimJrwc .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rfHMimJrwc .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-rfHMimJrwc .card .panel-body {
  background: #ffffff;
}
.cid-rfHMimJrwc .card .panel-body .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rfHMimJrwc .card-header h4,
  .cid-rfHMimJrwc .panel-body {
    padding: 1rem !important;
  }
}
.cid-rfHMimJrwc H2 {
  color: #ffffff;
}
.cid-rfHV1Fj4FY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/recepcion1-998x488.png");
}
.cid-rfHV1Fj4FY .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rfHV1Fj4FY .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rfHV1Fj4FY .card .card-header {
  background: #2b6477;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rfHV1Fj4FY .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rfHV1Fj4FY .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rfHV1Fj4FY .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rfHV1Fj4FY .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-rfHV1Fj4FY .card .panel-body {
  background: #ffffff;
}
.cid-rfHV1Fj4FY .card .panel-body .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rfHV1Fj4FY .card-header h4,
  .cid-rfHV1Fj4FY .panel-body {
    padding: 1rem !important;
  }
}
.cid-rfMbGReN21 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/diagram-2-848x534.png");
}
.cid-rfMbGReN21 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rfMbGReN21 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rfMbGReN21 .card .card-header {
  background: #2b6477;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rfMbGReN21 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rfMbGReN21 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rfMbGReN21 .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rfMbGReN21 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-rfMbGReN21 .card .panel-body {
  background: #a3c6d2;
}
.cid-rfMbGReN21 .card .panel-body .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rfMbGReN21 .card-header h4,
  .cid-rfMbGReN21 .panel-body {
    padding: 1rem !important;
  }
}
.cid-rfMbGReN21 .mbr-section-subtitle,
.cid-rfMbGReN21 .underline {
  color: #ffffff;
}
.cid-rfMbGReN21 H2 {
  color: #ffffff;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-rglXo9i6Zx {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-rvkDQdxSGC {
  padding-top: 135px;
  padding-bottom: 60px;
  background-color: #709faf;
}
.cid-rvkDQdxSGC .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rvkDQdxSGC .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rvkDQdxSGC .card .card-header {
  background: #487f91;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rvkDQdxSGC .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rvkDQdxSGC .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rvkDQdxSGC .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rvkDQdxSGC .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-rvkDQdxSGC .card .panel-body {
  background: #ffffff;
}
.cid-rvkDQdxSGC .card .panel-body .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rvkDQdxSGC .card-header h4,
  .cid-rvkDQdxSGC .panel-body {
    padding: 1rem !important;
  }
}
.cid-rvkDQdxSGC H2 {
  color: #ffffff;
}
.cid-rvkDQdxSGC .mbr-section-subtitle,
.cid-rvkDQdxSGC .underline {
  color: #ffffff;
}
.cid-rvkDQfTeTb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/recepcion1-998x488.png");
}
.cid-rvkDQfTeTb .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rvkDQfTeTb .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rvkDQfTeTb .card .card-header {
  background: #2b6477;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rvkDQfTeTb .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rvkDQfTeTb .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rvkDQfTeTb .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rvkDQfTeTb .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-rvkDQfTeTb .card .panel-body {
  background: #ffffff;
}
.cid-rvkDQfTeTb .card .panel-body .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rvkDQfTeTb .card-header h4,
  .cid-rvkDQfTeTb .panel-body {
    padding: 1rem !important;
  }
}
.cid-rDmCysU45D.popup-builder {
  background-color: #ffffff;
}
.cid-rDmCysU45D.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rDmCysU45D.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rDmCysU45D .modal-content,
.cid-rDmCysU45D .modal-dialog {
  height: auto;
}
.cid-rDmCysU45D .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rDmCysU45D .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rDmCysU45D .form-wrapper .mbr-form .form-group,
  .cid-rDmCysU45D .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rDmCysU45D .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rDmCysU45D .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rDmCysU45D .mbr-text {
  text-align: center;
}
.cid-rDmCysU45D .pt-0 {
  padding-top: 0 !important;
}
.cid-rDmCysU45D .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rDmCysU45D .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rDmCysU45D .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rDmCysU45D .modal-open {
  overflow: hidden;
}
.cid-rDmCysU45D .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rDmCysU45D .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rDmCysU45D .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rDmCysU45D .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rDmCysU45D .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rDmCysU45D .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rDmCysU45D .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rDmCysU45D .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rDmCysU45D .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rDmCysU45D .modal-backdrop.fade {
  opacity: 0;
}
.cid-rDmCysU45D .modal-backdrop.show {
  opacity: .5;
}
.cid-rDmCysU45D .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rDmCysU45D .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rDmCysU45D .modal-header .close:hover {
  opacity: 1;
}
.cid-rDmCysU45D .modal-header .close:focus {
  outline: none;
}
.cid-rDmCysU45D .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rDmCysU45D .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rDmCysU45D .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rDmCysU45D .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rDmCysU45D .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rDmCysU45D .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rDmCysU45D .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rDmCysU45D .modal-sm {
    max-width: 300px;
  }
  .cid-rDmCysU45D .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rDmCysU45D .modal-lg,
  .cid-rDmCysU45D .modal-xl {
    max-width: 800px;
  }
  .cid-rDmCysU45D .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rDmCysU45D .modal-xl {
    max-width: 1140px;
  }
  .cid-rDmCysU45D .container {
    max-width: 1140px;
  }
}
.cid-rDmCysU45D .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rDmCysU45D .container {
    max-width: 720px;
  }
}
.cid-rDmCysU45D .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rDmCysU45D .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rDmCysU45D .form-group {
  margin-bottom: 1rem;
}
.cid-rDmCysU45D .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rDmCysU45D .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rDmCysU45D .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-rDmvtwfUgp {
  padding-top: 60px;
  padding-bottom: 0px;
  background: url("../../../assets/images/background5.jpg");
}
.cid-rDmvtwfUgp .mbr-section-subtitle {
  letter-spacing: 3px;
}
.cid-rDmvtwfUgp .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rDmvtwfUgp .number-wrap {
  color: #333333;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 10px 13px 10px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-rDmvtwfUgp .number {
  font-style: normal;
  font-weight: 400;
  font-size: 55px;
  text-transform: none;
  letter-spacing: 1px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
}
.cid-rDmvtwfUgp .period {
  display: block;
  padding-top: 2px;
  background: #ffffff;
}
.cid-rDmvtwfUgp .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: block;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
}
.cid-rDmvtwfUgp .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rDmvtwfUgp .dot {
    display: none;
  }
  .cid-rDmvtwfUgp .number {
    white-space: nowrap;
  }
}
@media (max-width: 550px) {
  .cid-rDmvtwfUgp .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-rDmvtwfUgp .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-rDmvtwfUgp .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-rDmvtwfUgp .number {
    font-size: 25px;
  }
  .cid-rDmvtwfUgp .period {
    font-size: 0.7rem;
  }
}
.cid-rDmw2RTwIT {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/naptruj2-1893x85217.png");
}
.cid-rDmw2RTwIT .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rDmw2RTwIT .form-head {
  background: #487f91;
  padding: 2rem;
}
.cid-rDmw2RTwIT .form1 {
  background: #2b6477;
  padding: 2rem;
}
.cid-rDmw2RTwIT .form-group {
  margin-bottom: 1rem;
}
.cid-rDmw2RTwIT .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #e26c5a;
  color: #000000;
  width: 100%;
}
.cid-rDmw2RTwIT textarea.form-control {
  min-height: 96px;
}
.cid-rDmw2RTwIT .input-group-btn {
  width: 100%;
}
.cid-rDmw2RTwIT .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-rDmw2RTwIT .form-control-label {
  color: #fcfcfc;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-rDmw2RTwIT .form1 {
    padding: 1.5rem;
  }
}
.cid-rDmw2RTwIT .form-title {
  color: #ffffff;
}
.cid-rDmw2RTwIT .form-subtitle {
  color: #fcfcfc;
}
.cid-rDmw2RTwIT H5 {
  color: #ffffff;
}
.cid-rDmtOg90ZO.popup-builder {
  background-color: #ffffff;
}
.cid-rDmtOg90ZO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rDmtOg90ZO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rDmtOg90ZO .modal-content,
.cid-rDmtOg90ZO .modal-dialog {
  height: auto;
}
.cid-rDmtOg90ZO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rDmtOg90ZO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rDmtOg90ZO .form-wrapper .mbr-form .form-group,
  .cid-rDmtOg90ZO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rDmtOg90ZO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rDmtOg90ZO .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rDmtOg90ZO .mbr-text {
  text-align: center;
}
.cid-rDmtOg90ZO .pt-0 {
  padding-top: 0 !important;
}
.cid-rDmtOg90ZO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rDmtOg90ZO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rDmtOg90ZO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rDmtOg90ZO .modal-open {
  overflow: hidden;
}
.cid-rDmtOg90ZO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rDmtOg90ZO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rDmtOg90ZO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rDmtOg90ZO .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rDmtOg90ZO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rDmtOg90ZO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rDmtOg90ZO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rDmtOg90ZO .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rDmtOg90ZO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rDmtOg90ZO .modal-backdrop.fade {
  opacity: 0;
}
.cid-rDmtOg90ZO .modal-backdrop.show {
  opacity: .5;
}
.cid-rDmtOg90ZO .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rDmtOg90ZO .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rDmtOg90ZO .modal-header .close:hover {
  opacity: 1;
}
.cid-rDmtOg90ZO .modal-header .close:focus {
  outline: none;
}
.cid-rDmtOg90ZO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rDmtOg90ZO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rDmtOg90ZO .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rDmtOg90ZO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rDmtOg90ZO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rDmtOg90ZO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rDmtOg90ZO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rDmtOg90ZO .modal-sm {
    max-width: 300px;
  }
  .cid-rDmtOg90ZO .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rDmtOg90ZO .modal-lg,
  .cid-rDmtOg90ZO .modal-xl {
    max-width: 800px;
  }
  .cid-rDmtOg90ZO .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rDmtOg90ZO .modal-xl {
    max-width: 1140px;
  }
  .cid-rDmtOg90ZO .container {
    max-width: 1140px;
  }
}
.cid-rDmtOg90ZO .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rDmtOg90ZO .container {
    max-width: 720px;
  }
}
.cid-rDmtOg90ZO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rDmtOg90ZO .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rDmtOg90ZO .form-group {
  margin-bottom: 1rem;
}
.cid-rDmtOg90ZO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rDmtOg90ZO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rDmtOg90ZO .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-uD45x9c0Z2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uD45x9c0Z2 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uD45x9c0Z2 .container-fluid {
  display: flex;
  padding: 0 !important;
}
.cid-uD45x9c0Z2 .main-row {
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 0;
}
@media (max-width: 1200px) {
  .cid-uD45x9c0Z2 .main-row {
    align-items: center;
  }
}
@media (min-width: 1025px) {
  .cid-uD45x9c0Z2 .main-row {
    padding-right: calc((100% - 960px)/ 2) !important;
  }
}
@media (min-width: 1201px) {
  .cid-uD45x9c0Z2 .main-row {
    padding-right: calc((100% - 1100px)/ 2) !important;
  }
}
@media (min-width: 1441px) {
  .cid-uD45x9c0Z2 .main-row {
    padding-right: calc((100% - 1300px)/ 2) !important;
  }
}
@media (max-width: 1024px) {
  .cid-uD45x9c0Z2 .main-row {
    width: 768px;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .cid-uD45x9c0Z2 .main-row {
    width: 86%;
  }
}
.cid-uD45x9c0Z2 .col-map {
  width: 57% !important;
}
@media (max-width: 1024px) {
  .cid-uD45x9c0Z2 .col-map {
    width: 100% !important;
  }
}
.cid-uD45x9c0Z2 .col-form {
  width: 43% !important;
  padding-top: 25px;
}
@media (min-width: 1025px) {
  .cid-uD45x9c0Z2 .col-form {
    padding-left: 64px !important;
  }
}
@media (max-width: 1024px) {
  .cid-uD45x9c0Z2 .col-form {
    width: 100% !important;
  }
}
.cid-uD45x9c0Z2 .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uD45x9c0Z2 .mbr-section-head {
  margin-bottom: 20px;
}
.cid-uD45x9c0Z2 form .dragArea.row {
  justify-content: flex-start;
}
.cid-uD45x9c0Z2 form .mbr-section-btn {
  margin-top: 12px;
}
.cid-uD45x9c0Z2 form .mbr-section-btn .btn {
  width: max-content;
  min-width: 140px;
}
@media (max-width: 800px) {
  .cid-uD45x9c0Z2 form .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uD45x9c0Z2 form .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
.cid-uD45x9c0Z2 form .form-group {
  margin-bottom: 8px !important;
}
.cid-uD45x9c0Z2 form .form-control {
  border: 1px solid  !important;
  border-image-slice: 1 !important;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 23px 30px;
  font-size: 17px;
  line-height: 24px;
  color: #a0a0a0;
  font-weight: 400;
}
.cid-uD45x9c0Z2 form .form-control::-webkit-input-placeholder {
  color: #a0a0a0;
}
.cid-uD45x9c0Z2 form .form-control::-moz-placeholder {
  color: #a0a0a0;
}
.cid-uD45x9c0Z2 form .form-control:-moz-placeholder {
  color: #a0a0a0;
}
.cid-uD45x9c0Z2 form .form-control:-ms-input-placeholder {
  color: #a0a0a0;
}
.cid-uD45x9c0Z2 form textarea {
  height: 146px;
}
.cid-uD45x9c0Z2 form input:active,
.cid-uD45x9c0Z2 form input:focus {
  color: #000 !important;
}
.cid-uD45x9c0Z2 form input:active::-webkit-input-placeholder,
.cid-uD45x9c0Z2 form input:focus::-webkit-input-placeholder {
  color: #000;
}
.cid-uD45x9c0Z2 form input:active::-moz-placeholder,
.cid-uD45x9c0Z2 form input:focus::-moz-placeholder {
  color: #000;
}
.cid-uD45x9c0Z2 form input:active:-moz-placeholder,
.cid-uD45x9c0Z2 form input:focus:-moz-placeholder {
  color: #000;
}
.cid-uD45x9c0Z2 form input:active:-ms-input-placeholder,
.cid-uD45x9c0Z2 form input:focus:-ms-input-placeholder {
  color: #000;
}
.cid-uD45x9c0Z2 .google-map {
  height: 573px;
  position: relative;
}
.cid-uD45x9c0Z2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uD45x9c0Z2 .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-uD45x9c0Z2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uD45x9c0Z2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uD45x9c0Z2 form .row {
  margin-left: -4px !important;
  margin-right: -4px !important;
}
.cid-uD45x9c0Z2 form .row [class*=col] {
  padding-left: 4px !important;
  padding-right: 4px !important;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-rDWC9l3wL5 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1-1920x1279.jpg");
}
.cid-rDWC9l3wL5 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rDWC9l3wL5 .main-head {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rDWC9l3wL5 .first-table {
  margin: 0;
}
.cid-rDWC9l3wL5 .first-table.two-items {
  margin-right: 15px;
}
.cid-rDWC9l3wL5 .first-table .table-head-wrapper {
  background: #ff9a8a;
}
.cid-rDWC9l3wL5 .second-table {
  margin: 0;
  margin-left: 15px;
}
.cid-rDWC9l3wL5 .second-table .table-head-wrapper {
  background: #c19b76;
}
.cid-rDWC9l3wL5 .table {
  padding: 2rem;
  background: #fcfcfc;
  position: relative;
}
.cid-rDWC9l3wL5 .table .table-wrapper .table-head-wrapper {
  margin: -2rem;
  margin-bottom: 0 !important;
  padding: 2rem;
  padding-bottom: 0 !important;
}
.cid-rDWC9l3wL5 .table .table-wrapper .table-head-wrapper span {
  width: 100%;
  display: block;
}
.cid-rDWC9l3wL5 .table .table-wrapper .table-purchase {
  padding-bottom: 2rem;
}
.cid-rDWC9l3wL5 .table .table-wrapper .table-purchase .table-pricing {
  margin: 0;
  margin-top: .5rem !important;
}
.cid-rDWC9l3wL5 .table .table-wrapper .list-group {
  padding-top: 2rem;
  list-style: none;
}
.cid-rDWC9l3wL5 .table .table-wrapper .list-group li {
  padding: .4rem;
  border-bottom: 1px solid #efefef;
}
.cid-rDWC9l3wL5 .table .table-wrapper .list-group li .mbr-iconfont {
  font-size: 30px;
}
@media (max-width: 767px) {
  .cid-rDWC9l3wL5 .first-table,
  .cid-rDWC9l3wL5 .second-table {
    margin: 0 15px;
  }
  .cid-rDWC9l3wL5 .first-table {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-rDWC9l3wL5 .items-row {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-rDWC9l3wL5 .first-table,
  .cid-rDWC9l3wL5 .second-table {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .cid-rDWC9l3wL5 .main-head {
    padding-bottom: 2rem;
  }
}
.cid-rDWC9l3wL5 .main-title {
  color: #000000;
}
.cid-rDWC9l3wL5 .main-text,
.cid-rDWC9l3wL5 .main-btn {
  color: #232323;
}
.cid-rDWC9l3wL5 .mbr-section-subtitle,
.cid-rDWC9l3wL5 .underline {
  color: #000000;
}
.cid-rDWC9n6isy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/02.jpg");
}
.cid-rDWC9n6isy .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rDWC9n6isy .mbr-iconfont {
  font-size: 80px;
}
.cid-rDWC9n6isy H3 {
  color: #000000;
}
.cid-rDWC9n6isy H4 {
  color: #000000;
}
.cid-rDWC9p4qIQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rDWC9p4qIQ .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rDWC9p4qIQ .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-rDWC9p4qIQ .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rDWC9p4qIQ .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rDWC9p4qIQ .link {
  letter-spacing: 2px;
}
.cid-rDWC9p4qIQ .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-rDWC9p4qIQ .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rDWC9p4qIQ .card {
    padding-bottom: 2rem;
  }
}
.cid-rDWC9r6BVD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rDWC9r6BVD .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rDWC9r6BVD .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-rDWC9r6BVD .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rDWC9r6BVD .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rDWC9r6BVD .link {
  letter-spacing: 2px;
}
.cid-rDWC9r6BVD .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-rDWC9r6BVD .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rDWC9r6BVD .card {
    padding-bottom: 2rem;
  }
}
.cid-rDWC9r6BVD .link B {
  color: #c64935;
}
.cid-rDWC9tetQC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rDWC9tetQC .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rDWC9tetQC .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-rDWC9tetQC .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rDWC9tetQC .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rDWC9tetQC .link {
  letter-spacing: 2px;
}
.cid-rDWC9tetQC .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-rDWC9tetQC .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rDWC9tetQC .card {
    padding-bottom: 2rem;
  }
}
.cid-rDWC9tetQC .link B {
  color: #c64935;
}
.cid-rDWC9vc9OH {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #efefef;
}
.cid-rDWC9vc9OH .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rDWC9vc9OH .star1 .star-1 {
  fill: #ffffff;
}
.cid-rDWC9vc9OH .star1 .star-2,
.cid-rDWC9vc9OH .star1 .star-3,
.cid-rDWC9vc9OH .star1 .star-4,
.cid-rDWC9vc9OH .star1 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-rDWC9vc9OH .star2 .star-1,
.cid-rDWC9vc9OH .star2 .star-2 {
  fill: #ffffff;
}
.cid-rDWC9vc9OH .star2 .star-3,
.cid-rDWC9vc9OH .star2 .star-4,
.cid-rDWC9vc9OH .star2 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-rDWC9vc9OH .star3 .star-1,
.cid-rDWC9vc9OH .star3 .star-2,
.cid-rDWC9vc9OH .star3 .star-3 {
  fill: #ffffff;
}
.cid-rDWC9vc9OH .star3 .star-4,
.cid-rDWC9vc9OH .star3 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-rDWC9vc9OH .star4 .star-1,
.cid-rDWC9vc9OH .star4 .star-2,
.cid-rDWC9vc9OH .star4 .star-3,
.cid-rDWC9vc9OH .star4 .star-4 {
  fill: #ffffff;
}
.cid-rDWC9vc9OH .star4 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-rDWC9vc9OH .star5 .star-1,
.cid-rDWC9vc9OH .star5 .star-2,
.cid-rDWC9vc9OH .star5 .star-3,
.cid-rDWC9vc9OH .star5 .star-4,
.cid-rDWC9vc9OH .star5 .star-5 {
  fill: #ffffff;
}
.cid-rDWC9vc9OH .table {
  margin: 0;
}
.cid-rDWC9vc9OH .table .table-wrapper {
  padding: 2rem;
  background: #ffffff;
  position: relative;
}
.cid-rDWC9vc9OH .table .table-wrapper .table-head-wrapper {
  background: #c19b76;
  margin: -2rem;
  margin-bottom: 0 !important;
  padding: 2rem 1rem;
}
.cid-rDWC9vc9OH .table .table-wrapper .table-head-wrapper span {
  width: 100%;
  display: block;
}
.cid-rDWC9vc9OH .table .table-wrapper .table-purchase {
  padding-bottom: 2rem;
}
.cid-rDWC9vc9OH .table .table-wrapper .table-purchase .table-pricing {
  margin: 0;
  margin-top: .5rem !important;
}
.cid-rDWC9vc9OH .table .table-wrapper .list-group {
  list-style: none;
  padding: 2rem 0;
  padding-bottom: 0;
}
.cid-rDWC9vc9OH .table .table-wrapper .list-group li {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: .4rem;
}
.cid-rDWC9vc9OH .table .table-wrapper .list-group li .mbr-iconfont {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-rDWC9vc9OH .table .table-wrapper .list-group li .items-text {
  width: 100%;
}
.cid-rDWC9vc9OH .table .table-wrapper .mbr-section-btn {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rDWC9vc9OH .table:not(.last-table) {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-rDWC9vc9OH .table.first-row-table {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-rDWC9vc9OH .table {
    margin-bottom: 0;
  }
}
.cid-rDWC9vc9OH .mbr-section-subtitle,
.cid-rDWC9vc9OH .underline {
  color: #000000;
}
.cid-rDWC9vc9OH .main-title {
  color: #232323;
}
.cid-rDWC9ybqyu {
  padding-top: 75px;
  padding-bottom: 75px;
  z-index: 1;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-rDWC9ybqyu .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rDWC9ybqyu .mbr-text {
  margin: 0;
}
.cid-rDWC9ybqyu .check-in-input,
.cid-rDWC9ybqyu .check-out-input,
.cid-rDWC9ybqyu .guests .date-col span {
  cursor: pointer;
}
.cid-rDWC9ybqyu .content-wrap {
  display: -webkit-flex;
  justify-content: center;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-flex-wrap: wrap;
}
.cid-rDWC9ybqyu .content-wrap .first-item,
.cid-rDWC9ybqyu .content-wrap .second-item {
  padding: 1.5rem;
}
.cid-rDWC9ybqyu .content-wrap .first-item {
  background: #c19b76;
}
.cid-rDWC9ybqyu .content-wrap .first-item .item-text {
  text-align: center;
}
.cid-rDWC9ybqyu .content-wrap .first-item .item-btn .btn {
  margin-left: 4px !important;
}
.cid-rDWC9ybqyu .content-wrap .second-item {
  background: #333333;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rDWC9ybqyu .content-wrap .second-item .check-text {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1rem 0;
}
.cid-rDWC9ybqyu .content-wrap .second-item .check-out {
  border-top: 2px solid #000000;
}
.cid-rDWC9ybqyu .input-wrap {
  background: #fcfcfc;
}
.cid-rDWC9ybqyu .booking-datepicker {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  border-radius: 0;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap input:focus {
  box-shadow: none;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .mbr-section-btn {
  display: flex;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
  width: 100%;
}
.cid-rDWC9ybqyu .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  width: 100%;
  margin: 0;
  line-height: 18px;
  font-weight: 300;
}
.cid-rDWC9ybqyu .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rDWC9ybqyu .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rDWC9ybqyu .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rDWC9ybqyu .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rDWC9ybqyu .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rDWC9ybqyu .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rDWC9ybqyu .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rDWC9ybqyu .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rDWC9ybqyu .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rDWC9ybqyu .email input {
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .cid-rDWC9ybqyu .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 991px) {
  .cid-rDWC9ybqyu .booking-datepicker {
    padding-top: 2rem;
  }
}
@media (max-width: 575px) {
  .cid-rDWC9ybqyu .datepicker {
    left: 10% !important;
  }
}
.cid-rDWC9CRd6D.popup-builder {
  background-color: #ffffff;
}
.cid-rDWC9CRd6D.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rDWC9CRd6D.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rDWC9CRd6D .modal-content,
.cid-rDWC9CRd6D .modal-dialog {
  height: auto;
}
.cid-rDWC9CRd6D .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rDWC9CRd6D .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rDWC9CRd6D .form-wrapper .mbr-form .form-group,
  .cid-rDWC9CRd6D .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rDWC9CRd6D .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rDWC9CRd6D .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rDWC9CRd6D .mbr-text {
  text-align: center;
}
.cid-rDWC9CRd6D .pt-0 {
  padding-top: 0 !important;
}
.cid-rDWC9CRd6D .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rDWC9CRd6D .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rDWC9CRd6D .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rDWC9CRd6D .modal-open {
  overflow: hidden;
}
.cid-rDWC9CRd6D .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rDWC9CRd6D .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rDWC9CRd6D .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rDWC9CRd6D .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rDWC9CRd6D .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rDWC9CRd6D .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rDWC9CRd6D .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rDWC9CRd6D .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rDWC9CRd6D .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rDWC9CRd6D .modal-backdrop.fade {
  opacity: 0;
}
.cid-rDWC9CRd6D .modal-backdrop.show {
  opacity: .5;
}
.cid-rDWC9CRd6D .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rDWC9CRd6D .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rDWC9CRd6D .modal-header .close:hover {
  opacity: 1;
}
.cid-rDWC9CRd6D .modal-header .close:focus {
  outline: none;
}
.cid-rDWC9CRd6D .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rDWC9CRd6D .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rDWC9CRd6D .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rDWC9CRd6D .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rDWC9CRd6D .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rDWC9CRd6D .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rDWC9CRd6D .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rDWC9CRd6D .modal-sm {
    max-width: 300px;
  }
  .cid-rDWC9CRd6D .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rDWC9CRd6D .modal-lg,
  .cid-rDWC9CRd6D .modal-xl {
    max-width: 800px;
  }
  .cid-rDWC9CRd6D .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rDWC9CRd6D .modal-xl {
    max-width: 1140px;
  }
  .cid-rDWC9CRd6D .container {
    max-width: 1140px;
  }
}
.cid-rDWC9CRd6D .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rDWC9CRd6D .container {
    max-width: 720px;
  }
}
.cid-rDWC9CRd6D .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rDWC9CRd6D .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rDWC9CRd6D .form-group {
  margin-bottom: 1rem;
}
.cid-rDWC9CRd6D .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rDWC9CRd6D .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rDWC9CRd6D .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-s5gRm6yWRb {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-s5gRm6yWRb .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-s5gRm6yWRb .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-s5gRm6yWRb .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s5gRm6yWRb .card-box {
  background: #a3c6d2;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-s5gRm6yWRb .link {
  letter-spacing: 2px;
}
.cid-s5gRm6yWRb .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-s5gRm6yWRb .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s5gRm6yWRb .card {
    padding-bottom: 2rem;
  }
}
.cid-s5gRm6yWRb .card-text,
.cid-s5gRm6yWRb .link {
  color: #ffffff;
}
.cid-s5gUgH6N5Y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-s5gUgH6N5Y .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-s5gUgH6N5Y .card {
  height: 100%;
}
.cid-s5gUgH6N5Y .card .card-wrapper {
  height: 100%;
}
.cid-s5gUgH6N5Y .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-s5gUgH6N5Y .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-s5gUgH6N5Y .card .card-box .card-title {
  margin: 0;
}
.cid-s5gUgH6N5Y .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s5gUgH6N5Y .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-s5gUgH6N5Y .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-s5gUgH6N5Y .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-s5gUgH6N5Y .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s5gUgH6N5Y .card .card-footer .icons-list {
  margin: 0;
}
.cid-s5gUgH6N5Y .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-s5gUgH6N5Y .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-s5gUgH6N5Y .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-s5gUgH6N5Y .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-s5gUgH6N5Y .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-s5gUgH6N5Y .card-footer {
  border-top: 1px solid #efefef;
}
@media (max-width: 767px) {
  .cid-s5gUgH6N5Y .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-s5gUgH6N5Y .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-s5gIphlwgs .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-s5gIphlwgs .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-s5gIphlwgs a {
  font-style: normal;
}
.cid-s5gIphlwgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s5gIphlwgs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s5gIphlwgs .nav-item:focus,
.cid-s5gIphlwgs .nav-link:focus {
  outline: none;
}
.cid-s5gIphlwgs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s5gIphlwgs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s5gIphlwgs .menu-logo {
  margin-right: auto;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s5gIphlwgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s5gIphlwgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s5gIphlwgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s5gIphlwgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s5gIphlwgs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s5gIphlwgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s5gIphlwgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s5gIphlwgs button.navbar-toggler:focus {
  outline: none;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s5gIphlwgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s5gIphlwgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s5gIphlwgs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .btn {
  display: flex;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s5gIphlwgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s5gIphlwgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s5gIphlwgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-s5gIphlwgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s5gIphlwgs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s5gIphlwgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s5gIphlwgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s5gIphlwgs.navbar-expand {
    flex-direction: column;
  }
  .cid-s5gIphlwgs img {
    height: 3.8rem !important;
  }
  .cid-s5gIphlwgs .btn {
    display: flex;
  }
  .cid-s5gIphlwgs button.navbar-toggler {
    display: block;
  }
  .cid-s5gIphlwgs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s5gIphlwgs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s5gIphlwgs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing,
  .cid-s5gIphlwgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s5gIphlwgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s5gIphlwgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s5gIphlwgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s5gIphlwgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s5gIphlwgs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s5gIphlwgs .navbar-collapse {
  flex-basis: auto;
}
.cid-s5gIphlwgs .nav-link:hover,
.cid-s5gIphlwgs .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-rghbyPhDE1 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1920x1373.jpg");
}
.cid-rghbyPhDE1 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rghbyPhDE1 .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-rghbyPhDE1 .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-rghbyPhDE1 .form1 .input-wrap {
  margin-bottom: 1rem;
}
.cid-rghbyPhDE1 .form1 .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-rghbyPhDE1 .form1 .input-group-btn {
  width: 100%;
}
.cid-rghbyPhDE1 .form1 .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-rghbyPhDE1 .form1 .form-label-outside {
  color: #333333;
}
@media (max-width: 767px) {
  .cid-rghbyPhDE1 .form1 {
    padding: 1.5rem;
  }
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-sxLIS0c54t .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sxLIS0c54t .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-sxLIS0c54t a {
  font-style: normal;
}
.cid-sxLIS0c54t .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sxLIS0c54t .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sxLIS0c54t .nav-item:focus,
.cid-sxLIS0c54t .nav-link:focus {
  outline: none;
}
.cid-sxLIS0c54t .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sxLIS0c54t .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sxLIS0c54t .menu-logo {
  margin-right: auto;
}
.cid-sxLIS0c54t .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sxLIS0c54t .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sxLIS0c54t .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sxLIS0c54t .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sxLIS0c54t .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sxLIS0c54t .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sxLIS0c54t .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sxLIS0c54t .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sxLIS0c54t .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxLIS0c54t .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sxLIS0c54t .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sxLIS0c54t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sxLIS0c54t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxLIS0c54t .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sxLIS0c54t .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxLIS0c54t .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sxLIS0c54t .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sxLIS0c54t .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sxLIS0c54t .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sxLIS0c54t .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sxLIS0c54t .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sxLIS0c54t .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sxLIS0c54t button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sxLIS0c54t button.navbar-toggler:focus {
  outline: none;
}
.cid-sxLIS0c54t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sxLIS0c54t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sxLIS0c54t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sxLIS0c54t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sxLIS0c54t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sxLIS0c54t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxLIS0c54t nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sxLIS0c54t nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sxLIS0c54t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sxLIS0c54t .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sxLIS0c54t .collapsed .btn {
  display: flex;
}
.cid-sxLIS0c54t .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sxLIS0c54t .collapsed .navbar-collapse.collapsing,
.cid-sxLIS0c54t .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sxLIS0c54t .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sxLIS0c54t .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sxLIS0c54t .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sxLIS0c54t .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sxLIS0c54t .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sxLIS0c54t .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sxLIS0c54t .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sxLIS0c54t .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sxLIS0c54t .collapsed button.navbar-toggler {
  display: block;
}
.cid-sxLIS0c54t .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sxLIS0c54t .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sxLIS0c54t .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sxLIS0c54t .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sxLIS0c54t .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sxLIS0c54t .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sxLIS0c54t.navbar-expand {
    flex-direction: column;
  }
  .cid-sxLIS0c54t img {
    height: 3.8rem !important;
  }
  .cid-sxLIS0c54t .btn {
    display: flex;
  }
  .cid-sxLIS0c54t button.navbar-toggler {
    display: block;
  }
  .cid-sxLIS0c54t .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sxLIS0c54t .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sxLIS0c54t .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sxLIS0c54t .navbar-collapse.collapsing,
  .cid-sxLIS0c54t .navbar-collapse.show {
    display: block !important;
  }
  .cid-sxLIS0c54t .navbar-collapse.collapsing .navbar-nav,
  .cid-sxLIS0c54t .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sxLIS0c54t .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sxLIS0c54t .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sxLIS0c54t .navbar-collapse.collapsing .navbar-buttons,
  .cid-sxLIS0c54t .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sxLIS0c54t .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sxLIS0c54t .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sxLIS0c54t .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sxLIS0c54t .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sxLIS0c54t .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sxLIS0c54t .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sxLIS0c54t .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sxLIS0c54t .navbar-collapse {
  flex-basis: auto;
}
.cid-sxLIS0c54t .nav-link:hover,
.cid-sxLIS0c54t .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-sxLIRDdXC6 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-sxLIRDdXC6 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sxLIRDdXC6 .main-head {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sxLIRDdXC6 .first-table {
  margin: 0;
}
.cid-sxLIRDdXC6 .first-table.two-items {
  margin-right: 15px;
}
.cid-sxLIRDdXC6 .first-table .table-head-wrapper {
  background: #c0d9ca;
}
.cid-sxLIRDdXC6 .second-table {
  margin: 0;
  margin-left: 15px;
}
.cid-sxLIRDdXC6 .second-table .table-head-wrapper {
  background: #c64935;
}
.cid-sxLIRDdXC6 .table {
  padding: 2rem;
  background: #fcfcfc;
  position: relative;
}
.cid-sxLIRDdXC6 .table .table-wrapper .table-head-wrapper {
  margin: -2rem;
  margin-bottom: 0 !important;
  padding: 2rem;
  padding-bottom: 0 !important;
}
.cid-sxLIRDdXC6 .table .table-wrapper .table-head-wrapper span {
  width: 100%;
  display: block;
}
.cid-sxLIRDdXC6 .table .table-wrapper .table-purchase {
  padding-bottom: 2rem;
}
.cid-sxLIRDdXC6 .table .table-wrapper .table-purchase .table-pricing {
  margin: 0;
  margin-top: .5rem !important;
}
.cid-sxLIRDdXC6 .table .table-wrapper .list-group {
  padding-top: 2rem;
  list-style: none;
}
.cid-sxLIRDdXC6 .table .table-wrapper .list-group li {
  padding: .4rem;
  border-bottom: 1px solid #efefef;
}
.cid-sxLIRDdXC6 .table .table-wrapper .list-group li .mbr-iconfont {
  font-size: 30px;
}
@media (max-width: 767px) {
  .cid-sxLIRDdXC6 .first-table,
  .cid-sxLIRDdXC6 .second-table {
    margin: 0 15px;
  }
  .cid-sxLIRDdXC6 .first-table {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sxLIRDdXC6 .items-row {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-sxLIRDdXC6 .first-table,
  .cid-sxLIRDdXC6 .second-table {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .cid-sxLIRDdXC6 .main-head {
    padding-bottom: 2rem;
  }
}
.cid-sxLIRDdXC6 .main-title {
  color: #9f2b19;
}
.cid-sxLIRDdXC6 .main-text,
.cid-sxLIRDdXC6 .main-btn {
  color: #000000;
}
.cid-sxLIRDdXC6 .mbr-section-subtitle,
.cid-sxLIRDdXC6 .underline {
  color: #000000;
}
.cid-sxLIRDdXC6 UL {
  color: #3f855b;
}
.cid-sxLIRFUhVp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/02.jpg");
}
.cid-sxLIRFUhVp .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sxLIRFUhVp .mbr-iconfont {
  font-size: 80px;
}
.cid-sxLIRFUhVp H3 {
  color: #000000;
}
.cid-sxLIRFUhVp H4 {
  color: #000000;
}
.cid-sxLIRIXCuv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sxLIRIXCuv .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sxLIRIXCuv .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-sxLIRIXCuv .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sxLIRIXCuv .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sxLIRIXCuv .link {
  letter-spacing: 2px;
}
.cid-sxLIRIXCuv .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-sxLIRIXCuv .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sxLIRIXCuv .card {
    padding-bottom: 2rem;
  }
}
.cid-sxLIRLyzrS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sxLIRLyzrS .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sxLIRLyzrS .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-sxLIRLyzrS .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sxLIRLyzrS .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sxLIRLyzrS .link {
  letter-spacing: 2px;
}
.cid-sxLIRLyzrS .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-sxLIRLyzrS .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sxLIRLyzrS .card {
    padding-bottom: 2rem;
  }
}
.cid-sxLIRLyzrS .link B {
  color: #c64935;
}
.cid-sxLIRPqj1s {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sxLIRPqj1s .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sxLIRPqj1s .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-sxLIRPqj1s .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sxLIRPqj1s .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sxLIRPqj1s .link {
  letter-spacing: 2px;
}
.cid-sxLIRPqj1s .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-sxLIRPqj1s .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sxLIRPqj1s .card {
    padding-bottom: 2rem;
  }
}
.cid-sxLIRPqj1s .link B {
  color: #c64935;
}
.cid-sxLIRT6rUL {
  padding-top: 75px;
  padding-bottom: 75px;
  z-index: 1;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-sxLIRT6rUL .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sxLIRT6rUL .mbr-text {
  margin: 0;
}
.cid-sxLIRT6rUL .check-in-input,
.cid-sxLIRT6rUL .check-out-input,
.cid-sxLIRT6rUL .guests .date-col span {
  cursor: pointer;
}
.cid-sxLIRT6rUL .content-wrap {
  display: -webkit-flex;
  justify-content: center;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-flex-wrap: wrap;
}
.cid-sxLIRT6rUL .content-wrap .first-item,
.cid-sxLIRT6rUL .content-wrap .second-item {
  padding: 1.5rem;
}
.cid-sxLIRT6rUL .content-wrap .first-item {
  background: #c19b76;
}
.cid-sxLIRT6rUL .content-wrap .first-item .item-text {
  text-align: center;
}
.cid-sxLIRT6rUL .content-wrap .first-item .item-btn .btn {
  margin-left: 4px !important;
}
.cid-sxLIRT6rUL .content-wrap .second-item {
  background: #333333;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sxLIRT6rUL .content-wrap .second-item .check-text {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1rem 0;
}
.cid-sxLIRT6rUL .content-wrap .second-item .check-out {
  border-top: 2px solid #000000;
}
.cid-sxLIRT6rUL .input-wrap {
  background: #fcfcfc;
}
.cid-sxLIRT6rUL .booking-datepicker {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  border-radius: 0;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap input:focus {
  box-shadow: none;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .mbr-section-btn {
  display: flex;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
  width: 100%;
}
.cid-sxLIRT6rUL .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  width: 100%;
  margin: 0;
  line-height: 18px;
  font-weight: 300;
}
.cid-sxLIRT6rUL .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-sxLIRT6rUL .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-sxLIRT6rUL .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-sxLIRT6rUL .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-sxLIRT6rUL .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sxLIRT6rUL .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-sxLIRT6rUL .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-sxLIRT6rUL .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-sxLIRT6rUL .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-sxLIRT6rUL .email input {
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .cid-sxLIRT6rUL .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 991px) {
  .cid-sxLIRT6rUL .booking-datepicker {
    padding-top: 2rem;
  }
}
@media (max-width: 575px) {
  .cid-sxLIRT6rUL .datepicker {
    left: 10% !important;
  }
}
.cid-sxLIRYam1w.popup-builder {
  background-color: #ffffff;
}
.cid-sxLIRYam1w.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxLIRYam1w.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxLIRYam1w .modal-content,
.cid-sxLIRYam1w .modal-dialog {
  height: auto;
}
.cid-sxLIRYam1w .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxLIRYam1w .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxLIRYam1w .form-wrapper .mbr-form .form-group,
  .cid-sxLIRYam1w .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxLIRYam1w .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxLIRYam1w .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxLIRYam1w .mbr-text {
  text-align: center;
}
.cid-sxLIRYam1w .pt-0 {
  padding-top: 0 !important;
}
.cid-sxLIRYam1w .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxLIRYam1w .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxLIRYam1w .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxLIRYam1w .modal-open {
  overflow: hidden;
}
.cid-sxLIRYam1w .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxLIRYam1w .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxLIRYam1w .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxLIRYam1w .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxLIRYam1w .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxLIRYam1w .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxLIRYam1w .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxLIRYam1w .modal-content {
  background: #fcefe3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxLIRYam1w .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxLIRYam1w .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxLIRYam1w .modal-backdrop.show {
  opacity: .5;
}
.cid-sxLIRYam1w .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxLIRYam1w .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxLIRYam1w .modal-header .close:hover {
  opacity: 1;
}
.cid-sxLIRYam1w .modal-header .close:focus {
  outline: none;
}
.cid-sxLIRYam1w .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sxLIRYam1w .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxLIRYam1w .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxLIRYam1w .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxLIRYam1w .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxLIRYam1w .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxLIRYam1w .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxLIRYam1w .modal-sm {
    max-width: 300px;
  }
  .cid-sxLIRYam1w .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxLIRYam1w .modal-lg,
  .cid-sxLIRYam1w .modal-xl {
    max-width: 800px;
  }
  .cid-sxLIRYam1w .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxLIRYam1w .modal-xl {
    max-width: 1140px;
  }
  .cid-sxLIRYam1w .container {
    max-width: 1140px;
  }
}
.cid-sxLIRYam1w .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxLIRYam1w .container {
    max-width: 720px;
  }
}
.cid-sxLIRYam1w .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxLIRYam1w .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxLIRYam1w .form-group {
  margin-bottom: 1rem;
}
.cid-sxLIRYam1w .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxLIRYam1w .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxLIRYam1w .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sxLIS3wqkW.popup-builder {
  background-color: #ffffff;
}
.cid-sxLIS3wqkW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxLIS3wqkW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxLIS3wqkW .modal-content,
.cid-sxLIS3wqkW .modal-dialog {
  height: auto;
}
.cid-sxLIS3wqkW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxLIS3wqkW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxLIS3wqkW .form-wrapper .mbr-form .form-group,
  .cid-sxLIS3wqkW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxLIS3wqkW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxLIS3wqkW .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxLIS3wqkW .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sxLIS3wqkW .pt-0 {
  padding-top: 0 !important;
}
.cid-sxLIS3wqkW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxLIS3wqkW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxLIS3wqkW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxLIS3wqkW .modal-open {
  overflow: hidden;
}
.cid-sxLIS3wqkW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxLIS3wqkW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxLIS3wqkW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxLIS3wqkW .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxLIS3wqkW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxLIS3wqkW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxLIS3wqkW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxLIS3wqkW .modal-content {
  background: #a3c6d2;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxLIS3wqkW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxLIS3wqkW .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxLIS3wqkW .modal-backdrop.show {
  opacity: .5;
}
.cid-sxLIS3wqkW .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxLIS3wqkW .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxLIS3wqkW .modal-header .close:hover {
  opacity: 1;
}
.cid-sxLIS3wqkW .modal-header .close:focus {
  outline: none;
}
.cid-sxLIS3wqkW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-sxLIS3wqkW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxLIS3wqkW .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxLIS3wqkW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxLIS3wqkW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxLIS3wqkW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxLIS3wqkW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxLIS3wqkW .modal-sm {
    max-width: 300px;
  }
  .cid-sxLIS3wqkW .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxLIS3wqkW .modal-lg,
  .cid-sxLIS3wqkW .modal-xl {
    max-width: 800px;
  }
  .cid-sxLIS3wqkW .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxLIS3wqkW .modal-xl {
    max-width: 1140px;
  }
  .cid-sxLIS3wqkW .container {
    max-width: 1140px;
  }
}
.cid-sxLIS3wqkW .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxLIS3wqkW .container {
    max-width: 720px;
  }
}
.cid-sxLIS3wqkW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxLIS3wqkW .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxLIS3wqkW .form-group {
  margin-bottom: 1rem;
}
.cid-sxLIS3wqkW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxLIS3wqkW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxLIS3wqkW .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sxLIS5TIwV.popup-builder {
  background-color: #ffffff;
}
.cid-sxLIS5TIwV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sxLIS5TIwV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sxLIS5TIwV .modal-content,
.cid-sxLIS5TIwV .modal-dialog {
  height: auto;
}
.cid-sxLIS5TIwV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sxLIS5TIwV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sxLIS5TIwV .form-wrapper .mbr-form .form-group,
  .cid-sxLIS5TIwV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sxLIS5TIwV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sxLIS5TIwV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sxLIS5TIwV .mbr-text {
  text-align: center;
}
.cid-sxLIS5TIwV .pt-0 {
  padding-top: 0 !important;
}
.cid-sxLIS5TIwV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sxLIS5TIwV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sxLIS5TIwV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sxLIS5TIwV .modal-open {
  overflow: hidden;
}
.cid-sxLIS5TIwV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sxLIS5TIwV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sxLIS5TIwV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sxLIS5TIwV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sxLIS5TIwV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sxLIS5TIwV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sxLIS5TIwV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sxLIS5TIwV .modal-content {
  background: #67a27e;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sxLIS5TIwV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sxLIS5TIwV .modal-backdrop.fade {
  opacity: 0;
}
.cid-sxLIS5TIwV .modal-backdrop.show {
  opacity: .5;
}
.cid-sxLIS5TIwV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sxLIS5TIwV .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sxLIS5TIwV .modal-header .close:hover {
  opacity: 1;
}
.cid-sxLIS5TIwV .modal-header .close:focus {
  outline: none;
}
.cid-sxLIS5TIwV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sxLIS5TIwV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sxLIS5TIwV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sxLIS5TIwV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sxLIS5TIwV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sxLIS5TIwV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sxLIS5TIwV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sxLIS5TIwV .modal-sm {
    max-width: 300px;
  }
  .cid-sxLIS5TIwV .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sxLIS5TIwV .modal-lg,
  .cid-sxLIS5TIwV .modal-xl {
    max-width: 800px;
  }
  .cid-sxLIS5TIwV .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sxLIS5TIwV .modal-xl {
    max-width: 1140px;
  }
  .cid-sxLIS5TIwV .container {
    max-width: 1140px;
  }
}
.cid-sxLIS5TIwV .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sxLIS5TIwV .container {
    max-width: 720px;
  }
}
.cid-sxLIS5TIwV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sxLIS5TIwV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sxLIS5TIwV .form-group {
  margin-bottom: 1rem;
}
.cid-sxLIS5TIwV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sxLIS5TIwV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxLIS5TIwV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-sMiVtCu9iB .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sMiVtCu9iB .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-sMiVtCu9iB a {
  font-style: normal;
}
.cid-sMiVtCu9iB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sMiVtCu9iB .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sMiVtCu9iB .nav-item:focus,
.cid-sMiVtCu9iB .nav-link:focus {
  outline: none;
}
.cid-sMiVtCu9iB .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sMiVtCu9iB .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sMiVtCu9iB .menu-logo {
  margin-right: auto;
}
.cid-sMiVtCu9iB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sMiVtCu9iB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sMiVtCu9iB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sMiVtCu9iB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sMiVtCu9iB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sMiVtCu9iB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sMiVtCu9iB .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sMiVtCu9iB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sMiVtCu9iB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sMiVtCu9iB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sMiVtCu9iB .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sMiVtCu9iB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sMiVtCu9iB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMiVtCu9iB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sMiVtCu9iB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMiVtCu9iB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sMiVtCu9iB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sMiVtCu9iB .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sMiVtCu9iB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sMiVtCu9iB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sMiVtCu9iB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sMiVtCu9iB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sMiVtCu9iB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sMiVtCu9iB button.navbar-toggler:focus {
  outline: none;
}
.cid-sMiVtCu9iB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sMiVtCu9iB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sMiVtCu9iB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sMiVtCu9iB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sMiVtCu9iB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sMiVtCu9iB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sMiVtCu9iB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sMiVtCu9iB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sMiVtCu9iB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sMiVtCu9iB .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sMiVtCu9iB .collapsed .btn {
  display: flex;
}
.cid-sMiVtCu9iB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sMiVtCu9iB .collapsed .navbar-collapse.collapsing,
.cid-sMiVtCu9iB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sMiVtCu9iB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sMiVtCu9iB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sMiVtCu9iB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sMiVtCu9iB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sMiVtCu9iB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sMiVtCu9iB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sMiVtCu9iB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sMiVtCu9iB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sMiVtCu9iB .collapsed button.navbar-toggler {
  display: block;
}
.cid-sMiVtCu9iB .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sMiVtCu9iB .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sMiVtCu9iB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sMiVtCu9iB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sMiVtCu9iB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sMiVtCu9iB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sMiVtCu9iB.navbar-expand {
    flex-direction: column;
  }
  .cid-sMiVtCu9iB img {
    height: 3.8rem !important;
  }
  .cid-sMiVtCu9iB .btn {
    display: flex;
  }
  .cid-sMiVtCu9iB button.navbar-toggler {
    display: block;
  }
  .cid-sMiVtCu9iB .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sMiVtCu9iB .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sMiVtCu9iB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sMiVtCu9iB .navbar-collapse.collapsing,
  .cid-sMiVtCu9iB .navbar-collapse.show {
    display: block !important;
  }
  .cid-sMiVtCu9iB .navbar-collapse.collapsing .navbar-nav,
  .cid-sMiVtCu9iB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sMiVtCu9iB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sMiVtCu9iB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sMiVtCu9iB .navbar-collapse.collapsing .navbar-buttons,
  .cid-sMiVtCu9iB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sMiVtCu9iB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sMiVtCu9iB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sMiVtCu9iB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sMiVtCu9iB .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sMiVtCu9iB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sMiVtCu9iB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sMiVtCu9iB .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sMiVtCu9iB .navbar-collapse {
  flex-basis: auto;
}
.cid-sMiVtCu9iB .nav-link:hover,
.cid-sMiVtCu9iB .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-sMiWZ5dS00 {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #e0f7e9;
}
.cid-sMiWZ5dS00 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sMiWZ5dS00 .row {
  background-color: #ff9a8a;
}
.cid-sMiWZ5dS00 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
}
.cid-sMiWZ5dS00 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sMiWZ5dS00 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sMiWZ5dS00 .text-element {
  padding: 4rem 1rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMiWZ5dS00 .text-element .mbr-text {
  padding: 3rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sMiWZ5dS00 .image-element {
    padding: 0 15px;
  }
  .cid-sMiWZ5dS00 .text-element {
    padding: 2rem 1rem;
  }
  .cid-sMiWZ5dS00 .text-element .mbr-text {
    padding: 1rem;
  }
}
.cid-sMj7XfUtTI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e0f7e9;
}
.cid-sMj1Gwe5Mi {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #e0f7e9;
}
.cid-sMj1Gwe5Mi .card {
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMj1Gwe5Mi .card .card-img {
  width: 20%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sMj1Gwe5Mi .card .card-box {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 80%;
  padding-left: 1rem;
}
.cid-sMj1Gwe5Mi .card .card-img span {
  color: #9f2b19;
  font-size: 60px;
}
.cid-sMj1Gwe5Mi .mbr-text {
  color: #878787;
}
@media (max-width: 767px) {
  .cid-sMj1Gwe5Mi .card {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sMj1Gwe5Mi .card .card-img {
    width: 100%;
    padding-bottom: 1.5rem;
  }
  .cid-sMj1Gwe5Mi .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-sMj1Gwe5Mi .card .card-box .card-title,
  .cid-sMj1Gwe5Mi .card .card-box .mbr-text,
  .cid-sMj1Gwe5Mi .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-sMj1Gwe5Mi .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-sMj1Gwe5Mi .card .card-img {
    text-align: right !important;
  }
}
.cid-sMiZVMcjP4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e0f7e9;
}
.cid-sMiZVMcjP4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sMiZVMcjP4 .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-sMiZVMcjP4 .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sMiZVMcjP4 .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sMiZVMcjP4 .link {
  letter-spacing: 2px;
}
.cid-sMiZVMcjP4 .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-sMiZVMcjP4 .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sMiZVMcjP4 .card {
    padding-bottom: 2rem;
  }
}
.cid-sMiWFfrXBn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c0d9ca;
}
.cid-sMiWFfrXBn blockquote {
  border-color: #c19b76 !important;
}
.cid-sMiWFfrXBn DIV {
  color: #9f2b19;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-sv0oJVCeEk .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sv0oJVCeEk .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-sv0oJVCeEk a {
  font-style: normal;
}
.cid-sv0oJVCeEk .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sv0oJVCeEk .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sv0oJVCeEk .nav-item:focus,
.cid-sv0oJVCeEk .nav-link:focus {
  outline: none;
}
.cid-sv0oJVCeEk .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sv0oJVCeEk .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sv0oJVCeEk .menu-logo {
  margin-right: auto;
}
.cid-sv0oJVCeEk .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sv0oJVCeEk .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sv0oJVCeEk .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sv0oJVCeEk .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sv0oJVCeEk .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sv0oJVCeEk .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sv0oJVCeEk .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sv0oJVCeEk .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sv0oJVCeEk .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sv0oJVCeEk .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sv0oJVCeEk .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sv0oJVCeEk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sv0oJVCeEk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sv0oJVCeEk .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sv0oJVCeEk .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sv0oJVCeEk .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sv0oJVCeEk .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sv0oJVCeEk .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sv0oJVCeEk .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sv0oJVCeEk .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sv0oJVCeEk .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sv0oJVCeEk .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sv0oJVCeEk button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sv0oJVCeEk button.navbar-toggler:focus {
  outline: none;
}
.cid-sv0oJVCeEk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sv0oJVCeEk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sv0oJVCeEk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sv0oJVCeEk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sv0oJVCeEk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sv0oJVCeEk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv0oJVCeEk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sv0oJVCeEk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sv0oJVCeEk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv0oJVCeEk .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sv0oJVCeEk .collapsed .btn {
  display: flex;
}
.cid-sv0oJVCeEk .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sv0oJVCeEk .collapsed .navbar-collapse.collapsing,
.cid-sv0oJVCeEk .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sv0oJVCeEk .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sv0oJVCeEk .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sv0oJVCeEk .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sv0oJVCeEk .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sv0oJVCeEk .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sv0oJVCeEk .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sv0oJVCeEk .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sv0oJVCeEk .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sv0oJVCeEk .collapsed button.navbar-toggler {
  display: block;
}
.cid-sv0oJVCeEk .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sv0oJVCeEk .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sv0oJVCeEk .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sv0oJVCeEk .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sv0oJVCeEk .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sv0oJVCeEk .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sv0oJVCeEk.navbar-expand {
    flex-direction: column;
  }
  .cid-sv0oJVCeEk img {
    height: 3.8rem !important;
  }
  .cid-sv0oJVCeEk .btn {
    display: flex;
  }
  .cid-sv0oJVCeEk button.navbar-toggler {
    display: block;
  }
  .cid-sv0oJVCeEk .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sv0oJVCeEk .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sv0oJVCeEk .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sv0oJVCeEk .navbar-collapse.collapsing,
  .cid-sv0oJVCeEk .navbar-collapse.show {
    display: block !important;
  }
  .cid-sv0oJVCeEk .navbar-collapse.collapsing .navbar-nav,
  .cid-sv0oJVCeEk .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sv0oJVCeEk .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sv0oJVCeEk .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sv0oJVCeEk .navbar-collapse.collapsing .navbar-buttons,
  .cid-sv0oJVCeEk .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sv0oJVCeEk .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sv0oJVCeEk .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sv0oJVCeEk .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sv0oJVCeEk .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sv0oJVCeEk .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sv0oJVCeEk .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sv0oJVCeEk .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sv0oJVCeEk .navbar-collapse {
  flex-basis: auto;
}
.cid-sv0oJVCeEk .nav-link:hover,
.cid-sv0oJVCeEk .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-sxLWizpcfL {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-2-1920x1280-3-1920x1280.jpg");
}
.cid-sxLWizpcfL .card .card-img {
  overflow: hidden;
}
.cid-sxLWizpcfL .card .card-img img {
  transition: all 0.5s;
}
.cid-sxLWizpcfL .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sxLWizpcfL .underline .line {
  width: 2rem;
  height: 1px;
  background: #e2f706;
  display: inline-block;
}
.cid-sxLWizpcfL .card {
  display: block;
  height: 100%;
}
.cid-sxLWizpcfL .card .card-wrapper {
  height: 100%;
}
.cid-sxLWizpcfL .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-sxLWizpcfL .card .card-box {
  background: #a3c6d2;
  padding: 2rem;
}
.cid-sxLWizpcfL .card .card-box .card-title {
  margin: 0;
}
.cid-sxLWizpcfL .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sxLWizpcfL .card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-sxLWizpcfL .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-sxLWizpcfL .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-sxLWizpcfL .card .card-footer {
  background: #a3c6d2;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sxLWizpcfL .card .card-footer .icons-list {
  margin: 0;
}
.cid-sxLWizpcfL .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-sxLWizpcfL .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-sxLWizpcfL .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-sxLWizpcfL .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-sxLWizpcfL .card-footer {
  border: none;
}
.cid-sxLWizpcfL .mbri-arrow-next {
  color: #709faf;
}
@media (max-width: 767px) {
  .cid-sxLWizpcfL .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sxLWizpcfL .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-sxLWizpcfL .main-title {
  color: #9f2b19;
}
.cid-sxLWizpcfL .main-subtitle,
.cid-sxLWizpcfL .underline {
  color: #000000;
}
.cid-sv0oJtlspE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/02.jpg");
}
.cid-sv0oJtlspE .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sv0oJtlspE .mbr-iconfont {
  font-size: 80px;
}
.cid-sv0oJtlspE H3 {
  color: #000000;
}
.cid-sv0oJtlspE H4 {
  color: #000000;
}
.cid-sv0oJwBoI4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sv0oJwBoI4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sv0oJwBoI4 .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-sv0oJwBoI4 .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sv0oJwBoI4 .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sv0oJwBoI4 .link {
  letter-spacing: 2px;
}
.cid-sv0oJwBoI4 .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-sv0oJwBoI4 .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sv0oJwBoI4 .card {
    padding-bottom: 2rem;
  }
}
.cid-sv0oJAhgH9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sv0oJAhgH9 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sv0oJAhgH9 .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-sv0oJAhgH9 .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sv0oJAhgH9 .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sv0oJAhgH9 .link {
  letter-spacing: 2px;
}
.cid-sv0oJAhgH9 .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-sv0oJAhgH9 .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sv0oJAhgH9 .card {
    padding-bottom: 2rem;
  }
}
.cid-sv0oJAhgH9 .link B {
  color: #c64935;
}
.cid-sv0oJF7qdH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sv0oJF7qdH .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sv0oJF7qdH .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-sv0oJF7qdH .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sv0oJF7qdH .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sv0oJF7qdH .link {
  letter-spacing: 2px;
}
.cid-sv0oJF7qdH .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-sv0oJF7qdH .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sv0oJF7qdH .card {
    padding-bottom: 2rem;
  }
}
.cid-sv0oJF7qdH .link B {
  color: #c64935;
}
.cid-sv0oJKoCFm {
  padding-top: 75px;
  padding-bottom: 75px;
  z-index: 1;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-sv0oJKoCFm .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sv0oJKoCFm .mbr-text {
  margin: 0;
}
.cid-sv0oJKoCFm .check-in-input,
.cid-sv0oJKoCFm .check-out-input,
.cid-sv0oJKoCFm .guests .date-col span {
  cursor: pointer;
}
.cid-sv0oJKoCFm .content-wrap {
  display: -webkit-flex;
  justify-content: center;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-flex-wrap: wrap;
}
.cid-sv0oJKoCFm .content-wrap .first-item,
.cid-sv0oJKoCFm .content-wrap .second-item {
  padding: 1.5rem;
}
.cid-sv0oJKoCFm .content-wrap .first-item {
  background: #c19b76;
}
.cid-sv0oJKoCFm .content-wrap .first-item .item-text {
  text-align: center;
}
.cid-sv0oJKoCFm .content-wrap .first-item .item-btn .btn {
  margin-left: 4px !important;
}
.cid-sv0oJKoCFm .content-wrap .second-item {
  background: #333333;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv0oJKoCFm .content-wrap .second-item .check-text {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1rem 0;
}
.cid-sv0oJKoCFm .content-wrap .second-item .check-out {
  border-top: 2px solid #000000;
}
.cid-sv0oJKoCFm .input-wrap {
  background: #fcfcfc;
}
.cid-sv0oJKoCFm .booking-datepicker {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  border-radius: 0;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap input:focus {
  box-shadow: none;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .mbr-section-btn {
  display: flex;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
  width: 100%;
}
.cid-sv0oJKoCFm .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  width: 100%;
  margin: 0;
  line-height: 18px;
  font-weight: 300;
}
.cid-sv0oJKoCFm .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-sv0oJKoCFm .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-sv0oJKoCFm .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-sv0oJKoCFm .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-sv0oJKoCFm .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sv0oJKoCFm .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-sv0oJKoCFm .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-sv0oJKoCFm .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-sv0oJKoCFm .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-sv0oJKoCFm .email input {
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .cid-sv0oJKoCFm .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 991px) {
  .cid-sv0oJKoCFm .booking-datepicker {
    padding-top: 2rem;
  }
}
@media (max-width: 575px) {
  .cid-sv0oJKoCFm .datepicker {
    left: 10% !important;
  }
}
.cid-sv0pXRHFO7.popup-builder {
  background-color: #ffffff;
}
.cid-sv0pXRHFO7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sv0pXRHFO7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sv0pXRHFO7 .modal-content,
.cid-sv0pXRHFO7 .modal-dialog {
  height: auto;
}
.cid-sv0pXRHFO7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sv0pXRHFO7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sv0pXRHFO7 .form-wrapper .mbr-form .form-group,
  .cid-sv0pXRHFO7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sv0pXRHFO7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sv0pXRHFO7 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sv0pXRHFO7 .mbr-text {
  text-align: center;
  color: #e2f706;
}
.cid-sv0pXRHFO7 .pt-0 {
  padding-top: 0 !important;
}
.cid-sv0pXRHFO7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sv0pXRHFO7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sv0pXRHFO7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sv0pXRHFO7 .modal-open {
  overflow: hidden;
}
.cid-sv0pXRHFO7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sv0pXRHFO7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sv0pXRHFO7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sv0pXRHFO7 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sv0pXRHFO7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sv0pXRHFO7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sv0pXRHFO7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sv0pXRHFO7 .modal-content {
  background: #67a27e;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sv0pXRHFO7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sv0pXRHFO7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sv0pXRHFO7 .modal-backdrop.show {
  opacity: .5;
}
.cid-sv0pXRHFO7 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sv0pXRHFO7 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sv0pXRHFO7 .modal-header .close:hover {
  opacity: 1;
}
.cid-sv0pXRHFO7 .modal-header .close:focus {
  outline: none;
}
.cid-sv0pXRHFO7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fcfcfc;
}
.cid-sv0pXRHFO7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sv0pXRHFO7 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sv0pXRHFO7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sv0pXRHFO7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sv0pXRHFO7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sv0pXRHFO7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sv0pXRHFO7 .modal-sm {
    max-width: 300px;
  }
  .cid-sv0pXRHFO7 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sv0pXRHFO7 .modal-lg,
  .cid-sv0pXRHFO7 .modal-xl {
    max-width: 800px;
  }
  .cid-sv0pXRHFO7 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sv0pXRHFO7 .modal-xl {
    max-width: 1140px;
  }
  .cid-sv0pXRHFO7 .container {
    max-width: 1140px;
  }
}
.cid-sv0pXRHFO7 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sv0pXRHFO7 .container {
    max-width: 720px;
  }
}
.cid-sv0pXRHFO7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sv0pXRHFO7 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sv0pXRHFO7 .form-group {
  margin-bottom: 1rem;
}
.cid-sv0pXRHFO7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sv0pXRHFO7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sv0pXRHFO7 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sv0oJStjHE.popup-builder {
  background-color: #ffffff;
}
.cid-sv0oJStjHE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sv0oJStjHE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sv0oJStjHE .modal-content,
.cid-sv0oJStjHE .modal-dialog {
  height: auto;
}
.cid-sv0oJStjHE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sv0oJStjHE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sv0oJStjHE .form-wrapper .mbr-form .form-group,
  .cid-sv0oJStjHE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sv0oJStjHE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sv0oJStjHE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sv0oJStjHE .mbr-text {
  text-align: center;
}
.cid-sv0oJStjHE .pt-0 {
  padding-top: 0 !important;
}
.cid-sv0oJStjHE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sv0oJStjHE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sv0oJStjHE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sv0oJStjHE .modal-open {
  overflow: hidden;
}
.cid-sv0oJStjHE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sv0oJStjHE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sv0oJStjHE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sv0oJStjHE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sv0oJStjHE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sv0oJStjHE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sv0oJStjHE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sv0oJStjHE .modal-content {
  background: #fcefe3;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sv0oJStjHE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sv0oJStjHE .modal-backdrop.fade {
  opacity: 0;
}
.cid-sv0oJStjHE .modal-backdrop.show {
  opacity: .5;
}
.cid-sv0oJStjHE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sv0oJStjHE .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sv0oJStjHE .modal-header .close:hover {
  opacity: 1;
}
.cid-sv0oJStjHE .modal-header .close:focus {
  outline: none;
}
.cid-sv0oJStjHE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sv0oJStjHE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sv0oJStjHE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sv0oJStjHE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sv0oJStjHE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sv0oJStjHE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sv0oJStjHE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sv0oJStjHE .modal-sm {
    max-width: 300px;
  }
  .cid-sv0oJStjHE .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sv0oJStjHE .modal-lg,
  .cid-sv0oJStjHE .modal-xl {
    max-width: 800px;
  }
  .cid-sv0oJStjHE .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sv0oJStjHE .modal-xl {
    max-width: 1140px;
  }
  .cid-sv0oJStjHE .container {
    max-width: 1140px;
  }
}
.cid-sv0oJStjHE .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sv0oJStjHE .container {
    max-width: 720px;
  }
}
.cid-sv0oJStjHE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sv0oJStjHE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sv0oJStjHE .form-group {
  margin-bottom: 1rem;
}
.cid-sv0oJStjHE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sv0oJStjHE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sv0oJStjHE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sv0oK0Pm7f.popup-builder {
  background-color: #ffffff;
}
.cid-sv0oK0Pm7f.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sv0oK0Pm7f.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sv0oK0Pm7f .modal-content,
.cid-sv0oK0Pm7f .modal-dialog {
  height: auto;
}
.cid-sv0oK0Pm7f .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sv0oK0Pm7f .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sv0oK0Pm7f .form-wrapper .mbr-form .form-group,
  .cid-sv0oK0Pm7f .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sv0oK0Pm7f .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sv0oK0Pm7f .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sv0oK0Pm7f .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sv0oK0Pm7f .pt-0 {
  padding-top: 0 !important;
}
.cid-sv0oK0Pm7f .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sv0oK0Pm7f .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sv0oK0Pm7f .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sv0oK0Pm7f .modal-open {
  overflow: hidden;
}
.cid-sv0oK0Pm7f .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sv0oK0Pm7f .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sv0oK0Pm7f .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sv0oK0Pm7f .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sv0oK0Pm7f .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sv0oK0Pm7f .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sv0oK0Pm7f .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sv0oK0Pm7f .modal-content {
  background: #a3c6d2;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sv0oK0Pm7f .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sv0oK0Pm7f .modal-backdrop.fade {
  opacity: 0;
}
.cid-sv0oK0Pm7f .modal-backdrop.show {
  opacity: .5;
}
.cid-sv0oK0Pm7f .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sv0oK0Pm7f .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sv0oK0Pm7f .modal-header .close:hover {
  opacity: 1;
}
.cid-sv0oK0Pm7f .modal-header .close:focus {
  outline: none;
}
.cid-sv0oK0Pm7f .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-sv0oK0Pm7f .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sv0oK0Pm7f .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sv0oK0Pm7f .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sv0oK0Pm7f .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sv0oK0Pm7f .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sv0oK0Pm7f .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sv0oK0Pm7f .modal-sm {
    max-width: 300px;
  }
  .cid-sv0oK0Pm7f .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sv0oK0Pm7f .modal-lg,
  .cid-sv0oK0Pm7f .modal-xl {
    max-width: 800px;
  }
  .cid-sv0oK0Pm7f .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sv0oK0Pm7f .modal-xl {
    max-width: 1140px;
  }
  .cid-sv0oK0Pm7f .container {
    max-width: 1140px;
  }
}
.cid-sv0oK0Pm7f .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sv0oK0Pm7f .container {
    max-width: 720px;
  }
}
.cid-sv0oK0Pm7f .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sv0oK0Pm7f .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sv0oK0Pm7f .form-group {
  margin-bottom: 1rem;
}
.cid-sv0oK0Pm7f .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sv0oK0Pm7f .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sv0oK0Pm7f .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sG8qTOeZjc.popup-builder {
  background-color: #ffffff;
}
.cid-sG8qTOeZjc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sG8qTOeZjc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sG8qTOeZjc .modal-content,
.cid-sG8qTOeZjc .modal-dialog {
  height: auto;
}
.cid-sG8qTOeZjc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sG8qTOeZjc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sG8qTOeZjc .form-wrapper .mbr-form .form-group,
  .cid-sG8qTOeZjc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sG8qTOeZjc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sG8qTOeZjc .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sG8qTOeZjc .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sG8qTOeZjc .pt-0 {
  padding-top: 0 !important;
}
.cid-sG8qTOeZjc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sG8qTOeZjc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sG8qTOeZjc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sG8qTOeZjc .modal-open {
  overflow: hidden;
}
.cid-sG8qTOeZjc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sG8qTOeZjc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sG8qTOeZjc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sG8qTOeZjc .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sG8qTOeZjc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sG8qTOeZjc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sG8qTOeZjc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sG8qTOeZjc .modal-content {
  background: #9f2b19;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sG8qTOeZjc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sG8qTOeZjc .modal-backdrop.fade {
  opacity: 0;
}
.cid-sG8qTOeZjc .modal-backdrop.show {
  opacity: .5;
}
.cid-sG8qTOeZjc .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sG8qTOeZjc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sG8qTOeZjc .modal-header {
    padding: 1rem;
  }
}
.cid-sG8qTOeZjc .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sG8qTOeZjc .modal-header .close:hover {
  opacity: 1;
}
.cid-sG8qTOeZjc .modal-header .close:focus {
  outline: none;
}
.cid-sG8qTOeZjc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-sG8qTOeZjc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sG8qTOeZjc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sG8qTOeZjc .modal-body {
    padding: 1rem;
  }
}
.cid-sG8qTOeZjc .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sG8qTOeZjc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sG8qTOeZjc .modal-footer {
    padding: 1rem;
  }
}
.cid-sG8qTOeZjc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sG8qTOeZjc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sG8qTOeZjc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sG8qTOeZjc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sG8qTOeZjc .modal-sm {
    max-width: 300px;
  }
  .cid-sG8qTOeZjc .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sG8qTOeZjc .modal-lg,
  .cid-sG8qTOeZjc .modal-xl {
    max-width: 800px;
  }
  .cid-sG8qTOeZjc .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sG8qTOeZjc .modal-xl {
    max-width: 1140px;
  }
  .cid-sG8qTOeZjc .container {
    max-width: 1140px;
  }
}
.cid-sG8qTOeZjc .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sG8qTOeZjc .container {
    max-width: 720px;
  }
}
.cid-sG8qTOeZjc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sG8qTOeZjc .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sG8qTOeZjc .form-group {
  margin-bottom: 1rem;
}
.cid-sG8qTOeZjc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sG8qTOeZjc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sG8qTOeZjc .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sG8qTOeZjc .mbr-section-btn {
  margin: 0;
}
.cid-sG8qTOeZjc .mbr-section-btn .btn {
  margin: 0;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-t7SqRcXb0M .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-t7SqRcXb0M .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-t7SqRcXb0M a {
  font-style: normal;
}
.cid-t7SqRcXb0M .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t7SqRcXb0M .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-t7SqRcXb0M .nav-item:focus,
.cid-t7SqRcXb0M .nav-link:focus {
  outline: none;
}
.cid-t7SqRcXb0M .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-t7SqRcXb0M .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t7SqRcXb0M .menu-logo {
  margin-right: auto;
}
.cid-t7SqRcXb0M .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-t7SqRcXb0M .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t7SqRcXb0M .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t7SqRcXb0M .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t7SqRcXb0M .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t7SqRcXb0M .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t7SqRcXb0M .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t7SqRcXb0M .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t7SqRcXb0M .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t7SqRcXb0M .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t7SqRcXb0M .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t7SqRcXb0M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t7SqRcXb0M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t7SqRcXb0M .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t7SqRcXb0M .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t7SqRcXb0M .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t7SqRcXb0M .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t7SqRcXb0M .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t7SqRcXb0M .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t7SqRcXb0M .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t7SqRcXb0M .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t7SqRcXb0M .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t7SqRcXb0M button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t7SqRcXb0M button.navbar-toggler:focus {
  outline: none;
}
.cid-t7SqRcXb0M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t7SqRcXb0M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t7SqRcXb0M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t7SqRcXb0M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t7SqRcXb0M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t7SqRcXb0M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t7SqRcXb0M nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t7SqRcXb0M nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t7SqRcXb0M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t7SqRcXb0M .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-t7SqRcXb0M .collapsed .btn {
  display: flex;
}
.cid-t7SqRcXb0M .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t7SqRcXb0M .collapsed .navbar-collapse.collapsing,
.cid-t7SqRcXb0M .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t7SqRcXb0M .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t7SqRcXb0M .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t7SqRcXb0M .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t7SqRcXb0M .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t7SqRcXb0M .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t7SqRcXb0M .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t7SqRcXb0M .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t7SqRcXb0M .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t7SqRcXb0M .collapsed button.navbar-toggler {
  display: block;
}
.cid-t7SqRcXb0M .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t7SqRcXb0M .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t7SqRcXb0M .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t7SqRcXb0M .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t7SqRcXb0M .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t7SqRcXb0M .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t7SqRcXb0M.navbar-expand {
    flex-direction: column;
  }
  .cid-t7SqRcXb0M img {
    height: 3.8rem !important;
  }
  .cid-t7SqRcXb0M .btn {
    display: flex;
  }
  .cid-t7SqRcXb0M button.navbar-toggler {
    display: block;
  }
  .cid-t7SqRcXb0M .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t7SqRcXb0M .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t7SqRcXb0M .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t7SqRcXb0M .navbar-collapse.collapsing,
  .cid-t7SqRcXb0M .navbar-collapse.show {
    display: block !important;
  }
  .cid-t7SqRcXb0M .navbar-collapse.collapsing .navbar-nav,
  .cid-t7SqRcXb0M .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t7SqRcXb0M .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t7SqRcXb0M .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t7SqRcXb0M .navbar-collapse.collapsing .navbar-buttons,
  .cid-t7SqRcXb0M .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t7SqRcXb0M .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t7SqRcXb0M .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t7SqRcXb0M .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t7SqRcXb0M .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t7SqRcXb0M .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t7SqRcXb0M .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t7SqRcXb0M .menu-logo {
    flex-shrink: 0;
  }
}
.cid-t7SqRcXb0M .navbar-collapse {
  flex-basis: auto;
}
.cid-t7SqRcXb0M .nav-link:hover,
.cid-t7SqRcXb0M .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-t7SrlZBDo1 {
  background-image: url("../../../assets/images/vendeglato1-1675x905.png");
}
.cid-t7SrlZBDo1 .row {
  border-radius: 25px;
  background: #efefef;
}
@media (max-width: 992px) {
  .cid-t7SrlZBDo1 .row {
    margin: 0 1rem;
  }
}
.cid-t7SrlZBDo1 .header-column1 {
  padding: 14% 22% 10% 8%;
}
@media (max-width: 992px) {
  .cid-t7SrlZBDo1 .header-column1 {
    padding: 10% 5% 10%;
  }
}
.cid-t7SrlZBDo1 .mbr-section-title {
  margin-bottom: 1.5rem;
  color: #6870d1;
}
.cid-t7SrlZBDo1 .mbr-section-subtitle {
  margin-bottom: 1.5rem;
  color: #9f2b19;
}
.cid-t7SrlZBDo1 .mbr-text {
  margin-bottom: 1.5rem;
  color: #3a3e5e;
}
.cid-t7SrlZBDo1 .mbr-section-btn {
  margin: 3rem 0 1.5rem 0;
}
.cid-t7SrlZBDo1 .mbr-section-btn .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.cid-t7SrlZBDo1 .mbr-section-btn .btn:first-child {
  margin-left: 0;
}
@media (max-width: 768px) {
  .cid-t7SrlZBDo1 .mbr-section-btn .btn {
    margin-left: 0;
  }
}
.cid-t7SrlZBDo1 .header-column2 {
  padding: 5% 0 0 0;
  background: #6870d1;
  position: relative;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
@media (max-width: 992px) {
  .cid-t7SrlZBDo1 .header-column2 {
    background: #efefef;
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
.cid-t7SrlZBDo1 .header-date {
  display: flex;
  background: #efefef;
  margin: 0 30% 3rem;
  padding: 5px 5px 5px 10px;
  align-items: center;
  border-radius: 5px;
}
@media (max-width: 992px) {
  .cid-t7SrlZBDo1 .header-date {
    display: none;
  }
}
.cid-t7SrlZBDo1 .header-date span {
  font-size: 1rem;
  color: #6870d1;
  margin: 0 !important;
}
.cid-t7SrlZBDo1 .header-date p {
  margin: 0;
  padding: 3px 0 5px 3px;
}
.cid-t7SrlZBDo1 .img-wrapper {
  background-color: #8e94e0;
  margin-left: -12rem;
  width: 415px;
  min-height: 38rem;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  padding-top: 20px;
}
@media (max-width: 1200px) {
  .cid-t7SrlZBDo1 .img-wrapper {
    border-bottom-right-radius: 3px;
  }
}
@media (max-width: 992px) {
  .cid-t7SrlZBDo1 .img-wrapper {
    position: static;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .cid-t7SrlZBDo1 .img-wrapper {
    min-width: 280px;
  }
}
@media (max-width: 425px) {
  .cid-t7SrlZBDo1 .img-wrapper {
    width: auto;
    padding: 20px 1.5rem;
  }
}
.cid-t7SrlZBDo1 .img-wrapper .card {
  width: 260px;
  max-height: 150px;
  background-color: #fcfcfc;
  padding: 1rem;
  border-radius: 10px;
  margin: 2rem 0 0 -3rem;
}
.cid-t7SrlZBDo1 .img-wrapper .card:first-child {
  margin-top: 3rem;
}
.cid-t7SrlZBDo1 .img-wrapper .card:nth-child(2) {
  margin-left: 13rem;
}
@media (max-width: 1200px) {
  .cid-t7SrlZBDo1 .img-wrapper .card:nth-child(2) {
    margin: 1.5rem 0 0 1rem;
  }
}
@media (max-width: 992px) {
  .cid-t7SrlZBDo1 .img-wrapper .card:nth-child(2) {
    margin-left: 13rem;
  }
}
@media (max-width: 768px) {
  .cid-t7SrlZBDo1 .img-wrapper .card:nth-child(2) {
    margin: 1.5rem auto;
  }
}
@media (max-width: 1200px) {
  .cid-t7SrlZBDo1 .img-wrapper .card {
    margin: 1.5rem 0 0 1rem;
  }
}
@media (max-width: 992px) {
  .cid-t7SrlZBDo1 .img-wrapper .card {
    margin: 1.5rem 0 0 -3rem;
  }
}
@media (max-width: 768px) {
  .cid-t7SrlZBDo1 .img-wrapper .card {
    margin: 1.5rem auto;
  }
}
@media (max-width: 425px) {
  .cid-t7SrlZBDo1 .img-wrapper .card {
    max-width: 230px;
  }
}
.cid-t7SrlZBDo1 .img-wrapper .card .card-subtitle {
  margin-bottom: 1rem;
}
.cid-t7SrlZBDo1 .img-wrapper .card .card-img-wrapper {
  display: flex;
  justify-content: center;
}
.cid-t7SrlZBDo1 .img-wrapper .card .card-img-wrapper img {
  max-width: 67px;
  max-height: 55px;
  margin-left: 14px;
  object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 425px) {
  .cid-t7SrlZBDo1 .img-wrapper .card .card-img-wrapper img {
    margin-left: 5px;
  }
}
.cid-t7SrlZBDo1 .img-wrapper .card .card-img-wrapper img:first-child {
  margin-left: 0;
}
.cid-t7SrlZBDo1 .mbr-date {
  color: #4f5372;
}
.cid-t7SrlZBDo1 .card-subtitle {
  color: #6870d1;
}
.cid-t7TdZgKjnU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-t7TdZgKjnU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t7TdZgKjnU form .mbr-section-btn {
  max-width: fit-content;
}
.cid-t7TdZgKjnU form .mbr-section-btn .btn {
  display: inline-flex;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-t7TdZgKjnU form .mbr-section-btn {
    max-width: 100%;
  }
}
.cid-t7TdZgKjnU input,
.cid-t7TdZgKjnU textarea {
  border-radius: 0.5rem;
}
.cid-t7TdZgKjnU textarea {
  min-height: 10rem;
}
.cid-t7TdZgKjnU .mbr-form {
  background: #709faf;
  border-radius: 2rem;
  transition: all 0.3s;
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-t7TdZgKjnU .mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-t7TdZgKjnU .mbr-form:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-t7TdZgKjnU .form-control:hover,
.cid-t7TdZgKjnU .form-control:focus {
  border-color: transparent !important;
}
.cid-t7SqR16YUa {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-2-1920x1280-3-1920x1280.jpg");
}
.cid-t7SqR16YUa .card .card-img {
  overflow: hidden;
}
.cid-t7SqR16YUa .card .card-img img {
  transition: all 0.5s;
}
.cid-t7SqR16YUa .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-t7SqR16YUa .underline .line {
  width: 2rem;
  height: 1px;
  background: #e2f706;
  display: inline-block;
}
.cid-t7SqR16YUa .card {
  display: block;
  height: 100%;
}
.cid-t7SqR16YUa .card .card-wrapper {
  height: 100%;
}
.cid-t7SqR16YUa .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-t7SqR16YUa .card .card-box {
  background: #a3c6d2;
  padding: 2rem;
}
.cid-t7SqR16YUa .card .card-box .card-title {
  margin: 0;
}
.cid-t7SqR16YUa .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t7SqR16YUa .card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-t7SqR16YUa .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-t7SqR16YUa .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-t7SqR16YUa .card .card-footer {
  background: #a3c6d2;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t7SqR16YUa .card .card-footer .icons-list {
  margin: 0;
}
.cid-t7SqR16YUa .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-t7SqR16YUa .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-t7SqR16YUa .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-t7SqR16YUa .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-t7SqR16YUa .card-footer {
  border: none;
}
.cid-t7SqR16YUa .mbri-arrow-next {
  color: #709faf;
}
@media (max-width: 767px) {
  .cid-t7SqR16YUa .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t7SqR16YUa .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-t7SqR16YUa .main-title {
  color: #9f2b19;
}
.cid-t7SqR16YUa .main-subtitle,
.cid-t7SqR16YUa .underline {
  color: #000000;
}
.cid-t7SqR3EeCb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/02.jpg");
}
.cid-t7SqR3EeCb .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-t7SqR3EeCb .mbr-iconfont {
  font-size: 80px;
}
.cid-t7SqR3EeCb H3 {
  color: #000000;
}
.cid-t7SqR3EeCb H4 {
  color: #000000;
}
.cid-t7SqR4NMxR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-t7SqR4NMxR .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t7SqR4NMxR .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-t7SqR4NMxR .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-t7SqR4NMxR .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-t7SqR4NMxR .link {
  letter-spacing: 2px;
}
.cid-t7SqR4NMxR .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-t7SqR4NMxR .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t7SqR4NMxR .card {
    padding-bottom: 2rem;
  }
}
.cid-t7SqR6bmDI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-t7SqR6bmDI .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t7SqR6bmDI .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-t7SqR6bmDI .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-t7SqR6bmDI .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-t7SqR6bmDI .link {
  letter-spacing: 2px;
}
.cid-t7SqR6bmDI .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-t7SqR6bmDI .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t7SqR6bmDI .card {
    padding-bottom: 2rem;
  }
}
.cid-t7SqR6bmDI .link B {
  color: #c64935;
}
.cid-t7SqR7kI15 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-t7SqR7kI15 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t7SqR7kI15 .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-t7SqR7kI15 .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-t7SqR7kI15 .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-t7SqR7kI15 .link {
  letter-spacing: 2px;
}
.cid-t7SqR7kI15 .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-t7SqR7kI15 .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t7SqR7kI15 .card {
    padding-bottom: 2rem;
  }
}
.cid-t7SqR7kI15 .link B {
  color: #c64935;
}
.cid-t7SqR8AHBM {
  padding-top: 75px;
  padding-bottom: 75px;
  z-index: 1;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-t7SqR8AHBM .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-t7SqR8AHBM .mbr-text {
  margin: 0;
}
.cid-t7SqR8AHBM .check-in-input,
.cid-t7SqR8AHBM .check-out-input,
.cid-t7SqR8AHBM .guests .date-col span {
  cursor: pointer;
}
.cid-t7SqR8AHBM .content-wrap {
  display: -webkit-flex;
  justify-content: center;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-flex-wrap: wrap;
}
.cid-t7SqR8AHBM .content-wrap .first-item,
.cid-t7SqR8AHBM .content-wrap .second-item {
  padding: 1.5rem;
}
.cid-t7SqR8AHBM .content-wrap .first-item {
  background: #c19b76;
}
.cid-t7SqR8AHBM .content-wrap .first-item .item-text {
  text-align: center;
}
.cid-t7SqR8AHBM .content-wrap .first-item .item-btn .btn {
  margin-left: 4px !important;
}
.cid-t7SqR8AHBM .content-wrap .second-item {
  background: #333333;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t7SqR8AHBM .content-wrap .second-item .check-text {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1rem 0;
}
.cid-t7SqR8AHBM .content-wrap .second-item .check-out {
  border-top: 2px solid #000000;
}
.cid-t7SqR8AHBM .input-wrap {
  background: #fcfcfc;
}
.cid-t7SqR8AHBM .booking-datepicker {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  border-radius: 0;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap input:focus {
  box-shadow: none;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .mbr-section-btn {
  display: flex;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
  width: 100%;
}
.cid-t7SqR8AHBM .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  width: 100%;
  margin: 0;
  line-height: 18px;
  font-weight: 300;
}
.cid-t7SqR8AHBM .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-t7SqR8AHBM .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-t7SqR8AHBM .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-t7SqR8AHBM .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-t7SqR8AHBM .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t7SqR8AHBM .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-t7SqR8AHBM .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-t7SqR8AHBM .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-t7SqR8AHBM .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-t7SqR8AHBM .email input {
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .cid-t7SqR8AHBM .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 991px) {
  .cid-t7SqR8AHBM .booking-datepicker {
    padding-top: 2rem;
  }
}
@media (max-width: 575px) {
  .cid-t7SqR8AHBM .datepicker {
    left: 10% !important;
  }
}
.cid-t7SqR8AHBM .mbr-section-subtitle,
.cid-t7SqR8AHBM .underline {
  text-align: center;
}
.cid-taBwrZxGqb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
.cid-t7SqRaFlNW.popup-builder {
  background-color: #ffffff;
}
.cid-t7SqRaFlNW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t7SqRaFlNW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t7SqRaFlNW .modal-content,
.cid-t7SqRaFlNW .modal-dialog {
  height: auto;
}
.cid-t7SqRaFlNW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t7SqRaFlNW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t7SqRaFlNW .form-wrapper .mbr-form .form-group,
  .cid-t7SqRaFlNW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t7SqRaFlNW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t7SqRaFlNW .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t7SqRaFlNW .mbr-text {
  text-align: center;
  color: #e2f706;
}
.cid-t7SqRaFlNW .pt-0 {
  padding-top: 0 !important;
}
.cid-t7SqRaFlNW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t7SqRaFlNW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t7SqRaFlNW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t7SqRaFlNW .modal-open {
  overflow: hidden;
}
.cid-t7SqRaFlNW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t7SqRaFlNW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t7SqRaFlNW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t7SqRaFlNW .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t7SqRaFlNW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t7SqRaFlNW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t7SqRaFlNW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t7SqRaFlNW .modal-content {
  background: #67a27e;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t7SqRaFlNW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t7SqRaFlNW .modal-backdrop.fade {
  opacity: 0;
}
.cid-t7SqRaFlNW .modal-backdrop.show {
  opacity: .5;
}
.cid-t7SqRaFlNW .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-t7SqRaFlNW .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t7SqRaFlNW .modal-header .close:hover {
  opacity: 1;
}
.cid-t7SqRaFlNW .modal-header .close:focus {
  outline: none;
}
.cid-t7SqRaFlNW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fcfcfc;
}
.cid-t7SqRaFlNW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-t7SqRaFlNW .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-t7SqRaFlNW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t7SqRaFlNW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t7SqRaFlNW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t7SqRaFlNW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t7SqRaFlNW .modal-sm {
    max-width: 300px;
  }
  .cid-t7SqRaFlNW .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-t7SqRaFlNW .modal-lg,
  .cid-t7SqRaFlNW .modal-xl {
    max-width: 800px;
  }
  .cid-t7SqRaFlNW .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-t7SqRaFlNW .modal-xl {
    max-width: 1140px;
  }
  .cid-t7SqRaFlNW .container {
    max-width: 1140px;
  }
}
.cid-t7SqRaFlNW .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-t7SqRaFlNW .container {
    max-width: 720px;
  }
}
.cid-t7SqRaFlNW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t7SqRaFlNW .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t7SqRaFlNW .form-group {
  margin-bottom: 1rem;
}
.cid-t7SqRaFlNW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t7SqRaFlNW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t7SqRaFlNW .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-taBBvLhImN.popup-builder {
  background-color: #ffffff;
}
.cid-taBBvLhImN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-taBBvLhImN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-taBBvLhImN .modal-content,
.cid-taBBvLhImN .modal-dialog {
  height: auto;
}
.cid-taBBvLhImN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-taBBvLhImN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-taBBvLhImN .form-wrapper .mbr-form .form-group,
  .cid-taBBvLhImN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-taBBvLhImN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-taBBvLhImN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-taBBvLhImN .mbr-text {
  text-align: center;
}
.cid-taBBvLhImN .pt-0 {
  padding-top: 0 !important;
}
.cid-taBBvLhImN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-taBBvLhImN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-taBBvLhImN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-taBBvLhImN .modal-open {
  overflow: hidden;
}
.cid-taBBvLhImN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-taBBvLhImN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-taBBvLhImN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-taBBvLhImN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-taBBvLhImN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-taBBvLhImN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-taBBvLhImN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-taBBvLhImN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-taBBvLhImN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-taBBvLhImN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-taBBvLhImN .modal-backdrop.fade {
  opacity: 0;
}
.cid-taBBvLhImN .modal-backdrop.show {
  opacity: .5;
}
.cid-taBBvLhImN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-taBBvLhImN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-taBBvLhImN .modal-header {
    padding: 1rem;
  }
}
.cid-taBBvLhImN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-taBBvLhImN .modal-header .close svg {
  fill: #353535;
}
.cid-taBBvLhImN .modal-header .close:hover {
  opacity: 1;
}
.cid-taBBvLhImN .modal-header .close:focus {
  outline: none;
}
.cid-taBBvLhImN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-taBBvLhImN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-taBBvLhImN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-taBBvLhImN .modal-body {
    padding: 1rem;
  }
}
.cid-taBBvLhImN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taBBvLhImN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-taBBvLhImN .modal-footer {
    padding: 1rem;
  }
}
.cid-taBBvLhImN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-taBBvLhImN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-taBBvLhImN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-taBBvLhImN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-taBBvLhImN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-taBBvLhImN .modal-lg,
  .cid-taBBvLhImN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-taBBvLhImN .modal-xl {
    max-width: 1140px;
  }
}
.cid-taBBvLhImN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-taBBvLhImN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-taBBvLhImN .form-group {
  margin-bottom: 1rem;
}
.cid-taBBvLhImN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-taBBvLhImN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-taBBvLhImN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-taBBvLhImN .mbr-section-btn {
  margin: 0;
}
.cid-taBBvLhImN .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqUd61FqhT .navbar {
  background: #2b6477;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uqUd61FqhT .navbar-dropdown.bg-color.transparent.opened {
  background: #2b6477;
}
.cid-uqUd61FqhT a {
  font-style: normal;
}
.cid-uqUd61FqhT .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uqUd61FqhT .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uqUd61FqhT .nav-item:focus,
.cid-uqUd61FqhT .nav-link:focus {
  outline: none;
}
.cid-uqUd61FqhT .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uqUd61FqhT .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uqUd61FqhT .menu-logo {
  margin-right: auto;
}
.cid-uqUd61FqhT .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uqUd61FqhT .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uqUd61FqhT .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uqUd61FqhT .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uqUd61FqhT .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uqUd61FqhT .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uqUd61FqhT .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uqUd61FqhT .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uqUd61FqhT .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uqUd61FqhT .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uqUd61FqhT .dropdown .dropdown-menu {
  background: #2b6477;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uqUd61FqhT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uqUd61FqhT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqUd61FqhT .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uqUd61FqhT .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqUd61FqhT .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uqUd61FqhT .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uqUd61FqhT .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uqUd61FqhT .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uqUd61FqhT .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uqUd61FqhT .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uqUd61FqhT .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uqUd61FqhT button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uqUd61FqhT button.navbar-toggler:focus {
  outline: none;
}
.cid-uqUd61FqhT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uqUd61FqhT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uqUd61FqhT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uqUd61FqhT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uqUd61FqhT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uqUd61FqhT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uqUd61FqhT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uqUd61FqhT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uqUd61FqhT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uqUd61FqhT .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uqUd61FqhT .collapsed .btn {
  display: flex;
}
.cid-uqUd61FqhT .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uqUd61FqhT .collapsed .navbar-collapse.collapsing,
.cid-uqUd61FqhT .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uqUd61FqhT .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uqUd61FqhT .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uqUd61FqhT .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uqUd61FqhT .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uqUd61FqhT .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uqUd61FqhT .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uqUd61FqhT .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uqUd61FqhT .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uqUd61FqhT .collapsed button.navbar-toggler {
  display: block;
}
.cid-uqUd61FqhT .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uqUd61FqhT .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uqUd61FqhT .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uqUd61FqhT .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uqUd61FqhT .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uqUd61FqhT .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uqUd61FqhT.navbar-expand {
    flex-direction: column;
  }
  .cid-uqUd61FqhT img {
    height: 3.8rem !important;
  }
  .cid-uqUd61FqhT .btn {
    display: flex;
  }
  .cid-uqUd61FqhT button.navbar-toggler {
    display: block;
  }
  .cid-uqUd61FqhT .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uqUd61FqhT .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uqUd61FqhT .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uqUd61FqhT .navbar-collapse.collapsing,
  .cid-uqUd61FqhT .navbar-collapse.show {
    display: block !important;
  }
  .cid-uqUd61FqhT .navbar-collapse.collapsing .navbar-nav,
  .cid-uqUd61FqhT .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uqUd61FqhT .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uqUd61FqhT .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uqUd61FqhT .navbar-collapse.collapsing .navbar-buttons,
  .cid-uqUd61FqhT .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uqUd61FqhT .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uqUd61FqhT .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uqUd61FqhT .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uqUd61FqhT .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uqUd61FqhT .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uqUd61FqhT .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uqUd61FqhT .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uqUd61FqhT .navbar-collapse {
  flex-basis: auto;
}
.cid-uqUd61FqhT .nav-link:hover,
.cid-uqUd61FqhT .dropdown-item:hover {
  color: #e2f706 !important;
}
.cid-uqUdmol3uP .mbr-arrow {
  background: #709faf !important;
  opacity: 0.7;
}
.cid-uqUdmol3uP .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uqUdmol3uP .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uqUdmol3uP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqUdmol3uP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uqUd5UWFfb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uqUd5UWFfb .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uqUd5UWFfb .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-uqUd5UWFfb .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uqUd5UWFfb .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uqUd5UWFfb .link {
  letter-spacing: 2px;
}
.cid-uqUd5UWFfb .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-uqUd5UWFfb .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqUd5UWFfb .card {
    padding-bottom: 2rem;
  }
}
.cid-uqUd5VR6VQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uqUd5VR6VQ .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uqUd5VR6VQ .card-img {
  overflow: hidden;
  border-radius: 0 !important;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.cid-uqUd5VR6VQ .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uqUd5VR6VQ .card-box {
  background: #ffffff;
  padding: 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uqUd5VR6VQ .link {
  letter-spacing: 2px;
}
.cid-uqUd5VR6VQ .card.second-card {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 991px) {
  .cid-uqUd5VR6VQ .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqUd5VR6VQ .card {
    padding-bottom: 2rem;
  }
}
.cid-uqUd5VR6VQ .link B {
  color: #c64935;
}
.cid-uqUd5YS0Jv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2b6477;
}
