body {
  font-family: Work Sans;
}
.display-1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 3.8rem;
  line-height: 1.22;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.38rem;
  line-height: 1.7;
}
.display-7 > .mbr-iconfont {
  font-size: 1.725rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.104rem;
    font-size: calc( 1.133rem + (1.38 - 1.133) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.133rem + (1.38 - 1.133) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #0b2b5c !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #0b2b5c !important;
  border-color: #0b2b5c !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary::before,
.btn-primary:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #0b2b5c !important;
  background-color: transparent !important;
  border-color: #0b2b5c;
  box-shadow: none;
}
.btn-primary:hover::before,
.btn-primary:focus::before,
.btn-primary.focus::before,
.btn-primary.active::before {
  width: 100%;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f2bb2c !important;
  border-color: #f2bb2c !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary::before,
.btn-secondary:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #f2bb2c !important;
  background-color: transparent !important;
  border-color: #f2bb2c;
  box-shadow: none;
}
.btn-secondary:hover::before,
.btn-secondary:focus::before,
.btn-secondary.focus::before,
.btn-secondary.active::before {
  width: 100%;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #5c4406 !important;
  border-color: #5c4406 !important;
}
.btn-info {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info::before,
.btn-info:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #47b5ed !important;
  background-color: transparent !important;
  border-color: #47b5ed;
  box-shadow: none;
}
.btn-info:hover::before,
.btn-info:focus::before,
.btn-info.focus::before,
.btn-info.active::before {
  width: 100%;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0b4c6d !important;
  border-color: #0b4c6d !important;
}
.btn-success {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success::before,
.btn-success:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #40b0bf !important;
  background-color: transparent !important;
  border-color: #40b0bf;
  box-shadow: none;
}
.btn-success:hover::before,
.btn-success:focus::before,
.btn-success.focus::before,
.btn-success.active::before {
  width: 100%;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #112e32 !important;
  border-color: #112e32 !important;
}
.btn-warning {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: none;
}
.btn-warning::before,
.btn-warning:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #614f00 !important;
  transition: all .3s;
  z-index: -1;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffe161 !important;
  background-color: transparent !important;
  border-color: #ffe161;
  box-shadow: none;
}
.btn-warning:hover::before,
.btn-warning:focus::before,
.btn-warning.focus::before,
.btn-warning.active::before {
  width: 100%;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #a38400 !important;
  border-color: #a38400 !important;
}
.btn-danger {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger::before,
.btn-danger:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ff9966 !important;
  background-color: transparent !important;
  border-color: #ff9966;
  box-shadow: none;
}
.btn-danger:hover::before,
.btn-danger:focus::before,
.btn-danger.focus::before,
.btn-danger.active::before {
  width: 100%;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a83800 !important;
  border-color: #a83800 !important;
}
.btn-white {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.btn-white::before,
.btn-white:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #7a7a7a !important;
  transition: all .3s;
  z-index: -1;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #fafafa !important;
  background-color: transparent !important;
  border-color: #fafafa;
  box-shadow: none;
}
.btn-white:hover::before,
.btn-white:focus::before,
.btn-white.focus::before,
.btn-white.active::before {
  width: 100%;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-black {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black::before,
.btn-black:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #232323 !important;
  background-color: transparent !important;
  border-color: #232323;
  box-shadow: none;
}
.btn-black:hover::before,
.btn-black:focus::before,
.btn-black.focus::before,
.btn-black.active::before {
  width: 100%;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0b2b5c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #02070f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0b2b5c !important;
  border-color: #0b2b5c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2bb2c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #bc8b0c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f2bb2c !important;
  border-color: #f2bb2c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0b2b5c !important;
}
.text-secondary {
  color: #f2bb2c !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f2bb2c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #f8da8c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #f2bb2c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #f2bb2c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f2bb2c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffddcc !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #f2bb2c !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #f2bb2c !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0b2b5c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn button.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0b2b5c;
  border-color: #0b2b5c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0b2b5c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1960ce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #0b2b5c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #0b2b5c;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0b2b5c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0b2b5c;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0b2b5c;
  border-bottom-color: #0b2b5c;
}
.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: #0b2b5c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f2bb2c !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230b2b5c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sIdrMrmNHp .navbar-dropdown {
  position: relative !important;
}
.cid-sIdrMrmNHp .navbar-dropdown {
  position: absolute !important;
}
.cid-sIdrMrmNHp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIdrMrmNHp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIdrMrmNHp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIdrMrmNHp .dropdown-item:hover,
.cid-sIdrMrmNHp .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-sIdrMrmNHp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIdrMrmNHp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIdrMrmNHp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-sIdrMrmNHp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIdrMrmNHp .nav-link {
  position: relative;
}
.cid-sIdrMrmNHp .container {
  display: flex;
  margin: auto;
}
.cid-sIdrMrmNHp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIdrMrmNHp .dropdown-menu,
.cid-sIdrMrmNHp .navbar.opened {
  background: #ffffff !important;
}
.cid-sIdrMrmNHp .nav-item:focus,
.cid-sIdrMrmNHp .nav-link:focus {
  outline: none;
}
.cid-sIdrMrmNHp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIdrMrmNHp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIdrMrmNHp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIdrMrmNHp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIdrMrmNHp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIdrMrmNHp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIdrMrmNHp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-sIdrMrmNHp .navbar.opened {
  transition: all 0.3s;
}
.cid-sIdrMrmNHp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIdrMrmNHp .navbar .navbar-logo img {
  width: auto;
}
.cid-sIdrMrmNHp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIdrMrmNHp .navbar.collapsed {
  justify-content: center;
}
.cid-sIdrMrmNHp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIdrMrmNHp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sIdrMrmNHp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIdrMrmNHp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIdrMrmNHp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sIdrMrmNHp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIdrMrmNHp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIdrMrmNHp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIdrMrmNHp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIdrMrmNHp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIdrMrmNHp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIdrMrmNHp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIdrMrmNHp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sIdrMrmNHp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIdrMrmNHp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIdrMrmNHp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIdrMrmNHp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIdrMrmNHp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIdrMrmNHp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIdrMrmNHp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIdrMrmNHp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIdrMrmNHp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIdrMrmNHp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sIdrMrmNHp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIdrMrmNHp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIdrMrmNHp .dropdown-item.active,
.cid-sIdrMrmNHp .dropdown-item:active {
  background-color: transparent;
}
.cid-sIdrMrmNHp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIdrMrmNHp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIdrMrmNHp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIdrMrmNHp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIdrMrmNHp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIdrMrmNHp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIdrMrmNHp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIdrMrmNHp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIdrMrmNHp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIdrMrmNHp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sIdrMrmNHp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIdrMrmNHp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIdrMrmNHp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIdrMrmNHp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIdrMrmNHp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIdrMrmNHp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIdrMrmNHp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIdrMrmNHp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIdrMrmNHp .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-sIdrMrmNHp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIdrMrmNHp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIdrMrmNHp .navbar {
    height: 70px;
  }
  .cid-sIdrMrmNHp .navbar.opened {
    height: auto;
  }
  .cid-sIdrMrmNHp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIdUKT15rc {
  background-image: url("https://mobirise.com/extensions/estatem5/assets/images/breno-2000x1333.jpg");
}
.cid-sIdUKT15rc .mbr-section-title {
  text-align: center;
}
.cid-sIdUKT15rc .mbr-text,
.cid-sIdUKT15rc .mbr-section-btn {
  text-align: center;
}
.cid-sIdrVJrQu8 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fcf5e6;
}
.cid-sIdrVJrQu8 .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-sIdrVJrQu8 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIdrVJrQu8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sIdrVJrQu8 .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-sIdrXFKApA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sIdrXFKApA .container {
    max-width: 1400px;
  }
}
.cid-sIdrXFKApA .card-text_padding-bottom {
  padding-bottom: 5rem;
}
.cid-sIdrXFKApA .card-img {
  margin-left: auto;
  margin-bottom: 2rem;
  margin-right: auto;
}
.cid-sIdrXFKApA .card-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.cid-sIdrXFKApA .btn-bottom {
  display: flex;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1620px) {
  .cid-sIdrXFKApA .card {
    padding: 0 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1250px) {
  .cid-sIdrXFKApA .card {
    padding: 0 2rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .cid-sIdrXFKApA .card {
    padding: 0 1rem;
    padding-bottom: 4rem;
  }
}
.cid-sIdrXFKApA .row {
  justify-content: center;
}
.cid-sIdrZuboax {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fcf5e6;
}
.cid-sIdrZuboax .mbr-section-title,
.cid-sIdrZuboax .mbr-text,
.cid-sIdrZuboax .mbr-section-btn {
  text-align: center;
}
.cid-sIdrZuboax .video-wrapper {
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}
.cid-sIdrZuboax .video-wrapper iframe {
  width: 100%;
}
.cid-sIeutTqOf0 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("https://mobirise.com/extensions/estatem5/assets/images/allblocksframe-1-1895x811.jpg");
}
.cid-sIjOxb2vu0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcf5e6;
}
.cid-sIjOxb2vu0 .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-sIjOxb2vu0 .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-sIjOxb2vu0 .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-sIjOxb2vu0 .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjOxb2vu0 .row > div {
    margin: auto;
  }
}
.cid-sIjOxb2vu0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sIjOxb2vu0 .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjOxb2vu0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjOxb2vu0 .list {
    margin-bottom: 0rem;
  }
}
.cid-sIjOxb2vu0 .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-sIjOxb2vu0 .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-sIjOxb2vu0 .row {
    display: grid;
  }
  .cid-sIjOxb2vu0 .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-sIjOxb2vu0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sIjOxb2vu0 .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjOxb2vu0 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sIjOxb2vu0 .copyright {
  color: #193c73;
}
.cid-sIdrMrmNHp .navbar-dropdown {
  position: relative !important;
}
.cid-sIdrMrmNHp .navbar-dropdown {
  position: absolute !important;
}
.cid-sIdrMrmNHp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIdrMrmNHp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIdrMrmNHp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIdrMrmNHp .dropdown-item:hover,
.cid-sIdrMrmNHp .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-sIdrMrmNHp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIdrMrmNHp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIdrMrmNHp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-sIdrMrmNHp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIdrMrmNHp .nav-link {
  position: relative;
}
.cid-sIdrMrmNHp .container {
  display: flex;
  margin: auto;
}
.cid-sIdrMrmNHp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIdrMrmNHp .dropdown-menu,
.cid-sIdrMrmNHp .navbar.opened {
  background: #ffffff !important;
}
.cid-sIdrMrmNHp .nav-item:focus,
.cid-sIdrMrmNHp .nav-link:focus {
  outline: none;
}
.cid-sIdrMrmNHp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIdrMrmNHp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIdrMrmNHp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIdrMrmNHp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIdrMrmNHp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIdrMrmNHp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIdrMrmNHp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.cid-sIdrMrmNHp .navbar.opened {
  transition: all 0.3s;
}
.cid-sIdrMrmNHp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIdrMrmNHp .navbar .navbar-logo img {
  width: auto;
}
.cid-sIdrMrmNHp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIdrMrmNHp .navbar.collapsed {
  justify-content: center;
}
.cid-sIdrMrmNHp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIdrMrmNHp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sIdrMrmNHp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIdrMrmNHp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIdrMrmNHp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sIdrMrmNHp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIdrMrmNHp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIdrMrmNHp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIdrMrmNHp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIdrMrmNHp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIdrMrmNHp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIdrMrmNHp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIdrMrmNHp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sIdrMrmNHp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIdrMrmNHp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIdrMrmNHp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIdrMrmNHp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIdrMrmNHp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIdrMrmNHp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIdrMrmNHp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIdrMrmNHp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIdrMrmNHp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIdrMrmNHp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sIdrMrmNHp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIdrMrmNHp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIdrMrmNHp .dropdown-item.active,
.cid-sIdrMrmNHp .dropdown-item:active {
  background-color: transparent;
}
.cid-sIdrMrmNHp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIdrMrmNHp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIdrMrmNHp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIdrMrmNHp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIdrMrmNHp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIdrMrmNHp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIdrMrmNHp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIdrMrmNHp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIdrMrmNHp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIdrMrmNHp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sIdrMrmNHp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIdrMrmNHp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIdrMrmNHp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIdrMrmNHp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIdrMrmNHp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIdrMrmNHp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIdrMrmNHp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIdrMrmNHp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIdrMrmNHp .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-sIdrMrmNHp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIdrMrmNHp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIdrMrmNHp .navbar {
    height: 70px;
  }
  .cid-sIdrMrmNHp .navbar.opened {
    height: auto;
  }
  .cid-sIdrMrmNHp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIjOjggoR8 {
  background-color: #fcf5e6;
}
.cid-sIjOjggoR8 .main-container .main-img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .cid-sIjOjggoR8 .main-container {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .cid-sIjOjggoR8 .main-container .main-title {
    margin-top: 1rem;
  }
}
.cid-sIjOjpq57q {
  background-color: #fcf5e6;
}
.cid-sIjOjpq57q .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 60%;
  padding: 50px 0;
  border-radius: 0 30px 30px 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cid-sIjOjpq57q .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.cid-sIjOjpq57q .text-wrapper .card-text,
