body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.06rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #1d2671 !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #45b943 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #1d2671 !important;
  border-color: #1d2671 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #1d2671 !important;
  border-color: #1d2671 !important;
}
.btn-primary:before {
  background-color: #0d1234 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d1234 !important;
  border-color: #0d1234 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-secondary:before {
  background-color: #eb3934 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #45b943 !important;
  border-color: #45b943 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #45b943 !important;
  border-color: #45b943 !important;
}
.btn-info:before {
  background-color: #30812f !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #30812f !important;
  border-color: #30812f !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-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;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-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;
  border-color: #080b20;
  color: #080b20;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #1d2671;
}
.btn-primary-outline:before {
  background-color: #1d2671;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1d2671 !important;
  border-color: #1d2671 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}
.btn-secondary-outline:before {
  background-color: #f27d7a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #296e28;
  color: #296e28;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #45b943;
}
.btn-info-outline:before {
  background-color: #45b943;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #45b943 !important;
  border-color: #45b943 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.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;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
  border-radius: 100px;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1d2671;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #1d2671 !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #45b943 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #080b20 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #296e28 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #45b943;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):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: #1d2671;
  border-color: #1d2671;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #1d2671;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #404fce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a0dc9f;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
blockquote {
  border-color: #1d2671;
}
/* 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;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #1d2671;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #1d2671;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1d2671;
  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: #1d2671;
  border-bottom-color: #1d2671;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #1d2671 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f27d7a !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='%231d2671' %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-tgHEQZK4TO .navbar {
  padding: .5rem 0;
  background: #1d2671;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-tgHEQZK4TO .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-tgHEQZK4TO .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-tgHEQZK4TO .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tgHEQZK4TO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tgHEQZK4TO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tgHEQZK4TO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tgHEQZK4TO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tgHEQZK4TO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tgHEQZK4TO .navbar-dropdown.bg-color.transparent.opened {
  background: #1d2671;
}
.cid-tgHEQZK4TO a {
  font-style: normal;
}
.cid-tgHEQZK4TO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-tgHEQZK4TO .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-tgHEQZK4TO .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tgHEQZK4TO .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-tgHEQZK4TO .content-text {
  margin-bottom: 0;
}
.cid-tgHEQZK4TO .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tgHEQZK4TO .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #1d2671;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tgHEQZK4TO .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-tgHEQZK4TO .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tgHEQZK4TO .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-tgHEQZK4TO .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-tgHEQZK4TO .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tgHEQZK4TO .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tgHEQZK4TO .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tgHEQZK4TO .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tgHEQZK4TO .nav-dropdown .link {
  font-weight: 400;
}
.cid-tgHEQZK4TO .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tgHEQZK4TO .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-tgHEQZK4TO .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-tgHEQZK4TO .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-tgHEQZK4TO .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-tgHEQZK4TO .menu-content-top.show {
  display: block;
}
.cid-tgHEQZK4TO .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-tgHEQZK4TO .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-tgHEQZK4TO .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-tgHEQZK4TO .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-tgHEQZK4TO .dropdown-item:before {
    display: none;
  }
  .cid-tgHEQZK4TO .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-tgHEQZK4TO .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-tgHEQZK4TO img {
    height: 3.8rem !important;
  }
  .cid-tgHEQZK4TO .btn {
    display: flex;
  }
  .cid-tgHEQZK4TO button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tgHEQZK4TO .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-tgHEQZK4TO .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tgHEQZK4TO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tgHEQZK4TO .navbar-collapse.collapsing,
  .cid-tgHEQZK4TO .navbar-collapse.show {
    display: block !important;
  }
  .cid-tgHEQZK4TO .navbar-collapse.collapsing .navbar-nav,
  .cid-tgHEQZK4TO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tgHEQZK4TO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tgHEQZK4TO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-tgHEQZK4TO .navbar-collapse.collapsing .navbar-buttons,
  .cid-tgHEQZK4TO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tgHEQZK4TO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tgHEQZK4TO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tgHEQZK4TO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tgHEQZK4TO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tgHEQZK4TO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tgHEQZK4TO .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-tgHEQZK4TO .navbar .menu-content-top {
    display: block;
  }
  .cid-tgHEQZK4TO .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-tgHEQZK4TO .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-tgHEQZK4TO .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-tgHEQZK4TO .menu-bottom {
    display: flex;
  }
  .cid-tgHEQZK4TO .navbar {
    display: block;
    padding: 0;
  }
  .cid-tgHEQZK4TO .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tgHEQZK4TO .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-tgHEQZK4TO .navbar-toggler {
    display: none;
  }
}
.cid-tgHEQZK4TO .navbar-short .menu-content-top {
  border: none;
}
.cid-tgHEQZK4TO .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tgHEQZK4TO .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tgHEQZK4TO .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-tgHEQZK4TO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tgHEQZK4TO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tgHEQZK4TO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tgHEQZK4TO .dropdown .dropdown-menu {
  background: #1d2671;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tgHEQZK4TO .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tgHEQZK4TO .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tgHEQZK4TO .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tgHEQZK4TO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tgHEQZK4TO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tgHEQZK4TO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tgHEQZK4TO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tgHEQZK4TO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tgHEQZK4TO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tgHEQZK4TO .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tgHEQZK4TO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tgHEQZK4TO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tgHEQZK4TO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tgHEQZK4TO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tgHEQZK4TO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-tgHEQZK4TO button.navbar-toggler:focus {
  outline: none;
}
.cid-tgHEQZK4TO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tgHEQZK4TO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tgHEQZK4TO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tgHEQZK4TO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tgHEQZK4TO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tgHEQZK4TO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tgHEQZK4TO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tgHEQZK4TO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tgHEQZK4TO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tgHEQZK4TO .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tgHEQZK4TO .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tgHEQZK4TO .collapsed .menu-logo {
  margin-right: 0;
}
.cid-tgHEQZK4TO .collapsed .btn {
  display: flex;
}
.cid-tgHEQZK4TO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tgHEQZK4TO .collapsed .navbar-collapse.collapsing,
.cid-tgHEQZK4TO .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tgHEQZK4TO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tgHEQZK4TO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tgHEQZK4TO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tgHEQZK4TO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tgHEQZK4TO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tgHEQZK4TO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tgHEQZK4TO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tgHEQZK4TO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tgHEQZK4TO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.2rem  - 1rem);
  }
  .cid-tgHEQZK4TO .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tgHEQZK4TO .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tgHEQZK4TO .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-tgHEQZK4TO .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tgHEQZK4TO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-tgHEQZK4TO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tgHEQZK4TO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tgHEQZK4TO .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tgHEQZK4TO .collapsed .dropdown-item:before {
  display: none;
}
.cid-tgHEQZK4TO .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tgHEQZK4TO .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tgHEQZK4TO .nav-link:focus {
  outline: none;
}
.cid-tgHEQZK4TO .navbar-toggler {
  position: relative;
}
.cid-tgHEQZK4TO .dropdown-item.active,
.cid-tgHEQZK4TO .dropdown-item:active {
  background-color: #1d2671;
  color: auto;
}
.cid-tgHEQZK4TO .nav-link:hover,
.cid-tgHEQZK4TO .dropdown-item:hover {
  color: #1d2671;
}
.cid-tkbv6RwYkY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f5d7;
}
.cid-tkbv6RwYkY .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-tkbv6RwYkY .modal-body .close {
  background: #1b1b1b;
}
.cid-tkbv6RwYkY .modal-body .close span {
  font-style: normal;
}
.cid-tkbv6RwYkY .carousel-inner > .active,
.cid-tkbv6RwYkY .carousel-inner > .next,
.cid-tkbv6RwYkY .carousel-inner > .prev {
  display: flex;
}
.cid-tkbv6RwYkY .carousel-control .icon-next,
.cid-tkbv6RwYkY .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tkbv6RwYkY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tkbv6RwYkY .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tkbv6RwYkY .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-tkbv6RwYkY .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tkbv6RwYkY .boxed-slider > div {
  position: relative;
}
.cid-tkbv6RwYkY .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-tkbv6RwYkY .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tkbv6RwYkY .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tkbv6RwYkY .mbr-table-cell {
  padding: 0;
}
.cid-tkbv6RwYkY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tkbv6RwYkY .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tkbv6RwYkY .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-tkbv6RwYkY .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-tkbv6RwYkY .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-tkbv6RwYkY .carousel-item .container {
    width: 100%;
  }
}
.cid-tkbv6RwYkY .carousel-item-next.carousel-item-left,
.cid-tkbv6RwYkY .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-tkbv6RwYkY .active.carousel-item-right,
.cid-tkbv6RwYkY .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-tkbv6RwYkY .active.carousel-item-left,
.cid-tkbv6RwYkY .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-tkbv6RwYkY .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-tkbv6RwYkY .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkbv6RwYkY .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tkbv6RwYkY .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-tkbv6RwYkY .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tkbv6RwYkY .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tkbv6RwYkY .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tkbv6RwYkY .mbr-slider .carousel-indicators li.active,
.cid-tkbv6RwYkY .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tkbv6RwYkY .mbr-slider .carousel-indicators li::after,
.cid-tkbv6RwYkY .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tkbv6RwYkY .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tkbv6RwYkY .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tkbv6RwYkY .mbr-slider > .container img {
  width: 100%;
}
.cid-tkbv6RwYkY .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tkbv6RwYkY .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tkbv6RwYkY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tkbv6RwYkY .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tkbv6RwYkY .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tkbv6RwYkY .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tkbv6RwYkY .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tkbv6RwYkY .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-tkbv6RwYkY .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tkbv6RwYkY .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tkbv6RwYkY .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tkbv6RwYkY .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tkbv6RwYkY .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tkbv6RwYkY .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-tkbv6RwYkY .carousel-inner {
  height: 100%;
}
.cid-tkbv6RwYkY .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-tkbv6RwYkY .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 590px;
  overflow: hidden;
}
.cid-tkbv6RwYkY .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-tkbv6RwYkY .content-slider-wrap {
  width: 100%;
}
.cid-tkb4MwMJxf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/pv-2-2000x1092.jpg");
}
.cid-tkb4MwMJxf .text-content .btn-bgr {
  z-index: 0;
}
.cid-tkb4MwMJxf .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-tkb4MwMJxf h3 {
  color: #ffffff;
  font-weight: 300;
}
.cid-tkb4MwMJxf p {
  color: #ffffff;
}
.cid-tkb4MwMJxf h2 {
  color: #ffffff;
}
.cid-tkb4MwMJxf .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tkb4MwMJxf .text-content {
  padding: 2rem 0rem;
  background-color: #1d2671;
}
.cid-tkb4MwMJxf .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tkb4MwMJxf .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tkb4MwMJxf .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tkb4MwMJxf .text-content {
    margin-bottom: 2rem;
  }
}
.cid-tkb4MwMJxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkb4MwMJxf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgHG80ppgl {
  background-image: url("../../../assets/images/puerto-vallarta1-1152x640.jpeg");
}
.cid-tgHG80ppgl .column-content {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
  width: 100%;
  float: right;
  position: relative;
}
.cid-tgHG80ppgl .text-content .btn-bgr {
  z-index: 0;
}
.cid-tgHG80ppgl .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-tgHG80ppgl .container-full-width {
  position: relative;
}
.cid-tgHG80ppgl .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-tgHG80ppgl .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-tgHG80ppgl .layer path {
  fill: #ffffff;
}
@media (min-width: 576px) {
  .cid-tgHG80ppgl .text-content {
    width: 540px;
  }
  .cid-tgHG80ppgl .column-content {
    width: 100%;
  }
  .cid-tgHG80ppgl .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-tgHG80ppgl .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-tgHG80ppgl .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-tgHG80ppgl .column-content {
    width: 50%;
  }
  .cid-tgHG80ppgl .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-tgHG80ppgl .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tgHG80ppgl .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-tgHG80ppgl .column-content {
    height: 33rem;
  }
}
.cid-tgHG80ppgl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgHG80ppgl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgHG80ppgl H1 {
  color: #00a2af;
}
.cid-tgHTfT3cQU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/islas-marietas.webp");
}
.cid-tgHTfT3cQU .text-content .btn-bgr {
  z-index: 0;
}
.cid-tgHTfT3cQU .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #6c9cdf);
}
.cid-tgHTfT3cQU h3 {
  color: #ffffff;
  font-weight: 300;
}
.cid-tgHTfT3cQU p {
  color: #ffffff;
}
.cid-tgHTfT3cQU h2 {
  color: #ffffff;
}
.cid-tgHTfT3cQU .text-content {
  padding: 2rem 0rem;
  background-color: #00a2af;
}
.cid-tgHTfT3cQU .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tgHTfT3cQU .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tgHTfT3cQU .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tgHTfT3cQU .text-content {
    margin-bottom: 2rem;
  }
}
.cid-tgHTfT3cQU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgHTfT3cQU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqRxT3HVlS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/ballena15-1280x720-800x450.jpg");
}
.cid-tqRxT3HVlS .text-content .btn-bgr {
  z-index: 0;
}
.cid-tqRxT3HVlS .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-tqRxT3HVlS h3 {
  color: #ffffff;
  font-weight: 300;
}
.cid-tqRxT3HVlS p {
  color: #ffffff;
}
.cid-tqRxT3HVlS h2 {
  color: #ffffff;
}
.cid-tqRxT3HVlS .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tqRxT3HVlS .text-content {
  padding: 2rem 0rem;
  background-color: #00a2af;
}
.cid-tqRxT3HVlS .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tqRxT3HVlS .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tqRxT3HVlS .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqRxT3HVlS .text-content {
    margin-bottom: 2rem;
  }
}
.cid-tqRxT3HVlS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqRxT3HVlS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqRxT3HVlS .mbr-section-btn,
.cid-tqRxT3HVlS .mbr-section-title {
  text-align: center;
}
.cid-tgHJqLEHvj {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #dae9ff;
}
.cid-tgHJqLEHvj .team-card .image-wrap {
  overflow: hidden;
}
.cid-tgHJqLEHvj .team-card .image-wrap img {
  transition: all .5s;
}
.cid-tgHJqLEHvj .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tgHJqLEHvj .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tgHJqLEHvj .team-card {
  margin-bottom: 2rem;
}
.cid-tgHJqLEHvj .card-wrap {
  background: #ffffff;
}
.cid-tgHJqLEHvj .card-wrap .image-wrap img {
  width: 100%;
}
.cid-tgHJqLEHvj .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-tgHJqLEHvj .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tgHJqLEHvj .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tgHJqLEHvj .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tgHJqLEHvj .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-tgHJqLEHvj .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-tgHJqLEHvj .main-title {
  color: #1d2671;
}
.cid-tgHM8UoYS1 {
  padding-top: 30px;
  padding-bottom: 60px;
  background: #dae9ff;
}
.cid-tgHM8UoYS1 .team-card .image-wrap {
  overflow: hidden;
}
.cid-tgHM8UoYS1 .team-card .image-wrap img {
  transition: all .5s;
}
.cid-tgHM8UoYS1 .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tgHM8UoYS1 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tgHM8UoYS1 .team-card {
  margin-bottom: 2rem;
}
.cid-tgHM8UoYS1 .card-wrap {
  background: #ffffff;
}
.cid-tgHM8UoYS1 .card-wrap .image-wrap img {
  width: 100%;
}
.cid-tgHM8UoYS1 .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-tgHM8UoYS1 .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tgHM8UoYS1 .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tgHM8UoYS1 .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tgHM8UoYS1 .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-tgHM8UoYS1 .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-tgHM8UoYS1 .main-title {
  color: #1d2671;
}
.cid-tgHSlp2LUN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tgHSlp2LUN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgHSlp2LUN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgHSlp2LUN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgHSlp2LUN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgHSlp2LUN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00a2af;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tgHSlp2LUN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgHSlp2LUN .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-tgHSlp2LUN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgHSlp2LUN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #00a2af !important;
  opacity: 0.5;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tgHSlp2LUN ul {
  font-size: 0;
}
.cid-tgHSlp2LUN .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-tgHSlp2LUN .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-tgHSlp2LUN .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tgHPADDPFB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tgHPADDPFB .fb-page,
.cid-tgHPADDPFB span,
.cid-tgHPADDPFB iframe {
  width: 500px;
  height: 620px;
}
.cid-tgHPADDPFB blockquote {
  display: none;
}
.cid-tgHPADDPFB .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-tgHPADDPFB .mbr-section-title {
  color: #2c1616;
}
.cid-tgHPADDPFB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tt7wyygC9F {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #00a2af;
}
.cid-tt7wyygC9F .mbr-text {
  color: #ffffff;
}
.cid-tt7wyygC9F h4 {
  font-weight: 500;
}
.cid-tt7wyygC9F h4,
.cid-tt7wyygC9F h5 {
  text-align: center;
}
.cid-tt7wyygC9F p {
  text-align: center;
}
.cid-tt7wyygC9F .card-box {
  text-align: center;
}
.cid-tt7wyygC9F .card-img {
  font-size: 3rem;
}
.cid-tt7wyygC9F .mbr-iconfont {
  color: #1d2671;
}
.cid-tt7wyygC9F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt7wyygC9F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tt7wyygC9F .card-title,
.cid-tt7wyygC9F .card-img {
  color: #ffffff;
}
.cid-tgHQviOK3K {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #00a2af;
}
.cid-tgHQviOK3K p {
  text-align: center;
}
.cid-tgHQviOK3K .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tgHQviOK3K .social-list a:focus {
  text-decoration: none;
}
.cid-tgHQviOK3K .text-copyright {
  width: 100%;
  color: #ffffff;
}
.cid-tgHQviOK3K .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tgHQviOK3K .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-tgHQviOK3K .logo-footer {
  line-height: normal;
}
.cid-tgHQviOK3K .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tgHQviOK3K .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tgHQviOK3K .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVq404XJT .navbar {
  padding: .5rem 0;
  background: #1d2671;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-thVq404XJT .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-thVq404XJT .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-thVq404XJT .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVq404XJT .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-thVq404XJT .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-thVq404XJT .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-thVq404XJT .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-thVq404XJT .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-thVq404XJT .navbar-dropdown.bg-color.transparent.opened {
  background: #1d2671;
}
.cid-thVq404XJT a {
  font-style: normal;
}
.cid-thVq404XJT .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-thVq404XJT .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-thVq404XJT .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVq404XJT .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-thVq404XJT .content-text {
  margin-bottom: 0;
}
.cid-thVq404XJT .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-thVq404XJT .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #1d2671;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-thVq404XJT .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-thVq404XJT .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-thVq404XJT .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-thVq404XJT .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-thVq404XJT .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-thVq404XJT .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-thVq404XJT .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-thVq404XJT .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-thVq404XJT .nav-dropdown .link {
  font-weight: 400;
}
.cid-thVq404XJT .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-thVq404XJT .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-thVq404XJT .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-thVq404XJT .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-thVq404XJT .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-thVq404XJT .menu-content-top.show {
  display: block;
}
.cid-thVq404XJT .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-thVq404XJT .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-thVq404XJT .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-thVq404XJT .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-thVq404XJT .dropdown-item:before {
    display: none;
  }
  .cid-thVq404XJT .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-thVq404XJT .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-thVq404XJT img {
    height: 3.8rem !important;
  }
  .cid-thVq404XJT .btn {
    display: flex;
  }
  .cid-thVq404XJT button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-thVq404XJT .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-thVq404XJT .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-thVq404XJT .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-thVq404XJT .navbar-collapse.collapsing,
  .cid-thVq404XJT .navbar-collapse.show {
    display: block !important;
  }
  .cid-thVq404XJT .navbar-collapse.collapsing .navbar-nav,
  .cid-thVq404XJT .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-thVq404XJT .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-thVq404XJT .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-thVq404XJT .navbar-collapse.collapsing .navbar-buttons,
  .cid-thVq404XJT .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-thVq404XJT .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-thVq404XJT .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-thVq404XJT .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-thVq404XJT .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-thVq404XJT .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-thVq404XJT .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-thVq404XJT .navbar .menu-content-top {
    display: block;
  }
  .cid-thVq404XJT .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-thVq404XJT .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-thVq404XJT .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-thVq404XJT .menu-bottom {
    display: flex;
  }
  .cid-thVq404XJT .navbar {
    display: block;
    padding: 0;
  }
  .cid-thVq404XJT .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-thVq404XJT .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-thVq404XJT .navbar-toggler {
    display: none;
  }
}
.cid-thVq404XJT .navbar-short .menu-content-top {
  border: none;
}
.cid-thVq404XJT .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVq404XJT .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-thVq404XJT .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-thVq404XJT .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-thVq404XJT .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-thVq404XJT .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-thVq404XJT .dropdown .dropdown-menu {
  background: #1d2671;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-thVq404XJT .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-thVq404XJT .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVq404XJT .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-thVq404XJT .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-thVq404XJT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-thVq404XJT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVq404XJT .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-thVq404XJT .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thVq404XJT .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-thVq404XJT .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-thVq404XJT .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-thVq404XJT .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-thVq404XJT .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-thVq404XJT .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-thVq404XJT button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-thVq404XJT button.navbar-toggler:focus {
  outline: none;
}
.cid-thVq404XJT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-thVq404XJT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-thVq404XJT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-thVq404XJT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-thVq404XJT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-thVq404XJT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thVq404XJT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-thVq404XJT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-thVq404XJT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thVq404XJT .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-thVq404XJT .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVq404XJT .collapsed .menu-logo {
  margin-right: 0;
}
.cid-thVq404XJT .collapsed .btn {
  display: flex;
}
.cid-thVq404XJT .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-thVq404XJT .collapsed .navbar-collapse.collapsing,
.cid-thVq404XJT .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-thVq404XJT .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-thVq404XJT .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-thVq404XJT .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-thVq404XJT .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-thVq404XJT .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-thVq404XJT .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-thVq404XJT .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-thVq404XJT .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-thVq404XJT .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.2rem  - 1rem);
  }
  .cid-thVq404XJT .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-thVq404XJT .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-thVq404XJT .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-thVq404XJT .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-thVq404XJT .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-thVq404XJT .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-thVq404XJT .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-thVq404XJT .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-thVq404XJT .collapsed .dropdown-item:before {
  display: none;
}
.cid-thVq404XJT .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-thVq404XJT .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-thVq404XJT .nav-link:focus {
  outline: none;
}
.cid-thVq404XJT .navbar-toggler {
  position: relative;
}
.cid-thVq404XJT .dropdown-item.active,
.cid-thVq404XJT .dropdown-item:active {
  background-color: #1d2671;
  color: auto;
}
.cid-thVq404XJT .nav-link:hover,
.cid-thVq404XJT .dropdown-item:hover {
  color: #1d2671;
}
.cid-thVqfMEnHj {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/atract-1400x510.jpg");
}
.cid-thVqfMEnHj .media-content .btn-bgr {
  z-index: 0;
}
.cid-thVqfMEnHj .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-thVqfMEnHj .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-thVqfMEnHj {
    text-align: center !important;
  }
  .cid-thVqfMEnHj .mbr-text {
    text-align: center;
  }
}
.cid-thVqfMEnHj .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-thVqfMEnHj .mbr-fallback-image.disabled {
  display: none;
}
.cid-thVqfMEnHj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thVqfMEnHj H1 {
  color: #ffffff;
}
.cid-thVrySZOdT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-thVrySZOdT img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVrySZOdT img:hover {
  transform: scale(1.1);
}
.cid-thVrySZOdT .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVrySZOdT h2 {
  padding: 0;
  margin: 0;
}
.cid-thVrySZOdT .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVrySZOdT .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVrySZOdT .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-thVrySZOdT .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVrySZOdT .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVrySZOdT .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVrySZOdT .mbr-iconfont {
  margin: 0!important;
}
.cid-thVrySZOdT .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVrySZOdT .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVrySZOdT .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVrySZOdT .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVrySZOdT .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVrySZOdT H2 {
  color: #333333;
}
.cid-thVrySZOdT .mbr-text {
  color: #2c1616;
}
.cid-thVrySZOdT H1 {
  color: #1d2671;
}
.cid-thVscMXLPo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-thVscMXLPo img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVscMXLPo img:hover {
  transform: scale(1.1);
}
.cid-thVscMXLPo .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVscMXLPo h2 {
  padding: 0;
  margin: 0;
}
.cid-thVscMXLPo .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVscMXLPo .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVscMXLPo .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-thVscMXLPo .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVscMXLPo .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVscMXLPo .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVscMXLPo .mbr-iconfont {
  margin: 0!important;
}
.cid-thVscMXLPo .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVscMXLPo .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVscMXLPo .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVscMXLPo .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVscMXLPo .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVscMXLPo H2 {
  color: #333333;
}
.cid-thVscMXLPo .mbr-text {
  color: #2c1616;
}
.cid-thVscMXLPo H1 {
  color: #1d2671;
}
.cid-thVsMqh9Nb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-thVsMqh9Nb img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVsMqh9Nb img:hover {
  transform: scale(1.1);
}
.cid-thVsMqh9Nb .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVsMqh9Nb h2 {
  padding: 0;
  margin: 0;
}
.cid-thVsMqh9Nb .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVsMqh9Nb .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVsMqh9Nb .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-thVsMqh9Nb .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVsMqh9Nb .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVsMqh9Nb .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVsMqh9Nb .mbr-iconfont {
  margin: 0!important;
}
.cid-thVsMqh9Nb .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVsMqh9Nb .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVsMqh9Nb .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVsMqh9Nb .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVsMqh9Nb .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVsMqh9Nb H2 {
  color: #333333;
}
.cid-thVsMqh9Nb .mbr-text {
  color: #2c1616;
}
.cid-thVsMqh9Nb H1 {
  color: #1d2671;
}
.cid-thVtrIaot6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-thVtrIaot6 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVtrIaot6 img:hover {
  transform: scale(1.1);
}
.cid-thVtrIaot6 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVtrIaot6 h2 {
  padding: 0;
  margin: 0;
}
.cid-thVtrIaot6 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVtrIaot6 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVtrIaot6 .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-thVtrIaot6 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVtrIaot6 .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVtrIaot6 .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVtrIaot6 .mbr-iconfont {
  margin: 0!important;
}
.cid-thVtrIaot6 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVtrIaot6 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVtrIaot6 .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVtrIaot6 .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVtrIaot6 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVtrIaot6 H2 {
  color: #333333;
}
.cid-thVtrIaot6 .mbr-text {
  color: #2c1616;
}
.cid-thVtrIaot6 H1 {
  color: #1d2671;
}
.cid-thVq45fHfQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thVq45fHfQ .fb-page,
.cid-thVq45fHfQ span,
.cid-thVq45fHfQ iframe {
  width: 500px;
  height: 620px;
}
.cid-thVq45fHfQ blockquote {
  display: none;
}
.cid-thVq45fHfQ .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-thVq45fHfQ .mbr-section-title {
  color: #2c1616;
}
.cid-thVq45fHfQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tt7y9QKZmW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #00a2af;
}
.cid-tt7y9QKZmW .mbr-text {
  color: #ffffff;
}
.cid-tt7y9QKZmW h4 {
  font-weight: 500;
}
.cid-tt7y9QKZmW h4,
.cid-tt7y9QKZmW h5 {
  text-align: center;
}
.cid-tt7y9QKZmW p {
  text-align: center;
}
.cid-tt7y9QKZmW .card-box {
  text-align: center;
}
.cid-tt7y9QKZmW .card-img {
  font-size: 3rem;
}
.cid-tt7y9QKZmW .mbr-iconfont {
  color: #1d2671;
}
.cid-tt7y9QKZmW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt7y9QKZmW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tt7y9QKZmW .card-title,
.cid-tt7y9QKZmW .card-img {
  color: #ffffff;
}
.cid-thVq46fTIa {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #00a2af;
}
.cid-thVq46fTIa p {
  text-align: center;
}
.cid-thVq46fTIa .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-thVq46fTIa .social-list a:focus {
  text-decoration: none;
}
.cid-thVq46fTIa .text-copyright {
  width: 100%;
  color: #ffffff;
}
.cid-thVq46fTIa .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-thVq46fTIa .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-thVq46fTIa .logo-footer {
  line-height: normal;
}
.cid-thVq46fTIa .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVq46fTIa .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-thVq46fTIa .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVuVPSIVS .navbar {
  padding: .5rem 0;
  background: #1d2671;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-thVuVPSIVS .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-thVuVPSIVS .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-thVuVPSIVS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVuVPSIVS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-thVuVPSIVS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-thVuVPSIVS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-thVuVPSIVS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-thVuVPSIVS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-thVuVPSIVS .navbar-dropdown.bg-color.transparent.opened {
  background: #1d2671;
}
.cid-thVuVPSIVS a {
  font-style: normal;
}
.cid-thVuVPSIVS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-thVuVPSIVS .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-thVuVPSIVS .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVuVPSIVS .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-thVuVPSIVS .content-text {
  margin-bottom: 0;
}
.cid-thVuVPSIVS .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-thVuVPSIVS .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #1d2671;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-thVuVPSIVS .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-thVuVPSIVS .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-thVuVPSIVS .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-thVuVPSIVS .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-thVuVPSIVS .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-thVuVPSIVS .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-thVuVPSIVS .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-thVuVPSIVS .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-thVuVPSIVS .nav-dropdown .link {
  font-weight: 400;
}
.cid-thVuVPSIVS .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-thVuVPSIVS .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-thVuVPSIVS .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-thVuVPSIVS .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-thVuVPSIVS .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-thVuVPSIVS .menu-content-top.show {
  display: block;
}
.cid-thVuVPSIVS .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-thVuVPSIVS .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-thVuVPSIVS .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-thVuVPSIVS .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-thVuVPSIVS .dropdown-item:before {
    display: none;
  }
  .cid-thVuVPSIVS .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-thVuVPSIVS .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-thVuVPSIVS img {
    height: 3.8rem !important;
  }
  .cid-thVuVPSIVS .btn {
    display: flex;
  }
  .cid-thVuVPSIVS button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-thVuVPSIVS .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-thVuVPSIVS .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-thVuVPSIVS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-thVuVPSIVS .navbar-collapse.collapsing,
  .cid-thVuVPSIVS .navbar-collapse.show {
    display: block !important;
  }
  .cid-thVuVPSIVS .navbar-collapse.collapsing .navbar-nav,
  .cid-thVuVPSIVS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-thVuVPSIVS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-thVuVPSIVS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-thVuVPSIVS .navbar-collapse.collapsing .navbar-buttons,
  .cid-thVuVPSIVS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-thVuVPSIVS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-thVuVPSIVS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-thVuVPSIVS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-thVuVPSIVS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-thVuVPSIVS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-thVuVPSIVS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-thVuVPSIVS .navbar .menu-content-top {
    display: block;
  }
  .cid-thVuVPSIVS .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-thVuVPSIVS .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-thVuVPSIVS .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-thVuVPSIVS .menu-bottom {
    display: flex;
  }
  .cid-thVuVPSIVS .navbar {
    display: block;
    padding: 0;
  }
  .cid-thVuVPSIVS .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-thVuVPSIVS .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-thVuVPSIVS .navbar-toggler {
    display: none;
  }
}
.cid-thVuVPSIVS .navbar-short .menu-content-top {
  border: none;
}
.cid-thVuVPSIVS .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVuVPSIVS .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-thVuVPSIVS .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-thVuVPSIVS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-thVuVPSIVS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-thVuVPSIVS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-thVuVPSIVS .dropdown .dropdown-menu {
  background: #1d2671;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-thVuVPSIVS .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-thVuVPSIVS .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVuVPSIVS .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-thVuVPSIVS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-thVuVPSIVS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-thVuVPSIVS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVuVPSIVS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-thVuVPSIVS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thVuVPSIVS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-thVuVPSIVS .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-thVuVPSIVS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-thVuVPSIVS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-thVuVPSIVS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-thVuVPSIVS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-thVuVPSIVS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-thVuVPSIVS button.navbar-toggler:focus {
  outline: none;
}
.cid-thVuVPSIVS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-thVuVPSIVS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-thVuVPSIVS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-thVuVPSIVS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-thVuVPSIVS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-thVuVPSIVS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thVuVPSIVS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-thVuVPSIVS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-thVuVPSIVS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thVuVPSIVS .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-thVuVPSIVS .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVuVPSIVS .collapsed .menu-logo {
  margin-right: 0;
}
.cid-thVuVPSIVS .collapsed .btn {
  display: flex;
}
.cid-thVuVPSIVS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-thVuVPSIVS .collapsed .navbar-collapse.collapsing,
.cid-thVuVPSIVS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-thVuVPSIVS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-thVuVPSIVS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-thVuVPSIVS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-thVuVPSIVS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-thVuVPSIVS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-thVuVPSIVS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-thVuVPSIVS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-thVuVPSIVS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-thVuVPSIVS .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.2rem  - 1rem);
  }
  .cid-thVuVPSIVS .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-thVuVPSIVS .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-thVuVPSIVS .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-thVuVPSIVS .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-thVuVPSIVS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-thVuVPSIVS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-thVuVPSIVS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-thVuVPSIVS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-thVuVPSIVS .collapsed .dropdown-item:before {
  display: none;
}
.cid-thVuVPSIVS .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-thVuVPSIVS .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-thVuVPSIVS .nav-link:focus {
  outline: none;
}
.cid-thVuVPSIVS .navbar-toggler {
  position: relative;
}
.cid-thVuVPSIVS .dropdown-item.active,
.cid-thVuVPSIVS .dropdown-item:active {
  background-color: #1d2671;
  color: auto;
}
.cid-thVuVPSIVS .nav-link:hover,
.cid-thVuVPSIVS .dropdown-item:hover {
  color: #1d2671;
}
.cid-thVuVQtx0N {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/acerca-1920x650.jpg");
}
.cid-thVuVQtx0N .media-content .btn-bgr {
  z-index: 0;
}
.cid-thVuVQtx0N .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-thVuVQtx0N .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-thVuVQtx0N {
    text-align: center !important;
  }
  .cid-thVuVQtx0N .mbr-text {
    text-align: center;
  }
}
.cid-thVuVQtx0N .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-thVuVQtx0N .mbr-fallback-image.disabled {
  display: none;
}
.cid-thVuVQtx0N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thVuVQtx0N H1 {
  color: #ffffff;
}
.cid-thVuVU9kcp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-thVuVU9kcp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-thVuVU9kcp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-thVuVU9kcp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-thVuVU9kcp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-thVuVU9kcp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00a2af;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-thVuVU9kcp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-thVuVU9kcp .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-thVuVU9kcp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-thVuVU9kcp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #00a2af !important;
  opacity: 0.5;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-thVuVU9kcp ul {
  font-size: 0;
}
.cid-thVuVU9kcp .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-thVuVU9kcp .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-thVuVU9kcp .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-thVuVV8Wv8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thVuVV8Wv8 .fb-page,
.cid-thVuVV8Wv8 span,
.cid-thVuVV8Wv8 iframe {
  width: 500px;
  height: 620px;
}
.cid-thVuVV8Wv8 blockquote {
  display: none;
}
.cid-thVuVV8Wv8 .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-thVuVV8Wv8 .mbr-section-title {
  color: #2c1616;
}
.cid-thVuVV8Wv8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tt7ym4Phdw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #00a2af;
}
.cid-tt7ym4Phdw .mbr-text {
  color: #ffffff;
}
.cid-tt7ym4Phdw h4 {
  font-weight: 500;
}
.cid-tt7ym4Phdw h4,
.cid-tt7ym4Phdw h5 {
  text-align: center;
}
.cid-tt7ym4Phdw p {
  text-align: center;
}
.cid-tt7ym4Phdw .card-box {
  text-align: center;
}
.cid-tt7ym4Phdw .card-img {
  font-size: 3rem;
}
.cid-tt7ym4Phdw .mbr-iconfont {
  color: #1d2671;
}
.cid-tt7ym4Phdw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt7ym4Phdw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tt7ym4Phdw .card-title,
.cid-tt7ym4Phdw .card-img {
  color: #ffffff;
}
.cid-thVuVW46ch {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #00a2af;
}
.cid-thVuVW46ch p {
  text-align: center;
}
.cid-thVuVW46ch .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-thVuVW46ch .social-list a:focus {
  text-decoration: none;
}
.cid-thVuVW46ch .text-copyright {
  width: 100%;
  color: #ffffff;
}
.cid-thVuVW46ch .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-thVuVW46ch .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-thVuVW46ch .logo-footer {
  line-height: normal;
}
.cid-thVuVW46ch .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVuVW46ch .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-thVuVW46ch .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVvueKyfw .navbar {
  padding: .5rem 0;
  background: #1d2671;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-thVvueKyfw .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-thVvueKyfw .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-thVvueKyfw .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVvueKyfw .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-thVvueKyfw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-thVvueKyfw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-thVvueKyfw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-thVvueKyfw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-thVvueKyfw .navbar-dropdown.bg-color.transparent.opened {
  background: #1d2671;
}
.cid-thVvueKyfw a {
  font-style: normal;
}
.cid-thVvueKyfw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-thVvueKyfw .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-thVvueKyfw .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVvueKyfw .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-thVvueKyfw .content-text {
  margin-bottom: 0;
}
.cid-thVvueKyfw .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-thVvueKyfw .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #1d2671;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-thVvueKyfw .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-thVvueKyfw .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-thVvueKyfw .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-thVvueKyfw .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-thVvueKyfw .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-thVvueKyfw .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-thVvueKyfw .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-thVvueKyfw .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-thVvueKyfw .nav-dropdown .link {
  font-weight: 400;
}
.cid-thVvueKyfw .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-thVvueKyfw .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-thVvueKyfw .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-thVvueKyfw .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-thVvueKyfw .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-thVvueKyfw .menu-content-top.show {
  display: block;
}
.cid-thVvueKyfw .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-thVvueKyfw .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-thVvueKyfw .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-thVvueKyfw .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-thVvueKyfw .dropdown-item:before {
    display: none;
  }
  .cid-thVvueKyfw .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-thVvueKyfw .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-thVvueKyfw img {
    height: 3.8rem !important;
  }
  .cid-thVvueKyfw .btn {
    display: flex;
  }
  .cid-thVvueKyfw button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-thVvueKyfw .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-thVvueKyfw .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-thVvueKyfw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-thVvueKyfw .navbar-collapse.collapsing,
  .cid-thVvueKyfw .navbar-collapse.show {
    display: block !important;
  }
  .cid-thVvueKyfw .navbar-collapse.collapsing .navbar-nav,
  .cid-thVvueKyfw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-thVvueKyfw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-thVvueKyfw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-thVvueKyfw .navbar-collapse.collapsing .navbar-buttons,
  .cid-thVvueKyfw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-thVvueKyfw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-thVvueKyfw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-thVvueKyfw .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-thVvueKyfw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-thVvueKyfw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-thVvueKyfw .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-thVvueKyfw .navbar .menu-content-top {
    display: block;
  }
  .cid-thVvueKyfw .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-thVvueKyfw .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-thVvueKyfw .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-thVvueKyfw .menu-bottom {
    display: flex;
  }
  .cid-thVvueKyfw .navbar {
    display: block;
    padding: 0;
  }
  .cid-thVvueKyfw .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-thVvueKyfw .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-thVvueKyfw .navbar-toggler {
    display: none;
  }
}
.cid-thVvueKyfw .navbar-short .menu-content-top {
  border: none;
}
.cid-thVvueKyfw .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVvueKyfw .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-thVvueKyfw .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-thVvueKyfw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-thVvueKyfw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-thVvueKyfw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-thVvueKyfw .dropdown .dropdown-menu {
  background: #1d2671;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-thVvueKyfw .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-thVvueKyfw .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVvueKyfw .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-thVvueKyfw .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-thVvueKyfw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-thVvueKyfw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVvueKyfw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-thVvueKyfw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thVvueKyfw .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-thVvueKyfw .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-thVvueKyfw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-thVvueKyfw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-thVvueKyfw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-thVvueKyfw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-thVvueKyfw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-thVvueKyfw button.navbar-toggler:focus {
  outline: none;
}
.cid-thVvueKyfw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-thVvueKyfw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-thVvueKyfw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-thVvueKyfw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-thVvueKyfw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-thVvueKyfw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thVvueKyfw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-thVvueKyfw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-thVvueKyfw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thVvueKyfw .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-thVvueKyfw .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVvueKyfw .collapsed .menu-logo {
  margin-right: 0;
}
.cid-thVvueKyfw .collapsed .btn {
  display: flex;
}
.cid-thVvueKyfw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-thVvueKyfw .collapsed .navbar-collapse.collapsing,
.cid-thVvueKyfw .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-thVvueKyfw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-thVvueKyfw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-thVvueKyfw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-thVvueKyfw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-thVvueKyfw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-thVvueKyfw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-thVvueKyfw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-thVvueKyfw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-thVvueKyfw .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.2rem  - 1rem);
  }
  .cid-thVvueKyfw .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-thVvueKyfw .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-thVvueKyfw .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-thVvueKyfw .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-thVvueKyfw .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-thVvueKyfw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-thVvueKyfw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-thVvueKyfw .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-thVvueKyfw .collapsed .dropdown-item:before {
  display: none;
}
.cid-thVvueKyfw .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-thVvueKyfw .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-thVvueKyfw .nav-link:focus {
  outline: none;
}
.cid-thVvueKyfw .navbar-toggler {
  position: relative;
}
.cid-thVvueKyfw .dropdown-item.active,
.cid-thVvueKyfw .dropdown-item:active {
  background-color: #1d2671;
  color: auto;
}
.cid-thVvueKyfw .nav-link:hover,
.cid-thVvueKyfw .dropdown-item:hover {
  color: #1d2671;
}
.cid-thVvufGInz {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2023-03-02-at-15.18.12-1-1600x1200.jpg");
}
.cid-thVvufGInz .media-content .btn-bgr {
  z-index: 0;
}
.cid-thVvufGInz .mbr-overlay {
  background: linear-gradient(90deg, #a2a2a2, #1d2671);
}
@media (min-width: 992px) {
  .cid-thVvufGInz .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-thVvufGInz {
    text-align: center !important;
  }
  .cid-thVvufGInz .mbr-text {
    text-align: center;
  }
}
.cid-thVvufGInz .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-thVvufGInz .mbr-fallback-image.disabled {
  display: none;
}
.cid-thVvufGInz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thVvufGInz H1 {
  color: #ffffff;
}
.cid-thVzXBQOCH {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-thVzXBQOCH .media-content .btn-bgr {
  z-index: 0;
}
.cid-thVzXBQOCH .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-thVzXBQOCH h3 {
  color: #000000;
  font-weight: 300;
}
.cid-thVzXBQOCH p {
  color: #464646;
}
.cid-thVzXBQOCH h2 {
  color: #000000;
}
.cid-thVzXBQOCH .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-thVzXBQOCH .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-thVzXBQOCH .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-thVzXBQOCH .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-thVzXBQOCH .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-thVzXBQOCH .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-thVzXBQOCH .mbr-text {
    text-align: center;
  }
}
.cid-thVzXBQOCH .mbr-fallback-image.disabled {
  display: none;
}
.cid-thVzXBQOCH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjwjqfjRM4 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tjwjqfjRM4 h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-tjwjqfjRM4 .mbr-section-subtitle {
  color: #767676;
}
.cid-tjwjqfjRM4 .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-tjwjqfjRM4 .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-txsOhBt11e {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-txsOhBt11e .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txsOhBt11e .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txsOhBt11e .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txsOhBt11e .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txsOhBt11e .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-txsOhBt11e .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-txsOhBt11e .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-txsOhBt11e .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-txsOhBt11e .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-txsOhBt11e ul {
  font-size: 0;
}
.cid-txsOhBt11e .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-txsOhBt11e .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-txsOhBt11e .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-thVvukAwCK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thVvukAwCK .fb-page,
.cid-thVvukAwCK span,
.cid-thVvukAwCK iframe {
  width: 500px;
  height: 620px;
}
.cid-thVvukAwCK blockquote {
  display: none;
}
.cid-thVvukAwCK .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-thVvukAwCK .mbr-section-title {
  color: #2c1616;
}
.cid-thVvukAwCK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tt7ywF1uYn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #00a2af;
}
.cid-tt7ywF1uYn .mbr-text {
  color: #ffffff;
}
.cid-tt7ywF1uYn h4 {
  font-weight: 500;
}
.cid-tt7ywF1uYn h4,
.cid-tt7ywF1uYn h5 {
  text-align: center;
}
.cid-tt7ywF1uYn p {
  text-align: center;
}
.cid-tt7ywF1uYn .card-box {
  text-align: center;
}
.cid-tt7ywF1uYn .card-img {
  font-size: 3rem;
}
.cid-tt7ywF1uYn .mbr-iconfont {
  color: #1d2671;
}
.cid-tt7ywF1uYn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt7ywF1uYn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tt7ywF1uYn .card-title,
.cid-tt7ywF1uYn .card-img {
  color: #ffffff;
}
.cid-thVvulzFsp {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #00a2af;
}
.cid-thVvulzFsp p {
  text-align: center;
}
.cid-thVvulzFsp .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-thVvulzFsp .social-list a:focus {
  text-decoration: none;
}
.cid-thVvulzFsp .text-copyright {
  width: 100%;
  color: #ffffff;
}
.cid-thVvulzFsp .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-thVvulzFsp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-thVvulzFsp .logo-footer {
  line-height: normal;
}
.cid-thVvulzFsp .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVvulzFsp .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-thVvulzFsp .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVBzgVqHr .navbar {
  padding: .5rem 0;
  background: #1d2671;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-thVBzgVqHr .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-thVBzgVqHr .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-thVBzgVqHr .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVBzgVqHr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-thVBzgVqHr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-thVBzgVqHr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-thVBzgVqHr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-thVBzgVqHr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-thVBzgVqHr .navbar-dropdown.bg-color.transparent.opened {
  background: #1d2671;
}
.cid-thVBzgVqHr a {
  font-style: normal;
}
.cid-thVBzgVqHr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-thVBzgVqHr .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-thVBzgVqHr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVBzgVqHr .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-thVBzgVqHr .content-text {
  margin-bottom: 0;
}
.cid-thVBzgVqHr .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-thVBzgVqHr .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #1d2671;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-thVBzgVqHr .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-thVBzgVqHr .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-thVBzgVqHr .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-thVBzgVqHr .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-thVBzgVqHr .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-thVBzgVqHr .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-thVBzgVqHr .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-thVBzgVqHr .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-thVBzgVqHr .nav-dropdown .link {
  font-weight: 400;
}
.cid-thVBzgVqHr .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-thVBzgVqHr .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-thVBzgVqHr .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-thVBzgVqHr .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-thVBzgVqHr .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-thVBzgVqHr .menu-content-top.show {
  display: block;
}
.cid-thVBzgVqHr .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-thVBzgVqHr .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-thVBzgVqHr .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-thVBzgVqHr .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-thVBzgVqHr .dropdown-item:before {
    display: none;
  }
  .cid-thVBzgVqHr .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-thVBzgVqHr .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-thVBzgVqHr img {
    height: 3.8rem !important;
  }
  .cid-thVBzgVqHr .btn {
    display: flex;
  }
  .cid-thVBzgVqHr button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-thVBzgVqHr .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-thVBzgVqHr .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-thVBzgVqHr .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-thVBzgVqHr .navbar-collapse.collapsing,
  .cid-thVBzgVqHr .navbar-collapse.show {
    display: block !important;
  }
  .cid-thVBzgVqHr .navbar-collapse.collapsing .navbar-nav,
  .cid-thVBzgVqHr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-thVBzgVqHr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-thVBzgVqHr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-thVBzgVqHr .navbar-collapse.collapsing .navbar-buttons,
  .cid-thVBzgVqHr .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-thVBzgVqHr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-thVBzgVqHr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-thVBzgVqHr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-thVBzgVqHr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-thVBzgVqHr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-thVBzgVqHr .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-thVBzgVqHr .navbar .menu-content-top {
    display: block;
  }
  .cid-thVBzgVqHr .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-thVBzgVqHr .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-thVBzgVqHr .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-thVBzgVqHr .menu-bottom {
    display: flex;
  }
  .cid-thVBzgVqHr .navbar {
    display: block;
    padding: 0;
  }
  .cid-thVBzgVqHr .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-thVBzgVqHr .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-thVBzgVqHr .navbar-toggler {
    display: none;
  }
}
.cid-thVBzgVqHr .navbar-short .menu-content-top {
  border: none;
}
.cid-thVBzgVqHr .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVBzgVqHr .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-thVBzgVqHr .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-thVBzgVqHr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-thVBzgVqHr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-thVBzgVqHr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-thVBzgVqHr .dropdown .dropdown-menu {
  background: #1d2671;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-thVBzgVqHr .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-thVBzgVqHr .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVBzgVqHr .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-thVBzgVqHr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-thVBzgVqHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-thVBzgVqHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVBzgVqHr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-thVBzgVqHr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thVBzgVqHr .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-thVBzgVqHr .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-thVBzgVqHr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-thVBzgVqHr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-thVBzgVqHr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-thVBzgVqHr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-thVBzgVqHr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-thVBzgVqHr button.navbar-toggler:focus {
  outline: none;
}
.cid-thVBzgVqHr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-thVBzgVqHr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-thVBzgVqHr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-thVBzgVqHr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-thVBzgVqHr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-thVBzgVqHr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thVBzgVqHr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-thVBzgVqHr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-thVBzgVqHr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thVBzgVqHr .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-thVBzgVqHr .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVBzgVqHr .collapsed .menu-logo {
  margin-right: 0;
}
.cid-thVBzgVqHr .collapsed .btn {
  display: flex;
}
.cid-thVBzgVqHr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-thVBzgVqHr .collapsed .navbar-collapse.collapsing,
.cid-thVBzgVqHr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-thVBzgVqHr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-thVBzgVqHr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-thVBzgVqHr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-thVBzgVqHr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-thVBzgVqHr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-thVBzgVqHr .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-thVBzgVqHr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-thVBzgVqHr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-thVBzgVqHr .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.2rem  - 1rem);
  }
  .cid-thVBzgVqHr .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-thVBzgVqHr .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-thVBzgVqHr .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-thVBzgVqHr .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-thVBzgVqHr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-thVBzgVqHr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-thVBzgVqHr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-thVBzgVqHr .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-thVBzgVqHr .collapsed .dropdown-item:before {
  display: none;
}
.cid-thVBzgVqHr .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-thVBzgVqHr .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-thVBzgVqHr .nav-link:focus {
  outline: none;
}
.cid-thVBzgVqHr .navbar-toggler {
  position: relative;
}
.cid-thVBzgVqHr .dropdown-item.active,
.cid-thVBzgVqHr .dropdown-item:active {
  background-color: #1d2671;
  color: auto;
}
.cid-thVBzgVqHr .nav-link:hover,
.cid-thVBzgVqHr .dropdown-item:hover {
  color: #1d2671;
}
.cid-thVBzhKiLQ {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1078.jpg");
}
.cid-thVBzhKiLQ .media-content .btn-bgr {
  z-index: 0;
}
.cid-thVBzhKiLQ .mbr-overlay {
  background: linear-gradient(90deg, #2c1616, #ffffff);
}
@media (min-width: 992px) {
  .cid-thVBzhKiLQ .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-thVBzhKiLQ {
    text-align: center !important;
  }
  .cid-thVBzhKiLQ .mbr-text {
    text-align: center;
  }
}
.cid-thVBzhKiLQ .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-thVBzhKiLQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-thVBzhKiLQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thVBzhKiLQ H1 {
  color: #ffffff;
}
.cid-tt7yHhDITF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #00a2af;
}
.cid-tt7yHhDITF .mbr-text {
  color: #ffffff;
}
.cid-tt7yHhDITF h4 {
  font-weight: 500;
}
.cid-tt7yHhDITF h4,
.cid-tt7yHhDITF h5 {
  text-align: center;
}
.cid-tt7yHhDITF p {
  text-align: center;
}
.cid-tt7yHhDITF .card-box {
  text-align: center;
}
.cid-tt7yHhDITF .card-img {
  font-size: 3rem;
}
.cid-tt7yHhDITF .mbr-iconfont {
  color: #1d2671;
}
.cid-tt7yHhDITF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt7yHhDITF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tt7yHhDITF .card-title,
.cid-tt7yHhDITF .card-img {
  color: #ffffff;
}
.cid-thVBzlueCh {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #00a2af;
}
.cid-thVBzlueCh p {
  text-align: center;
}
.cid-thVBzlueCh .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-thVBzlueCh .social-list a:focus {
  text-decoration: none;
}
.cid-thVBzlueCh .text-copyright {
  width: 100%;
  color: #ffffff;
}
.cid-thVBzlueCh .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-thVBzlueCh .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-thVBzlueCh .logo-footer {
  line-height: normal;
}
.cid-thVBzlueCh .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVBzlueCh .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-thVBzlueCh .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVECM769T .navbar {
  padding: .5rem 0;
  background: #1d2671;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-thVECM769T .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-thVECM769T .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-thVECM769T .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVECM769T .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-thVECM769T .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-thVECM769T .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-thVECM769T .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-thVECM769T .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-thVECM769T .navbar-dropdown.bg-color.transparent.opened {
  background: #1d2671;
}
.cid-thVECM769T a {
  font-style: normal;
}
.cid-thVECM769T .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-thVECM769T .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-thVECM769T .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVECM769T .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-thVECM769T .content-text {
  margin-bottom: 0;
}
.cid-thVECM769T .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-thVECM769T .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #1d2671;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-thVECM769T .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-thVECM769T .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-thVECM769T .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-thVECM769T .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-thVECM769T .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-thVECM769T .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-thVECM769T .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-thVECM769T .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-thVECM769T .nav-dropdown .link {
  font-weight: 400;
}
.cid-thVECM769T .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-thVECM769T .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-thVECM769T .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-thVECM769T .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-thVECM769T .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-thVECM769T .menu-content-top.show {
  display: block;
}
.cid-thVECM769T .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-thVECM769T .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-thVECM769T .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-thVECM769T .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-thVECM769T .dropdown-item:before {
    display: none;
  }
  .cid-thVECM769T .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-thVECM769T .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-thVECM769T img {
    height: 3.8rem !important;
  }
  .cid-thVECM769T .btn {
    display: flex;
  }
  .cid-thVECM769T button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-thVECM769T .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-thVECM769T .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-thVECM769T .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-thVECM769T .navbar-collapse.collapsing,
  .cid-thVECM769T .navbar-collapse.show {
    display: block !important;
  }
  .cid-thVECM769T .navbar-collapse.collapsing .navbar-nav,
  .cid-thVECM769T .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-thVECM769T .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-thVECM769T .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-thVECM769T .navbar-collapse.collapsing .navbar-buttons,
  .cid-thVECM769T .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-thVECM769T .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-thVECM769T .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-thVECM769T .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-thVECM769T .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-thVECM769T .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-thVECM769T .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-thVECM769T .navbar .menu-content-top {
    display: block;
  }
  .cid-thVECM769T .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-thVECM769T .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-thVECM769T .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-thVECM769T .menu-bottom {
    display: flex;
  }
  .cid-thVECM769T .navbar {
    display: block;
    padding: 0;
  }
  .cid-thVECM769T .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-thVECM769T .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-thVECM769T .navbar-toggler {
    display: none;
  }
}
.cid-thVECM769T .navbar-short .menu-content-top {
  border: none;
}
.cid-thVECM769T .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVECM769T .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-thVECM769T .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-thVECM769T .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-thVECM769T .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-thVECM769T .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-thVECM769T .dropdown .dropdown-menu {
  background: #1d2671;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-thVECM769T .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-thVECM769T .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVECM769T .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-thVECM769T .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-thVECM769T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-thVECM769T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-thVECM769T .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-thVECM769T .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thVECM769T .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-thVECM769T .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-thVECM769T .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-thVECM769T .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-thVECM769T .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-thVECM769T .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-thVECM769T button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-thVECM769T button.navbar-toggler:focus {
  outline: none;
}
.cid-thVECM769T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-thVECM769T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-thVECM769T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-thVECM769T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-thVECM769T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-thVECM769T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thVECM769T nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-thVECM769T nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-thVECM769T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-thVECM769T .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-thVECM769T .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVECM769T .collapsed .menu-logo {
  margin-right: 0;
}
.cid-thVECM769T .collapsed .btn {
  display: flex;
}
.cid-thVECM769T .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-thVECM769T .collapsed .navbar-collapse.collapsing,
.cid-thVECM769T .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-thVECM769T .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-thVECM769T .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-thVECM769T .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-thVECM769T .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-thVECM769T .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-thVECM769T .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-thVECM769T .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-thVECM769T .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-thVECM769T .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.2rem  - 1rem);
  }
  .cid-thVECM769T .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-thVECM769T .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-thVECM769T .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-thVECM769T .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-thVECM769T .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-thVECM769T .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-thVECM769T .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-thVECM769T .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-thVECM769T .collapsed .dropdown-item:before {
  display: none;
}
.cid-thVECM769T .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-thVECM769T .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-thVECM769T .nav-link:focus {
  outline: none;
}
.cid-thVECM769T .navbar-toggler {
  position: relative;
}
.cid-thVECM769T .dropdown-item.active,
.cid-thVECM769T .dropdown-item:active {
  background-color: #1d2671;
  color: auto;
}
.cid-thVECM769T .nav-link:hover,
.cid-thVECM769T .dropdown-item:hover {
  color: #1d2671;
}
.cid-thVECMRbza {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/tours-1-1920x500.jpeg");
}
.cid-thVECMRbza .media-content .btn-bgr {
  z-index: 0;
}
.cid-thVECMRbza .mbr-overlay {
  background: linear-gradient(90deg, #1d2671, #2c1616);
}
@media (min-width: 992px) {
  .cid-thVECMRbza .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-thVECMRbza {
    text-align: center !important;
  }
  .cid-thVECMRbza .mbr-text {
    text-align: center;
  }
}
.cid-thVECMRbza .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-thVECMRbza .mbr-fallback-image.disabled {
  display: none;
}
.cid-thVECMRbza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thVECMRbza H1 {
  color: #ffffff;
}
.cid-tqRC2syPTh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/ballena-1024x683.jpg");
}
.cid-tqRC2syPTh .text-content .btn-bgr {
  z-index: 0;
}
.cid-tqRC2syPTh .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-tqRC2syPTh h3 {
  color: #ffffff;
  font-weight: 300;
}
.cid-tqRC2syPTh p {
  color: #ffffff;
}
.cid-tqRC2syPTh h2 {
  color: #ffffff;
}
.cid-tqRC2syPTh .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tqRC2syPTh .text-content {
  padding: 2rem 0rem;
  background-color: #00a2af;
}
.cid-tqRC2syPTh .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tqRC2syPTh .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tqRC2syPTh .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tqRC2syPTh .text-content {
    margin-bottom: 2rem;
  }
}
.cid-tqRC2syPTh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqRC2syPTh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thVECOPv64 {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #dae9ff;
}
.cid-thVECOPv64 .team-card .image-wrap {
  overflow: hidden;
}
.cid-thVECOPv64 .team-card .image-wrap img {
  transition: all .5s;
}
.cid-thVECOPv64 .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-thVECOPv64 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-thVECOPv64 .team-card {
  margin-bottom: 2rem;
}
.cid-thVECOPv64 .card-wrap {
  background: #ffffff;
}
.cid-thVECOPv64 .card-wrap .image-wrap img {
  width: 100%;
}
.cid-thVECOPv64 .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-thVECOPv64 .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-thVECOPv64 .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-thVECOPv64 .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thVECOPv64 .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-thVECOPv64 .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-thVECOPv64 .main-title {
  color: #1d2671;
}
.cid-thVECPNiAy {
  padding-top: 30px;
  padding-bottom: 60px;
  background: #dae9ff;
}
.cid-thVECPNiAy .team-card .image-wrap {
  overflow: hidden;
}
.cid-thVECPNiAy .team-card .image-wrap img {
  transition: all .5s;
}
.cid-thVECPNiAy .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-thVECPNiAy .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-thVECPNiAy .team-card {
  margin-bottom: 2rem;
}
.cid-thVECPNiAy .card-wrap {
  background: #ffffff;
}
.cid-thVECPNiAy .card-wrap .image-wrap img {
  width: 100%;
}
.cid-thVECPNiAy .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-thVECPNiAy .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-thVECPNiAy .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-thVECPNiAy .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-thVECPNiAy .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-thVECPNiAy .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-thVECPNiAy .main-title {
  color: #1d2671;
}
.cid-thVECNrC6T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-thVECNrC6T img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVECNrC6T img:hover {
  transform: scale(1.1);
}
.cid-thVECNrC6T .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVECNrC6T h2 {
  padding: 0;
  margin: 0;
}
.cid-thVECNrC6T .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVECNrC6T .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVECNrC6T .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-thVECNrC6T .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVECNrC6T .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVECNrC6T .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVECNrC6T .mbr-iconfont {
  margin: 0!important;
}
.cid-thVECNrC6T .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVECNrC6T .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVECNrC6T .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVECNrC6T .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVECNrC6T .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVECNrC6T H2 {
  color: #333333;
}
.cid-thVECNrC6T .mbr-text {
  color: #2c1616;
}
.cid-thVECNrC6T H1 {
  color: #1d2671;
}
.cid-thVECNrC6T H3 {
  color: #1d2671;
}
.cid-thVECNLLRq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-thVECNLLRq img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVECNLLRq img:hover {
  transform: scale(1.1);
}
.cid-thVECNLLRq .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVECNLLRq h2 {
  padding: 0;
  margin: 0;
}
.cid-thVECNLLRq .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVECNLLRq .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVECNLLRq .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-thVECNLLRq .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVECNLLRq .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVECNLLRq .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVECNLLRq .mbr-iconfont {
  margin: 0!important;
}
.cid-thVECNLLRq .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVECNLLRq .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVECNLLRq .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVECNLLRq .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVECNLLRq .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVECNLLRq H2 {
  color: #333333;
}
.cid-thVECNLLRq .mbr-text {
  color: #2c1616;
}
.cid-thVECNLLRq H1 {
  color: #1d2671;
}
.cid-thVECO9X1B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-thVECO9X1B img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVECO9X1B img:hover {
  transform: scale(1.1);
}
.cid-thVECO9X1B .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVECO9X1B h2 {
  padding: 0;
  margin: 0;
}
.cid-thVECO9X1B .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVECO9X1B .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVECO9X1B .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-thVECO9X1B .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVECO9X1B .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVECO9X1B .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVECO9X1B .mbr-iconfont {
  margin: 0!important;
}
.cid-thVECO9X1B .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVECO9X1B .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVECO9X1B .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVECO9X1B .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVECO9X1B .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVECO9X1B H2 {
  color: #333333;
}
.cid-thVECO9X1B .mbr-text {
  color: #2c1616;
}
.cid-thVECO9X1B H1 {
  color: #1d2671;
}
.cid-thVECOtfo2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-thVECOtfo2 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVECOtfo2 img:hover {
  transform: scale(1.1);
}
.cid-thVECOtfo2 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVECOtfo2 h2 {
  padding: 0;
  margin: 0;
}
.cid-thVECOtfo2 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVECOtfo2 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVECOtfo2 .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-thVECOtfo2 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVECOtfo2 .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVECOtfo2 .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVECOtfo2 .mbr-iconfont {
  margin: 0!important;
}
.cid-thVECOtfo2 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVECOtfo2 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVECOtfo2 .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVECOtfo2 .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVECOtfo2 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVECOtfo2 H2 {
  color: #333333;
}
.cid-thVECOtfo2 .mbr-text {
  color: #2c1616;
}
.cid-thVECOtfo2 H1 {
  color: #1d2671;
}
.cid-thVHi0BVsT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-thVHi0BVsT img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVHi0BVsT img:hover {
  transform: scale(1.1);
}
.cid-thVHi0BVsT .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVHi0BVsT h2 {
  padding: 0;
  margin: 0;
}
.cid-thVHi0BVsT .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVHi0BVsT .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVHi0BVsT .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-thVHi0BVsT .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVHi0BVsT .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVHi0BVsT .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVHi0BVsT .mbr-iconfont {
  margin: 0!important;
}
.cid-thVHi0BVsT .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVHi0BVsT .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVHi0BVsT .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVHi0BVsT .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVHi0BVsT .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVHi0BVsT H2 {
  color: #333333;
}
.cid-thVHi0BVsT .mbr-text {
  color: #2c1616;
}
.cid-thVHi0BVsT H1 {
  color: #1d2671;
}
.cid-thVHiVlvaP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-thVHiVlvaP img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVHiVlvaP img:hover {
  transform: scale(1.1);
}
.cid-thVHiVlvaP .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVHiVlvaP h2 {
  padding: 0;
  margin: 0;
}
.cid-thVHiVlvaP .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVHiVlvaP .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVHiVlvaP .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-thVHiVlvaP .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVHiVlvaP .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVHiVlvaP .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVHiVlvaP .mbr-iconfont {
  margin: 0!important;
}
.cid-thVHiVlvaP .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVHiVlvaP .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVHiVlvaP .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVHiVlvaP .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVHiVlvaP .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVHiVlvaP H2 {
  color: #333333;
}
.cid-thVHiVlvaP .mbr-text {
  color: #2c1616;
}
.cid-thVHiVlvaP H1 {
  color: #1d2671;
}
.cid-thVHjxvjtV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-thVHjxvjtV img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVHjxvjtV img:hover {
  transform: scale(1.1);
}
.cid-thVHjxvjtV .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVHjxvjtV h2 {
  padding: 0;
  margin: 0;
}
.cid-thVHjxvjtV .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVHjxvjtV .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVHjxvjtV .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-thVHjxvjtV .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVHjxvjtV .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVHjxvjtV .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVHjxvjtV .mbr-iconfont {
  margin: 0!important;
}
.cid-thVHjxvjtV .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVHjxvjtV .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVHjxvjtV .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVHjxvjtV .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVHjxvjtV .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVHjxvjtV H2 {
  color: #333333;
}
.cid-thVHjxvjtV .mbr-text {
  color: #2c1616;
}
.cid-thVHjxvjtV H1 {
  color: #1d2671;
}
.cid-thVHk8QRIX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-thVHk8QRIX img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-thVHk8QRIX img:hover {
  transform: scale(1.1);
}
.cid-thVHk8QRIX .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-thVHk8QRIX h2 {
  padding: 0;
  margin: 0;
}
.cid-thVHk8QRIX .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thVHk8QRIX .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-thVHk8QRIX .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-thVHk8QRIX .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-thVHk8QRIX .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-thVHk8QRIX .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-thVHk8QRIX .mbr-iconfont {
  margin: 0!important;
}
.cid-thVHk8QRIX .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-thVHk8QRIX .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thVHk8QRIX .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-thVHk8QRIX .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-thVHk8QRIX .text-col {
    padding: 2rem 1rem;
  }
}
.cid-thVHk8QRIX H2 {
  color: #333333;
}
.cid-thVHk8QRIX .mbr-text {
  color: #2c1616;
}
.cid-thVHk8QRIX H1 {
  color: #1d2671;
}
.cid-thVECQEfDa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-thVECQEfDa .fb-page,
.cid-thVECQEfDa span,
.cid-thVECQEfDa iframe {
  width: 500px;
  height: 620px;
}
.cid-thVECQEfDa blockquote {
  display: none;
}
.cid-thVECQEfDa .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-thVECQEfDa .mbr-section-title {
  color: #2c1616;
}
.cid-thVECQEfDa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tt7yPJUxmp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #00a2af;
}
.cid-tt7yPJUxmp .mbr-text {
  color: #ffffff;
}
.cid-tt7yPJUxmp h4 {
  font-weight: 500;
}
.cid-tt7yPJUxmp h4,
.cid-tt7yPJUxmp h5 {
  text-align: center;
}
.cid-tt7yPJUxmp p {
  text-align: center;
}
.cid-tt7yPJUxmp .card-box {
  text-align: center;
}
.cid-tt7yPJUxmp .card-img {
  font-size: 3rem;
}
.cid-tt7yPJUxmp .mbr-iconfont {
  color: #1d2671;
}
.cid-tt7yPJUxmp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt7yPJUxmp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tt7yPJUxmp .card-title,
.cid-tt7yPJUxmp .card-img {
  color: #ffffff;
}
.cid-thVECRA8ZX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #00a2af;
}
.cid-thVECRA8ZX p {
  text-align: center;
}
.cid-thVECRA8ZX .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-thVECRA8ZX .social-list a:focus {
  text-decoration: none;
}
.cid-thVECRA8ZX .text-copyright {
  width: 100%;
  color: #ffffff;
}
.cid-thVECRA8ZX .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-thVECRA8ZX .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-thVECRA8ZX .logo-footer {
  line-height: normal;
}
.cid-thVECRA8ZX .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-thVECRA8ZX .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-thVECRA8ZX .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tqRCKXZcln .navbar {
  padding: .5rem 0;
  background: #1d2671;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-tqRCKXZcln .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-tqRCKXZcln .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-tqRCKXZcln .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tqRCKXZcln .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tqRCKXZcln .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tqRCKXZcln .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tqRCKXZcln .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tqRCKXZcln .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tqRCKXZcln .navbar-dropdown.bg-color.transparent.opened {
  background: #1d2671;
}
.cid-tqRCKXZcln a {
  font-style: normal;
}
.cid-tqRCKXZcln .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-tqRCKXZcln .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-tqRCKXZcln .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tqRCKXZcln .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-tqRCKXZcln .content-text {
  margin-bottom: 0;
}
.cid-tqRCKXZcln .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tqRCKXZcln .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #1d2671;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tqRCKXZcln .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-tqRCKXZcln .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tqRCKXZcln .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-tqRCKXZcln .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-tqRCKXZcln .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tqRCKXZcln .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tqRCKXZcln .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tqRCKXZcln .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqRCKXZcln .nav-dropdown .link {
  font-weight: 400;
}
.cid-tqRCKXZcln .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tqRCKXZcln .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-tqRCKXZcln .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-tqRCKXZcln .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-tqRCKXZcln .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-tqRCKXZcln .menu-content-top.show {
  display: block;
}
.cid-tqRCKXZcln .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-tqRCKXZcln .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-tqRCKXZcln .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-tqRCKXZcln .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-tqRCKXZcln .dropdown-item:before {
    display: none;
  }
  .cid-tqRCKXZcln .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-tqRCKXZcln .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-tqRCKXZcln img {
    height: 3.8rem !important;
  }
  .cid-tqRCKXZcln .btn {
    display: flex;
  }
  .cid-tqRCKXZcln button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tqRCKXZcln .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-tqRCKXZcln .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tqRCKXZcln .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tqRCKXZcln .navbar-collapse.collapsing,
  .cid-tqRCKXZcln .navbar-collapse.show {
    display: block !important;
  }
  .cid-tqRCKXZcln .navbar-collapse.collapsing .navbar-nav,
  .cid-tqRCKXZcln .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tqRCKXZcln .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tqRCKXZcln .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-tqRCKXZcln .navbar-collapse.collapsing .navbar-buttons,
  .cid-tqRCKXZcln .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tqRCKXZcln .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tqRCKXZcln .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tqRCKXZcln .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tqRCKXZcln .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tqRCKXZcln .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tqRCKXZcln .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-tqRCKXZcln .navbar .menu-content-top {
    display: block;
  }
  .cid-tqRCKXZcln .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-tqRCKXZcln .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-tqRCKXZcln .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-tqRCKXZcln .menu-bottom {
    display: flex;
  }
  .cid-tqRCKXZcln .navbar {
    display: block;
    padding: 0;
  }
  .cid-tqRCKXZcln .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tqRCKXZcln .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-tqRCKXZcln .navbar-toggler {
    display: none;
  }
}
.cid-tqRCKXZcln .navbar-short .menu-content-top {
  border: none;
}
.cid-tqRCKXZcln .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tqRCKXZcln .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tqRCKXZcln .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-tqRCKXZcln .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tqRCKXZcln .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqRCKXZcln .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tqRCKXZcln .dropdown .dropdown-menu {
  background: #1d2671;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tqRCKXZcln .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tqRCKXZcln .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tqRCKXZcln .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tqRCKXZcln .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tqRCKXZcln .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tqRCKXZcln .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tqRCKXZcln .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tqRCKXZcln .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqRCKXZcln .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tqRCKXZcln .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tqRCKXZcln .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tqRCKXZcln .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tqRCKXZcln .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tqRCKXZcln .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tqRCKXZcln button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-tqRCKXZcln button.navbar-toggler:focus {
  outline: none;
}
.cid-tqRCKXZcln button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqRCKXZcln button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tqRCKXZcln button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tqRCKXZcln button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tqRCKXZcln button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tqRCKXZcln nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tqRCKXZcln nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tqRCKXZcln nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tqRCKXZcln nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tqRCKXZcln .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tqRCKXZcln .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tqRCKXZcln .collapsed .menu-logo {
  margin-right: 0;
}
.cid-tqRCKXZcln .collapsed .btn {
  display: flex;
}
.cid-tqRCKXZcln .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tqRCKXZcln .collapsed .navbar-collapse.collapsing,
.cid-tqRCKXZcln .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tqRCKXZcln .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tqRCKXZcln .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tqRCKXZcln .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tqRCKXZcln .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tqRCKXZcln .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tqRCKXZcln .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tqRCKXZcln .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tqRCKXZcln .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tqRCKXZcln .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.2rem  - 1rem);
  }
  .cid-tqRCKXZcln .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tqRCKXZcln .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqRCKXZcln .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-tqRCKXZcln .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tqRCKXZcln .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-tqRCKXZcln .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tqRCKXZcln .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tqRCKXZcln .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tqRCKXZcln .collapsed .dropdown-item:before {
  display: none;
}
.cid-tqRCKXZcln .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tqRCKXZcln .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tqRCKXZcln .nav-link:focus {
  outline: none;
}
.cid-tqRCKXZcln .navbar-toggler {
  position: relative;
}
.cid-tqRCKXZcln .dropdown-item.active,
.cid-tqRCKXZcln .dropdown-item:active {
  background-color: #1d2671;
  color: auto;
}
.cid-tqRCKXZcln .nav-link:hover,
.cid-tqRCKXZcln .dropdown-item:hover {
  color: #1d2671;
}
.cid-tqRCKYuo4M {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/ballena14-819x1024.jpg");
}
.cid-tqRCKYuo4M .media-content .btn-bgr {
  z-index: 0;
}
.cid-tqRCKYuo4M .mbr-overlay {
  background: linear-gradient(90deg, #1d2671, #1d2671);
}
@media (min-width: 992px) {
  .cid-tqRCKYuo4M .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tqRCKYuo4M {
    text-align: center !important;
  }
  .cid-tqRCKYuo4M .mbr-text {
    text-align: center;
  }
}
.cid-tqRCKYuo4M .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tqRCKYuo4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqRCKYuo4M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqRCKYuo4M H1 {
  color: #ffffff;
}
.cid-tqRCKYuo4M DIV {
  text-align: right;
}
.cid-tqRCKYO1Ob {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tqRCKYO1Ob img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-tqRCKYO1Ob img:hover {
  transform: scale(1.1);
}
.cid-tqRCKYO1Ob .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-tqRCKYO1Ob h2 {
  padding: 0;
  margin: 0;
}
.cid-tqRCKYO1Ob .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqRCKYO1Ob .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-tqRCKYO1Ob .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-tqRCKYO1Ob .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-tqRCKYO1Ob .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-tqRCKYO1Ob .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-tqRCKYO1Ob .mbr-iconfont {
  margin: 0!important;
}
.cid-tqRCKYO1Ob .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tqRCKYO1Ob .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tqRCKYO1Ob .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-tqRCKYO1Ob .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-tqRCKYO1Ob .text-col {
    padding: 2rem 1rem;
  }
}
.cid-tqRCKYO1Ob H2 {
  color: #333333;
}
.cid-tqRCKYO1Ob .mbr-text {
  color: #2c1616;
}
.cid-tqRCKYO1Ob H1 {
  color: #1d2671;
}
.cid-tqRKGJOfWL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/ballena15-1280x720-800x450.jpg");
}
.cid-tqRKGJOfWL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqRKGJOfWL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqRKGJOfWL .row {
  justify-content: center;
}
.cid-tqRKGJOfWL .video-wrapper iframe {
  width: 100%;
}
.cid-tqRKGJOfWL .title-wrapper {
  margin-bottom: 32px;
}
.cid-tqRKGJOfWL .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tqRKGJOfWL .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tqRKGJOfWL .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffffff;
  z-index: -1;
}
.cid-tqRKGJOfWL .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-tqRKGJOfWL .video-block {
    margin-bottom: 24px;
  }
}
.cid-tqRKGJOfWL .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-tqRKGJOfWL .mbr-section-title {
  color: #1d2671;
  text-align: center;
}
.cid-tqRDvHeq58 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tqRDvHeq58 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tqRDvHeq58 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tqRDvHeq58 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tqRDvHeq58 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tqRDvHeq58 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tqRDvHeq58 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tqRDvHeq58 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tqRDvHeq58 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tqRDvHeq58 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tqRDvHeq58 ul {
  font-size: 0;
}
.cid-tqRDvHeq58 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #4284df;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-tqRDvHeq58 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #4284df solid;
  border-radius: 0 !important;
}
.cid-tqRDvHeq58 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tqRCL09dZz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tqRCL09dZz .fb-page,
.cid-tqRCL09dZz span,
.cid-tqRCL09dZz iframe {
  width: 500px;
  height: 620px;
}
.cid-tqRCL09dZz blockquote {
  display: none;
}
.cid-tqRCL09dZz .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-tqRCL09dZz .mbr-section-title {
  color: #2c1616;
}
.cid-tqRCL09dZz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tt7ygYM2xJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #00a2af;
}
.cid-tt7ygYM2xJ .mbr-text {
  color: #ffffff;
}
.cid-tt7ygYM2xJ h4 {
  font-weight: 500;
}
.cid-tt7ygYM2xJ h4,
.cid-tt7ygYM2xJ h5 {
  text-align: center;
}
.cid-tt7ygYM2xJ p {
  text-align: center;
}
.cid-tt7ygYM2xJ .card-box {
  text-align: center;
}
.cid-tt7ygYM2xJ .card-img {
  font-size: 3rem;
}
.cid-tt7ygYM2xJ .mbr-iconfont {
  color: #1d2671;
}
.cid-tt7ygYM2xJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt7ygYM2xJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tt7ygYM2xJ .card-title,
.cid-tt7ygYM2xJ .card-img {
  color: #ffffff;
}
.cid-tqRCL12nXA {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #00a2af;
}
.cid-tqRCL12nXA p {
  text-align: center;
}
.cid-tqRCL12nXA .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tqRCL12nXA .social-list a:focus {
  text-decoration: none;
}
.cid-tqRCL12nXA .text-copyright {
  width: 100%;
  color: #ffffff;
}
.cid-tqRCL12nXA .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tqRCL12nXA .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-tqRCL12nXA .logo-footer {
  line-height: normal;
}
.cid-tqRCL12nXA .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tqRCL12nXA .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqRCL12nXA .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
