@import url(https://fonts.googleapis.com/css?family=Titillium+Web:200,200i,300,300i,400,400i,600,600i,700,700i,900&display=swap);





body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 2.6rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 2.3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.68rem;
}
.display-4 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.6rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.3rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.08rem;
}
/* ---- 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: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.84rem;
    font-size: calc( 1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #b7c948 !important;
}
.bg-success {
  background-color: #0b516b !important;
}
.bg-info {
  background-color: #34ca9d !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #b7c948 !important;
  border-color: #b7c948 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #89982d !important;
  border-color: #89982d !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #89982d !important;
  border-color: #89982d !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #0096ae !important;
  border-color: #0096ae !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #005462 !important;
  border-color: #005462 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #005462 !important;
  border-color: #005462 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #34ca9d !important;
  border-color: #34ca9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #248d6e !important;
  border-color: #248d6e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #248d6e !important;
  border-color: #248d6e !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #0b516b !important;
  border-color: #0b516b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #041c26 !important;
  border-color: #041c26 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #041c26 !important;
  border-color: #041c26 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.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: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #778427 !important;
  color: #778427 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #b7c948 !important;
  border-color: #b7c948 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #b7c948 !important;
  border-color: #b7c948 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #003e48 !important;
  color: #003e48 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #0096ae !important;
  border-color: #0096ae !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0096ae !important;
  border-color: #0096ae !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #1f795e !important;
  color: #1f795e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #34ca9d !important;
  border-color: #34ca9d !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #34ca9d !important;
  border-color: #34ca9d !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #010b0f !important;
  color: #010b0f !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #0b516b !important;
  border-color: #0b516b !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0b516b !important;
  border-color: #0b516b !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #cccccc !important;
  color: #cccccc !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.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: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !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: #b7c948 !important;
}
.text-secondary {
  color: #0096ae !important;
}
.text-success {
  color: #0b516b !important;
}
.text-info {
  color: #34ca9d !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #778427 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #003e48 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #010b0f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #1f795e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #cccccc !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !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: #0b516b;
}
.alert-info {
  background-color: #34ca9d;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn {
  border-radius: 100px;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #b7c948;
  border-color: #b7c948;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #b7c948;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f5f7e6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #17a9df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d6f4eb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #34ca9d;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #000000;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #34ca9d;
}
.form-control {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.3rem;
}
.form-control > .mbr-iconfont {
  font-size: 2.08rem;
}
blockquote {
  border-color: #b7c948;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #b7c948;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #b7c948;
}
.btn-social + .btn {
  margin-left: .1rem;
}
@media (min-width: 768px) {
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b7c948;
  color: #ffffff;
}
.jq-number__spin {
  background-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: #b7c948;
  border-bottom-color: #b7c948;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #b7c948 !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: #0096ae !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='%23b7c948' %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-sADyNRNPHs .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0b516b;
}
.cid-sADyNRNPHs .navbar.opened {
  transition: all 0.3s;
  background: #0b516b !important;
}
.cid-sADyNRNPHs .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sADyNRNPHs .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sADyNRNPHs .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sADyNRNPHs .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sADyNRNPHs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sADyNRNPHs .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sADyNRNPHs .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sADyNRNPHs .navbar.collapsed.opened .navbar-collapse.show,
.cid-sADyNRNPHs .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sADyNRNPHs .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sADyNRNPHs .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sADyNRNPHs .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sADyNRNPHs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sADyNRNPHs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sADyNRNPHs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sADyNRNPHs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sADyNRNPHs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sADyNRNPHs .navbar {
    flex-wrap: nowrap;
  }
  .cid-sADyNRNPHs .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sADyNRNPHs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sADyNRNPHs .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sADyNRNPHs .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sADyNRNPHs .navbar.opened .navbar-collapse.show,
  .cid-sADyNRNPHs .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sADyNRNPHs .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sADyNRNPHs .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sADyNRNPHs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sADyNRNPHs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sADyNRNPHs .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sADyNRNPHs .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sADyNRNPHs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sADyNRNPHs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sADyNRNPHs .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sADyNRNPHs .navbar.navbar-short {
  background: #0b516b !important;
  min-height: 60px;
}
.cid-sADyNRNPHs .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sADyNRNPHs .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sADyNRNPHs .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sADyNRNPHs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sADyNRNPHs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sADyNRNPHs .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sADyNRNPHs .dropdown-item.active,
.cid-sADyNRNPHs .dropdown-item:active {
  background-color: transparent;
}
.cid-sADyNRNPHs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sADyNRNPHs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sADyNRNPHs .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sADyNRNPHs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b516b;
}
.cid-sADyNRNPHs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sADyNRNPHs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sADyNRNPHs ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sADyNRNPHs .navbar-buttons {
  text-align: center;
}
.cid-sADyNRNPHs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sADyNRNPHs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sADyNRNPHs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sADyNRNPHs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sADyNRNPHs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sADyNRNPHs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sADyNRNPHs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sADyNRNPHs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sADyNRNPHs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sADyNRNPHs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sADyNRNPHs .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sADyNRNPHs a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sADyNRNPHs a.nav-link:focus {
  outline: none;
}
.cid-sADyNRNPHs .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sADyNRNPHs .nav-link:hover,
.cid-sADyNRNPHs .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sADyNRNPHs .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sADyNRNPHs .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAAsjeGOon {
  background-image: url("../../../assets/images/frascona-webartboard-1-1920x1080.jpg");
}
.cid-sAAsjeGOon .mbr-section-title,
.cid-sAAsjeGOon .mbr-section-subtitle {
  color: #000000;
}
.cid-sAAsjeGOon .mbr-section-text {
  color: #232323;
}
.cid-sAAsjeGOon .mbr-text,
.cid-sAAsjeGOon .typed-text,
.cid-sAAsjeGOon .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sAAsjeGOon .btn {
  margin-left: 4px !important;
}
.cid-sAAsjeGOon .animated-element {
  color: #34ca9d;
}
.cid-sAAsjeGOon .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #34ca9d;
}
.cid-sAAsjeGOon .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-sAAsjeGOon .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sAAsjeGOon .typed-text,
  .cid-sAAsjeGOon .mbr-section-subtitle,
  .cid-sAAsjeGOon .mbr-section-text,
  .cid-sAAsjeGOon .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sBDUBUSkdr {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #0b516b;
}
.cid-sBDUBUSkdr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sBDUBUSkdr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sBDUBUSkdr .mbr-section-subtitle {
  color: #444444;
  text-align: center;
}
.cid-sBDUBUSkdr .row {
  align-items: center;
  height: 100%;
}
.cid-sBDUBUSkdr .col-10 {
  margin: auto;
}
.cid-sAv782l3vZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #716c80;
}
.cid-sAv782l3vZ .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-sAv782l3vZ .mbr-section-title {
  margin: 0;
}
.cid-sAv782l3vZ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sAv782l3vZ .card-img {
  text-align: center;
}
.cid-sAv782l3vZ .row-item {
  padding-bottom: 2rem;
  padding: 5rem 2rem;
}
.cid-sAv782l3vZ .row-item.card1 {
  background: #34ca9d;
}
.cid-sAv782l3vZ .row-item.card2 {
  background: #098484;
}
.cid-sAv782l3vZ .row-item.card3 {
  background: #b7c948;
}
.cid-sAv782l3vZ .row-item.card4 {
  background: #2bdc9d;
}
.cid-sAv782l3vZ .mbr-text {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sAv782l3vZ .card-img,
  .cid-sAv782l3vZ .mbr-text,
  .cid-sAv782l3vZ .mbr-card-title,
  .cid-sAv782l3vZ .mbr-section-subtitle,
  .cid-sAv782l3vZ .mbr-section-title,
  .cid-sAv782l3vZ .underline {
    text-align: center !important;
  }
}
.cid-sAv782l3vZ .card1 > .mbr-card-title,
.cid-sAv782l3vZ .card1 > .card-img {
  color: #ffffff;
}
.cid-sAv782l3vZ .card1 > .mbr-text,
.cid-sAv782l3vZ .card1 > .mbr-section-btn {
  color: #ffffff;
}
.cid-sAv782l3vZ .card3 > .mbr-text,
.cid-sAv782l3vZ .card3 > .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sBJfZORR4V {
  padding-top: 25rem;
  background-image: url("../../../assets/images/frascona-webartboard-18-1920x1110.jpg");
}
.cid-sBJ4O4mnzP {
  padding-top: 60px;
  background-image: url("../../../assets/images/frascona-webartboard-12-1225x818.jpg");
}
.cid-sBJ4O4mnzP .text-content {
  padding-bottom: 0px;
}
.cid-sBJ4O4mnzP .content-container .btn-bgr {
  z-index: 0;
}
.cid-sBJ4O4mnzP .box-item-text {
  color: #ffffff;
}
.cid-sBJ4O4mnzP .box-item {
  padding: 2.5rem;
}
.cid-sBJ4O4mnzP .box-item:first-child {
  background-color: #34ca9d;
}
.cid-sBJ4O4mnzP .box-item:nth-child(2) {
  background-color: #0096ae;
}
.cid-sBJ4O4mnzP .box-item:last-child {
  background-color: #0b516b;
}
.cid-sBJ4O4mnzP .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sBJ4O4mnzP .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sBJ4O4mnzP .box-list li:last-child {
  border-bottom: none;
}
.cid-sBJ4O4mnzP .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sBJ4O4mnzP .mbr-iconfont {
  color: #b7c948;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-sBJ4O4mnzP .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-sBJ4O4mnzP .mbr-section-subtitle,
  .cid-sBJ4O4mnzP .mbr-section-title,
  .cid-sBJ4O4mnzP .mbr-text,
  .cid-sBJ4O4mnzP .mbr-section-btn,
  .cid-sBJ4O4mnzP .icon-block-top,
  .cid-sBJ4O4mnzP .box-item-title,
  .cid-sBJ4O4mnzP .box-item-text {
    text-align: center !important;
  }
}
.cid-sBJ4O4mnzP .mbr-section-title {
  color: #444444;
}
.cid-sBJ4O4mnzP .mbr-text,
.cid-sBJ4O4mnzP .mbr-section-btn {
  color: #232323;
}
.cid-sBJ4O4mnzP .mbr-section-subtitle {
  color: #767676;
}
.cid-sBJ4O4mnzP .icon-block-top,
.cid-sBJ4O4mnzP .box-item-title {
  color: #ffffff;
}
.cid-sB3w6bgBMz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/triangulitos-1.svg");
}
.cid-sB3w6bgBMz .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #34ca9d;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 6px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-sB3w6bgBMz .card-link,
.cid-sB3w6bgBMz .link-wrap,
.cid-sB3w6bgBMz .card-link:before {
  color: #121212;
}
.cid-sB3w6bgBMz .card-wrapper {
  overflow: visible;
}
.cid-sB3w6bgBMz .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-sB3w6bgBMz .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-sB3w6bgBMz .card-link:hover {
  color: #b7c948;
  transition: all 0.3s;
}
.cid-sB3w6bgBMz .card-link:hover:before {
  right: -2rem;
  color: #b7c948;
  transition: all 0.3s;
}
.cid-sB3w6bgBMz .card-text {
  color: #454545;
  text-align: center;
}
.cid-sB3w6bgBMz .card-title,
.cid-sB3w6bgBMz .icon-wrap {
  color: #444444;
  text-align: center;
}
.cid-sB3w6bgBMz .mbr-section-subtitle {
  color: #444444;
}
.cid-sB3w6bgBMz .mbr-section-title {
  color: #444444;
}
.cid-sB3w8Cnf4W {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/triangulitos2.svg");
}
.cid-sB3w8Cnf4W .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #34ca9d;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 6px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-sB3w8Cnf4W .card-link,
.cid-sB3w8Cnf4W .link-wrap,
.cid-sB3w8Cnf4W .card-link:before {
  color: #121212;
}
.cid-sB3w8Cnf4W .card-wrapper {
  overflow: visible;
}
.cid-sB3w8Cnf4W .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-sB3w8Cnf4W .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-sB3w8Cnf4W .card-link:hover {
  color: #b7c948;
  transition: all 0.3s;
}
.cid-sB3w8Cnf4W .card-link:hover:before {
  right: -2rem;
  color: #b7c948;
  transition: all 0.3s;
}
.cid-sB3w8Cnf4W .card-text {
  color: #444444;
  text-align: center;
}
.cid-sB3w8Cnf4W .card-title,
.cid-sB3w8Cnf4W .icon-wrap {
  color: #444444;
  text-align: center;
}
.cid-sAH525hDK9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0b516b;
}
.cid-sAH525hDK9 p {
  color: #767676;
}
.cid-sAH525hDK9 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sAH525hDK9 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sAH525hDK9 .row-element,
.cid-sAH525hDK9 .image-element {
  padding: 0;
}
.cid-sAH525hDK9 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sAH525hDK9 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sAH525hDK9 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sAH525hDK9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b7c948, #0096ae);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sAH525hDK9 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sAH525hDK9 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sAH525hDK9 .text-content {
    padding: 2rem 1rem;
  }
  .cid-sAH525hDK9 .underline .line {
    height: 2px;
  }
  .cid-sAH525hDK9 .mbr-title,
  .cid-sAH525hDK9 .underline,
  .cid-sAH525hDK9 .mbr-text,
  .cid-sAH525hDK9 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sAH525hDK9 .mbr-title,
.cid-sAH525hDK9 .underline {
  color: #ffffff;
}
.cid-sAH525hDK9 .mbr-text,
.cid-sAH525hDK9 .mbr-section-btn {
  color: #ffffff;
}
.cid-sBJgiIMsOG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #0096ae;
}
.cid-sBJgiIMsOG .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sBJgiIMsOG .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sBJgiIMsOG .mbr-section-title {
  text-align: center;
}
.cid-sBJbVs3W8R {
  padding-top: 45px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/triangulitos-1.svg");
}
.cid-sBJbVs3W8R .carousel-item {
  padding: 0 10%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sBJbVs3W8R .carousel-item.active,
.cid-sBJbVs3W8R .carousel-item-next,
.cid-sBJbVs3W8R .carousel-item-prev {
  display: flex;
}
.cid-sBJbVs3W8R .img-box {
  position: relative;
  width: fit-content;
  margin: auto;
}
.cid-sBJbVs3W8R .carousel-controls .mbr-iconfont {
  font-family: Moririse2 !important;
  font-size: 1rem;
  font-weight: 900;
  transition: opacity .3s;
}
.cid-sBJbVs3W8R .carousel-controls a {
  transition: all .3s;
  border-radius: 50%;
  border: none;
  background-color: transparent;
}
.cid-sBJbVs3W8R .carousel-controls a span {
  color: #0096ae !important;
  font-size: 35px !important;
}
.cid-sBJbVs3W8R .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-sBJbVs3W8R .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-sBJbVs3W8R .carousel-controls .carousel-control-next,
.cid-sBJbVs3W8R .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-sBJbVs3W8R .carousel-controls .carousel-control-next {
  bottom: auto;
  top: 44%;
}
.cid-sBJbVs3W8R .carousel-controls .carousel-control-prev {
  bottom: auto;
  top: 44%;
}
.cid-sBJbVs3W8R .author-box {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-sBJbVs3W8R .face {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
  object-fit: cover;
}
.cid-sBJbVs3W8R .author {
  margin: auto 0;
}
.cid-sBJbVs3W8R .mbr-text {
  margin-bottom: 34px !important;
}
.cid-sBJbVs3W8R h3,
.cid-sBJbVs3W8R h4 {
  margin: 0;
  padding: 0;
}
.cid-sBJbVs3W8R .mbr-bottom {
  color: #767676;
}
.cid-sBJbVs3W8R .box {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px!important;
}
@media (max-width: 992px) {
  .cid-sBJbVs3W8R .carousel-controls a span {
    bottom: auto;
    top: 30%;
  }
}
@media (max-width: 767px) {
  .cid-sBJbVs3W8R .carousel-controls a span {
    bottom: auto;
    top: 20%;
  }
}
.cid-sBJbVs3W8R .carousel-indicators {
  bottom: -65px;
}
@media (max-width: 786px) {
  .cid-sBJbVs3W8R .carousel-indicators {
    bottom: -75px;
  }
}
.cid-sBJbVs3W8R .carousel-indicators li {
  margin-right: 31px;
  margin-left: 31px;
  opacity: 1;
  width: 6px;
  height: 6px;
  max-width: 6px;
  max-height: 6px;
  min-width: 6px;
  min-height: 6px;
  background: #767676;
  border: none;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cid-sBJbVs3W8R .carousel-indicators li:hover {
  opacity: 1 !important;
}
.cid-sBJbVs3W8R .carousel-indicators li svg {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  z-index: 1;
  fill: none;
  color: #0096ae;
  stroke: none;
  overflow: visible;
}
.cid-sBJbVs3W8R .carousel-indicators li svg circle {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
  stroke: #0096ae;
  stroke-width: 1;
  transition: all 0.6s cubic-bezier(0.43, 0.41, 0.36, 0.9);
  transform: rotate(-145deg);
  transform-origin: center;
}
.cid-sBJbVs3W8R .carousel-indicators li.active {
  background: #0096ae;
}
.cid-sBJbVs3W8R .carousel-indicators li.active circle {
  stroke-dashoffset: 0;
  transform: rotate(55deg);
}
.cid-sBJbVs3W8R .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-sBJbVs3W8R .mbr-text,
.cid-sBJbVs3W8R .mbr-section-btn {
  text-align: center;
}
.cid-sBJbVs3W8R H3 {
  color: #0096ae;
}
.cid-sNU9gzuIBC {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #d5e962;
}
.cid-sNU9gzuIBC .form-block {
  padding: 75px 50px 35px 50px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sNU9gzuIBC .form-block {
    padding: 1rem;
  }
}
.cid-sNU9gzuIBC input::-webkit-input-placeholder,
.cid-sNU9gzuIBC textarea::-webkit-input-placeholder {
  opacity: .5;
}
.cid-sNU9gzuIBC input:-moz-placeholder,
.cid-sNU9gzuIBC textarea:-moz-placeholder {
  opacity: .5;
}
.cid-sNU9gzuIBC .main-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sNU9gzuIBC .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-sNU9gzuIBC .content-panel {
  padding: 3rem 2.5rem;
  background-color: #0b516b;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (max-width: 768px) {
  .cid-sNU9gzuIBC .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sNU9gzuIBC .text-block {
    margin-bottom: 2rem;
  }
}
.cid-sNU9gzuIBC .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sNU9gzuIBC .content-block {
  color: #ffffff;
}
.cid-sAGw98FO4Z {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #0b516b;
}
.cid-sAGw98FO4Z .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #f6f6f6;
}
.cid-sAGw98FO4Z .first-column .mbr-text {
  margin: 0;
}
.cid-sAGw98FO4Z .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sAGw98FO4Z .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-sAGw98FO4Z .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-sAGw98FO4Z .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-sAGw98FO4Z .form-group {
  max-width: 55%;
}
.cid-sAGw98FO4Z .form-group,
.cid-sAGw98FO4Z .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-sAGw98FO4Z .form-control {
  font-size: .9rem;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  background: #ffffff;
  color: #d8d7d7;
}
.cid-sAGw98FO4Z .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-sAGw98FO4Z .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-sAGw98FO4Z .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-sAGw98FO4Z .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-sAGw98FO4Z .col + .mbr-section-btn .btn,
.cid-sAGw98FO4Z .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-sAGw98FO4Z .dragArea > *:nth-last-child(2).col,
.cid-sAGw98FO4Z .dragArea > *:nth-last-child(2).col-auto,
.cid-sAGw98FO4Z .col + .mbr-section-btn,
.cid-sAGw98FO4Z .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sAGw98FO4Z .first-column,
  .cid-sAGw98FO4Z .second-column {
    padding-bottom: 2rem;
  }
  .cid-sAGw98FO4Z .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sAGw98FO4Z .first-column,
  .cid-sAGw98FO4Z .second-column,
  .cid-sAGw98FO4Z .third-column {
    text-align: center;
  }
}
.cid-sAGw98FO4Z .mbr-section-title,
.cid-sAGw98FO4Z .icons-wrapper {
  color: #d5e962;
}
.cid-sAIreeI1ou {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #0b516b;
}
.cid-sAIreeI1ou .google-map {
  height: 20rem;
  position: relative;
}
.cid-sAIreeI1ou .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sAIreeI1ou .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-sAIreeI1ou .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sAIreeI1ou .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sBWVjuasD7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #0b516b;
}
.cid-sBWVjuasD7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sBWVjuasD7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sBWVjuasD7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu li:hover {
  color: #0096ae;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sBWVjuasD7 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sBWVjuasD7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sBWVjuasD7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sBWVjuasD7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sBWVjuasD7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBWVjuasD7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sBWVjuasD7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sBWVjuasD7 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sBWVjuasD7 .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sBWVjuasD7 .media-container-row .mbr-text {
  color: #0b516b;
}
.cid-sBW0JiblJ5.popup-builder {
  background-color: #ffffff;
}
.cid-sBW0JiblJ5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sBW0JiblJ5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sBW0JiblJ5 .modal-content,
.cid-sBW0JiblJ5 .modal-dialog {
  height: auto;
}
.cid-sBW0JiblJ5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sBW0JiblJ5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sBW0JiblJ5 .form-wrapper .mbr-form .form-group,
  .cid-sBW0JiblJ5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sBW0JiblJ5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sBW0JiblJ5 .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-sBW0JiblJ5 .mbr-text {
  text-align: center;
}
.cid-sBW0JiblJ5 .pt-0 {
  padding-top: 0 !important;
}
.cid-sBW0JiblJ5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sBW0JiblJ5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sBW0JiblJ5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sBW0JiblJ5 .modal-open {
  overflow: hidden;
}
.cid-sBW0JiblJ5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sBW0JiblJ5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sBW0JiblJ5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sBW0JiblJ5 .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-sBW0JiblJ5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sBW0JiblJ5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sBW0JiblJ5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sBW0JiblJ5 .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-sBW0JiblJ5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sBW0JiblJ5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sBW0JiblJ5 .modal-backdrop.show {
  opacity: .5;
}
.cid-sBW0JiblJ5 .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-sBW0JiblJ5 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sBW0JiblJ5 .modal-header .close:hover {
  opacity: 1;
}
.cid-sBW0JiblJ5 .modal-header .close:focus {
  outline: none;
}
.cid-sBW0JiblJ5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #444444;
}
.cid-sBW0JiblJ5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sBW0JiblJ5 .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-sBW0JiblJ5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sBW0JiblJ5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sBW0JiblJ5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sBW0JiblJ5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sBW0JiblJ5 .modal-sm {
    max-width: 300px;
  }
  .cid-sBW0JiblJ5 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sBW0JiblJ5 .modal-lg,
  .cid-sBW0JiblJ5 .modal-xl {
    max-width: 800px;
  }
  .cid-sBW0JiblJ5 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sBW0JiblJ5 .modal-xl {
    max-width: 1140px;
  }
  .cid-sBW0JiblJ5 .container {
    max-width: 1140px;
  }
}
.cid-sBW0JiblJ5 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sBW0JiblJ5 .container {
    max-width: 720px;
  }
}
.cid-sBW0JiblJ5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sBW0JiblJ5 .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-sBW0JiblJ5 .form-group {
  margin-bottom: 1rem;
}
.cid-sBW0JiblJ5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sBW0JiblJ5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sBW0JiblJ5 .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-sBW0JiblJ5 LABEL {
  color: #444444;
}
.cid-sBPSqDoQjd .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0b516b;
}
.cid-sBPSqDoQjd .navbar.opened {
  transition: all 0.3s;
  background: #0b516b !important;
}
.cid-sBPSqDoQjd .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sBPSqDoQjd .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBPSqDoQjd .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sBPSqDoQjd .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBPSqDoQjd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBPSqDoQjd .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sBPSqDoQjd .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sBPSqDoQjd .navbar.collapsed.opened .navbar-collapse.show,
.cid-sBPSqDoQjd .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sBPSqDoQjd .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sBPSqDoQjd .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sBPSqDoQjd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBPSqDoQjd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBPSqDoQjd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBPSqDoQjd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBPSqDoQjd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBPSqDoQjd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sBPSqDoQjd .navbar {
    flex-wrap: nowrap;
  }
  .cid-sBPSqDoQjd .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sBPSqDoQjd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBPSqDoQjd .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sBPSqDoQjd .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sBPSqDoQjd .navbar.opened .navbar-collapse.show,
  .cid-sBPSqDoQjd .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sBPSqDoQjd .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sBPSqDoQjd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBPSqDoQjd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBPSqDoQjd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBPSqDoQjd .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sBPSqDoQjd .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sBPSqDoQjd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBPSqDoQjd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sBPSqDoQjd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sBPSqDoQjd .navbar.navbar-short {
  background: #0b516b !important;
  min-height: 60px;
}
.cid-sBPSqDoQjd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sBPSqDoQjd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sBPSqDoQjd .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sBPSqDoQjd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBPSqDoQjd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBPSqDoQjd .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sBPSqDoQjd .dropdown-item.active,
.cid-sBPSqDoQjd .dropdown-item:active {
  background-color: transparent;
}
.cid-sBPSqDoQjd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBPSqDoQjd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBPSqDoQjd .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBPSqDoQjd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b516b;
}
.cid-sBPSqDoQjd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBPSqDoQjd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBPSqDoQjd ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sBPSqDoQjd .navbar-buttons {
  text-align: center;
}
.cid-sBPSqDoQjd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sBPSqDoQjd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBPSqDoQjd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBPSqDoQjd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBPSqDoQjd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBPSqDoQjd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBPSqDoQjd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBPSqDoQjd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBPSqDoQjd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBPSqDoQjd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBPSqDoQjd .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sBPSqDoQjd a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sBPSqDoQjd a.nav-link:focus {
  outline: none;
}
.cid-sBPSqDoQjd .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBPSqDoQjd .nav-link:hover,
.cid-sBPSqDoQjd .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sBPSqDoQjd .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sBPSqDoQjd .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBPSqDPmgU {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #34ca9d;
}
.cid-sBPSqDPmgU .card-box {
  padding: 0rem;
}
.cid-sBPSqDPmgU .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-sBPSqDPmgU .card {
  padding: 0;
  margin: auto;
}
.cid-sBPSqDPmgU .card-img {
  height: 400px;
}
.cid-sBPSqDPmgU .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sBPSqDPmgU .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-sBPSqDPmgU .card-wrapper {
    padding: 4rem;
  }
}
.cid-sBPSqDPmgU .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-sBPSqz7Osk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sBPSqz7Osk .nav-tabs .nav-item.open .nav-link:focus,
.cid-sBPSqz7Osk .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sBPSqz7Osk .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-sBPSqz7Osk .nav-tabs .nav-item {
  padding: 0.8rem 3rem 0.8rem 0rem;
  border-bottom: 1px solid #f9f7f6;
}
.cid-sBPSqz7Osk .quote {
  padding-top: 0.8rem;
  color: #34ca9d;
  font-weight: 700;
}
.cid-sBPSqz7Osk .col-md-12 {
  flex-direction: row;
  display: flex;
}
.cid-sBPSqz7Osk .nav {
  flex-direction: column;
}
.cid-sBPSqz7Osk .nav-tabs .nav-link {
  padding: 0.2rem 1rem;
  color: #767676;
  font-style: normal;
  font-weight: 700;
  transition: all 0.5s;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-sBPSqz7Osk .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #34ca9d;
  border-left: 3px solid #34ca9d;
}
.cid-sBPSqz7Osk .nav-tabs .nav-link.active {
  font-weight: 700;
  color: #34ca9d;
  font-style: normal;
  border-left: 3px solid #34ca9d;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sBPSqz7Osk .nav-tabs {
    flex-direction: row;
    border-right: 0px;
    padding-right: 0rem;
  }
  .cid-sBPSqz7Osk .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-sBPSqz7Osk p {
    padding-left: 0rem;
  }
  .cid-sBPSqz7Osk .quote {
    padding-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-sBPSqz7Osk .mbr-text {
    padding-left: 2rem;
  }
}
@media (max-width: 576px) {
  .cid-sBPSqz7Osk .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-sBPSqz7Osk .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    flex-direction: column;
  }
  .cid-sBPSqz7Osk p {
    padding-left: 0rem;
  }
}
.cid-sBPSqz7Osk P {
  color: #444444;
}
.cid-sBPSqF47YW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0096ae;
}
.cid-sBPSqF47YW .card-box {
  padding: 0rem;
}
.cid-sBPSqF47YW .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-sBPSqF47YW .card {
  padding: 0;
  margin: auto;
}
.cid-sBPSqF47YW .card-img {
  height: 400px;
}
.cid-sBPSqF47YW .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sBPSqF47YW .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-sBPSqF47YW .card-wrapper {
    padding: 4rem;
  }
}
.cid-sBPSqF47YW .card-title {
  color: #ffffff;
  text-align: right;
}
.cid-sBPSqE8fan {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBPSqE8fan .nav-tabs .nav-item.open .nav-link:focus,
.cid-sBPSqE8fan .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sBPSqE8fan .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-sBPSqE8fan .nav-tabs .nav-item {
  padding: 0.8rem 3rem 0.8rem 0rem;
  border-bottom: 1px solid #f9f7f6;
}
.cid-sBPSqE8fan .quote {
  padding-top: 0.8rem;
  color: #0096ae;
  font-weight: 700;
}
.cid-sBPSqE8fan .col-md-12 {
  flex-direction: row;
  display: flex;
}
.cid-sBPSqE8fan .nav {
  flex-direction: column;
}
.cid-sBPSqE8fan .nav-tabs .nav-link {
  padding: 0.2rem 1rem;
  color: #767676;
  font-style: normal;
  font-weight: 700;
  transition: all 0.5s;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-sBPSqE8fan .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #0096ae;
  border-left: 3px solid #0096ae;
}
.cid-sBPSqE8fan .nav-tabs .nav-link.active {
  font-weight: 700;
  color: #0096ae;
  font-style: normal;
  border-left: 3px solid #0096ae;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sBPSqE8fan .nav-tabs {
    flex-direction: row;
    border-right: 0px;
    padding-right: 0rem;
  }
  .cid-sBPSqE8fan .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-sBPSqE8fan p {
    padding-left: 0rem;
  }
  .cid-sBPSqE8fan .quote {
    padding-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-sBPSqE8fan .mbr-text {
    padding-left: 2rem;
  }
}
@media (max-width: 576px) {
  .cid-sBPSqE8fan .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-sBPSqE8fan .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    flex-direction: column;
  }
  .cid-sBPSqE8fan p {
    padding-left: 0rem;
  }
}
.cid-sBPSqE8fan P {
  color: #444444;
}
.cid-sBPSqA3KQj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sBPSqA3KQj img {
  width: 120px;
  margin: auto;
}
.cid-sBPSqA3KQj .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sBPSqA3KQj .card {
    max-width: 12.5%;
  }
}
.cid-sBPSqA3KQj .container-fluid {
  margin: auto;
}
.cid-sBPSqA3KQj .mbr-section-title {
  color: #767676;
}
.cid-sBPSqA3KQj .mbr-section-subtitle {
  color: #444444;
}
.cid-sBPSqAtBEk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sBPSqAtBEk img {
  width: 120px;
  margin: auto;
}
.cid-sBPSqAtBEk .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sBPSqAtBEk .card {
    max-width: 12.5%;
  }
}
.cid-sBPSqAtBEk .container-fluid {
  margin: auto;
}
.cid-sBPSqAtBEk .mbr-section-title {
  color: #444444;
}
.cid-sBXjil4uVY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sBXjil4uVY img {
  width: 120px;
  margin: auto;
}
.cid-sBXjil4uVY .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sBXjil4uVY .card {
    max-width: 12.5%;
  }
}
.cid-sBXjil4uVY .container-fluid {
  margin: auto;
}
.cid-sBXjil4uVY .mbr-section-title {
  color: #444444;
}
.cid-sBPSqC4vF6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d5e962;
}
.cid-sBPSqC4vF6 .card-box {
  padding: 0rem;
}
.cid-sBPSqC4vF6 .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-sBPSqC4vF6 .card {
  padding: 0;
  margin: auto;
}
.cid-sBPSqC4vF6 .card-img {
  height: 400px;
}
.cid-sBPSqC4vF6 .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sBPSqC4vF6 .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-sBPSqC4vF6 .card-wrapper {
    padding: 4rem;
  }
}
.cid-sBPSqC4vF6 .card-title {
  color: #444444;
  text-align: left;
}
.cid-sBPUaROdRs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sBPUaROdRs .nav-tabs .nav-item.open .nav-link:focus,
.cid-sBPUaROdRs .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sBPUaROdRs .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-sBPUaROdRs .nav-tabs .nav-item {
  padding: 0.8rem 3rem 0.8rem 0rem;
  border-bottom: 1px solid #f9f7f6;
}
.cid-sBPUaROdRs .quote {
  padding-top: 0.8rem;
  color: #b7c948;
  font-weight: 700;
}
.cid-sBPUaROdRs .col-md-12 {
  flex-direction: row;
  display: flex;
}
.cid-sBPUaROdRs .nav {
  flex-direction: column;
}
.cid-sBPUaROdRs .nav-tabs .nav-link {
  padding: 0.2rem 1rem;
  color: #767676;
  font-style: normal;
  font-weight: 700;
  transition: all 0.5s;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-sBPUaROdRs .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #b7c948;
  border-left: 3px solid #b7c948;
}
.cid-sBPUaROdRs .nav-tabs .nav-link.active {
  font-weight: 700;
  color: #b7c948;
  font-style: normal;
  border-left: 3px solid #b7c948;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sBPUaROdRs .nav-tabs {
    flex-direction: row;
    border-right: 0px;
    padding-right: 0rem;
  }
  .cid-sBPUaROdRs .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-sBPUaROdRs p {
    padding-left: 0rem;
  }
  .cid-sBPUaROdRs .quote {
    padding-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-sBPUaROdRs .mbr-text {
    padding-left: 2rem;
  }
}
@media (max-width: 576px) {
  .cid-sBPUaROdRs .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-sBPUaROdRs .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    flex-direction: column;
  }
  .cid-sBPUaROdRs p {
    padding-left: 0rem;
  }
}
.cid-sBPUaROdRs P {
  color: #444444;
}
.cid-sNU61dprdP {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #d5e962;
}
.cid-sNU61dprdP .form-block {
  padding: 75px 50px 35px 50px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sNU61dprdP .form-block {
    padding: 1rem;
  }
}
.cid-sNU61dprdP input::-webkit-input-placeholder,
.cid-sNU61dprdP textarea::-webkit-input-placeholder {
  opacity: .5;
}
.cid-sNU61dprdP input:-moz-placeholder,
.cid-sNU61dprdP textarea:-moz-placeholder {
  opacity: .5;
}
.cid-sNU61dprdP .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-sNU61dprdP .content-panel {
  padding: 3rem 2.5rem;
  background-color: #0b516b;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (max-width: 768px) {
  .cid-sNU61dprdP .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sNU61dprdP .text-block {
    margin-bottom: 2rem;
  }
}
.cid-sNU61dprdP .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sNU61dprdP .content-block {
  color: #ffffff;
}
.cid-sBPSqG9bxA {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #0b516b;
}
.cid-sBPSqG9bxA .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #f6f6f6;
}
.cid-sBPSqG9bxA .first-column .mbr-text {
  margin: 0;
}
.cid-sBPSqG9bxA .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sBPSqG9bxA .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-sBPSqG9bxA .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-sBPSqG9bxA .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-sBPSqG9bxA .form-group {
  max-width: 55%;
}
.cid-sBPSqG9bxA .form-group,
.cid-sBPSqG9bxA .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-sBPSqG9bxA .form-control {
  font-size: .9rem;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  background: #ffffff;
  color: #d8d7d7;
}
.cid-sBPSqG9bxA .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-sBPSqG9bxA .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-sBPSqG9bxA .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-sBPSqG9bxA .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-sBPSqG9bxA .col + .mbr-section-btn .btn,
.cid-sBPSqG9bxA .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-sBPSqG9bxA .dragArea > *:nth-last-child(2).col,
.cid-sBPSqG9bxA .dragArea > *:nth-last-child(2).col-auto,
.cid-sBPSqG9bxA .col + .mbr-section-btn,
.cid-sBPSqG9bxA .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sBPSqG9bxA .first-column,
  .cid-sBPSqG9bxA .second-column {
    padding-bottom: 2rem;
  }
  .cid-sBPSqG9bxA .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sBPSqG9bxA .first-column,
  .cid-sBPSqG9bxA .second-column,
  .cid-sBPSqG9bxA .third-column {
    text-align: center;
  }
}
.cid-sBPSqG9bxA .mbr-section-title,
.cid-sBPSqG9bxA .icons-wrapper {
  color: #d5e962;
}
.cid-sBWVjuasD7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #0b516b;
}
.cid-sBWVjuasD7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sBWVjuasD7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sBWVjuasD7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu li:hover {
  color: #0096ae;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sBWVjuasD7 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sBWVjuasD7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sBWVjuasD7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sBWVjuasD7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sBWVjuasD7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBWVjuasD7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sBWVjuasD7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sBWVjuasD7 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sBWVjuasD7 .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sBWVjuasD7 .media-container-row .mbr-text {
  color: #0b516b;
}
.cid-sADyNRNPHs .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0b516b;
}
.cid-sADyNRNPHs .navbar.opened {
  transition: all 0.3s;
  background: #0b516b !important;
}
.cid-sADyNRNPHs .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sADyNRNPHs .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sADyNRNPHs .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sADyNRNPHs .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sADyNRNPHs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sADyNRNPHs .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sADyNRNPHs .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sADyNRNPHs .navbar.collapsed.opened .navbar-collapse.show,
.cid-sADyNRNPHs .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sADyNRNPHs .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sADyNRNPHs .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sADyNRNPHs .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sADyNRNPHs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sADyNRNPHs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sADyNRNPHs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sADyNRNPHs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sADyNRNPHs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sADyNRNPHs .navbar {
    flex-wrap: nowrap;
  }
  .cid-sADyNRNPHs .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sADyNRNPHs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sADyNRNPHs .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sADyNRNPHs .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sADyNRNPHs .navbar.opened .navbar-collapse.show,
  .cid-sADyNRNPHs .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sADyNRNPHs .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sADyNRNPHs .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sADyNRNPHs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sADyNRNPHs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sADyNRNPHs .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sADyNRNPHs .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sADyNRNPHs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sADyNRNPHs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sADyNRNPHs .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sADyNRNPHs .navbar.navbar-short {
  background: #0b516b !important;
  min-height: 60px;
}
.cid-sADyNRNPHs .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sADyNRNPHs .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sADyNRNPHs .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sADyNRNPHs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sADyNRNPHs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sADyNRNPHs .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sADyNRNPHs .dropdown-item.active,
.cid-sADyNRNPHs .dropdown-item:active {
  background-color: transparent;
}
.cid-sADyNRNPHs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sADyNRNPHs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sADyNRNPHs .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sADyNRNPHs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b516b;
}
.cid-sADyNRNPHs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sADyNRNPHs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sADyNRNPHs ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sADyNRNPHs .navbar-buttons {
  text-align: center;
}
.cid-sADyNRNPHs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sADyNRNPHs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sADyNRNPHs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sADyNRNPHs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sADyNRNPHs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sADyNRNPHs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sADyNRNPHs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sADyNRNPHs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sADyNRNPHs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sADyNRNPHs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sADyNRNPHs .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sADyNRNPHs a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sADyNRNPHs a.nav-link:focus {
  outline: none;
}
.cid-sADyNRNPHs .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sADyNRNPHs .nav-link:hover,
.cid-sADyNRNPHs .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sADyNRNPHs .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sADyNRNPHs .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBX4TY5ui1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #0096ae;
}
.cid-sBX4TY5ui1 .card-box {
  padding: 0rem;
}
.cid-sBX4TY5ui1 .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-sBX4TY5ui1 .card {
  padding: 0;
  margin: auto;
}
.cid-sBX4TY5ui1 .card-img {
  height: 400px;
}
.cid-sBX4TY5ui1 .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sBX4TY5ui1 .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-sBX4TY5ui1 .card-wrapper {
    padding: 4rem;
  }
}
.cid-sBX4TY5ui1 .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-sBX46DAVhy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBX46DAVhy .nav-tabs .nav-item.open .nav-link:focus,
.cid-sBX46DAVhy .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sBX46DAVhy .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-sBX46DAVhy .nav-tabs .nav-item {
  padding: 0.8rem 3rem 0.8rem 0rem;
  border-bottom: 1px solid #f9f7f6;
}
.cid-sBX46DAVhy .quote {
  padding-top: 0.8rem;
  color: #0096ae;
  font-weight: 700;
}
.cid-sBX46DAVhy .col-md-12 {
  flex-direction: row;
  display: flex;
}
.cid-sBX46DAVhy .nav {
  flex-direction: column;
}
.cid-sBX46DAVhy .nav-tabs .nav-link {
  padding: 0.2rem 1rem;
  color: #767676;
  font-style: normal;
  font-weight: 700;
  transition: all 0.5s;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-sBX46DAVhy .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #0096ae;
  border-left: 3px solid #0096ae;
}
.cid-sBX46DAVhy .nav-tabs .nav-link.active {
  font-weight: 700;
  color: #0096ae;
  font-style: normal;
  border-left: 3px solid #0096ae;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sBX46DAVhy .nav-tabs {
    flex-direction: row;
    border-right: 0px;
    padding-right: 0rem;
  }
  .cid-sBX46DAVhy .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-sBX46DAVhy p {
    padding-left: 0rem;
  }
  .cid-sBX46DAVhy .quote {
    padding-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-sBX46DAVhy .mbr-text {
    padding-left: 2rem;
  }
}
@media (max-width: 576px) {
  .cid-sBX46DAVhy .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-sBX46DAVhy .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    flex-direction: column;
  }
  .cid-sBX46DAVhy p {
    padding-left: 0rem;
  }
}
.cid-sBX46DAVhy P {
  color: #444444;
}
.cid-sMzuRs5anZ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sMzuRs5anZ h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sMzuRs5anZ .pt-4 {
  padding-top: 2rem!important;
}
.cid-sMzuRs5anZ .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-sMzuRs5anZ p {
  color: #767676;
  text-align: left;
}
.cid-sMzuRs5anZ .card-wrapper {
  height: 100%;
}
.cid-sMzuRs5anZ .container-fluid {
  max-width: 1600px;
}
.cid-sMzuRs5anZ img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sMzuRs5anZ h4 {
  margin: 0;
}
.cid-sMzuRs5anZ .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sMzuRs5anZ .mbr-iconfont {
  color: #f4f8fa;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-sMzuRs5anZ .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-sMzuRs5anZ .card:hover h3 {
  background-size: 100% 100%;
}
.cid-sMzuRs5anZ .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sMzuRs5anZ .icons {
    opacity: 1;
  }
}
.cid-sMzuRs5anZ .name,
.cid-sMzuRs5anZ .title-align {
  text-align: center;
}
.cid-sMzuRs5anZ .card-title {
  text-align: center;
}
.cid-sMzuRs5anZ .maintitle {
  text-align: center;
}
.cid-sMzFSQxhdR {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sMzFSQxhdR h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sMzFSQxhdR .pt-4 {
  padding-top: 2rem!important;
}
.cid-sMzFSQxhdR .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-sMzFSQxhdR p {
  color: #767676;
  text-align: left;
}
.cid-sMzFSQxhdR .card-wrapper {
  height: 100%;
}
.cid-sMzFSQxhdR .container-fluid {
  max-width: 1600px;
}
.cid-sMzFSQxhdR img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sMzFSQxhdR h4 {
  margin: 0;
}
.cid-sMzFSQxhdR .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sMzFSQxhdR .mbr-iconfont {
  color: #f4f8fa;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-sMzFSQxhdR .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-sMzFSQxhdR .card:hover h3 {
  background-size: 100% 100%;
}
.cid-sMzFSQxhdR .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sMzFSQxhdR .icons {
    opacity: 1;
  }
}
.cid-sMzFSQxhdR .name,
.cid-sMzFSQxhdR .title-align {
  text-align: center;
}
.cid-sMzFSQxhdR .card-title {
  text-align: center;
}
.cid-sMzFSQxhdR .maintitle {
  text-align: center;
}
.cid-sMzFua0FHp {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sMzFua0FHp h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sMzFua0FHp .pt-4 {
  padding-top: 2rem!important;
}
.cid-sMzFua0FHp .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-sMzFua0FHp p {
  color: #767676;
  text-align: left;
}
.cid-sMzFua0FHp .card-wrapper {
  height: 100%;
}
.cid-sMzFua0FHp .container-fluid {
  max-width: 1600px;
}
.cid-sMzFua0FHp img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sMzFua0FHp h4 {
  margin: 0;
}
.cid-sMzFua0FHp .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sMzFua0FHp .mbr-iconfont {
  color: #f4f8fa;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-sMzFua0FHp .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-sMzFua0FHp .card:hover h3 {
  background-size: 100% 100%;
}
.cid-sMzFua0FHp .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sMzFua0FHp .icons {
    opacity: 1;
  }
}
.cid-sMzFua0FHp .name,
.cid-sMzFua0FHp .title-align {
  text-align: center;
}
.cid-sMzFua0FHp .card-title {
  text-align: center;
}
.cid-sMzFua0FHp .maintitle {
  text-align: center;
}
.cid-sMzGd1KlY7 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sMzGd1KlY7 h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sMzGd1KlY7 .pt-4 {
  padding-top: 2rem!important;
}
.cid-sMzGd1KlY7 .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-sMzGd1KlY7 p {
  color: #767676;
  text-align: left;
}
.cid-sMzGd1KlY7 .card-wrapper {
  height: 100%;
}
.cid-sMzGd1KlY7 .container-fluid {
  max-width: 1600px;
}
.cid-sMzGd1KlY7 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sMzGd1KlY7 h4 {
  margin: 0;
}
.cid-sMzGd1KlY7 .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sMzGd1KlY7 .mbr-iconfont {
  color: #f4f8fa;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-sMzGd1KlY7 .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-sMzGd1KlY7 .card:hover h3 {
  background-size: 100% 100%;
}
.cid-sMzGd1KlY7 .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sMzGd1KlY7 .icons {
    opacity: 1;
  }
}
.cid-sMzGd1KlY7 .name,
.cid-sMzGd1KlY7 .title-align {
  text-align: center;
}
.cid-sMzGd1KlY7 .card-title {
  text-align: center;
}
.cid-sMzGd1KlY7 .maintitle {
  text-align: center;
}
.cid-sMH6w6Lh2G {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sMH6w6Lh2G h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sMH6w6Lh2G .pt-4 {
  padding-top: 2rem!important;
}
.cid-sMH6w6Lh2G .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-sMH6w6Lh2G p {
  color: #767676;
  text-align: left;
}
.cid-sMH6w6Lh2G .card-wrapper {
  height: 100%;
}
.cid-sMH6w6Lh2G .container-fluid {
  max-width: 1600px;
}
.cid-sMH6w6Lh2G img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sMH6w6Lh2G h4 {
  margin: 0;
}
.cid-sMH6w6Lh2G .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sMH6w6Lh2G .mbr-iconfont {
  color: #f4f8fa;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-sMH6w6Lh2G .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-sMH6w6Lh2G .card:hover h3 {
  background-size: 100% 100%;
}
.cid-sMH6w6Lh2G .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sMH6w6Lh2G .icons {
    opacity: 1;
  }
}
.cid-sMH6w6Lh2G .name,
.cid-sMH6w6Lh2G .title-align {
  text-align: center;
}
.cid-sMH6w6Lh2G .card-title {
  text-align: center;
}
.cid-sMH6w6Lh2G .maintitle {
  text-align: center;
}
.cid-sBX5ONuoNx {
  padding-top: 35rem;
  background-image: url("../../../assets/images/frasconastaff5-2000x1330.jpg");
}
.cid-sAGw98FO4Z {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #0b516b;
}
.cid-sAGw98FO4Z .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #f6f6f6;
}
.cid-sAGw98FO4Z .first-column .mbr-text {
  margin: 0;
}
.cid-sAGw98FO4Z .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sAGw98FO4Z .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-sAGw98FO4Z .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-sAGw98FO4Z .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-sAGw98FO4Z .form-group {
  max-width: 55%;
}
.cid-sAGw98FO4Z .form-group,
.cid-sAGw98FO4Z .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-sAGw98FO4Z .form-control {
  font-size: .9rem;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  background: #ffffff;
  color: #d8d7d7;
}
.cid-sAGw98FO4Z .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-sAGw98FO4Z .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-sAGw98FO4Z .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-sAGw98FO4Z .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-sAGw98FO4Z .col + .mbr-section-btn .btn,
.cid-sAGw98FO4Z .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-sAGw98FO4Z .dragArea > *:nth-last-child(2).col,
.cid-sAGw98FO4Z .dragArea > *:nth-last-child(2).col-auto,
.cid-sAGw98FO4Z .col + .mbr-section-btn,
.cid-sAGw98FO4Z .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sAGw98FO4Z .first-column,
  .cid-sAGw98FO4Z .second-column {
    padding-bottom: 2rem;
  }
  .cid-sAGw98FO4Z .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sAGw98FO4Z .first-column,
  .cid-sAGw98FO4Z .second-column,
  .cid-sAGw98FO4Z .third-column {
    text-align: center;
  }
}
.cid-sAGw98FO4Z .mbr-section-title,
.cid-sAGw98FO4Z .icons-wrapper {
  color: #d5e962;
}
.cid-sBWVjuasD7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #0b516b;
}
.cid-sBWVjuasD7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sBWVjuasD7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sBWVjuasD7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu li:hover {
  color: #0096ae;
}
.cid-sBWVjuasD7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sBWVjuasD7 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sBWVjuasD7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sBWVjuasD7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sBWVjuasD7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sBWVjuasD7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBWVjuasD7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sBWVjuasD7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sBWVjuasD7 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sBWVjuasD7 .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sBWVjuasD7 .media-container-row .mbr-text {
  color: #0b516b;
}
