@import url(https://fonts.googleapis.com/css?family=Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 5.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.64rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.7rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4.32rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.7;
}
.display-4 > .mbr-iconfont {
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.32rem;
    font-size: calc( 2.54rem + (5.4 - 2.54) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.54rem + (5.4 - 2.54) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.16rem;
    font-size: calc( 1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: #5263b8 !important;
}
.bg-success {
  background-color: #f1a631 !important;
}
.bg-info {
  background-color: #fb7522 !important;
}
.bg-warning {
  background-color: #4da92e !important;
}
.bg-danger {
  background-color: #003254 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5263b8 !important;
  border-color: #5263b8 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #374486 !important;
  border-color: #374486 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #374486 !important;
  border-color: #374486 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffca40 !important;
  border-color: #ffca40 !important;
  color: #402e00 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #402e00 !important;
  background-color: #f3af00 !important;
  border-color: #f3af00 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #402e00 !important;
  background-color: #f3af00 !important;
  border-color: #f3af00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fb7522 !important;
  border-color: #fb7522 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #cd5104 !important;
  border-color: #cd5104 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #cd5104 !important;
  border-color: #cd5104 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f1a631 !important;
  border-color: #f1a631 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #c87f0e !important;
  border-color: #c87f0e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c87f0e !important;
  border-color: #c87f0e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #4da92e !important;
  border-color: #4da92e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #326d1e !important;
  border-color: #326d1e !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #326d1e !important;
  border-color: #326d1e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #003254 !important;
  border-color: #003254 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
    color: #ffffff !important;
    background-color: #005A8F !important;
    border-color: #005A8F !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000408 !important;
  border-color: #000408 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #303b74;
  color: #303b74;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
    color: #000000 !important;
    background: transparent !important;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1) !important;
    border-color: #5263b8;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5263b8 !important;
  border-color: #5263b8 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #d99d00;
  color: #d99d00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
    color: #ffffff !important;
    background: transparent !important;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1) !important;
    border-color: #ffca40;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #402e00 !important;
  background-color: #ffca40 !important;
  border-color: #ffca40 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #b44703;
  color: #b44703;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #fb7522;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #fb7522 !important;
  border-color: #fb7522 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #b0700c;
  color: #b0700c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #f1a631;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f1a631 !important;
  border-color: #f1a631 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #285918;
  color: #285918;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #4da92e;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #4da92e !important;
  border-color: #4da92e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
    color: #000000 !important;
    background: transparent !important;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1) !important;
    border-color: #003254;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #003254 !important;
  border-color: #003254 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-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 !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #000000 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #5263b8 !important;
}
.text-secondary {
  color: #ffca40 !important;
}
.text-success {
  color: #f1a631 !important;
}
.text-info {
  color: #fb7522 !important;
}
.text-warning {
  color: #4da92e !important;
}
.text-danger {
  color: #003254 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #303b74 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #d99d00 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #b0700c !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b44703 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #285918 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !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: #fb7522;
}
.alert-warning {
  background-color: #4da92e;
}
.alert-danger {
  background-color: #003254;
}
.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: none;
}
.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;
  -webkit-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: #5263b8;
  border-color: #5263b8;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #5263b8;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #acb5dd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fef9f0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fff2ea;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #93db7b;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #3bafff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #5263b8;
}
/* 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);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5263b8;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  -webkit-transition: 0.4s;
  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: #5263b8;
  border-bottom-color: #5263b8;
}
.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: #5263b8 !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: #ffca40 !important;
  box-shadow: none !important;
}
.sidebar-block .mbr-gallery-item .galleryItem .onsale {
  top: 0px;
}
.sidebar-block .mbr-gallery-item .galleryItem .sidebar_wraper {
  bottom: -35px;
  margin-left: 1rem;
}
.cid-sUSaoLvglR .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sUSaoLvglR .collapsed {
  flex-direction: row !important;
}
.cid-sUSaoLvglR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sUSaoLvglR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sUSaoLvglR .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sUSaoLvglR .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sUSaoLvglR .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sUSaoLvglR .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sUSaoLvglR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sUSaoLvglR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sUSaoLvglR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sUSaoLvglR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sUSaoLvglR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sUSaoLvglR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sUSaoLvglR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sUSaoLvglR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sUSaoLvglR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sUSaoLvglR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sUSaoLvglR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sUSaoLvglR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sUSaoLvglR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sUSaoLvglR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sUSaoLvglR .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sUSaoLvglR .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sUSaoLvglR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sUSaoLvglR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sUSaoLvglR .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sUSaoLvglR .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sUSaoLvglR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sUSaoLvglR .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sUSaoLvglR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sUSaoLvglR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sUSaoLvglR .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffca40;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sUSaoLvglR .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-sUSaoLvglR .nav-item:focus,
.cid-sUSaoLvglR .nav-link:focus {
  outline: none;
}
.cid-sUSaoLvglR .text-white:hover,
.cid-sUSaoLvglR .text-white:active,
.cid-sUSaoLvglR .text-white:focus {
  color: white !important;
}
.cid-sUSaoLvglR .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-sUSaoLvglR .dropdown-item:hover {
  color: black !important;
}
.cid-sUSaoLvglR .dropdown-menu {
  background-color: white !important;
}
.cid-sUSaoLvglR .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(255, 216, 115, 0.35);
  display: block;
}
.cid-sUSaoLvglR .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffca40;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sUSaoLvglR .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-sUSaoLvglR .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-sUSaoLvglR .nav-item {
    position: relative;
  }
}
.cid-sUSaoLvglR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sUSaoLvglR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sUSaoLvglR .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sUSaoLvglR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sUSaoLvglR .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-sUSaoLvglR .navbar-caption {
  font-weight: 600 !important;
}
.cid-sUSaoLvglR .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sUSaoLvglR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sUSaoLvglR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sUSaoLvglR .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sUSaoLvglR .dropdown-item.active,
.cid-sUSaoLvglR .dropdown-item:active {
  background-color: transparent;
}
.cid-sUSaoLvglR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sUSaoLvglR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sUSaoLvglR .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sUSaoLvglR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sUSaoLvglR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sUSaoLvglR ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sUSaoLvglR .navbar-buttons {
  text-align: center;
}
.cid-sUSaoLvglR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sUSaoLvglR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #003254;
}
.cid-sUSaoLvglR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sUSaoLvglR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUSaoLvglR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUSaoLvglR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sUSaoLvglR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUSaoLvglR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sUSaoLvglR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sUSaoLvglR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUSaoLvglR .nav-link {
  font-weight: 600 !important;
}
.cid-sUSaoLvglR a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sUSaoLvglR .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sUSaoLvglR .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sUSaoLvglR .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUSaoLvglR .navbar {
    height: 77px;
  }
  .cid-sUSaoLvglR .navbar.opened {
    height: auto;
  }
  .cid-sUSaoLvglR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMhUVM6CkM .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-sMhUVM6CkM .mbr-arrow i {
  color: #ffffff !important;
}
.cid-sMhUVM6CkM .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sMhUVM6CkM .animated-element,
.cid-sMhUVM6CkM .typed-cursor {
  color: #ffffff;
}
.cid-sMhUVM6CkM .animated-element {
  border-bottom: 5px solid #ffca40;
}
@media (max-width: 767px) {
  .cid-sMhUVM6CkM .typed-text {
    text-align: center;
  }
}
.cid-sMhY5mh8Ij {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sMhY5mh8Ij .mbr-section-title {
  letter-spacing: 0.1em;
  color: #343434;
  margin-bottom: 2rem;
}
.cid-sMhY5mh8Ij .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sMhY5mh8Ij .btn {
  margin: 0px !important;
}
.cid-sMhY5mh8Ij .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMhY5mh8Ij .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMhY5mh8Ij .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sMhY5mh8Ij .carousel-item .wrap-img {
  text-align: center;
}
.cid-sMhY5mh8Ij .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-sMhY5mh8Ij .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sMhY5mh8Ij .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-sMhY5mh8Ij .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ffca40;
  display: inline-block;
  border: 4px solid #ffca40;
}
.cid-sMhY5mh8Ij .carousel-indicators li.active {
  border-color: #ffa010;
}
@media (max-width: 768px) {
  .cid-sMhY5mh8Ij .second-col {
    padding-top: 2rem;
  }
}
.cid-sMhY5mh8Ij .mbr-section-subtitle,
.cid-sMhY5mh8Ij .mbr-section-btn {
  text-align: left;
  color: #343434;
}
.cid-sMhVxfg1Td {
    padding-top: 75px;
    padding-bottom: 75px;
    background-image: url(../../../assets22/images/bg-2000x1187.jpg);
}
.cid-sMhVxfg1Td .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-sMhVxfg1Td .card-wrap {
  background-color: #003254;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-sMhVxfg1Td .card-wrap:hover h4,
.cid-sMhVxfg1Td .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-sMhVxfg1Td h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-sMhVxfg1Td h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-sMhVxfg1Td img {
  width: 100%;
}
.cid-sMhVxfg1Td h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sMhVxfg1Td h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sMhVxfg1Td .card-title1,
.cid-sMhVxfg1Td .title-wrap1 {
  color: #ffffff;
}
.cid-sMhVxfg1Td .card-title,
.cid-sMhVxfg1Td .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sMhVxfg1Td .mdpb {
    padding-bottom: 2rem;
  }
  .cid-sMhVxfg1Td .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-sMhVxfg1Td H3 {
  color: #ffffff;
}
.cid-sYUZ6d9s05 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYUZ6d9s05 .container-fluid {
  position: relative;
}
.cid-sYUZ6d9s05 .page-title-content {
  width: 100%;
}
.cid-sYUZ6d9s05 .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-sYUZ6d9s05 .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-sYUZ6d9s05 .page-title-content {
    text-align: center;
  }
}
.cid-sYUZ6d9s05 .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-sYUZ6d9s05 a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-sYUZ6d9s05 a:not(:first-child) {
  margin-left: 20px;
}
.cid-sYUZ6d9s05 a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-sYUZ6d9s05 a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-sYUZ6d9s05 a:hover:after,
.cid-sYUZ6d9s05 a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-sYUZ6d9s05 a:hover:before,
.cid-sYUZ6d9s05 a:focus:before {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-sYUZ6d9s05 a.text-white:hover,
.cid-sYUZ6d9s05 a.text-white:focus {
  color: #ffffff !important;
}
.cid-sYUZ6d9s05 .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sYUZ6d9s05 .page-title-content .title,
.cid-sYUZ6d9s05 .icon-section,
.cid-sYUZ6d9s05 .mbr-section-btn {
  color: #343434;
}
.cid-sMhYyACNgh {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sMhYyACNgh .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sMhYyACNgh .modal-body .close {
  background: #1b1b1b;
}
.cid-sMhYyACNgh .modal-body .close span {
  font-style: normal;
}
.cid-sMhYyACNgh .carousel-inner > .active,
.cid-sMhYyACNgh .carousel-inner > .next,
.cid-sMhYyACNgh .carousel-inner > .prev {
  display: flex;
}
.cid-sMhYyACNgh .carousel-control .icon-next,
.cid-sMhYyACNgh .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sMhYyACNgh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sMhYyACNgh .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sMhYyACNgh .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-sMhYyACNgh .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sMhYyACNgh .boxed-slider > div {
  position: relative;
}
.cid-sMhYyACNgh .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-sMhYyACNgh .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sMhYyACNgh .mbr-table-cell {
  padding: 0;
}
.cid-sMhYyACNgh .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sMhYyACNgh .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sMhYyACNgh .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-sMhYyACNgh .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sMhYyACNgh .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sMhYyACNgh .carousel-item.active.right,
.cid-sMhYyACNgh .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sMhYyACNgh .carousel-item.active.left,
.cid-sMhYyACNgh .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sMhYyACNgh .carousel-item.active,
.cid-sMhYyACNgh .carousel-item.next.left,
.cid-sMhYyACNgh .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sMhYyACNgh .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sMhYyACNgh .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sMhYyACNgh .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sMhYyACNgh .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-sMhYyACNgh .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sMhYyACNgh .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sMhYyACNgh .mbr-slider .carousel-indicators li {
  max-width: 19px;
  width: 19px;
  height: 19px;
  max-height: 19px;
  margin: 3px;
  background-color: white;
  border: none;
  border-radius: 0;
  opacity: .5;
  transition: all .3s;
}
.cid-sMhYyACNgh .mbr-slider .carousel-indicators li.active,
.cid-sMhYyACNgh .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sMhYyACNgh .mbr-slider .carousel-indicators li::after,
.cid-sMhYyACNgh .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sMhYyACNgh .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sMhYyACNgh .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sMhYyACNgh .mbr-slider > .container img {
  width: 100%;
}
.cid-sMhYyACNgh .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-sMhYyACNgh .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .cid-sMhYyACNgh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sMhYyACNgh .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sMhYyACNgh .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sMhYyACNgh .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sMhYyACNgh .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sMhYyACNgh .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sMhYyACNgh .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sMhYyACNgh .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sMhYyACNgh .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sMhYyACNgh .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sMhYyACNgh .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sMhYyACNgh .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sMhYyACNgh .carousel-inner {
  height: 100%;
}
.cid-sMhYyACNgh .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sMhYyACNgh .image_wrapper {
  height: 700px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-sMhYyACNgh .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-sMhYyACNgh .carousel-item .container-slide {
  text-align: center;
}
.cid-sMhYyACNgh .content-slider-wrap {
  width: 100%;
}
.cid-sMhYyACNgh .carousel-control-prev {
  bottom: 2px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-sMhYyACNgh .carousel-control-next {
  bottom: 54px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-sMhYyACNgh .carousel-control {
  margin-left: 2px!important;
}
.cid-sMhYyACNgh P {
  text-align: left;
}
.cid-sMhYyACNgh H2 {
  text-align: left;
}
.cid-sMi5PYOxPE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #003254;
}
.cid-sMi5PYOxPE .container-fluid {
  overflow: hidden;
}
.cid-sMi5PYOxPE .carousel-controls {
  display: none;
}
.cid-sMi5PYOxPE .carousel-controls a {
  transition: opacity 0.5s;
}
.cid-sMi5PYOxPE .carousel-controls a:hover span,
.cid-sMi5PYOxPE .carousel-controls a:focus span {
  opacity: 1;
}
.cid-sMi5PYOxPE .carousel-controls a:hover svg,
.cid-sMi5PYOxPE .carousel-controls a:focus svg {
  transition: all 0.25s;
  stroke-width: 3;
}
.cid-sMi5PYOxPE .carousel-controls a:active svg {
  transition: all 0.1s;
  stroke-width: 5;
}
.cid-sMi5PYOxPE .carousel-indicators li {
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: 3px;
  background: #cccccc;
  border: 0;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-sMi5PYOxPE .carousel-indicators {
  bottom: 0px;
}
.cid-sMi5PYOxPE .carousel-indicators .active {
  border: 0px solid #1b1b1b;
  background: #ffbf6e;
}
.cid-sMi5PYOxPE ol {
  margin-bottom: 0rem;
}
.cid-sMi5PYOxPE .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 30px;
  padding-top: 1rem;
}
.cid-sMi5PYOxPE .carousel-control-prev {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-sMi5PYOxPE .carousel-control-next {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-sMi5PYOxPE .carousel-item.active,
.cid-sMi5PYOxPE .carousel-item-next,
.cid-sMi5PYOxPE .carousel-item-prev {
  display: flex;
}
.cid-sMi5PYOxPE .user_image {
  overflow: hidden;
  display: flex;
  padding: 1.5rem;
}
.cid-sMi5PYOxPE .user_image .user_image_inner {
  max-width: 250px;
  max-height: 250px;
  border-radius: 10%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-sMi5PYOxPE .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  margin: 0;
}
.cid-sMi5PYOxPE .user_text {
  color: #767676;
  position: relative;
}
.cid-sMi5PYOxPE .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-sMi5PYOxPE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #5263b8, #ffca40);
  display: inline-block;
}
.cid-sMi5PYOxPE .testimonials-quote svg {
  height: 50px;
  width: 50px;
  opacity: 0.2;
  margin-bottom: -50px;
  margin-left: -25px;
  fill: currentColor;
}
.cid-sMi5PYOxPE .user_name {
  color: #ffffff;
  text-align: right;
}
.cid-sMi5PYOxPE .carousel-controls svg {
  height: 60px;
}
@media (max-width: 576px) {
  .cid-sMi5PYOxPE .carousel-controls {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sMi5PYOxPE .testimonials-quote,
  .cid-sMi5PYOxPE .user_text,
  .cid-sMi5PYOxPE .user_name,
  .cid-sMi5PYOxPE .user_desk {
    text-align: center !important;
  }
  .cid-sMi5PYOxPE .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
  .cid-sMi5PYOxPE .testimonials-quote svg {
    margin-left: 0px;
  }
}
@media (min-width: 768px) {
  .cid-sMi5PYOxPE .mbr-section-title,
  .cid-sMi5PYOxPE .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-sMi5PYOxPE .carousel-control-prev span {
    right: -1rem;
  }
  .cid-sMi5PYOxPE .carousel-control-next span {
    left: -1rem;
  }
  .cid-sMi5PYOxPE .user-text {
    padding-right: 2rem;
  }
  .cid-sMi5PYOxPE .carousel-control-prev,
  .cid-sMi5PYOxPE .carousel-control-next {
    -webkit-align-items: center;
    align-items: center;
  }
}
.cid-sMi5PYOxPE .user_desk {
  text-align: right;
  color: #ffffff;
  font-style: italic;
  font-weight: 300;
}
.cid-sMi5PYOxPE .user_text,
.cid-sMi5PYOxPE .testimonials-quote {
  color: #ffffff;
}
.cid-sMi5PYOxPE .user_text,
.cid-sMi5PYOxPE .testimonials-quote {
  text-align: left;
}
.cid-sMtnl9U7Y5 {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sMtnl9U7Y5 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sMtnl9U7Y5 .mbr-text {
  color: #8d97ad;
}
.cid-sMtnl9U7Y5 .nav {
  border: none;
}
.cid-sMtnl9U7Y5 .nav-tabs {
  width: 100%;
}
.cid-sMtnl9U7Y5 .nav-tabs .nav-item {
  margin-bottom: 1rem;
  width: 100%;
}
.cid-sMtnl9U7Y5 .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(167, 146, 118, 0.3);
  box-shadow: 0px 0px 30px rgba(167, 146, 118, 0.3);
}
.cid-sMtnl9U7Y5 .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sMtnl9U7Y5 .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #ffca40;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #ffc120;
  margin: 0px;
  border-radius: 0px !important;
  transition: all .3s;
}
.cid-sMtnl9U7Y5 .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sMtnl9U7Y5 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
}
.cid-sMtnl9U7Y5 .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sMtnl9U7Y5 .nav-item {
    display: table-row !important;
  }
}
.cid-sMtnl9U7Y5 .mbr-text,
.cid-sMtnl9U7Y5 .mbr-section-btn {
  color: #343434;
  text-align: left;
}
.cid-sMtnl9U7Y5 .title-content {
  color: #343434;
}
.cid-sMtnl9U7Y5 .mbr-section-title {
  color: #343434;
}
.cid-sMi3yKZNEN {
    padding-top: 45px;
    padding-bottom: 45px;
    background-image: url(../../../assets22/images/bg-2000x1187.jpg);
}
.cid-sMi3yKZNEN .container {
  max-width: 1500px;
}
.cid-sMi3yKZNEN img {
  width: 100%;
}
.cid-sMi3yKZNEN h2 {
  padding: 0;
  margin: 0;
}
.cid-sMi3yKZNEN .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-sMi3yKZNEN .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-sMi3yKZNEN .img-col {
  position: relative;
}
.cid-sMi3yKZNEN .img2 {
  position: absolute;
  right: 6rem;
  top: -6rem;
  width: 320px;
}
@media (max-width: 1200px) {
  .cid-sMi3yKZNEN .img2 {
    right: 3rem;
  }
}
@media (max-width: 992px) {
  .cid-sMi3yKZNEN .title-col {
    margin-bottom: 4rem!important;
  }
  .cid-sMi3yKZNEN .img2 {
    top: -2rem;
  }
  .cid-sMi3yKZNEN .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-sMi3yKZNEN .img2 {
    width: 50%;
  }
  .cid-sMi3yKZNEN .number {
    margin: auto;
  }
}
.cid-sMi3yKZNEN .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sMi3yKZNEN H2 {
  color: #343434;
}
.cid-sMi3yKZNEN H3 {
  color: #343434;
}
.cid-sYVD6594rr {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sYVD6594rr H1 {
  color: #232323;
}
.cid-sYVD6594rr .mbr-text,
.cid-sYVD6594rr .mbr-section-btn {
  color: #343434;
}
.cid-sYVD6594rr .img1 {
    /* [disabled]box-shadow: 0 10px 55px 5px rgba(255, 216, 115, 0.35); */
    border-radius: 0px;
    /* [disabled]-webkit-box-shadow: 0 10px 55px 5px rgba(255, 216, 115, 0.35); */
}
.cid-sYVD6594rr .relative {
  position: relative;
}
.cid-sYVD6594rr .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-sYVD6594rr .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-sYVD6594rr .card-img2 .img2 {
  width: 120%;
}
.cid-sYVD6594rr .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-sYVD6594rr .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-sYVD6594rr .img2 {
    box-shadow: 0 10px 55px 5px rgba(0,50,84,0.29);
    margin-top: 4rem;
    object-fit: cover;
    position: relative;
    border-radius: 0px;
    animation: line 3s ease-in-out infinite;
    -webkit-box-shadow: 0 10px 55px 5px rgba(0,50,84,0.29);
}
.cid-sURYMRQBZn {
  padding-top: 60px;
  padding-bottom: 105px;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-sURYMRQBZn .carousel {
  z-index: 2;
  position: relative;
}
.cid-sURYMRQBZn .user {
  padding: 0!important;
}
.cid-sURYMRQBZn .big-icon {
  top: 1rem;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #e6eefa;
  opacity: 0.5;
}
.cid-sURYMRQBZn .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-sURYMRQBZn .carousel-item.active,
.cid-sURYMRQBZn .carousel-item-next,
.cid-sURYMRQBZn .carousel-item-prev {
  display: flex;
}
.cid-sURYMRQBZn .user_name {
  margin: 0;
}
.cid-sURYMRQBZn .carousel-controls a {
  font-size: 2rem;
}
.cid-sURYMRQBZn .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #003254;
  background: transparent;
  opacity: 0.5;
}
.cid-sURYMRQBZn .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sURYMRQBZn ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-sURYMRQBZn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #003254;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-sURYMRQBZn .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sURYMRQBZn .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-sURYMRQBZn .user_text {
  color: #232323;
  text-align: right;
}
.cid-sURYMRQBZn .user_desk {
  color: #767676;
}
.cid-sURYMRQBZn .user_desk,
.cid-sURYMRQBZn .carousel-item {
  text-align: left;
}
.cid-sURYMRQBZn .carousel-indicators {
  margin: 0;
  margin-left: 0.5rem;
  justify-content: flex-start !important;
}
@media (max-width: 767px) {
  .cid-sURYMRQBZn .carousel-indicators {
    margin: auto;
    justify-content: center!important;
  }
}
.cid-sURYMRQBZn .carousel-control-next {
  right: -30px;
  transform: translateX(50%);
}
.cid-sURYMRQBZn .carousel-control-prev {
  left: -30px;
  transform: translateX(-50%);
}
.cid-sURYMRQBZn .title,
.cid-sURYMRQBZn .line-align {
  color: #003254;
}
.cid-sZ0l8Qywj2 {
    padding-top: 0px;
    padding-bottom: 0px;
    background-image: url(../../images/white-kitchen-countertops.jpg);
    background-position: left center;
}
.cid-sZ0l8Qywj2 .card-box {
  padding: 0rem;
}
.cid-sZ0l8Qywj2 .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-sZ0l8Qywj2 .big {
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sZ0l8Qywj2 .big h4 {
  margin: 0;
}
.cid-sZ0l8Qywj2 .card {
  padding: 0;
  min-height: 300px;
}
.cid-sZ0l8Qywj2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sZ0l8Qywj2 .card-img {
  min-height: 400px;
  height: 100%;
}
.cid-sZ0l8Qywj2 .card-wrapper {
  padding: 4rem 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-sZ0l8Qywj2 .card-wrapper {
    padding: 4rem;
  }
}
.cid-sZ0l8Qywj2 .cardbg1 {
  background: #003254;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-sZ0l8Qywj2 .cardbg2 {
  background: #ffffff;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-sZ0l8Qywj2 .main-title {
  color: #ffffff;
}
.cid-sZ0l8Qywj2 .card-text {
  color: #343434;
}
.cid-sZ0l8Qywj2 .card-title,
.cid-sZ0l8Qywj2 .mbr-section-btn {
  color: #ffffff;
}
.cid-sYVAJNfSui {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #003254;
}
.cid-sYVAJNfSui .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sYVAJNfSui .container {
  max-width: 1500px;
}
.cid-sYVAJNfSui .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sYVAJNfSui .container {
    padding: 0 4rem;
  }
}
.cid-sYVAJNfSui .mbr-text,
.cid-sYVAJNfSui .mbr-section-btn {
  color: #efeeee;
}
.cid-sYVAJNfSui .btn {
  width: -webkit-fill-available;
  margin: 0.4rem!important;
  justify-content: space-between;
}
.cid-sYVAJNfSui .btn .mbr-iconfont {
  order: 2;
}
.cid-sYVAJNfSui .pt-5 {
  padding-top: 4rem!important;
}
@media (max-width: 922px) {
  .cid-sYVAJNfSui .align-left {
    text-align: center;
  }
  .cid-sYVAJNfSui .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sYVviqHcoW {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sYVviqHcoW .wrap {
  overflow: hidden;
  background-color: #ffca40;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-sYVviqHcoW .wrap {
    height: auto;
  }
}
.cid-sYVviqHcoW .wrap:hover .mbr-section-title a {
    color: #003254 !important;
}
.cid-sYVviqHcoW .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-sYVviqHcoW .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-sYVviqHcoW .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-sYVviqHcoW .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-sYVviqHcoW .text-wrapper {
    padding: 20px 0;
  }
}
.cid-sYVviqHcoW .row {
  flex-direction: row-reverse;
}
.cid-sYVviqHcoW .text-wrapper {
  padding: 70px 40px;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-sYVviqHcoW .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-sYVviqHcoW .text-wrapper {
    padding: 20px;
  }
}
.cid-sYVviqHcoW .mbr-section-subtitle,
.cid-sYVviqHcoW .mbr-section-title {
  margin-bottom: 12px;
}
.cid-sYVviqHcoW .image {
  width: 100%;
}
.cid-sYVviqHcoW .image img {
  width: 101%;
  border-radius: 4px;
  object-fit: cover;
}
.cid-sYVviqHcoW .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sYVviqHcoW .mbr-text,
.cid-sYVviqHcoW .mbr-section-btn {
  color: #343434;
}
.cid-sMthEblfyU {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url(../../../assets22/images/bg-2000x1187.jpg);
}
.cid-sMthEblfyU .team-card .image-wrap {
  overflow: hidden;
}
.cid-sMthEblfyU .team-card .image-wrap img {
  transition: all .5s;
}
.cid-sMthEblfyU .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sMthEblfyU .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sMthEblfyU .team-card {
  margin-bottom: 2rem;
}
.cid-sMthEblfyU .card-wrap {
  background: #ffffff;
}
.cid-sMthEblfyU .card-wrap .image-wrap img {
  width: 100%;
}
.cid-sMthEblfyU .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-sMthEblfyU .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-sMthEblfyU .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sMthEblfyU .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sMthEblfyU .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-sMthEblfyU .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-sMthEblfyU .main-title {
  color: #343434;
}
.cid-sMthEblfyU .mbr-role {
  color: #767676;
}
.cid-sMthEblfyU .card-text,
.cid-sMthEblfyU .mbr-section-btn {
  color: #343434;
}
.cid-sMthEblfyU .mbr-text {
  color: #000000;
}
.cid-sYVJCnpaGJ .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-sYVJCnpaGJ .mbr-arrow i {
  color: #ffffff !important;
}
.cid-sYVJCnpaGJ .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sYVJCnpaGJ .animated-element,
.cid-sYVJCnpaGJ .typed-cursor {
  color: #ffffff;
}
.cid-sYVJCnpaGJ .animated-element {
  border-bottom: 5px solid #ffca40;
}
@media (max-width: 767px) {
  .cid-sYVJCnpaGJ .typed-text {
    text-align: center;
  }
}
.cid-sYVJCnWK5m {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sYVJCnWK5m .mbr-section-title {
  letter-spacing: 0.1em;
  color: #343434;
  margin-bottom: 2rem;
}
.cid-sYVJCnWK5m .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sYVJCnWK5m .btn {
  margin: 0px !important;
}
.cid-sYVJCnWK5m .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYVJCnWK5m .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYVJCnWK5m .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sYVJCnWK5m .carousel-item .wrap-img {
  text-align: center;
}
.cid-sYVJCnWK5m .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-sYVJCnWK5m .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sYVJCnWK5m .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-sYVJCnWK5m .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ffca40;
  display: inline-block;
  border: 4px solid #ffca40;
}
.cid-sYVJCnWK5m .carousel-indicators li.active {
  border-color: #ffa010;
}
@media (max-width: 768px) {
  .cid-sYVJCnWK5m .second-col {
    padding-top: 2rem;
  }
}
.cid-sYVJCnWK5m .mbr-section-subtitle,
.cid-sYVJCnWK5m .mbr-section-btn {
  text-align: left;
  color: #343434;
}
.cid-sYVJCorM5R {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/bg-2000x1187.jpg");
}
.cid-sYVJCorM5R .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-sYVJCorM5R .card-wrap {
  background-color: #003254;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-sYVJCorM5R .card-wrap:hover h4,
.cid-sYVJCorM5R .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-sYVJCorM5R h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-sYVJCorM5R h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-sYVJCorM5R img {
  width: 100%;
}
.cid-sYVJCorM5R h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sYVJCorM5R h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sYVJCorM5R .card-title1,
.cid-sYVJCorM5R .title-wrap1 {
  color: #ffffff;
}
.cid-sYVJCorM5R .card-title,
.cid-sYVJCorM5R .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sYVJCorM5R .mdpb {
    padding-bottom: 2rem;
  }
  .cid-sYVJCorM5R .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-sYVJCorM5R H3 {
  color: #ffffff;
}
.cid-sYVJCoJJBo {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYVJCoJJBo .container-fluid {
  position: relative;
}
.cid-sYVJCoJJBo .page-title-content {
  width: 100%;
}
.cid-sYVJCoJJBo .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-sYVJCoJJBo .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-sYVJCoJJBo .page-title-content {
    text-align: center;
  }
}
.cid-sYVJCoJJBo .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-sYVJCoJJBo a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-sYVJCoJJBo a:not(:first-child) {
  margin-left: 20px;
}
.cid-sYVJCoJJBo a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-sYVJCoJJBo a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-sYVJCoJJBo a:hover:after,
.cid-sYVJCoJJBo a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-sYVJCoJJBo a:hover:before,
.cid-sYVJCoJJBo a:focus:before {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-sYVJCoJJBo a.text-white:hover,
.cid-sYVJCoJJBo a.text-white:focus {
  color: #ffffff !important;
}
.cid-sYVJCoJJBo .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sYVJCoJJBo .page-title-content .title,
.cid-sYVJCoJJBo .icon-section,
.cid-sYVJCoJJBo .mbr-section-btn {
  color: #343434;
}
.cid-sYVJCp10vo {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sYVJCp10vo .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sYVJCp10vo .modal-body .close {
  background: #1b1b1b;
}
.cid-sYVJCp10vo .modal-body .close span {
  font-style: normal;
}
.cid-sYVJCp10vo .carousel-inner > .active,
.cid-sYVJCp10vo .carousel-inner > .next,
.cid-sYVJCp10vo .carousel-inner > .prev {
  display: flex;
}
.cid-sYVJCp10vo .carousel-control .icon-next,
.cid-sYVJCp10vo .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sYVJCp10vo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYVJCp10vo .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sYVJCp10vo .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-sYVJCp10vo .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sYVJCp10vo .boxed-slider > div {
  position: relative;
}
.cid-sYVJCp10vo .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-sYVJCp10vo .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sYVJCp10vo .mbr-table-cell {
  padding: 0;
}
.cid-sYVJCp10vo .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sYVJCp10vo .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sYVJCp10vo .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-sYVJCp10vo .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sYVJCp10vo .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sYVJCp10vo .carousel-item.active.right,
.cid-sYVJCp10vo .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sYVJCp10vo .carousel-item.active.left,
.cid-sYVJCp10vo .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sYVJCp10vo .carousel-item.active,
.cid-sYVJCp10vo .carousel-item.next.left,
.cid-sYVJCp10vo .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sYVJCp10vo .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sYVJCp10vo .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYVJCp10vo .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sYVJCp10vo .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-sYVJCp10vo .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYVJCp10vo .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sYVJCp10vo .mbr-slider .carousel-indicators li {
  max-width: 19px;
  width: 19px;
  height: 19px;
  max-height: 19px;
  margin: 3px;
  background-color: white;
  border: none;
  border-radius: 0;
  opacity: .5;
  transition: all .3s;
}
.cid-sYVJCp10vo .mbr-slider .carousel-indicators li.active,
.cid-sYVJCp10vo .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sYVJCp10vo .mbr-slider .carousel-indicators li::after,
.cid-sYVJCp10vo .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sYVJCp10vo .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sYVJCp10vo .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sYVJCp10vo .mbr-slider > .container img {
  width: 100%;
}
.cid-sYVJCp10vo .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-sYVJCp10vo .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .cid-sYVJCp10vo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sYVJCp10vo .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sYVJCp10vo .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sYVJCp10vo .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sYVJCp10vo .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sYVJCp10vo .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sYVJCp10vo .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sYVJCp10vo .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sYVJCp10vo .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sYVJCp10vo .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sYVJCp10vo .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sYVJCp10vo .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sYVJCp10vo .carousel-inner {
  height: 100%;
}
.cid-sYVJCp10vo .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sYVJCp10vo .image_wrapper {
  height: 700px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-sYVJCp10vo .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-sYVJCp10vo .carousel-item .container-slide {
  text-align: center;
}
.cid-sYVJCp10vo .content-slider-wrap {
  width: 100%;
}
.cid-sYVJCp10vo .carousel-control-prev {
  bottom: 2px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-sYVJCp10vo .carousel-control-next {
  bottom: 54px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-sYVJCp10vo .carousel-control {
  margin-left: 2px!important;
}
.cid-sYVJCp10vo P {
  text-align: left;
}
.cid-sYVJCp10vo H2 {
  text-align: left;
}
.cid-sYVJCpqzH7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #003254;
}
.cid-sYVJCpqzH7 .container-fluid {
  overflow: hidden;
}
.cid-sYVJCpqzH7 .carousel-controls {
  display: none;
}
.cid-sYVJCpqzH7 .carousel-controls a {
  transition: opacity 0.5s;
}
.cid-sYVJCpqzH7 .carousel-controls a:hover span,
.cid-sYVJCpqzH7 .carousel-controls a:focus span {
  opacity: 1;
}
.cid-sYVJCpqzH7 .carousel-controls a:hover svg,
.cid-sYVJCpqzH7 .carousel-controls a:focus svg {
  transition: all 0.25s;
  stroke-width: 3;
}
.cid-sYVJCpqzH7 .carousel-controls a:active svg {
  transition: all 0.1s;
  stroke-width: 5;
}
.cid-sYVJCpqzH7 .carousel-indicators li {
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: 3px;
  background: #cccccc;
  border: 0;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-sYVJCpqzH7 .carousel-indicators {
  bottom: 0px;
}
.cid-sYVJCpqzH7 .carousel-indicators .active {
  border: 0px solid #1b1b1b;
  background: #ffbf6e;
}
.cid-sYVJCpqzH7 ol {
  margin-bottom: 0rem;
}
.cid-sYVJCpqzH7 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 30px;
  padding-top: 1rem;
}
.cid-sYVJCpqzH7 .carousel-control-prev {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-sYVJCpqzH7 .carousel-control-next {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-sYVJCpqzH7 .carousel-item.active,
.cid-sYVJCpqzH7 .carousel-item-next,
.cid-sYVJCpqzH7 .carousel-item-prev {
  display: flex;
}
.cid-sYVJCpqzH7 .user_image {
  overflow: hidden;
  display: flex;
  padding: 1.5rem;
}
.cid-sYVJCpqzH7 .user_image .user_image_inner {
  max-width: 250px;
  max-height: 250px;
  border-radius: 10%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-sYVJCpqzH7 .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  margin: 0;
}
.cid-sYVJCpqzH7 .user_text {
  color: #767676;
  position: relative;
}
.cid-sYVJCpqzH7 .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-sYVJCpqzH7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #5263b8, #ffca40);
  display: inline-block;
}
.cid-sYVJCpqzH7 .testimonials-quote svg {
  height: 50px;
  width: 50px;
  opacity: 0.2;
  margin-bottom: -50px;
  margin-left: -25px;
  fill: currentColor;
}
.cid-sYVJCpqzH7 .user_name {
  color: #ffffff;
  text-align: right;
}
.cid-sYVJCpqzH7 .carousel-controls svg {
  height: 60px;
}
@media (max-width: 576px) {
  .cid-sYVJCpqzH7 .carousel-controls {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sYVJCpqzH7 .testimonials-quote,
  .cid-sYVJCpqzH7 .user_text,
  .cid-sYVJCpqzH7 .user_name,
  .cid-sYVJCpqzH7 .user_desk {
    text-align: center !important;
  }
  .cid-sYVJCpqzH7 .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
  .cid-sYVJCpqzH7 .testimonials-quote svg {
    margin-left: 0px;
  }
}
@media (min-width: 768px) {
  .cid-sYVJCpqzH7 .mbr-section-title,
  .cid-sYVJCpqzH7 .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-sYVJCpqzH7 .carousel-control-prev span {
    right: -1rem;
  }
  .cid-sYVJCpqzH7 .carousel-control-next span {
    left: -1rem;
  }
  .cid-sYVJCpqzH7 .user-text {
    padding-right: 2rem;
  }
  .cid-sYVJCpqzH7 .carousel-control-prev,
  .cid-sYVJCpqzH7 .carousel-control-next {
    -webkit-align-items: center;
    align-items: center;
  }
}
.cid-sYVJCpqzH7 .user_desk {
  text-align: right;
  color: #ffffff;
  font-style: italic;
  font-weight: 300;
}
.cid-sYVJCpqzH7 .user_text,
.cid-sYVJCpqzH7 .testimonials-quote {
  color: #ffffff;
}
.cid-sYVJCpqzH7 .user_text,
.cid-sYVJCpqzH7 .testimonials-quote {
  text-align: right;
}
.cid-sYVJCqaNHh {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sYVJCqaNHh .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sYVJCqaNHh .mbr-text {
  color: #8d97ad;
}
.cid-sYVJCqaNHh .nav {
  border: none;
}
.cid-sYVJCqaNHh .nav-tabs {
  width: 100%;
}
.cid-sYVJCqaNHh .nav-tabs .nav-item {
  margin-bottom: 1rem;
  width: 100%;
}
.cid-sYVJCqaNHh .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(167, 146, 118, 0.3);
  box-shadow: 0px 0px 30px rgba(167, 146, 118, 0.3);
}
.cid-sYVJCqaNHh .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sYVJCqaNHh .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #ffca40;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #ffc120;
  margin: 0px;
  border-radius: 0px !important;
  transition: all .3s;
}
.cid-sYVJCqaNHh .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sYVJCqaNHh .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
}
.cid-sYVJCqaNHh .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sYVJCqaNHh .nav-item {
    display: table-row !important;
  }
}
.cid-sYVJCqaNHh .mbr-text,
.cid-sYVJCqaNHh .mbr-section-btn {
  color: #343434;
  text-align: left;
}
.cid-sYVJCqaNHh .title-content {
  color: #343434;
}
.cid-sYVJCqaNHh .mbr-section-title {
  color: #343434;
}
.cid-sYVJCr9ysX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bg-2000x1187.jpg");
}
.cid-sYVJCr9ysX .container {
  max-width: 1500px;
}
.cid-sYVJCr9ysX img {
  width: 100%;
}
.cid-sYVJCr9ysX h2 {
  padding: 0;
  margin: 0;
}
.cid-sYVJCr9ysX .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-sYVJCr9ysX .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-sYVJCr9ysX .img-col {
  position: relative;
}
.cid-sYVJCr9ysX .img2 {
  position: absolute;
  right: 6rem;
  top: -6rem;
  width: 320px;
}
@media (max-width: 1200px) {
  .cid-sYVJCr9ysX .img2 {
    right: 3rem;
  }
}
@media (max-width: 992px) {
  .cid-sYVJCr9ysX .title-col {
    margin-bottom: 4rem!important;
  }
  .cid-sYVJCr9ysX .img2 {
    top: -2rem;
  }
  .cid-sYVJCr9ysX .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-sYVJCr9ysX .img2 {
    width: 50%;
  }
  .cid-sYVJCr9ysX .number {
    margin: auto;
  }
}
.cid-sYVJCr9ysX .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sYVJCr9ysX H2 {
  color: #343434;
}
.cid-sYVJCr9ysX H3 {
  color: #343434;
}
.cid-sYVJCrElO8 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sYVJCrElO8 H1 {
  color: #232323;
}
.cid-sYVJCrElO8 .mbr-text,
.cid-sYVJCrElO8 .mbr-section-btn {
  color: #343434;
  text-align: left;
}
.cid-sYVJCrElO8 .img1 {
  box-shadow: 0 10px 55px 5px rgba(255, 216, 115, 0.35);
  border-radius: 10px;
}
.cid-sYVJCrElO8 .relative {
  position: relative;
}
.cid-sYVJCrElO8 .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-sYVJCrElO8 .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-sYVJCrElO8 .card-img2 .img2 {
  width: 120%;
}
.cid-sYVJCrElO8 .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-sYVJCrElO8 .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-sYVJCrElO8 .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 216, 115, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-sYVJCscFGC {
  padding-top: 60px;
  padding-bottom: 105px;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-sYVJCscFGC .carousel {
  z-index: 2;
  position: relative;
}
.cid-sYVJCscFGC .user {
  padding: 0!important;
}
.cid-sYVJCscFGC .big-icon {
  top: 1rem;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #e6eefa;
  opacity: 0.5;
}
.cid-sYVJCscFGC .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-sYVJCscFGC .carousel-item.active,
.cid-sYVJCscFGC .carousel-item-next,
.cid-sYVJCscFGC .carousel-item-prev {
  display: flex;
}
.cid-sYVJCscFGC .user_name {
  margin: 0;
}
.cid-sYVJCscFGC .carousel-controls a {
  font-size: 2rem;
}
.cid-sYVJCscFGC .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #003254;
  background: transparent;
  opacity: 0.5;
}
.cid-sYVJCscFGC .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sYVJCscFGC ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-sYVJCscFGC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #003254;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-sYVJCscFGC .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sYVJCscFGC .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-sYVJCscFGC .user_text {
  color: #232323;
  text-align: right;
}
.cid-sYVJCscFGC .user_desk {
  color: #767676;
}
.cid-sYVJCscFGC .user_desk,
.cid-sYVJCscFGC .carousel-item {
  text-align: left;
}
.cid-sYVJCscFGC .carousel-indicators {
  margin: 0;
  margin-left: 0.5rem;
  justify-content: flex-start !important;
}
@media (max-width: 767px) {
  .cid-sYVJCscFGC .carousel-indicators {
    margin: auto;
    justify-content: center!important;
  }
}
.cid-sYVJCscFGC .carousel-control-next {
  right: -30px;
  transform: translateX(50%);
}
.cid-sYVJCscFGC .carousel-control-prev {
  left: -30px;
  transform: translateX(-50%);
}
.cid-sYVJCscFGC .title,
.cid-sYVJCscFGC .line-align {
  color: #003254;
}
.cid-sYVMRdTQMe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYVMRdTQMe .card-box {
  padding: 0rem;
}
.cid-sYVMRdTQMe .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-sYVMRdTQMe .card {
  padding: 0;
  height: 100%;
}
.cid-sYVMRdTQMe .card-img {
  height: 400px;
}
.cid-sYVMRdTQMe .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sYVMRdTQMe .card-wrapper {
  padding: 2rem;
  width: 100%;
  margin: auto;
}
.cid-sYVMRdTQMe .cardbg {
  background: #ffffff;
  height: auto;
}
.cid-sYVMRdTQMe .text-card {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-sYVMRdTQMe .card-wrapper {
    padding: 4rem;
  }
}
.cid-sYVMRdTQMe .card-text {
  text-align: left;
}
.cid-sYVJCtzKLq {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sYVJCtzKLq .wrap {
  overflow: hidden;
  background-color: #ffca40;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-sYVJCtzKLq .wrap {
    height: auto;
  }
}
.cid-sYVJCtzKLq .wrap:hover .mbr-section-title a {
  color: #ffca40 !important;
}
.cid-sYVJCtzKLq .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-sYVJCtzKLq .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-sYVJCtzKLq .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-sYVJCtzKLq .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-sYVJCtzKLq .text-wrapper {
    padding: 20px 0;
  }
}
.cid-sYVJCtzKLq .row {
  flex-direction: row-reverse;
}
.cid-sYVJCtzKLq .text-wrapper {
  padding: 70px 40px;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-sYVJCtzKLq .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-sYVJCtzKLq .text-wrapper {
    padding: 20px;
  }
}
.cid-sYVJCtzKLq .mbr-section-subtitle,
.cid-sYVJCtzKLq .mbr-section-title {
  margin-bottom: 12px;
}
.cid-sYVJCtzKLq .image {
  width: 100%;
}
.cid-sYVJCtzKLq .image img {
  width: 101%;
  border-radius: 4px;
  object-fit: cover;
}
.cid-sYVJCtzKLq .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sYVJCtzKLq .mbr-text,
.cid-sYVJCtzKLq .mbr-section-btn {
  color: #343434;
}
.cid-sYVJCuf16l {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bg-2000x1187.jpg");
}
.cid-sYVJCuf16l .team-card .image-wrap {
  overflow: hidden;
}
.cid-sYVJCuf16l .team-card .image-wrap img {
  transition: all .5s;
}
.cid-sYVJCuf16l .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sYVJCuf16l .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sYVJCuf16l .team-card {
  margin-bottom: 2rem;
}
.cid-sYVJCuf16l .card-wrap {
  background: #ffffff;
}
.cid-sYVJCuf16l .card-wrap .image-wrap img {
  width: 100%;
}
.cid-sYVJCuf16l .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-sYVJCuf16l .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-sYVJCuf16l .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sYVJCuf16l .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sYVJCuf16l .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-sYVJCuf16l .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-sYVJCuf16l .main-title {
  color: #343434;
}
.cid-sYVJCuf16l .mbr-role {
  color: #767676;
}
.cid-sYVJCuf16l .card-text,
.cid-sYVJCuf16l .mbr-section-btn {
  color: #343434;
}
.cid-sYVJCuf16l .mbr-text {
  color: #000000;
}
.cid-sYVRxJRcwC .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sYVRxJRcwC .navbar-fixed-top {
  padding-top: 0;
}
.cid-sYVRxJRcwC .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sYVRxJRcwC .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sYVRxJRcwC .dropdown-item {
  padding: 0;
}
.cid-sYVRxJRcwC .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-sYVRxJRcwC .menu-content-top {
  max-width: 1200px;
  display: none;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sYVRxJRcwC .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYVRxJRcwC .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sYVRxJRcwC a {
  font-style: normal;
}
.cid-sYVRxJRcwC .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sYVRxJRcwC .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sYVRxJRcwC .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-sYVRxJRcwC .content-text {
  margin-bottom: 0;
}
.cid-sYVRxJRcwC .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sYVRxJRcwC .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #5263b8;
    -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-sYVRxJRcwC .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sYVRxJRcwC .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sYVRxJRcwC .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sYVRxJRcwC .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sYVRxJRcwC .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sYVRxJRcwC .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sYVRxJRcwC .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYVRxJRcwC .nav-dropdown .link {
  font-weight: 400;
}
.cid-sYVRxJRcwC .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sYVRxJRcwC .content-right-side {
  text-align: center;
}
.cid-sYVRxJRcwC .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sYVRxJRcwC .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sYVRxJRcwC .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sYVRxJRcwC .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-sYVRxJRcwC .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYVRxJRcwC .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sYVRxJRcwC .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sYVRxJRcwC .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sYVRxJRcwC .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sYVRxJRcwC .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sYVRxJRcwC .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sYVRxJRcwC .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sYVRxJRcwC .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sYVRxJRcwC .navbar {
    display: block;
    padding: 0;
  }
  .cid-sYVRxJRcwC .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sYVRxJRcwC .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4rem - 4.5rem);
  }
  .cid-sYVRxJRcwC .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: 49px;
  }
  .cid-sYVRxJRcwC .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sYVRxJRcwC .navbar-toggler {
    display: none;
  }
  .cid-sYVRxJRcwC .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYVRxJRcwC .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sYVRxJRcwC .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYVRxJRcwC .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sYVRxJRcwC .menu-logo {
  margin-right: auto;
}
.cid-sYVRxJRcwC .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYVRxJRcwC .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sYVRxJRcwC .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sYVRxJRcwC .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sYVRxJRcwC .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sYVRxJRcwC .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sYVRxJRcwC .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sYVRxJRcwC .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sYVRxJRcwC .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYVRxJRcwC .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sYVRxJRcwC .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sYVRxJRcwC .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sYVRxJRcwC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sYVRxJRcwC .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-sYVRxJRcwC .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sYVRxJRcwC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sYVRxJRcwC .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-sYVRxJRcwC .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sYVRxJRcwC .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYVRxJRcwC .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-sYVRxJRcwC .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sYVRxJRcwC .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sYVRxJRcwC .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sYVRxJRcwC .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sYVRxJRcwC .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sYVRxJRcwC button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYVRxJRcwC button.navbar-toggler:focus {
  outline: none;
}
.cid-sYVRxJRcwC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYVRxJRcwC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYVRxJRcwC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYVRxJRcwC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYVRxJRcwC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYVRxJRcwC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYVRxJRcwC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYVRxJRcwC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYVRxJRcwC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYVRxJRcwC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYVRxJRcwC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYVRxJRcwC .collapsed .btn {
  display: flex;
}
.cid-sYVRxJRcwC .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sYVRxJRcwC .collapsed .navbar-collapse.collapsing,
.cid-sYVRxJRcwC .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sYVRxJRcwC .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sYVRxJRcwC .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sYVRxJRcwC .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sYVRxJRcwC .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sYVRxJRcwC .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sYVRxJRcwC .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sYVRxJRcwC .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sYVRxJRcwC .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sYVRxJRcwC .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sYVRxJRcwC .collapsed button.navbar-toggler {
  display: block;
}
.cid-sYVRxJRcwC .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sYVRxJRcwC .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sYVRxJRcwC .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sYVRxJRcwC .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sYVRxJRcwC .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sYVRxJRcwC .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: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sYVRxJRcwC .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYVRxJRcwC .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sYVRxJRcwC .navbar-collapse.collapsing,
  .cid-sYVRxJRcwC .navbar-collapse.show {
    display: block !important;
  }
  .cid-sYVRxJRcwC .navbar-collapse.collapsing .navbar-nav,
  .cid-sYVRxJRcwC .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sYVRxJRcwC .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sYVRxJRcwC .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sYVRxJRcwC .navbar-collapse.collapsing .navbar-buttons,
  .cid-sYVRxJRcwC .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sYVRxJRcwC .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sYVRxJRcwC .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sYVRxJRcwC .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sYVRxJRcwC img {
    height: 3.8rem !important;
  }
  .cid-sYVRxJRcwC .btn {
    display: flex;
  }
  .cid-sYVRxJRcwC button.navbar-toggler {
    display: block;
  }
  .cid-sYVRxJRcwC .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sYVRxJRcwC .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sYVRxJRcwC .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sYVRxJRcwC .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sYVRxJRcwC .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sYVRxJRcwC .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: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sYVRxJRcwC .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sYVRxJRcwC .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sYVRxJRcwC .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sYVRxJRcwC .nav-link:focus {
  outline: none;
}
.cid-sYVRxJRcwC .navbar-toggler {
  position: relative;
}
.cid-sYVRxJRcwC .dropdown-item.active,
.cid-sYVRxJRcwC .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sYVRuYkL8B .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-sYVRuYkL8B .mbr-arrow i {
  color: #ffffff !important;
}
.cid-sYVRuYkL8B .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sYVRuYkL8B .animated-element,
.cid-sYVRuYkL8B .typed-cursor {
  color: #ffffff;
}
.cid-sYVRuYkL8B .animated-element {
  border-bottom: 5px solid #ffca40;
}
@media (max-width: 767px) {
  .cid-sYVRuYkL8B .typed-text {
    text-align: center;
  }
}
.cid-sYVRuZ0JmW {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sYVRuZ0JmW .mbr-section-title {
  letter-spacing: 0.1em;
  color: #343434;
  margin-bottom: 2rem;
}
.cid-sYVRuZ0JmW .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sYVRuZ0JmW .btn {
  margin: 0px !important;
}
.cid-sYVRuZ0JmW .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYVRuZ0JmW .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYVRuZ0JmW .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sYVRuZ0JmW .carousel-item .wrap-img {
  text-align: center;
}
.cid-sYVRuZ0JmW .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-sYVRuZ0JmW .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sYVRuZ0JmW .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-sYVRuZ0JmW .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ffca40;
  display: inline-block;
  border: 4px solid #ffca40;
}
.cid-sYVRuZ0JmW .carousel-indicators li.active {
  border-color: #ffa010;
}
@media (max-width: 768px) {
  .cid-sYVRuZ0JmW .second-col {
    padding-top: 2rem;
  }
}
.cid-sYVRuZ0JmW .mbr-section-subtitle,
.cid-sYVRuZ0JmW .mbr-section-btn {
  text-align: left;
  color: #343434;
}
.cid-sYVRuZu0KW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/bg-2000x1187.jpg");
}
.cid-sYVRuZu0KW .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-sYVRuZu0KW .card-wrap {
  background-color: #003254;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-sYVRuZu0KW .card-wrap:hover h4,
.cid-sYVRuZu0KW .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-sYVRuZu0KW h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-sYVRuZu0KW h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-sYVRuZu0KW img {
  width: 100%;
}
.cid-sYVRuZu0KW h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sYVRuZu0KW h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sYVRuZu0KW .card-title1,
.cid-sYVRuZu0KW .title-wrap1 {
  color: #ffffff;
}
.cid-sYVRuZu0KW .card-title,
.cid-sYVRuZu0KW .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sYVRuZu0KW .mdpb {
    padding-bottom: 2rem;
  }
  .cid-sYVRuZu0KW .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-sYVRuZu0KW H3 {
  color: #ffffff;
}
.cid-sYVRuZHSgd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYVRuZHSgd .container-fluid {
  position: relative;
}
.cid-sYVRuZHSgd .page-title-content {
  width: 100%;
}
.cid-sYVRuZHSgd .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-sYVRuZHSgd .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-sYVRuZHSgd .page-title-content {
    text-align: center;
  }
}
.cid-sYVRuZHSgd .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-sYVRuZHSgd a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-sYVRuZHSgd a:not(:first-child) {
  margin-left: 20px;
}
.cid-sYVRuZHSgd a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-sYVRuZHSgd a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-sYVRuZHSgd a:hover:after,
.cid-sYVRuZHSgd a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-sYVRuZHSgd a:hover:before,
.cid-sYVRuZHSgd a:focus:before {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-sYVRuZHSgd a.text-white:hover,
.cid-sYVRuZHSgd a.text-white:focus {
  color: #ffffff !important;
}
.cid-sYVRuZHSgd .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sYVRuZHSgd .page-title-content .title,
.cid-sYVRuZHSgd .icon-section,
.cid-sYVRuZHSgd .mbr-section-btn {
  color: #343434;
}
.cid-sYVRuZXohH {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sYVRuZXohH .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sYVRuZXohH .modal-body .close {
  background: #1b1b1b;
}
.cid-sYVRuZXohH .modal-body .close span {
  font-style: normal;
}
.cid-sYVRuZXohH .carousel-inner > .active,
.cid-sYVRuZXohH .carousel-inner > .next,
.cid-sYVRuZXohH .carousel-inner > .prev {
  display: flex;
}
.cid-sYVRuZXohH .carousel-control .icon-next,
.cid-sYVRuZXohH .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sYVRuZXohH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYVRuZXohH .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sYVRuZXohH .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-sYVRuZXohH .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sYVRuZXohH .boxed-slider > div {
  position: relative;
}
.cid-sYVRuZXohH .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-sYVRuZXohH .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sYVRuZXohH .mbr-table-cell {
  padding: 0;
}
.cid-sYVRuZXohH .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sYVRuZXohH .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sYVRuZXohH .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-sYVRuZXohH .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sYVRuZXohH .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sYVRuZXohH .carousel-item.active.right,
.cid-sYVRuZXohH .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sYVRuZXohH .carousel-item.active.left,
.cid-sYVRuZXohH .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sYVRuZXohH .carousel-item.active,
.cid-sYVRuZXohH .carousel-item.next.left,
.cid-sYVRuZXohH .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sYVRuZXohH .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sYVRuZXohH .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYVRuZXohH .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sYVRuZXohH .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-sYVRuZXohH .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYVRuZXohH .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sYVRuZXohH .mbr-slider .carousel-indicators li {
  max-width: 19px;
  width: 19px;
  height: 19px;
  max-height: 19px;
  margin: 3px;
  background-color: white;
  border: none;
  border-radius: 0;
  opacity: .5;
  transition: all .3s;
}
.cid-sYVRuZXohH .mbr-slider .carousel-indicators li.active,
.cid-sYVRuZXohH .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sYVRuZXohH .mbr-slider .carousel-indicators li::after,
.cid-sYVRuZXohH .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sYVRuZXohH .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sYVRuZXohH .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sYVRuZXohH .mbr-slider > .container img {
  width: 100%;
}
.cid-sYVRuZXohH .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-sYVRuZXohH .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .cid-sYVRuZXohH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sYVRuZXohH .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sYVRuZXohH .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sYVRuZXohH .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sYVRuZXohH .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sYVRuZXohH .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sYVRuZXohH .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sYVRuZXohH .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sYVRuZXohH .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sYVRuZXohH .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sYVRuZXohH .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sYVRuZXohH .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sYVRuZXohH .carousel-inner {
  height: 100%;
}
.cid-sYVRuZXohH .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sYVRuZXohH .image_wrapper {
  height: 700px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-sYVRuZXohH .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-sYVRuZXohH .carousel-item .container-slide {
  text-align: center;
}
.cid-sYVRuZXohH .content-slider-wrap {
  width: 100%;
}
.cid-sYVRuZXohH .carousel-control-prev {
  bottom: 2px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-sYVRuZXohH .carousel-control-next {
  bottom: 54px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-sYVRuZXohH .carousel-control {
  margin-left: 2px!important;
}
.cid-sYVRuZXohH P {
  text-align: left;
}
.cid-sYVRuZXohH H2 {
  text-align: left;
}
.cid-sYVRv0fZPe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #003254;
}
.cid-sYVRv0fZPe .container-fluid {
  overflow: hidden;
}
.cid-sYVRv0fZPe .carousel-controls {
  display: none;
}
.cid-sYVRv0fZPe .carousel-controls a {
  transition: opacity 0.5s;
}
.cid-sYVRv0fZPe .carousel-controls a:hover span,
.cid-sYVRv0fZPe .carousel-controls a:focus span {
  opacity: 1;
}
.cid-sYVRv0fZPe .carousel-controls a:hover svg,
.cid-sYVRv0fZPe .carousel-controls a:focus svg {
  transition: all 0.25s;
  stroke-width: 3;
}
.cid-sYVRv0fZPe .carousel-controls a:active svg {
  transition: all 0.1s;
  stroke-width: 5;
}
.cid-sYVRv0fZPe .carousel-indicators li {
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: 3px;
  background: #cccccc;
  border: 0;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-sYVRv0fZPe .carousel-indicators {
  bottom: 0px;
}
.cid-sYVRv0fZPe .carousel-indicators .active {
  border: 0px solid #1b1b1b;
  background: #ffbf6e;
}
.cid-sYVRv0fZPe ol {
  margin-bottom: 0rem;
}
.cid-sYVRv0fZPe .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 30px;
  padding-top: 1rem;
}
.cid-sYVRv0fZPe .carousel-control-prev {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-sYVRv0fZPe .carousel-control-next {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-sYVRv0fZPe .carousel-item.active,
.cid-sYVRv0fZPe .carousel-item-next,
.cid-sYVRv0fZPe .carousel-item-prev {
  display: flex;
}
.cid-sYVRv0fZPe .user_image {
  overflow: hidden;
  display: flex;
  padding: 1.5rem;
}
.cid-sYVRv0fZPe .user_image .user_image_inner {
  max-width: 250px;
  max-height: 250px;
  border-radius: 10%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-sYVRv0fZPe .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  margin: 0;
}
.cid-sYVRv0fZPe .user_text {
  color: #767676;
  position: relative;
}
.cid-sYVRv0fZPe .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-sYVRv0fZPe .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #5263b8, #ffca40);
  display: inline-block;
}
.cid-sYVRv0fZPe .testimonials-quote svg {
  height: 50px;
  width: 50px;
  opacity: 0.2;
  margin-bottom: -50px;
  margin-left: -25px;
  fill: currentColor;
}
.cid-sYVRv0fZPe .user_name {
  color: #ffffff;
  text-align: right;
}
.cid-sYVRv0fZPe .carousel-controls svg {
  height: 60px;
}
@media (max-width: 576px) {
  .cid-sYVRv0fZPe .carousel-controls {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sYVRv0fZPe .testimonials-quote,
  .cid-sYVRv0fZPe .user_text,
  .cid-sYVRv0fZPe .user_name,
  .cid-sYVRv0fZPe .user_desk {
    text-align: center !important;
  }
  .cid-sYVRv0fZPe .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
  .cid-sYVRv0fZPe .testimonials-quote svg {
    margin-left: 0px;
  }
}
@media (min-width: 768px) {
  .cid-sYVRv0fZPe .mbr-section-title,
  .cid-sYVRv0fZPe .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-sYVRv0fZPe .carousel-control-prev span {
    right: -1rem;
  }
  .cid-sYVRv0fZPe .carousel-control-next span {
    left: -1rem;
  }
  .cid-sYVRv0fZPe .user-text {
    padding-right: 2rem;
  }
  .cid-sYVRv0fZPe .carousel-control-prev,
  .cid-sYVRv0fZPe .carousel-control-next {
    -webkit-align-items: center;
    align-items: center;
  }
}
.cid-sYVRv0fZPe .user_desk {
  text-align: right;
  color: #ffffff;
  font-style: italic;
  font-weight: 300;
}
.cid-sYVRv0fZPe .user_text,
.cid-sYVRv0fZPe .testimonials-quote {
  color: #ffffff;
}
.cid-sYVRv0fZPe .user_text,
.cid-sYVRv0fZPe .testimonials-quote {
  text-align: right;
}
.cid-sYVRv0UyqX {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sYVRv0UyqX .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sYVRv0UyqX .mbr-text {
  color: #8d97ad;
}
.cid-sYVRv0UyqX .nav {
  border: none;
}
.cid-sYVRv0UyqX .nav-tabs {
  width: 100%;
}
.cid-sYVRv0UyqX .nav-tabs .nav-item {
  margin-bottom: 1rem;
  width: 100%;
}
.cid-sYVRv0UyqX .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(167, 146, 118, 0.3);
  box-shadow: 0px 0px 30px rgba(167, 146, 118, 0.3);
}
.cid-sYVRv0UyqX .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sYVRv0UyqX .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #ffca40;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #ffc120;
  margin: 0px;
  border-radius: 0px !important;
  transition: all .3s;
}
.cid-sYVRv0UyqX .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sYVRv0UyqX .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
}
.cid-sYVRv0UyqX .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sYVRv0UyqX .nav-item {
    display: table-row !important;
  }
}
.cid-sYVRv0UyqX .mbr-text,
.cid-sYVRv0UyqX .mbr-section-btn {
  color: #343434;
  text-align: left;
}
.cid-sYVRv0UyqX .title-content {
  color: #343434;
}
.cid-sYVRv0UyqX .mbr-section-title {
  color: #343434;
}
.cid-sYVRv1lK4S {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bg-2000x1187.jpg");
}
.cid-sYVRv1lK4S .container {
  max-width: 1500px;
}
.cid-sYVRv1lK4S img {
  width: 100%;
}
.cid-sYVRv1lK4S h2 {
  padding: 0;
  margin: 0;
}
.cid-sYVRv1lK4S .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-sYVRv1lK4S .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-sYVRv1lK4S .img-col {
  position: relative;
}
.cid-sYVRv1lK4S .img2 {
  position: absolute;
  right: 6rem;
  top: -6rem;
  width: 320px;
}
@media (max-width: 1200px) {
  .cid-sYVRv1lK4S .img2 {
    right: 3rem;
  }
	
}
@media (max-width: 992px) {
  .cid-sYVRv1lK4S .title-col {
    margin-bottom: 4rem!important;
  }
  .cid-sYVRv1lK4S .img2 {
    top: -2rem;
  }
  .cid-sYVRv1lK4S .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-sYVRv1lK4S .img2 {
    width: 50%;
  }
  .cid-sYVRv1lK4S .number {
    margin: auto;
  }
}
.cid-sYVRv1lK4S .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sYVRv1lK4S H2 {
  color: #343434;
}
.cid-sYVRv1lK4S H3 {
  color: #343434;
}
.cid-sYVRv1EvoJ {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sYVRv1EvoJ H1 {
  color: #232323;
}
.cid-sYVRv1EvoJ .mbr-text,
.cid-sYVRv1EvoJ .mbr-section-btn {
  color: #343434;
  text-align: left;
}
.cid-sYVRv1EvoJ .img1 {
  box-shadow: 0 10px 55px 5px rgba(255, 216, 115, 0.35);
  border-radius: 10px;
}
.cid-sYVRv1EvoJ .relative {
  position: relative;
}
.cid-sYVRv1EvoJ .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-sYVRv1EvoJ .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-sYVRv1EvoJ .card-img2 .img2 {
  width: 120%;
}
.cid-sYVRv1EvoJ .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-sYVRv1EvoJ .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-sYVRv1EvoJ .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 216, 115, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-sYVRv1T1p8 {
  padding-top: 60px;
  padding-bottom: 105px;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-sYVRv1T1p8 .carousel {
  z-index: 2;
  position: relative;
}
.cid-sYVRv1T1p8 .user {
  padding: 0!important;
}
.cid-sYVRv1T1p8 .big-icon {
  top: 1rem;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #e6eefa;
  opacity: 0.5;
}
.cid-sYVRv1T1p8 .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-sYVRv1T1p8 .carousel-item.active,
.cid-sYVRv1T1p8 .carousel-item-next,
.cid-sYVRv1T1p8 .carousel-item-prev {
  display: flex;
}
.cid-sYVRv1T1p8 .user_name {
  margin: 0;
}
.cid-sYVRv1T1p8 .carousel-controls a {
  font-size: 2rem;
}
.cid-sYVRv1T1p8 .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #003254;
  background: transparent;
  opacity: 0.5;
}
.cid-sYVRv1T1p8 .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sYVRv1T1p8 ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-sYVRv1T1p8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #003254;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-sYVRv1T1p8 .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sYVRv1T1p8 .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-sYVRv1T1p8 .user_text {
  color: #232323;
  text-align: right;
}
.cid-sYVRv1T1p8 .user_desk {
  color: #767676;
}
.cid-sYVRv1T1p8 .user_desk,
.cid-sYVRv1T1p8 .carousel-item {
  text-align: left;
}
.cid-sYVRv1T1p8 .carousel-indicators {
  margin: 0;
  margin-left: 0.5rem;
  justify-content: flex-start !important;
}
@media (max-width: 767px) {
  .cid-sYVRv1T1p8 .carousel-indicators {
    margin: auto;
    justify-content: center!important;
  }
}
.cid-sYVRv1T1p8 .carousel-control-next {
  right: -30px;
  transform: translateX(50%);
}
.cid-sYVRv1T1p8 .carousel-control-prev {
  left: -30px;
  transform: translateX(-50%);
}
.cid-sYVRv1T1p8 .title,
.cid-sYVRv1T1p8 .line-align {
  color: #003254;
}
.cid-sYVRv2pSqv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sYVRv2pSqv .card-box {
  padding: 0rem;
}
.cid-sYVRv2pSqv .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-sYVRv2pSqv .card {
  padding: 0;
  height: 100%;
}
.cid-sYVRv2pSqv .card-img {
  height: 400px;
}
.cid-sYVRv2pSqv .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sYVRv2pSqv .card-wrapper {
  padding: 2rem;
  width: 100%;
  margin: auto;
}
.cid-sYVRv2pSqv .cardbg {
  background: #ffffff;
  height: auto;
}
.cid-sYVRv2pSqv .text-card {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-sYVRv2pSqv .card-wrapper {
    padding: 4rem;
  }
}
.cid-sYVRv2pSqv .card-text {
  text-align: left;
}
.cid-sYVRv2Exnf {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sYVRv2Exnf .wrap {
  overflow: hidden;
  background-color: #ffca40;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-sYVRv2Exnf .wrap {
    height: auto;
  }
}
.cid-sYVRv2Exnf .wrap:hover .mbr-section-title a {
  color: #ffca40 !important;
}
.cid-sYVRv2Exnf .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-sYVRv2Exnf .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-sYVRv2Exnf .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-sYVRv2Exnf .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-sYVRv2Exnf .text-wrapper {
    padding: 20px 0;
  }
}
.cid-sYVRv2Exnf .row {
  flex-direction: row-reverse;
}
.cid-sYVRv2Exnf .text-wrapper {
  padding: 70px 40px;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-sYVRv2Exnf .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-sYVRv2Exnf .text-wrapper {
    padding: 20px;
  }
}
.cid-sYVRv2Exnf .mbr-section-subtitle,
.cid-sYVRv2Exnf .mbr-section-title {
  margin-bottom: 12px;
}
.cid-sYVRv2Exnf .image {
  width: 100%;
}
.cid-sYVRv2Exnf .image img {
  width: 101%;
  border-radius: 4px;
  object-fit: cover;
}
.cid-sYVRv2Exnf .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sYVRv2Exnf .mbr-text,
.cid-sYVRv2Exnf .mbr-section-btn {
  color: #343434;
}
.cid-sYVRv2XHTj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bg-2000x1187.jpg");
}
.cid-sYVRv2XHTj .team-card .image-wrap {
  overflow: hidden;
}
.cid-sYVRv2XHTj .team-card .image-wrap img {
  transition: all .5s;
}
.cid-sYVRv2XHTj .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sYVRv2XHTj .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sYVRv2XHTj .team-card {
  margin-bottom: 2rem;
}
.cid-sYVRv2XHTj .card-wrap {
  background: #ffffff;
}
.cid-sYVRv2XHTj .card-wrap .image-wrap img {
  width: 100%;
}
.cid-sYVRv2XHTj .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-sYVRv2XHTj .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-sYVRv2XHTj .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sYVRv2XHTj .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sYVRv2XHTj .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-sYVRv2XHTj .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-sYVRv2XHTj .main-title {
  color: #343434;
}
.cid-sYVRv2XHTj .mbr-role {
  color: #767676;
}
.cid-sYVRv2XHTj .card-text,
.cid-sYVRv2XHTj .mbr-section-btn {
  color: #343434;
}
.cid-sYVRv2XHTj .mbr-text {
  color: #000000;
}
.cid-sYVRD2WUWr .navbar {
    padding: 0.5rem 0;
    background: #ffffff;
    transition: none;
    min-height: 50px;
    border-bottom: 1px solid #E3E3E3;
}
.cid-sYVRD2WUWr .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sYVRD2WUWr a {
  font-style: normal;
}
.cid-sYVRD2WUWr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sYVRD2WUWr .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 0.65rem !important;
}
.cid-sYVRD2WUWr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  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-sYVRD2WUWr .content-text {
  margin-bottom: 0;
}
.cid-sYVRD2WUWr .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sYVRD2WUWr .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #5263b8;
    -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-sYVRD2WUWr .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sYVRD2WUWr .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sYVRD2WUWr .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sYVRD2WUWr .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sYVRD2WUWr .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sYVRD2WUWr .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sYVRD2WUWr .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sYVRD2WUWr .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYVRD2WUWr .nav-dropdown .link {
  font-weight: 400;
}
.cid-sYVRD2WUWr .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sYVRD2WUWr .content-right-side {
  text-align: center;
}
.cid-sYVRD2WUWr .menu-content-top {
    padding-top: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden;
    transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sYVRD2WUWr .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sYVRD2WUWr .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sYVRD2WUWr .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sYVRD2WUWr .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
 .cid-sYVRD2WUWr .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sYVRD2WUWr img {
    height: 3.8rem !important;
  }
  .cid-sYVRD2WUWr .btn {
    display: -webkit-flex;
  }
  .cid-sYVRD2WUWr button.navbar-toggler {
    display: block;
  }
  .cid-sYVRD2WUWr .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sYVRD2WUWr .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sYVRD2WUWr .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sYVRD2WUWr .navbar-collapse.collapsing,
  .cid-sYVRD2WUWr .navbar-collapse.show {
    display: block !important;
  }
  .cid-sYVRD2WUWr .navbar-collapse.collapsing .navbar-nav,
  .cid-sYVRD2WUWr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sYVRD2WUWr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sYVRD2WUWr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sYVRD2WUWr .navbar-collapse.collapsing .navbar-buttons,
  .cid-sYVRD2WUWr .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sYVRD2WUWr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sYVRD2WUWr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sYVRD2WUWr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sYVRD2WUWr .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-sYVRD2WUWr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sYVRD2WUWr .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sYVRD2WUWr .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sYVRD2WUWr .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
    display: inline-block;
    width: auto;
  }
}
@media (max-width: 991px) {
  .cid-sYVRD2WUWr .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sYVRD2WUWr .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sYVRD2WUWr .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sYVRD2WUWr .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sYVRD2WUWr .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sYVRD2WUWr .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sYVRD2WUWr .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sYVRD2WUWr .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-sYVRD2WUWr .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYVRD2WUWr .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sYVRD2WUWr .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sYVRD2WUWr .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sYVRD2WUWr .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sYVRD2WUWr .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sYVRxJRcwC .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
@media (min-width: 992px) {
  .cid-sYVRD2WUWr .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sYVRD2WUWr .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sYVRD2WUWr .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sYVRD2WUWr .navbar {
    display: block;
    padding: 0;
  }
  .cid-sYVRD2WUWr .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sYVRD2WUWr .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: 49px;
  }
  .cid-sYVRD2WUWr .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 20px;
  }
  .cid-sYVRD2WUWr .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sYVRD2WUWr .navbar-toggler {
    display: none;
  }
  .cid-sYVRD2WUWr .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYVRD2WUWr .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYVRD2WUWr .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sYVRD2WUWr .menu-logo {
  margin-right: auto;
}
.cid-sYVRD2WUWr .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYVRD2WUWr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sYVRD2WUWr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sYVRD2WUWr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sYVRD2WUWr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sYVRD2WUWr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sYVRD2WUWr .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sYVRD2WUWr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sYVRD2WUWr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYVRD2WUWr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sYVRD2WUWr .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sYVRD2WUWr .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sYVRD2WUWr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sYVRD2WUWr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYVRD2WUWr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sYVRD2WUWr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sYVRD2WUWr .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-sYVRD2WUWr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sYVRD2WUWr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYVRD2WUWr .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-sYVRD2WUWr .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sYVRD2WUWr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sYVRD2WUWr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sYVRD2WUWr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sYVRD2WUWr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sYVRD2WUWr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYVRD2WUWr button.navbar-toggler:focus {
  outline: none;
}
.cid-sYVRD2WUWr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sYVRD2WUWr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYVRD2WUWr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYVRD2WUWr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYVRD2WUWr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYVRD2WUWr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYVRD2WUWr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYVRD2WUWr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYVRD2WUWr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYVRD2WUWr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYVRD2WUWr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYVRD2WUWr .collapsed .btn {
  display: -webkit-flex;
}
.cid-sYVRD2WUWr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sYVRD2WUWr .collapsed .navbar-collapse.collapsing,
.cid-sYVRD2WUWr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sYVRD2WUWr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sYVRD2WUWr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sYVRD2WUWr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sYVRD2WUWr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sYVRD2WUWr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sYVRD2WUWr .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sYVRD2WUWr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sYVRD2WUWr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sYVRD2WUWr .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sYVRD2WUWr .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sYVRD2WUWr .collapsed button.navbar-toggler {
  display: block;
}
.cid-sYVRD2WUWr .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sYVRD2WUWr .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sYVRD2WUWr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sYVRD2WUWr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sYVRD2WUWr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sYVRD2WUWr .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: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sYVRD2WUWr .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYVRD2WUWr .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sYVRD2WUWr .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sYVRD2WUWr .nav-link:focus {
  outline: none;
}
.cid-sYVRD2WUWr .navbar-toggler {
  position: relative;
}
.cid-sYVRD2WUWr .dropdown-item.active,
.cid-sYVRD2WUWr .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sYVRD2WUWr .nav-link:hover,
.cid-sYVRD2WUWr .dropdown-item:hover {
  color: #ff4e4e;
}