.cid-sIjOjpq57q .text-wrapper .card-btn,
.cid-sIjOjpq57q .text-wrapper .card-title {
  margin: 1rem -25vw 0 50px;
}
@media (max-width: 767px) {
  .cid-sIjOjpq57q .text-wrapper .card-text,
  .cid-sIjOjpq57q .text-wrapper .card-btn,
  .cid-sIjOjpq57q .text-wrapper .card-title {
    margin: 1rem -25vw 0 1rem;
  }
}
.cid-sIjOjpq57q .content-wrapper {
  padding: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sIjOjpq57q .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sIjOjpq57q .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-sIjOjpq57q .content-wrapper .geometry__square,
  .cid-sIjOjpq57q .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-sIjOjpq57q .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sIjOjpq57q .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjOjpq57q .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sIjOjpq57q .content-wrapper .text-wrapper {
    padding-left: 1rem;
    padding-right: 7rem;
  }
}
.cid-sIjOjpq57q .geometry {
  position: absolute;
}
.cid-sIjOjpq57q .geometry_top-right {
  top: -50px;
  right: 30%;
}
.cid-sIjOjpq57q .geometry_bottom-left {
  bottom: 47px;
  left: 20%;
}
.cid-sIjOjpq57q .geometry__square,
.cid-sIjOjpq57q .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-sIjOjpq57q .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-sIjOjpq57q .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-sIjOjpq57q .geometry__circle {
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-sIjOjpq57q .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-sIjOjpq57q .image-wrapper {
  margin: 0 4rem 0 0;
}
.cid-sIjOjpq57q .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sIjOjpq57q .content {
    display: block;
  }
  .cid-sIjOjpq57q .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-sIjOjpq57q .card-text,
  .cid-sIjOjpq57q .card-title,
  .cid-sIjOjpq57q .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-sIjOjpq57q .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-sIjOjpq57q .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-sIjOjpq57q .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-sIjOjpq57q .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-sIjOjpq57q .geometry {
    position: absolute;
  }
  .cid-sIjOjpq57q .geometry__circle,
  .cid-sIjOjpq57q .geometry__circle-bg,
  .cid-sIjOjpq57q .geometry__square,
  .cid-sIjOjpq57q .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-sIjOjycIAY {
  background-image: url("https://mobirise.com/extensions/estatem5/assets/images/bg2.jpg");
}
.cid-sIjOjG5M3q {
  background-image: url("https://mobirise.com/extensions/estatem5/assets/images/main2.jpg");
}
.cid-sIjOk2PG9B {
  background-image: url("https://mobirise.com/extensions/estatem5/assets/images/main2.jpg");
}
.cid-sIjOk2PG9B .mbr-section-title,
.cid-sIjOk2PG9B .mbr-text,
.cid-sIjOk2PG9B .mbr-section-btn {
  text-align: center;
}
.cid-sIjOk2PG9B .video-wrapper {
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}
.cid-sIjOk2PG9B .video-wrapper iframe {
  width: 100%;
}
.cid-sIjOknTHe8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-sIjOknTHe8 .content {
  display: flex;
  flex-flow: row-reverse;
}
.cid-sIjOknTHe8 .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 50%;
  padding: 50px 0;
  border-radius: 30px 0 0 30px;
}
.cid-sIjOknTHe8 .text-wrapper .card-btn a {
  margin: 2rem 0 0 0;
}
.cid-sIjOknTHe8 .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cid-sIjOknTHe8 .text-wrapper .card-text,
.cid-sIjOknTHe8 .text-wrapper .card-btn,
.cid-sIjOknTHe8 .text-wrapper .card-title {
  margin: 1rem 4rem 1rem -25vw;
}
.cid-sIjOknTHe8 .content-wrapper {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-sIjOknTHe8 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-sIjOknTHe8 .content-wrapper .geometry__square,
  .cid-sIjOknTHe8 .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-sIjOknTHe8 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sIjOknTHe8 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjOknTHe8 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sIjOknTHe8 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sIjOknTHe8 .geometry {
  position: absolute;
}
.cid-sIjOknTHe8 .geometry_top-left {
  top: -50px;
  right: 80%;
}
.cid-sIjOknTHe8 .geometry_bottom-right {
  bottom: -40px;
  left: 40%;
}
.cid-sIjOknTHe8 .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-sIjOknTHe8 .geometry__triangle {
  width: 126px;
  height: 88px;
}
.cid-sIjOknTHe8 .geometry__square,
.cid-sIjOknTHe8 .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-sIjOknTHe8 .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-sIjOknTHe8 .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-sIjOknTHe8 .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-sIjOknTHe8 .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-sIjOknTHe8 .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
.cid-sIjOknTHe8 .image-wrapper {
  margin: 0 0 0 4rem;
}
.cid-sIjOknTHe8 .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sIjOknTHe8 .content {
    display: block;
  }
  .cid-sIjOknTHe8 .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-sIjOknTHe8 .card-text,
  .cid-sIjOknTHe8 .card-title,
  .cid-sIjOknTHe8 .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-sIjOknTHe8 .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-sIjOknTHe8 .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-sIjOknTHe8 .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-sIjOknTHe8 .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-sIjOknTHe8 .geometry {
    position: absolute;
  }
  .cid-sIjOknTHe8 .geometry__circle,
  .cid-sIjOknTHe8 .geometry__circle-bg,
  .cid-sIjOknTHe8 .geometry__square,
  .cid-sIjOknTHe8 .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-sIjOkyEW9q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fcf5e6;
}
.cid-sIjOkyEW9q img,
.cid-sIjOkyEW9q .item-img {
  width: 100%;
}
.cid-sIjOkyEW9q .item-card:focus,
.cid-sIjOkyEW9q span:focus {
  outline: none;
}
.cid-sIjOkyEW9q .item-card {
  margin-bottom: 2rem;
}
.cid-sIjOkyEW9q .item-wrapper {
  position: relative;
  background: #ffffff;
  overflow: initial;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sIjOkyEW9q .item-wrapper ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIjOkyEW9q .item-wrapper ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-sIjOkyEW9q .item-wrapper ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #232323;
  width: 40px;
  height: 40px;
  margin-top: 5px;
  padding-bottom: 1rem;
  content: "ᐅ";
}
.cid-sIjOkyEW9q .item-wrapper .item-content {
  z-index: 1;
}
.cid-sIjOkyEW9q .item-wrapper .outline-hover {
  border: 2px solid #000;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20px, -20px);
  opacity: 0;
}
@media screen and (min-width: 767px) {
  .cid-sIjOkyEW9q .item-wrapper:hover {
    background: #f2bb2c;
  }
  .cid-sIjOkyEW9q .item-wrapper:hover .outline-hover {
    opacity: 1;
  }
}
.cid-sIjOkyEW9q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sIjOkyEW9q .mbr-text,
.cid-sIjOkyEW9q .mbr-section-btn {
  text-align: left;
}
.cid-sIjOkyEW9q .item-title {
  text-align: left;
}
.cid-sIjOkyEW9q .item-subtitle {
  text-align: left;
}
.cid-sIjOkQt5pD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fcf5e6;
}
.cid-sIjOkQt5pD .card-wrapper .card-img-wh {
  margin: auto;
  height: auto;
  padding: 1.8rem 0;
  max-height: 180px;
}
.cid-sIjOkQt5pD .card-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sIjOkQt5pD .card-wrapper ul li {
  position: relative;
  list-style: none;
  padding-top: 1rem;
}
.cid-sIjOkQt5pD .card-wrapper ul li:not(:first-child) {
  padding-top: 3rem;
  list-style: none;
  position: relative;
}
.cid-sIjOkQt5pD .card-wrapper ul li:not(:first-child):not(:first-child)::before {
  position: absolute;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #232323;
  width: 40px;
  left: 47%;
  height: 40px;
  top: 0;
  transform: rotate(90deg);
  content: "ᐅ";
}
.cid-sIjOkQt5pD .bg-block {
  background: #ffffff;
  padding: 3.5rem 5rem;
  border-radius: 20px;
  z-index: 2;
}
@media screen and (max-width: 1240px) {
  .cid-sIjOkQt5pD .bg-block {
    padding: 2.2rem 5rem;
  }
}
@media screen and (max-width: 890px) {
  .cid-sIjOkQt5pD .bg-block {
    padding: 2.2rem 3rem;
  }
}
@media (max-width: 768px) {
  .cid-sIjOkQt5pD .bg-block {
    padding: 2.2rem 1rem;
  }
}
.cid-sIjOkQt5pD .geometry {
  position: absolute;
  z-index: -1;
}
.cid-sIjOkQt5pD .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-sIjOkQt5pD .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-sIjOkQt5pD .geometry_top-left {
  left: 17vw;
  top: -50.9px;
}
.cid-sIjOkQt5pD .geometry_bottom-right {
  right: -2vw;
  bottom: 110px;
}
.cid-sIjOkQt5pD .geometry__square,
.cid-sIjOkQt5pD .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-sIjOkQt5pD .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-sIjOkQt5pD .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-sIjOkQt5pD .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-sIjOkQt5pD .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
@media (min-width: 768px) {
  .cid-sIjOkQt5pD .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-sIjOkQt5pD .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-sIjOkQt5pD .bg-block:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-sIjOkQt5pD .bg-block:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-sIjOkQt5pD .geometry {
    position: absolute;
  }
  .cid-sIjOkQt5pD .geometry__circle,
  .cid-sIjOkQt5pD .geometry__circle-bg,
  .cid-sIjOkQt5pD .geometry__square,
  .cid-sIjOkQt5pD .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-sIjOkYRwWv {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sIjOkYRwWv .container {
    max-width: 1400px;
  }
}
.cid-sIjOkYRwWv .card-text_padding-bottom {
  padding-bottom: 5rem;
}
.cid-sIjOkYRwWv .card-img {
  margin-left: auto;
  margin-bottom: 2rem;
  margin-right: auto;
}
.cid-sIjOkYRwWv .card-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.cid-sIjOkYRwWv .btn-bottom {
  display: flex;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1620px) {
  .cid-sIjOkYRwWv .card {
    padding: 0 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1250px) {
  .cid-sIjOkYRwWv .card {
    padding: 0 2rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .cid-sIjOkYRwWv .card {
    padding: 0 1rem;
    padding-bottom: 4rem;
  }
}
.cid-sIjOkYRwWv .row {
  justify-content: center;
}
.cid-sIjOlipgv0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sIjOlipgv0 .media-container-row {
  justify-content: space-between;
}
.cid-sIjOlipgv0 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sIjOlipgv0 .text-content {
    max-width: none;
  }
}
.cid-sIjOlipgv0 .container {
  z-index: 1;
}
.cid-sIjOlipgv0 .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
}
.cid-sIjOlipgv0 .bg_column-reverse {
  flex-direction: column-reverse;
}
.cid-sIjOlipgv0 .bg__white {
  background: #fff;
  height: 100%;
}
.cid-sIjOlipgv0 .bg__gray {
  background: #fcf5e6;
  height: 100%;
}
.cid-sIjOlipgv0 .box-shadow {
  position: relative;
  box-shadow: 0 4px 8px 0 #1a1a0159;
  border-radius: 24px;
  padding: 4rem 19rem;
  margin: 0;
  background: #fff;
}
@media (max-width: 1400px) {
  .cid-sIjOlipgv0 .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-sIjOlipgv0 .box-shadow {
    padding: 3rem 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sIjOlipgv0 .icons {
    justify-content: center !important;
  }
  .cid-sIjOlipgv0 .box-shadow {
    width: 100%;
    padding: 3rem 1rem;
  }
  .cid-sIjOlipgv0 .text-content * {
    text-align: center;
  }
}
.cid-sIjOlipgv0 .geometry {
  position: absolute;
}
.cid-sIjOlipgv0 .geometry__square,
.cid-sIjOlipgv0 .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-sIjOlipgv0 .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-sIjOlipgv0 .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-sIjOlipgv0 .geometry__circle {
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-sIjOlipgv0 .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-sIjOlipgv0 .geometry_top-right {
  top: -50px;
  right: 30%;
}
.cid-sIjOlipgv0 .geometry_bottom-left {
  bottom: 47px;
  left: 20%;
}
@media (min-width: 768px) {
  .cid-sIjOlipgv0 .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-sIjOlipgv0 .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-sIjOlipgv0 .box-shadow:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-sIjOlipgv0 .box-shadow:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-sIjOlipgv0 .geometry {
    position: absolute;
  }
  .cid-sIjOlipgv0 .geometry__circle,
  .cid-sIjOlipgv0 .geometry__circle-bg,
  .cid-sIjOlipgv0 .geometry__square,
  .cid-sIjOlipgv0 .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-sIjOltLwTO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sIjOltLwTO .google-map {
  height: 30rem;
  position: relative;
}
.cid-sIjOltLwTO .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sIjOltLwTO .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-sIjOltLwTO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sIjOltLwTO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sIjOlM33YZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-sIjOlM33YZ .geometry {
  position: absolute;
}
.cid-sIjOlM33YZ .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-sIjOlM33YZ .geometry_left {
  left: -70px;
  bottom: 230px;
}
.cid-sIjOlM33YZ .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-sIjOlM33YZ .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .cid-sIjOlM33YZ .card-block {
    width: 100%;
  }
}
.cid-sIjOlM33YZ blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-sIjOlM33YZ blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-sIjOlM33YZ blockquote {
    padding: 2rem 1rem;
  }
  .cid-sIjOlM33YZ .geometry {
    position: absolute;
  }
  .cid-sIjOlM33YZ .geometry__circle,
  .cid-sIjOlM33YZ .geometry__circle-bg {
    width: 66px;
    height: 66px;
  }
  .cid-sIjOlM33YZ .geometry_left {
    left: -47px;
    bottom: 240px;
  }
}
@media (min-width: 992px) {
  .cid-sIjOlM33YZ blockquote {
    padding: 3rem;
  }
}
@media (min-width: 768px) {
  .cid-sIjOlM33YZ .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-sIjOlM33YZ blockquote:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-sIjOlW9jCP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-sIjOlW9jCP .geometry {
  position: absolute;
}
.cid-sIjOlW9jCP .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-sIjOlW9jCP .geometry_left {
  left: -70px;
}
.cid-sIjOlW9jCP .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-sIjOlW9jCP .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-sIjOlW9jCP .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.cid-sIjOlW9jCP blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-sIjOlW9jCP blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-sIjOlW9jCP blockquote {
    padding: 2rem 1rem;
  }
  .cid-sIjOlW9jCP .geometry {
    position: absolute;
  }
  .cid-sIjOlW9jCP .geometry__square,
  .cid-sIjOlW9jCP .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .cid-sIjOlW9jCP .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-sIjOlW9jCP blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .cid-sIjOlW9jCP .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-sIjOlW9jCP .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sIjOlW9jCP blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sIjOlW9jCP .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-sIjOlW9jCP blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-sIjOmwmGPf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sIjOmWsbbI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fcf5e6;
}
.cid-sIjOmWsbbI .nav-tabs .nav-item.open .nav-link:focus,
.cid-sIjOmWsbbI .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sIjOmWsbbI .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-sIjOmWsbbI .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-sIjOmWsbbI .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-sIjOmWsbbI .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #0b2b5c;
}
.cid-sIjOmWsbbI .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sIjOmWsbbI .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-sIjOmWsbbI .nav-tabs .nav-item {
  width: 100%;
}
.cid-sIjOmWsbbI .nav-link,
.cid-sIjOmWsbbI .nav-link.active {
  padding: 1rem auto;
  background: #ffffff;
}
.cid-sIjOmWsbbI .nav-tabs .nav-link.active {
  color: #0b2b5c;
}
.cid-sIjOmWsbbI .tab-content {
  background: #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-sIjOmWsbbI .tab-content {
    border-radius: 30px !important;
  }
}
.cid-sIjOmWsbbI .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-sIjOmWsbbI .logo-container {
    border-right: 1px solid #0b2b5c;
  }
}
.cid-sIjOmWsbbI H4 {
  text-align: center;
}
.cid-sIjOmWsbbI H3 {
  text-align: center;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-sIjOmWsbbI .nav-link {
    font-size: 1.2rem;
  }
}
.cid-sIjOnb6Zkt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fcf5e6;
}
.cid-sIjOnb6Zkt .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sIjOnb6Zkt .team-card:hover {
  transform: translateY(-10px);
}
.cid-sIjOnb6Zkt .container-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 77%;
}
.cid-sIjOnb6Zkt .card-content {
  margin: -80% 0 0 0;
}
.cid-sIjOnb6Zkt .card-wrap {
  background: #ffffff;
  height: 100%;
  display: flex;
  border-radius: 20px;
  position: relative;
}
.cid-sIjOnb6Zkt .card-wrap__content {
  margin: 0 0 -6vw 0;
  padding: 3rem 1.3rem;
}
.cid-sIjOnb6Zkt .card-wrap .image-wrap img {
  width: 100%;
}
.cid-sIjOnb6Zkt .card-wrap .image-wrap {
  margin: 1rem 2rem;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjOnb6Zkt .card-wrap .content-wrap {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sIjOnb6Zkt .card-wrap {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sIjOnb6Zkt .profile-container .pdd-top:not(:first-child) {
    margin-bottom: 4rem;
  }
}
.cid-sIjOnb6Zkt .social-row {
  text-align: center;
}
.cid-sIjOnb6Zkt .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sIjOnb6Zkt .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sIjOnb6Zkt .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sIjOnb6Zkt .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sIjOnjVLN2 {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sIjOnjVLN2 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sIjOnjVLN2 .card-wrapper {
  background-color: #fcf5e6;
  border-radius: 16px;
}
.cid-sIjOnjVLN2 .image-wrapper {
  height: 100%;
}
.cid-sIjOnjVLN2 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sIjOnjVLN2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-sIjOnjVLN2 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sIjOnjVLN2 .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-sIjOnjVLN2 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-sIjOnjVLN2 .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-sIjOnjVLN2 .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjOnjVLN2 .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-sIjOnATzHK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIjOnATzHK .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sIjOnATzHK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sIjOnATzHK .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-sIjOnIRYfq {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-sIjOnIRYfq .carousel .carousel-img {
  max-width: 500px;
  max-height: 480px;
}
.cid-sIjOnIRYfq .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sIjOnIRYfq .mbr-overlay {
  z-index: 2;
}
.cid-sIjOnIRYfq .carousel-caption {
  bottom: 40px;
}
.cid-sIjOnIRYfq .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sIjOnIRYfq .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sIjOnIRYfq .carousel-control:hover {
  background: #0b2b5c;
  color: #fff;
  opacity: 1;
}
.cid-sIjOnIRYfq .item-wrapper {
  width: 100%;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sIjOnIRYfq .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sIjOnIRYfq .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sIjOnIRYfq .my-carousel-caption {
  z-index: 1;
  max-width: 580px;
  margin: 0 40vw 0 1rem;
}
@media (max-width: 1000px) {
  .cid-sIjOnIRYfq .my-carousel-caption {
    margin: 0 25vw 0 1rem;
  }
}
@media (max-width: 768px) {
  .cid-sIjOnIRYfq .my-carousel-caption {
    margin: 1rem 1rem 0 1rem;
  }
}
@media (min-width: 796px) {
  .cid-sIjOnIRYfq .content-align-items {
    align-items: center;
  }
}
.cid-sIjOnIRYfq .z-index-1 {
  z-index: 1;
}
.cid-sIjOnIRYfq .carousel-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-sIjOnIRYfq .carousel-controls {
  column-gap: 1rem;
}
.cid-sIjOnIRYfq .carousel-controls a {
  transition: opacity .5s;
  font-size: 16px;
  height: 40px;
  width: 40px;
  color: #0b2b5c;
  border: 2px solid #0b2b5c;
  border-radius: 7px;
  position: relative;
}
.cid-sIjOnIRYfq .carousel-controls a .mbr-iconfont {
  font-weight: 600;
}
.cid-sIjOo0PLkg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fcf5e6;
}
.cid-sIjOo0PLkg .mbr-text {
  color: #767676;
}
.cid-sIjOo0PLkg .mbr-section-subtitle {
  color: #767676;
}
.cid-sIjOo0PLkg .title .num {
  width: 100%;
  display: block;
}
.cid-sIjOo0PLkg .title .card-title {
  z-index: 1;
}
.cid-sIjOo0PLkg .card {
  padding-left: 1rem;
  border-left: 1px solid #f2bb2c;
}
.cid-sIjOo0PLkg .num {
  color: #f2bb2c;
}
@media (max-width: 767px) {
  .cid-sIjOo0PLkg * {
    text-align: left !important;
  }
  .cid-sIjOo0PLkg .cards {
    gap: 3rem;
    margin: 0;
  }
  .cid-sIjOo0PLkg .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sIjOo0PLkg .content-column {
    margin-bottom: 2rem;
  }
}
.cid-sIjOohz4RZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-sIjOohz4RZ .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.1;
}
@media (min-width: 992px) {
  .cid-sIjOohz4RZ form.mbr-form {
    padding: 3rem 2rem;
    width: 100%;
  }
}
.cid-sIjOohz4RZ form.mbr-form .form-control {
  box-shadow: none;
  border: solid 1px #c7c7c7 !important;
}
.cid-sIjOohz4RZ form.mbr-form .form-control:focus {
  border: 1px solid #000 !important;
}
.cid-sIjOohz4RZ form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sIjOohz4RZ form.mbr-form .mbr-section-btn .btn {
  width: max-content;
  margin: auto;
  padding: 0 3rem;
}
.cid-sIjOopuOcc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sIjOopuOcc .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.1;
}
.cid-sIjOopuOcc .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjOopuOcc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjOopuOcc .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 991px) {
  .cid-sIjOopuOcc .container-data {
    margin-bottom: 2rem;
  }
}
.cid-sIjOopuOcc form.mbr-form {
  border-radius: 20px;
  background: #fcf5e6;
}
.cid-sIjOopuOcc form.mbr-form .form-control {
  box-shadow: none;
  border: solid 1px #c7c7c7 !important;
}
.cid-sIjOopuOcc form.mbr-form .form-control:focus {
  border: 1px solid #000 !important;
}
.cid-sIjOopuOcc form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sIjOopuOcc form.mbr-form .mbr-section-btn .btn {
  width: max-content;
  margin: auto;
  padding: 0 3rem;
}
@media (max-width: 991px) {
  .cid-sIjOopuOcc form.mbr-form .mbr-section-btn .btn {
    margin-top: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjOopuOcc form.mbr-form {
    padding: 4rem 3rem;
    width: 70%;
  }
}
@media (max-width: 991px) {
  .cid-sIjOopuOcc form.mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-sIjOoEaG7c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-sIjOoEaG7c .timeline-element {
  position: relative;
}
.cid-sIjOoEaG7c .timelines-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sIjOoEaG7c .timelines-container .timeline-element .nth-order {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
@media (max-width: 768px) {
  .cid-sIjOoEaG7c .timelines-container .timeline-element .nth-order {
    align-items: flex-start;
  }
}
.cid-sIjOoEaG7c .timelines-container .timeline-element:nth-child(2n) .nth-order {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cid-sIjOoEaG7c .timelines-container .timeline-element:nth-child(2n) .nth-order {
    order: 2;
  }
}
.cid-sIjOoEaG7c .mbr-section-title,
.cid-sIjOoEaG7c .mbr-section-subtitle,
.cid-sIjOoEaG7c .timeline-date {
  text-align: center;
}
.cid-sIjOoEaG7c .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sIjOoEaG7c .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sIjOoEaG7c .iconBackground {
    left: 50%;
  }
}
.cid-sIjOoEaG7c .row:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sIjOoEaG7c .row:after {
    height: calc(100% + 30px);
    top: 20px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sIjOoEaG7c .row:after {
    height: calc(100% - 20px);
    top: 20px;
    left: 50%;
  }
}
.cid-sIjOoEaG7c .timeline-content {
  background: #ffffff;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-sIjOoEaG7c .timeline-content {
    padding: 1rem;
  }
  .cid-sIjOoEaG7c .timeline-date-wrapper,
  .cid-sIjOoEaG7c .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sIjOoEaG7c .nth-order {
    margin: 4rem 0 1rem 0;
  }
  .cid-sIjOoEaG7c .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-sIjOoEaG7c .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sIjOoEaG7c .timeline-content {
    padding: 1rem;
  }
  .cid-sIjOoEaG7c .timeline-date-wrapper,
  .cid-sIjOoEaG7c .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjOoEaG7c .timeline-content {
    padding: 2rem;
  }
  .cid-sIjOoEaG7c .timeline-date-wrapper,
  .cid-sIjOoEaG7c .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-sIjOxb2vu0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcf5e6;
}
.cid-sIjOxb2vu0 .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-sIjOxb2vu0 .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-sIjOxb2vu0 .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-sIjOxb2vu0 .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjOxb2vu0 .row > div {
    margin: auto;
  }
}
.cid-sIjOxb2vu0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sIjOxb2vu0 .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjOxb2vu0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjOxb2vu0 .list {
    margin-bottom: 0rem;
  }
}
.cid-sIjOxb2vu0 .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-sIjOxb2vu0 .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-sIjOxb2vu0 .row {
    display: grid;
  }
  .cid-sIjOxb2vu0 .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-sIjOxb2vu0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sIjOxb2vu0 .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjOxb2vu0 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sIjOxb2vu0 .copyright {
  color: #193c73;
}
