body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ff4f7b !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e8003a !important;
  color: #e8003a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff4f7b !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e8003a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff4f7b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #e3ec1a;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #000000;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #e3ec1a;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff4f7b;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ff4f7b;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ff4f7b;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4f7b;
  color: #ffffff;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4f7b;
  border-bottom-color: #ff4f7b;
}
.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: #ff4f7b !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: #2bdc9d !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ff4f7b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-snaYqkLnki .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-snaYqkLnki .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-snaYqkLnki a {
  font-style: normal;
}
.cid-snaYqkLnki .navbar-buttons {
  flex-wrap: wrap;
}
.cid-snaYqkLnki .show {
  overflow: visible;
}
.cid-snaYqkLnki .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-snaYqkLnki .dropdown-item:active {
  background-color: transparent;
}
.cid-snaYqkLnki .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-snaYqkLnki .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-snaYqkLnki .nav-item:focus,
.cid-snaYqkLnki .nav-link:focus {
  outline: none;
}
.cid-snaYqkLnki .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-snaYqkLnki .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-snaYqkLnki .menu-logo {
  margin-right: auto;
}
.cid-snaYqkLnki .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-snaYqkLnki .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-snaYqkLnki .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-snaYqkLnki .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-snaYqkLnki .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-snaYqkLnki .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-snaYqkLnki .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-snaYqkLnki .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-snaYqkLnki .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-snaYqkLnki .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-snaYqkLnki .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-snaYqkLnki .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-snaYqkLnki .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-snaYqkLnki .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-snaYqkLnki .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snaYqkLnki .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-snaYqkLnki .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snaYqkLnki .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-snaYqkLnki .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-snaYqkLnki .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-snaYqkLnki .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-snaYqkLnki .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-snaYqkLnki .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-snaYqkLnki .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-snaYqkLnki button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-snaYqkLnki button.navbar-toggler:focus {
  outline: none;
}
.cid-snaYqkLnki button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-snaYqkLnki button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snaYqkLnki button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snaYqkLnki button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snaYqkLnki button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snaYqkLnki nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snaYqkLnki nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snaYqkLnki nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snaYqkLnki nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-snaYqkLnki .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-snaYqkLnki .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-snaYqkLnki .collapsed .btn {
  display: -webkit-flex;
}
.cid-snaYqkLnki .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-snaYqkLnki .collapsed .navbar-collapse.collapsing,
.cid-snaYqkLnki .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-snaYqkLnki .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-snaYqkLnki .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-snaYqkLnki .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-snaYqkLnki .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-snaYqkLnki .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-snaYqkLnki .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-snaYqkLnki .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-snaYqkLnki .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-snaYqkLnki .collapsed button.navbar-toggler {
  display: block;
}
.cid-snaYqkLnki .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-snaYqkLnki .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-snaYqkLnki .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-snaYqkLnki .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-snaYqkLnki .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-snaYqkLnki .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;
}
@media (max-width: 991px) {
  .cid-snaYqkLnki.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-snaYqkLnki img {
    height: 3.8rem !important;
  }
  .cid-snaYqkLnki .btn {
    display: -webkit-flex;
  }
  .cid-snaYqkLnki button.navbar-toggler {
    display: block;
  }
  .cid-snaYqkLnki .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-snaYqkLnki .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-snaYqkLnki .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-snaYqkLnki .navbar-collapse.collapsing,
  .cid-snaYqkLnki .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-snaYqkLnki .navbar-collapse.collapsing .navbar-nav,
  .cid-snaYqkLnki .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-snaYqkLnki .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-snaYqkLnki .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-snaYqkLnki .navbar-collapse.collapsing .navbar-buttons,
  .cid-snaYqkLnki .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-snaYqkLnki .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-snaYqkLnki .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-snaYqkLnki .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-snaYqkLnki .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-snaYqkLnki .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-snaYqkLnki .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;
  }
}
@media (max-width: 767px) {
  .cid-snaYqkLnki .nav-link {
    justify-content: start !important;
  }
  .cid-snaYqkLnki .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-snaYqkLnki .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-snaYqkLnki .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-snaYqkLnki .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-snaYqkLnki .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-snaYqkLnki .nav-link:hover,
.cid-snaYqkLnki .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-snaYqkLnki .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-snaYqkLnki .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-snb0i4Nszi {
  background-image: url("../../../assets/images/valley-28-2000x917.jpg");
}
.cid-snb0i4Nszi .mbr-section-title,
.cid-snb0i4Nszi .mbr-section-subtitle {
  color: #000000;
}
.cid-snb0i4Nszi .mbr-section-text {
  color: #232323;
}
.cid-snb0i4Nszi .mbr-text,
.cid-snb0i4Nszi .typed-text,
.cid-snb0i4Nszi .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-snb0i4Nszi .btn {
  margin-left: 4px !important;
}
.cid-snb0i4Nszi .animated-element {
  color: #e7f10a;
}
.cid-snb0i4Nszi .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #e7f10a;
}
.cid-snb0i4Nszi .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-snb0i4Nszi .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-snb0i4Nszi .typed-text,
  .cid-snb0i4Nszi .mbr-section-subtitle,
  .cid-snb0i4Nszi .mbr-section-text,
  .cid-snb0i4Nszi .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-snb0i4Nszi .mbr-section-subtitle,
.cid-snb0i4Nszi .typed-text {
  color: #a61a3d;
}
.cid-snb0i4Nszi .mbr-section-text,
.cid-snb0i4Nszi .mbr-section-btn {
  color: #f4f8fa;
}
.cid-snb2PYWLRY {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-snb2PYWLRY .main,
.cid-snb2PYWLRY .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #ffffff;
}
.cid-snb2PYWLRY .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-snb2PYWLRY .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-snb2PYWLRY .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-snb2PYWLRY .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-snb2PYWLRY .text-element {
  padding: 3rem 2rem;
}
.cid-snb2PYWLRY .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-snb2PYWLRY .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-snb2PYWLRY .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
.cid-snb2PYWLRY .mbr-section-btn {
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (max-width: 991px) {
  .cid-snb2PYWLRY .main-reverse {
    flex-direction: row;
    -webkit-flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-snb2PYWLRY .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-snb2PYWLRY .image-element,
  .cid-snb2PYWLRY .text-element {
    margin-bottom: 0;
  }
  .cid-snb2PYWLRY .main:first-child {
    padding-top: 0;
  }
}
.cid-snb2PYWLRY .mbr-section-subtitle,
.cid-snb2PYWLRY .card-text,
.cid-snb2PYWLRY .mbr-section-btn {
  color: #8d97ad;
}
.cid-snb2PYWLRY .card-text,
.cid-snb2PYWLRY .mbr-section-btn {
  color: #04367c;
}
.cid-snb2PYWLRY .mbr-section-subtitle {
  color: #04367c;
}
.cid-snb2PYWLRY .mbr-section-title {
  color: #ff4f7b;
}
.cid-snbdgFfMEc {
  background-image: url("../../../assets/images/view02-1182x1182.jpg");
}
.cid-snbdgFfMEc li {
  list-style: none;
}
.cid-snbdgFfMEc .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-snbdgFfMEc .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-snbdgFfMEc h4 {
  margin: 0;
}
.cid-snbdgFfMEc .item {
  color: #57468b;
}
.cid-snbdgFfMEc ul {
  padding: 0;
  margin: 0;
}
.cid-snbdgFfMEc .col-title {
  color: #57468b;
}
.cid-snbdgFfMEc .col-title1 {
  color: #000000;
}
.cid-snbdgFfMEc .col-title2 {
  color: #04367c;
}
.cid-snbdgFfMEc .col-title3 {
  color: #ff8a73;
}
.cid-snbdgFfMEc .col-title4 {
  color: #7516d2;
}
.cid-snbdgFfMEc .item1 {
  color: #000000;
  text-align: left;
}
.cid-snbdgFfMEc .item2 {
  color: #04367c;
}
.cid-snbdgFfMEc .item3 {
  color: #f25916;
}
.cid-snbdgFfMEc .item4 {
  color: #7516d2;
}
@media (max-width: 768px) {
  .cid-snbdgFfMEc .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-sqf5XyD3vE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqf5XyD3vE .count {
  text-align: left;
  word-break: inherit;
}
.cid-sqf5XyD3vE .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sqf5XyD3vE .mbr-content-title {
  color: #8d97ad;
}
.cid-sqf5XyD3vE .panel-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqf5XyD3vE .card {
  word-wrap: break-word;
}
.cid-sqf5XyD3vE .mbr-iconfont {
  font-size: 50px;
  color: #188ef4;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-sqf5XyD3vE .panel-item {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqf5XyD3vE .mbr-section-title {
  color: #098484;
}
.cid-uv1gO50YFw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uv1gO50YFw .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uv1gO50YFw .carousel {
    min-height: 500px;
  }
  .cid-uv1gO50YFw .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uv1gO50YFw .carousel {
    min-height: 325px;
  }
  .cid-uv1gO50YFw .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uv1gO50YFw .carousel {
    min-height: 275px;
  }
  .cid-uv1gO50YFw .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-uv1gO50YFw .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uv1gO50YFw .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uv1gO50YFw .carousel,
.cid-uv1gO50YFw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uv1gO50YFw .item-wrapper {
  width: 100%;
}
.cid-uv1gO50YFw .carousel-caption {
  bottom: 40px;
}
.cid-uv1gO50YFw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uv1gO50YFw .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uv1gO50YFw .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uv1gO50YFw .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uv1gO50YFw .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uv1gO50YFw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uv1gO50YFw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uv1gO50YFw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uv1gO50YFw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uv1gO50YFw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uv1gO50YFw .carousel-indicators li.active,
.cid-uv1gO50YFw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uv1gO50YFw .carousel-indicators li::after,
.cid-uv1gO50YFw .carousel-indicators li::before {
  content: none;
}
.cid-uv1gO50YFw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uv1gO50YFw .carousel-indicators {
    display: none !important;
  }
}
.cid-snb76ucBmF {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #e3ec1a;
  background: linear-gradient(45deg, #e3ec1a, #3b7cb7);
}
.cid-snb76ucBmF img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.cid-snb76ucBmF .row {
  justify-content: center;
}
.cid-snb76ucBmF .img-wrap span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-snb76ucBmF .img-wrap {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}
.cid-snb76ucBmF .img-wrap:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: black;
  opacity: 0;
}
.cid-snb76ucBmF .img-wrap:hover:before {
  opacity: 0.2;
}
.cid-snb76ucBmF .img-wrap:hover span {
  opacity: 1;
}
@media (min-width: 992px) {
  .cid-snb76ucBmF .col-lg-x {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-snb76ucBmF .item {
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .cid-snb76ucBmF .item {
    padding: 0.5rem;
  }
  .cid-snb76ucBmF .row {
    padding: 0 0.5rem;
  }
}
.cid-snb76ucBmF .btn {
  border-radius: 0;
}
.cid-snb76ucBmF .btn .mbr-iconfont {
  font-size: 1rem!important;
  margin: 0 0.5rem;
}
.cid-snbAdhZ0Pp {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-snbAdhZ0Pp .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-snbAdhZ0Pp .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-snbAdhZ0Pp .rev,
.cid-snbAdhZ0Pp .mbr-iconfont {
  display: inline-block;
}
.cid-snbAdhZ0Pp .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-snbAdhZ0Pp .card-img {
  position: relative;
}
.cid-snbAdhZ0Pp .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-snbAdhZ0Pp .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-snbAdhZ0Pp .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-snbAdhZ0Pp .card-box {
  padding: 1.5rem;
}
.cid-snbAdhZ0Pp .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-snbAdhZ0Pp .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-snbAdhZ0Pp .mbr-section-title,
.cid-snbAdhZ0Pp .line-wrap {
  text-align: center;
  color: #04367c;
}
.cid-snbAdhZ0Pp .card-text,
.cid-snbAdhZ0Pp .mbr-section-btn,
.cid-snbAdhZ0Pp .ico-line {
  text-align: left;
  color: #767676;
}
.cid-snbAdhZ0Pp .mbr-text,
.cid-snbAdhZ0Pp .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-snbAdhZ0Pp .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-uv15sqhSxf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uv15sqhSxf .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uv15sqhSxf .carousel {
    min-height: 500px;
  }
  .cid-uv15sqhSxf .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uv15sqhSxf .carousel {
    min-height: 325px;
  }
  .cid-uv15sqhSxf .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uv15sqhSxf .carousel {
    min-height: 275px;
  }
  .cid-uv15sqhSxf .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-uv15sqhSxf .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uv15sqhSxf .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uv15sqhSxf .carousel,
.cid-uv15sqhSxf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uv15sqhSxf .item-wrapper {
  width: 100%;
}
.cid-uv15sqhSxf .carousel-caption {
  bottom: 40px;
}
.cid-uv15sqhSxf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uv15sqhSxf .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uv15sqhSxf .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uv15sqhSxf .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uv15sqhSxf .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uv15sqhSxf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uv15sqhSxf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uv15sqhSxf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uv15sqhSxf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uv15sqhSxf .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uv15sqhSxf .carousel-indicators li.active,
.cid-uv15sqhSxf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uv15sqhSxf .carousel-indicators li::after,
.cid-uv15sqhSxf .carousel-indicators li::before {
  content: none;
}
.cid-uv15sqhSxf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uv15sqhSxf .carousel-indicators {
    display: none !important;
  }
}
.cid-sqszUblK1v {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqszUblK1v .container-fluid {
  padding: 0 3rem;
}
.cid-sqszUblK1v .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #ff4f7b 50%, #2bdc9d 120%);
  display: inline-block;
}
.cid-sqszUblK1v .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-sqszUblK1v .header-text {
  padding: 2rem 1rem !important;
}
.cid-sqszUblK1v .card {
  border-radius: 25px !important;
  background: #f9e7a9;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-sqszUblK1v .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-sqszUblK1v .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-sqszUblK1v .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sqszUblK1v .card .card-header a.panel-title:hover .sign {
  background-color: #a61a3d !important;
}
.cid-sqszUblK1v .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #4f80e0;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-sqszUblK1v .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-sqszUblK1v .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-sqszUblK1v .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-sqszUblK1v .container-fluid {
    padding: 0 1rem;
  }
  .cid-sqszUblK1v .header-text {
    padding: 1rem !important;
  }
  .cid-sqszUblK1v .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-sqszUblK1v .panel-body {
    width: calc(100% - 48px);
  }
  .cid-sqszUblK1v .panel-group {
    padding: 0;
  }
}
.cid-sqszUblK1v .header-text,
.cid-sqszUblK1v .sign {
  color: #232323;
  text-align: left;
}
.cid-sqszUblK1v .panel-text {
  color: #04367c;
  text-align: left;
}
.cid-spCG2edeME {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-spCG2edeME .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-spCG2edeME .card-title {
  padding: .5rem 1rem .5rem 4rem;
  margin-left: .5rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-spCG2edeME .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-spCG2edeME .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-spCG2edeME .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-spCG2edeME .card-text,
.cid-spCG2edeME .mbr-subtitle {
  color: #8d97ad;
}
.cid-spCG2edeME .card-sign {
  padding-top: .5rem;
}
.cid-spCG2edeME .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-spCG2edeME .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-spCG2edeME .card-title {
    text-align: center;
  }
  .cid-spCG2edeME p.mbr-text,
  .cid-spCG2edeME p.date {
    text-align: center;
  }
}
.cid-spCG2edeME .card-box {
  background: #f4f8fa;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-spCG2edeME H2 {
  color: #f25916;
}
.cid-spCG2edeME .mbr-subtitle {
  color: #000000;
}
.cid-spCG2edeME .card-title,
.cid-spCG2edeME .card-img {
  color: #e7f10a;
}
.cid-spMaytg0My {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-spMaytg0My P {
  color: #767676;
}
.cid-spMaytg0My H5 {
  color: #1c1c1c;
  text-align: left;
}
.cid-spMaytg0My h5 {
  display: inline;
  text-decoration: none;
  width: fit-content;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  margin-bottom: 1.5rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-spMaytg0My h5:hover {
  background-size: 100% 100%;
}
.cid-spMaytg0My .col-md-4 {
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.cid-spMaytg0My H4 {
  text-align: left;
}
.cid-sngdJqvSb1 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sngdJqvSb1 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sngdJqvSb1 a {
  font-style: normal;
}
.cid-sngdJqvSb1 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sngdJqvSb1 .show {
  overflow: visible;
}
.cid-sngdJqvSb1 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sngdJqvSb1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sngdJqvSb1 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sngdJqvSb1 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sngdJqvSb1 .nav-item:focus,
.cid-sngdJqvSb1 .nav-link:focus {
  outline: none;
}
.cid-sngdJqvSb1 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sngdJqvSb1 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sngdJqvSb1 .menu-logo {
  margin-right: auto;
}
.cid-sngdJqvSb1 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sngdJqvSb1 .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-sngdJqvSb1 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sngdJqvSb1 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sngdJqvSb1 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sngdJqvSb1 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sngdJqvSb1 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sngdJqvSb1 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sngdJqvSb1 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sngdJqvSb1 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sngdJqvSb1 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sngdJqvSb1 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sngdJqvSb1 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sngdJqvSb1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sngdJqvSb1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sngdJqvSb1 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sngdJqvSb1 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sngdJqvSb1 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sngdJqvSb1 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sngdJqvSb1 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sngdJqvSb1 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sngdJqvSb1 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sngdJqvSb1 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sngdJqvSb1 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sngdJqvSb1 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sngdJqvSb1 button.navbar-toggler:focus {
  outline: none;
}
.cid-sngdJqvSb1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-sngdJqvSb1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sngdJqvSb1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sngdJqvSb1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sngdJqvSb1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sngdJqvSb1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sngdJqvSb1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sngdJqvSb1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sngdJqvSb1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sngdJqvSb1 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sngdJqvSb1 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sngdJqvSb1 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sngdJqvSb1 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sngdJqvSb1 .collapsed .navbar-collapse.collapsing,
.cid-sngdJqvSb1 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sngdJqvSb1 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sngdJqvSb1 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sngdJqvSb1 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sngdJqvSb1 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sngdJqvSb1 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sngdJqvSb1 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sngdJqvSb1 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sngdJqvSb1 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sngdJqvSb1 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sngdJqvSb1 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sngdJqvSb1 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sngdJqvSb1 .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-sngdJqvSb1 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sngdJqvSb1 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sngdJqvSb1 .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;
}
@media (max-width: 991px) {
  .cid-sngdJqvSb1.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sngdJqvSb1 img {
    height: 3.8rem !important;
  }
  .cid-sngdJqvSb1 .btn {
    display: -webkit-flex;
  }
  .cid-sngdJqvSb1 button.navbar-toggler {
    display: block;
  }
  .cid-sngdJqvSb1 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sngdJqvSb1 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sngdJqvSb1 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sngdJqvSb1 .navbar-collapse.collapsing,
  .cid-sngdJqvSb1 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sngdJqvSb1 .navbar-collapse.collapsing .navbar-nav,
  .cid-sngdJqvSb1 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sngdJqvSb1 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sngdJqvSb1 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sngdJqvSb1 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sngdJqvSb1 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sngdJqvSb1 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sngdJqvSb1 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sngdJqvSb1 .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-sngdJqvSb1 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sngdJqvSb1 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sngdJqvSb1 .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;
  }
}
@media (max-width: 767px) {
  .cid-sngdJqvSb1 .nav-link {
    justify-content: start !important;
  }
  .cid-sngdJqvSb1 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sngdJqvSb1 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sngdJqvSb1 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sngdJqvSb1 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sngdJqvSb1 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sngdJqvSb1 .nav-link:hover,
.cid-sngdJqvSb1 .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-sngdJqvSb1 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sngdJqvSb1 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-soRza0ir2F {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-soRza0ir2F .mbr-overlay {
  background: #2bdc9d;
}
.cid-soRza0ir2F .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-soRza0ir2F .mbr-section-subtitle,
.cid-soRza0ir2F .mbr-section-btn {
  color: #e3ec1a;
}
.cid-soRza0ir2F H1 {
  color: #ff4f7b;
}
.cid-soRA9jKq6b {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-soRA9jKq6b .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-soRA9jKq6b .mbr-section-title {
  margin: 0;
}
.cid-soRA9jKq6b .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-soRA9jKq6b .card-img span {
  color: #1dc9cb;
}
.cid-soRA9jKq6b .row-item {
  margin-bottom: 2rem;
}
.cid-soRA9jKq6b .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-soRA9jKq6b .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-soRA9jKq6b .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-soRA9jKq6b .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-soRA9jKq6b .mbr-card-title,
.cid-soRA9jKq6b .card-img {
  color: #a61a3d;
}
.cid-soRCBhfkzW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-soRCBhfkzW .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-soRCBhfkzW .mbr-section-title {
  margin: 0;
}
.cid-soRCBhfkzW .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-soRCBhfkzW .card-img span {
  color: #1dc9cb;
}
.cid-soRCBhfkzW .row-item {
  margin-bottom: 2rem;
}
.cid-soRCBhfkzW .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-soRCBhfkzW .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-soRCBhfkzW .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-soRCBhfkzW .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-soRCBhfkzW .mbr-card-title,
.cid-soRCBhfkzW .card-img {
  color: #a61a3d;
}
.cid-soRCE10yeD {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-soRCE10yeD .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-soRCE10yeD .mbr-section-title {
  margin: 0;
}
.cid-soRCE10yeD .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-soRCE10yeD .card-img span {
  color: #1dc9cb;
}
.cid-soRCE10yeD .row-item {
  margin-bottom: 2rem;
}
.cid-soRCE10yeD .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-soRCE10yeD .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-soRCE10yeD .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-soRCE10yeD .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-soRCE10yeD .mbr-card-title,
.cid-soRCE10yeD .card-img {
  color: #a61a3d;
}
.cid-sngdJvzUlR {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sngdJvzUlR .mbr-section-title {
  color: #e43f3f;
}
.cid-sngdJvzUlR .mbr-section-subtitle {
  color: #4479d9;
}
.cid-sngdJzycZZ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-sngdJzycZZ .mbr-overlay {
  background: #232323;
}
.cid-spkRt2Oo6q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spkRt2Oo6q .container-fluid {
  padding: 0 3rem;
}
.cid-spkRt2Oo6q .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-spkRt2Oo6q .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-spkRt2Oo6q .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-spkRt2Oo6q .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-spkRt2Oo6q .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-spkRt2Oo6q a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-spkRt2Oo6q a.close:hover {
  color: #ffffff;
}
.cid-spkRt2Oo6q svg {
  transition: all 0.5s ease-in;
}
.cid-spkRt2Oo6q svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-spkRt2Oo6q svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-spkRt2Oo6q svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-spkRt2Oo6q .container-fluid {
    padding: 0 1rem;
  }
}
.cid-spkRt2Oo6q H1 {
  color: #e3ec1a;
}
.cid-spl6RDyIuT {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spl6RDyIuT .container-fluid {
  padding: 0 3rem;
}
.cid-spl6RDyIuT .mbr-section-subtitle {
  color: #767676;
}
.cid-spl6RDyIuT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spl6RDyIuT .table-wrapper {
  margin: 0 auto;
}
.cid-spl6RDyIuT table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spl6RDyIuT table thead tr {
  border: none !important;
}
.cid-spl6RDyIuT table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spl6RDyIuT table tr td {
  border-color: #eceeef;
}
.cid-spl6RDyIuT table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spl6RDyIuT table.table {
  background: #ffffff;
}
.cid-spl6RDyIuT tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spl6RDyIuT th:after,
.cid-spl6RDyIuT th:before {
  display: none !important;
}
.cid-spl6RDyIuT .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spl6RDyIuT .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spl6RDyIuT table th,
  .cid-spl6RDyIuT table td {
    padding: .75rem;
  }
}
.cid-spl6RDyIuT .body-item {
  text-align: left;
}
.cid-spl6RDyIuT .mbr-text {
  color: #e7f10a;
}
.cid-spl6RDyIuT .head-item {
  color: #232323;
}
.cid-spl6RDyIuT .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spl6RDyIuT .mbr-section-title,
.cid-spl6RDyIuT .head-item {
  color: #a61a3d;
}
.cid-spl6RDyIuT .mbr-section-subtitle,
.cid-spl6RDyIuT .table tbody .tableColumns .body-item,
.cid-spl6RDyIuT .table {
  color: #04367c;
  text-align: center;
}
.cid-spl6RDyIuT .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spl5K3TtXs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spl5K3TtXs .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spl5K3TtXs .mbr-text {
  color: #04367c;
}
.cid-soRNVrdMYt {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-soRNVrdMYt .mbr-section-title {
  color: #e43f3f;
}
.cid-soRNVrdMYt .mbr-section-subtitle {
  color: #4479d9;
}
.cid-soRO34mkiz {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-soRO34mkiz .mbr-overlay {
  background: #232323;
}
.cid-soRO70fucd {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-soRO70fucd .container-fluid {
  padding: 0 3rem;
}
.cid-soRO70fucd .mbr-section-subtitle {
  color: #767676;
}
.cid-soRO70fucd .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-soRO70fucd .table-wrapper {
  margin: 0 auto;
}
.cid-soRO70fucd table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-soRO70fucd table thead tr {
  border: none !important;
}
.cid-soRO70fucd table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-soRO70fucd table tr td {
  border-color: #eceeef;
}
.cid-soRO70fucd table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-soRO70fucd table.table {
  background: #ffffff;
}
.cid-soRO70fucd tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-soRO70fucd th:after,
.cid-soRO70fucd th:before {
  display: none !important;
}
.cid-soRO70fucd .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-soRO70fucd .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-soRO70fucd table th,
  .cid-soRO70fucd table td {
    padding: .75rem;
  }
}
.cid-soRO70fucd .body-item {
  text-align: left;
}
.cid-soRO70fucd .mbr-text {
  color: #e7f10a;
}
.cid-soRO70fucd .head-item {
  color: #232323;
}
.cid-soRO70fucd .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-soRO70fucd .mbr-section-title,
.cid-soRO70fucd .head-item {
  color: #a61a3d;
}
.cid-soRO70fucd .mbr-section-subtitle,
.cid-soRO70fucd .table tbody .tableColumns .body-item,
.cid-soRO70fucd .table {
  color: #04367c;
  text-align: center;
}
.cid-soRO70fucd .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spkQHO3UMz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spkQHO3UMz .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spkQHO3UMz .mbr-text {
  color: #04367c;
}
.cid-soRO9fNNEI {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-soRO9fNNEI .mbr-section-title {
  color: #e43f3f;
}
.cid-soRO9fNNEI .mbr-section-subtitle {
  color: #4479d9;
}
.cid-soROctviJu {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-soROctviJu .mbr-overlay {
  background: #232323;
}
.cid-soROeDqa2J {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-soROeDqa2J .container-fluid {
  padding: 0 3rem;
}
.cid-soROeDqa2J .mbr-section-subtitle {
  color: #767676;
}
.cid-soROeDqa2J .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-soROeDqa2J .table-wrapper {
  margin: 0 auto;
}
.cid-soROeDqa2J table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-soROeDqa2J table thead tr {
  border: none !important;
}
.cid-soROeDqa2J table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-soROeDqa2J table tr td {
  border-color: #eceeef;
}
.cid-soROeDqa2J table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-soROeDqa2J table.table {
  background: #ffffff;
}
.cid-soROeDqa2J tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-soROeDqa2J th:after,
.cid-soROeDqa2J th:before {
  display: none !important;
}
.cid-soROeDqa2J .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-soROeDqa2J .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-soROeDqa2J table th,
  .cid-soROeDqa2J table td {
    padding: .75rem;
  }
}
.cid-soROeDqa2J .body-item {
  text-align: left;
}
.cid-soROeDqa2J .mbr-text {
  color: #e7f10a;
}
.cid-soROeDqa2J .head-item {
  color: #232323;
}
.cid-soROeDqa2J .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-soROeDqa2J .mbr-section-title,
.cid-soROeDqa2J .head-item {
  color: #a61a3d;
}
.cid-soROeDqa2J .mbr-section-subtitle,
.cid-soROeDqa2J .table tbody .tableColumns .body-item,
.cid-soROeDqa2J .table {
  color: #04367c;
  text-align: center;
}
.cid-soROeDqa2J .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spl6zaW3cY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spl6zaW3cY .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spl6zaW3cY .mbr-text {
  color: #04367c;
}
.cid-splktLbIUU {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-splktLbIUU .mbr-section-title {
  color: #e43f3f;
}
.cid-splktLbIUU .mbr-section-subtitle {
  color: #4479d9;
}
.cid-splkyJBRiL {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-splkyJBRiL .mbr-overlay {
  background: #232323;
}
.cid-splkJl2Jqx {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-splkJl2Jqx .container-fluid {
  padding: 0 3rem;
}
.cid-splkJl2Jqx .mbr-section-subtitle {
  color: #767676;
}
.cid-splkJl2Jqx .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-splkJl2Jqx .table-wrapper {
  margin: 0 auto;
}
.cid-splkJl2Jqx table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-splkJl2Jqx table thead tr {
  border: none !important;
}
.cid-splkJl2Jqx table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-splkJl2Jqx table tr td {
  border-color: #eceeef;
}
.cid-splkJl2Jqx table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-splkJl2Jqx table.table {
  background: #ffffff;
}
.cid-splkJl2Jqx tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-splkJl2Jqx th:after,
.cid-splkJl2Jqx th:before {
  display: none !important;
}
.cid-splkJl2Jqx .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-splkJl2Jqx .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-splkJl2Jqx table th,
  .cid-splkJl2Jqx table td {
    padding: .75rem;
  }
}
.cid-splkJl2Jqx .body-item {
  text-align: left;
}
.cid-splkJl2Jqx .mbr-text {
  color: #e7f10a;
}
.cid-splkJl2Jqx .head-item {
  color: #232323;
}
.cid-splkJl2Jqx .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-splkJl2Jqx .mbr-section-title,
.cid-splkJl2Jqx .head-item {
  color: #a61a3d;
}
.cid-splkJl2Jqx .mbr-section-subtitle,
.cid-splkJl2Jqx .table tbody .tableColumns .body-item,
.cid-splkJl2Jqx .table {
  color: #04367c;
  text-align: center;
}
.cid-splkJl2Jqx .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-splkML2WaV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-splkML2WaV .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-splkML2WaV .mbr-text {
  color: #04367c;
}
.cid-splkRNJGeH {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-splkRNJGeH .mbr-section-title {
  color: #e43f3f;
}
.cid-splkRNJGeH .mbr-section-subtitle {
  color: #4479d9;
}
.cid-splkTrUS62 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-splkTrUS62 .mbr-overlay {
  background: #232323;
}
.cid-sr2oELXKTI {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sr2oELXKTI li {
  list-style: none;
}
.cid-sr2oELXKTI .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-sr2oELXKTI .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-sr2oELXKTI h4 {
  margin: 0;
}
.cid-sr2oELXKTI .item {
  color: #57468b;
}
.cid-sr2oELXKTI ul {
  padding: 0;
  margin: 0;
}
.cid-sr2oELXKTI .col-title {
  color: #57468b;
}
.cid-sr2oELXKTI .col-title1 {
  color: #bfceff;
}
.cid-sr2oELXKTI .col-title2 {
  color: #5580ff;
}
.cid-sr2oELXKTI .col-title3 {
  color: #ff8a73;
}
.cid-sr2oELXKTI .col-title4 {
  color: #57468b;
}
.cid-sr2oELXKTI .item1 {
  color: #000000;
}
.cid-sr2oELXKTI .item2 {
  color: #000000;
}
.cid-sr2oELXKTI .item3 {
  color: #000000;
}
.cid-sr2oELXKTI .item4 {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-sr2oELXKTI .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-splkZ291Ga {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-splkZ291Ga .container-fluid {
  padding: 0 3rem;
}
.cid-splkZ291Ga .mbr-section-subtitle {
  color: #767676;
}
.cid-splkZ291Ga .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-splkZ291Ga .table-wrapper {
  margin: 0 auto;
}
.cid-splkZ291Ga table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-splkZ291Ga table thead tr {
  border: none !important;
}
.cid-splkZ291Ga table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-splkZ291Ga table tr td {
  border-color: #eceeef;
}
.cid-splkZ291Ga table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-splkZ291Ga table.table {
  background: #ffffff;
}
.cid-splkZ291Ga tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-splkZ291Ga th:after,
.cid-splkZ291Ga th:before {
  display: none !important;
}
.cid-splkZ291Ga .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-splkZ291Ga .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-splkZ291Ga table th,
  .cid-splkZ291Ga table td {
    padding: .75rem;
  }
}
.cid-splkZ291Ga .body-item {
  text-align: left;
}
.cid-splkZ291Ga .mbr-text {
  color: #e7f10a;
}
.cid-splkZ291Ga .head-item {
  color: #232323;
}
.cid-splkZ291Ga .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-splkZ291Ga .mbr-section-title,
.cid-splkZ291Ga .head-item {
  color: #a61a3d;
}
.cid-splkZ291Ga .mbr-section-subtitle,
.cid-splkZ291Ga .table tbody .tableColumns .body-item,
.cid-splkZ291Ga .table {
  color: #04367c;
  text-align: center;
}
.cid-splkZ291Ga .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spll2rciyE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spll2rciyE .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spll2rciyE .mbr-text {
  color: #04367c;
}
.cid-spxYiEzG5m {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spxYiEzG5m .mbr-section-title {
  color: #e43f3f;
}
.cid-spxYiEzG5m .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spxXuQ0Zfe {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spxXuQ0Zfe .mbr-overlay {
  background: #232323;
}
.cid-srdOwqAxHo {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-srdOwqAxHo li {
  list-style: none;
}
.cid-srdOwqAxHo .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-srdOwqAxHo .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-srdOwqAxHo h4 {
  margin: 0;
}
.cid-srdOwqAxHo .item {
  color: #57468b;
}
.cid-srdOwqAxHo ul {
  padding: 0;
  margin: 0;
}
.cid-srdOwqAxHo .col-title {
  color: #57468b;
}
.cid-srdOwqAxHo .col-title1 {
  color: #bfceff;
}
.cid-srdOwqAxHo .col-title2 {
  color: #5580ff;
}
.cid-srdOwqAxHo .col-title3 {
  color: #ff8a73;
}
.cid-srdOwqAxHo .col-title4 {
  color: #57468b;
}
.cid-srdOwqAxHo .item1 {
  color: #04367c;
}
.cid-srdOwqAxHo .item2 {
  color: #04367c;
}
.cid-srdOwqAxHo .item3 {
  color: #04367c;
}
.cid-srdOwqAxHo .item4 {
  color: #04367c;
}
@media (max-width: 768px) {
  .cid-srdOwqAxHo .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-spxXy6G5l8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spxXy6G5l8 .container-fluid {
  padding: 0 3rem;
}
.cid-spxXy6G5l8 .mbr-section-subtitle {
  color: #767676;
}
.cid-spxXy6G5l8 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spxXy6G5l8 .table-wrapper {
  margin: 0 auto;
}
.cid-spxXy6G5l8 table {
  width: 95% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spxXy6G5l8 table thead tr {
  border: none !important;
}
.cid-spxXy6G5l8 table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spxXy6G5l8 table tr td {
  border-color: #eceeef;
}
.cid-spxXy6G5l8 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spxXy6G5l8 table.table {
  background: #ffffff;
}
.cid-spxXy6G5l8 tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spxXy6G5l8 th:after,
.cid-spxXy6G5l8 th:before {
  display: none !important;
}
.cid-spxXy6G5l8 .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spxXy6G5l8 .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spxXy6G5l8 table th,
  .cid-spxXy6G5l8 table td {
    padding: .75rem;
  }
}
.cid-spxXy6G5l8 .body-item {
  text-align: left;
}
.cid-spxXy6G5l8 .mbr-text {
  color: #e7f10a;
}
.cid-spxXy6G5l8 .head-item {
  color: #232323;
}
.cid-spxXy6G5l8 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spxXy6G5l8 .mbr-section-title,
.cid-spxXy6G5l8 .head-item {
  color: #a61a3d;
}
.cid-spxXy6G5l8 .mbr-section-subtitle,
.cid-spxXy6G5l8 .table tbody .tableColumns .body-item,
.cid-spxXy6G5l8 .table {
  color: #04367c;
  text-align: center;
}
.cid-spxXy6G5l8 .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spxXAyGRlF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spxXAyGRlF .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spxXAyGRlF .mbr-text {
  color: #04367c;
}
.cid-spxXCwFPuK {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spxXCwFPuK .mbr-section-title {
  color: #e43f3f;
}
.cid-spxXCwFPuK .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spxXKJkzej {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spxXKJkzej .mbr-overlay {
  background: #232323;
}
.cid-spxXOHhjpO {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spxXOHhjpO .container-fluid {
  padding: 0 3rem;
}
.cid-spxXOHhjpO .mbr-section-subtitle {
  color: #767676;
}
.cid-spxXOHhjpO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spxXOHhjpO .table-wrapper {
  margin: 0 auto;
}
.cid-spxXOHhjpO table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spxXOHhjpO table thead tr {
  border: none !important;
}
.cid-spxXOHhjpO table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spxXOHhjpO table tr td {
  border-color: #eceeef;
}
.cid-spxXOHhjpO table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spxXOHhjpO table.table {
  background: #ffffff;
}
.cid-spxXOHhjpO tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spxXOHhjpO th:after,
.cid-spxXOHhjpO th:before {
  display: none !important;
}
.cid-spxXOHhjpO .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spxXOHhjpO .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spxXOHhjpO table th,
  .cid-spxXOHhjpO table td {
    padding: .75rem;
  }
}
.cid-spxXOHhjpO .body-item {
  text-align: left;
}
.cid-spxXOHhjpO .mbr-text {
  color: #e7f10a;
}
.cid-spxXOHhjpO .head-item {
  color: #232323;
}
.cid-spxXOHhjpO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spxXOHhjpO .mbr-section-title,
.cid-spxXOHhjpO .head-item {
  color: #a61a3d;
}
.cid-spxXOHhjpO .mbr-section-subtitle,
.cid-spxXOHhjpO .table tbody .tableColumns .body-item,
.cid-spxXOHhjpO .table {
  color: #04367c;
  text-align: center;
}
.cid-spxXOHhjpO .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spxXRTHyih {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spxXRTHyih .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spxXRTHyih .mbr-text {
  color: #04367c;
}
.cid-spxXTQuDWH {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spxXTQuDWH .mbr-section-title {
  color: #e43f3f;
}
.cid-spxXTQuDWH .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spxXXfggtl {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spxXXfggtl .mbr-overlay {
  background: #232323;
}
.cid-spxXZiSnAj {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spxXZiSnAj .container-fluid {
  padding: 0 3rem;
}
.cid-spxXZiSnAj .mbr-section-subtitle {
  color: #767676;
}
.cid-spxXZiSnAj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spxXZiSnAj .table-wrapper {
  margin: 0 auto;
}
.cid-spxXZiSnAj table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spxXZiSnAj table thead tr {
  border: none !important;
}
.cid-spxXZiSnAj table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spxXZiSnAj table tr td {
  border-color: #eceeef;
}
.cid-spxXZiSnAj table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spxXZiSnAj table.table {
  background: #ffffff;
}
.cid-spxXZiSnAj tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spxXZiSnAj th:after,
.cid-spxXZiSnAj th:before {
  display: none !important;
}
.cid-spxXZiSnAj .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spxXZiSnAj .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spxXZiSnAj table th,
  .cid-spxXZiSnAj table td {
    padding: .75rem;
  }
}
.cid-spxXZiSnAj .body-item {
  text-align: left;
}
.cid-spxXZiSnAj .mbr-text {
  color: #e7f10a;
}
.cid-spxXZiSnAj .head-item {
  color: #232323;
}
.cid-spxXZiSnAj .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spxXZiSnAj .mbr-section-title,
.cid-spxXZiSnAj .head-item {
  color: #a61a3d;
}
.cid-spxXZiSnAj .mbr-section-subtitle,
.cid-spxXZiSnAj .table tbody .tableColumns .body-item,
.cid-spxXZiSnAj .table {
  color: #04367c;
  text-align: center;
}
.cid-spxXZiSnAj .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spxY2Z3UZg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spxY2Z3UZg .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spxY2Z3UZg .mbr-text {
  color: #04367c;
}
.cid-spxY4xhRsC {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spxY4xhRsC .mbr-section-title {
  color: #e43f3f;
}
.cid-spxY4xhRsC .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spxYXenoHO {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spxYXenoHO .mbr-overlay {
  background: #232323;
}
.cid-spxYZiODdt {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spxYZiODdt .container-fluid {
  padding: 0 3rem;
}
.cid-spxYZiODdt .mbr-section-subtitle {
  color: #767676;
}
.cid-spxYZiODdt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spxYZiODdt .table-wrapper {
  margin: 0 auto;
}
.cid-spxYZiODdt table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spxYZiODdt table thead tr {
  border: none !important;
}
.cid-spxYZiODdt table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spxYZiODdt table tr td {
  border-color: #eceeef;
}
.cid-spxYZiODdt table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spxYZiODdt table.table {
  background: #ffffff;
}
.cid-spxYZiODdt tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spxYZiODdt th:after,
.cid-spxYZiODdt th:before {
  display: none !important;
}
.cid-spxYZiODdt .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spxYZiODdt .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spxYZiODdt table th,
  .cid-spxYZiODdt table td {
    padding: .75rem;
  }
}
.cid-spxYZiODdt .body-item {
  text-align: left;
}
.cid-spxYZiODdt .mbr-text {
  color: #e7f10a;
}
.cid-spxYZiODdt .head-item {
  color: #232323;
}
.cid-spxYZiODdt .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spxYZiODdt .mbr-section-title,
.cid-spxYZiODdt .head-item {
  color: #a61a3d;
}
.cid-spxYZiODdt .mbr-section-subtitle,
.cid-spxYZiODdt .table tbody .tableColumns .body-item,
.cid-spxYZiODdt .table {
  color: #04367c;
  text-align: center;
}
.cid-spxYZiODdt .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spxZ0SF3bk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spxZ0SF3bk .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spxZ0SF3bk .mbr-text {
  color: #04367c;
}
.cid-sngdGjiBkK .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sngdGjiBkK .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sngdGjiBkK a {
  font-style: normal;
}
.cid-sngdGjiBkK .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sngdGjiBkK .show {
  overflow: visible;
}
.cid-sngdGjiBkK .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sngdGjiBkK .dropdown-item:active {
  background-color: transparent;
}
.cid-sngdGjiBkK .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sngdGjiBkK .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sngdGjiBkK .nav-item:focus,
.cid-sngdGjiBkK .nav-link:focus {
  outline: none;
}
.cid-sngdGjiBkK .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sngdGjiBkK .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sngdGjiBkK .menu-logo {
  margin-right: auto;
}
.cid-sngdGjiBkK .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sngdGjiBkK .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-sngdGjiBkK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sngdGjiBkK .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sngdGjiBkK .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sngdGjiBkK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sngdGjiBkK .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sngdGjiBkK .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sngdGjiBkK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sngdGjiBkK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sngdGjiBkK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sngdGjiBkK .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sngdGjiBkK .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sngdGjiBkK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sngdGjiBkK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sngdGjiBkK .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sngdGjiBkK .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sngdGjiBkK .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sngdGjiBkK .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sngdGjiBkK .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sngdGjiBkK .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sngdGjiBkK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sngdGjiBkK .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sngdGjiBkK .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sngdGjiBkK button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sngdGjiBkK button.navbar-toggler:focus {
  outline: none;
}
.cid-sngdGjiBkK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-sngdGjiBkK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sngdGjiBkK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sngdGjiBkK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sngdGjiBkK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sngdGjiBkK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sngdGjiBkK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sngdGjiBkK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sngdGjiBkK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sngdGjiBkK .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sngdGjiBkK .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sngdGjiBkK .collapsed .btn {
  display: -webkit-flex;
}
.cid-sngdGjiBkK .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sngdGjiBkK .collapsed .navbar-collapse.collapsing,
.cid-sngdGjiBkK .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sngdGjiBkK .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sngdGjiBkK .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sngdGjiBkK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sngdGjiBkK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sngdGjiBkK .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sngdGjiBkK .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sngdGjiBkK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sngdGjiBkK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sngdGjiBkK .collapsed button.navbar-toggler {
  display: block;
}
.cid-sngdGjiBkK .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sngdGjiBkK .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sngdGjiBkK .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-sngdGjiBkK .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sngdGjiBkK .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sngdGjiBkK .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;
}
@media (max-width: 991px) {
  .cid-sngdGjiBkK.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sngdGjiBkK img {
    height: 3.8rem !important;
  }
  .cid-sngdGjiBkK .btn {
    display: -webkit-flex;
  }
  .cid-sngdGjiBkK button.navbar-toggler {
    display: block;
  }
  .cid-sngdGjiBkK .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sngdGjiBkK .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sngdGjiBkK .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sngdGjiBkK .navbar-collapse.collapsing,
  .cid-sngdGjiBkK .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sngdGjiBkK .navbar-collapse.collapsing .navbar-nav,
  .cid-sngdGjiBkK .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sngdGjiBkK .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sngdGjiBkK .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sngdGjiBkK .navbar-collapse.collapsing .navbar-buttons,
  .cid-sngdGjiBkK .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sngdGjiBkK .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sngdGjiBkK .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sngdGjiBkK .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-sngdGjiBkK .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sngdGjiBkK .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sngdGjiBkK .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;
  }
}
@media (max-width: 767px) {
  .cid-sngdGjiBkK .nav-link {
    justify-content: start !important;
  }
  .cid-sngdGjiBkK .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sngdGjiBkK .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sngdGjiBkK .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sngdGjiBkK .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sngdGjiBkK .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sngdGjiBkK .nav-link:hover,
.cid-sngdGjiBkK .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-sngdGjiBkK .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sngdGjiBkK .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sqLCzmvkCJ {
  padding-top: 160px;
  background-image: url("../../../assets/images/background12.jpg");
}
.cid-sqLCzmvkCJ .container {
  margin-bottom: 15%;
}
.cid-sqLCzmvkCJ .content-container .btn-bgr {
  z-index: 0;
}
.cid-sqLCzmvkCJ .container-boxes {
  padding-bottom: 30px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sqLCzmvkCJ .icon-block-top span {
  background-color: #7516d2;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sqLCzmvkCJ .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sqLCzmvkCJ .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sqLCzmvkCJ .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sqLCzmvkCJ .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sqLCzmvkCJ .box-item-text,
.cid-sqLCzmvkCJ .mbr-section-btn {
  color: #8d97ad;
}
.cid-sqLCzmvkCJ .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sqLCzmvkCJ .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sqLCzmvkCJ .box-list li:last-child {
  border-bottom: none;
}
.cid-sqLCzmvkCJ .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sqLCzmvkCJ .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sqLCzmvkCJ .mbr-section-btn {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.cid-sqLCzmvkCJ .mbr-section-btn > .btn-underline {
  padding: .5rem;
}
@media (min-width: 992px) {
  .cid-sqLCzmvkCJ .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sqLCzmvkCJ .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sqLCzmvkCJ .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sqLCzmvkCJ .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sqLCzmvkCJ .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sqLCzmvkCJ .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sqLCzmvkCJ .mbr-text {
  color: #efefef;
}
.cid-sqLCzmvkCJ H1 {
  color: #e3ec1a;
}
.cid-sngdGsj7rL {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sngdGsj7rL .mbr-section-subtitle {
  color: #f25916;
  text-align: center;
}
.cid-sngdGsj7rL .mbr-section-title {
  text-align: center;
  color: #a61a3d;
}
.cid-sngdGxawEm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sngdGxawEm .counter-container {
  color: #464646;
}
.cid-sngdGxawEm .counter-container div {
  margin-bottom: 1rem;
  padding-left: 5rem;
}
.cid-sngdGxawEm .counter-container li {
  list-style: none;
  padding-left: 6rem;
  position: relative;
}
.cid-sngdGxawEm .counter-container .counter {
  text-overflow: clip;
  overflow: hidden;
  white-space: nowrap;
  font-size: 40px;
  position: absolute;
  left: 0;
  display: inline-block;
  margin: 0 0 5px;
  line-height: 40px;
  transition: all .2s;
  width: 60px;
  height: 40px;
}
.cid-sngdGxawEm P {
  text-align: left;
  color: #04367c;
}
.cid-sngdGxawEm H4 {
  color: #a61a3d;
}
.cid-sngdGxawEm H3 {
  color: #000000;
}
.cid-sqE3BJBP7r {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-sqE3BJBP7r .mbr-overlay {
  background: #232323;
}
.cid-sqQqDK9gpy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-sqQqDK9gpy .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-sqQqDK9gpy .card-title {
  padding: .5rem 1rem .5rem 4rem;
  margin-left: .5rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #5eeebb, #51aafa);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-sqQqDK9gpy .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-sqQqDK9gpy .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-sqQqDK9gpy .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sqQqDK9gpy .card-text,
.cid-sqQqDK9gpy .mbr-subtitle {
  color: #8d97ad;
}
.cid-sqQqDK9gpy .card-sign {
  padding-top: .5rem;
}
.cid-sqQqDK9gpy .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-sqQqDK9gpy .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-sqQqDK9gpy .card-title {
    text-align: center;
  }
  .cid-sqQqDK9gpy p.mbr-text,
  .cid-sqQqDK9gpy p.date {
    text-align: center;
  }
}
.cid-sqQqDK9gpy .card-box {
  background: #f4f8fa;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-sqQqDK9gpy H2 {
  color: #f25916;
}
.cid-sqQqDK9gpy .mbr-subtitle {
  color: #000000;
}
.cid-sngdGyKRar {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-sngdGyKRar .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-sngdGyKRar .content-panel {
  padding: 2rem;
  background-color: #08579f;
  border-radius: .25rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sngdGyKRar .content-block {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-sngdGyKRar .form-group,
  .cid-sngdGyKRar .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-sngdGyKRar .form-control {
  border-radius: .25rem !important;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-sngdGyKRar textarea.form-control {
  min-height: 170px;
}
@media (max-width: 768px) {
  .cid-sngdGyKRar .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sngdGyKRar .text-block {
    margin-bottom: 2rem;
  }
}
.cid-spy0RXooJU .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-spy0RXooJU .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-spy0RXooJU a {
  font-style: normal;
}
.cid-spy0RXooJU .navbar-buttons {
  flex-wrap: wrap;
}
.cid-spy0RXooJU .show {
  overflow: visible;
}
.cid-spy0RXooJU .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-spy0RXooJU .dropdown-item:active {
  background-color: transparent;
}
.cid-spy0RXooJU .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-spy0RXooJU .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-spy0RXooJU .nav-item:focus,
.cid-spy0RXooJU .nav-link:focus {
  outline: none;
}
.cid-spy0RXooJU .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spy0RXooJU .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-spy0RXooJU .menu-logo {
  margin-right: auto;
}
.cid-spy0RXooJU .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spy0RXooJU .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-spy0RXooJU .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-spy0RXooJU .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-spy0RXooJU .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-spy0RXooJU .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-spy0RXooJU .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-spy0RXooJU .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-spy0RXooJU .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-spy0RXooJU .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spy0RXooJU .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-spy0RXooJU .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-spy0RXooJU .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-spy0RXooJU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-spy0RXooJU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spy0RXooJU .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-spy0RXooJU .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spy0RXooJU .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-spy0RXooJU .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-spy0RXooJU .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-spy0RXooJU .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-spy0RXooJU .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-spy0RXooJU .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-spy0RXooJU .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-spy0RXooJU button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-spy0RXooJU button.navbar-toggler:focus {
  outline: none;
}
.cid-spy0RXooJU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-spy0RXooJU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spy0RXooJU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spy0RXooJU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spy0RXooJU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spy0RXooJU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spy0RXooJU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spy0RXooJU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spy0RXooJU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-spy0RXooJU .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-spy0RXooJU .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spy0RXooJU .collapsed .btn {
  display: -webkit-flex;
}
.cid-spy0RXooJU .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-spy0RXooJU .collapsed .navbar-collapse.collapsing,
.cid-spy0RXooJU .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-spy0RXooJU .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-spy0RXooJU .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-spy0RXooJU .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-spy0RXooJU .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-spy0RXooJU .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-spy0RXooJU .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-spy0RXooJU .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-spy0RXooJU .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-spy0RXooJU .collapsed button.navbar-toggler {
  display: block;
}
.cid-spy0RXooJU .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-spy0RXooJU .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spy0RXooJU .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-spy0RXooJU .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-spy0RXooJU .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-spy0RXooJU .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;
}
@media (max-width: 991px) {
  .cid-spy0RXooJU.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spy0RXooJU img {
    height: 3.8rem !important;
  }
  .cid-spy0RXooJU .btn {
    display: -webkit-flex;
  }
  .cid-spy0RXooJU button.navbar-toggler {
    display: block;
  }
  .cid-spy0RXooJU .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-spy0RXooJU .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spy0RXooJU .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-spy0RXooJU .navbar-collapse.collapsing,
  .cid-spy0RXooJU .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-spy0RXooJU .navbar-collapse.collapsing .navbar-nav,
  .cid-spy0RXooJU .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-spy0RXooJU .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-spy0RXooJU .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-spy0RXooJU .navbar-collapse.collapsing .navbar-buttons,
  .cid-spy0RXooJU .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-spy0RXooJU .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-spy0RXooJU .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-spy0RXooJU .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-spy0RXooJU .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-spy0RXooJU .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-spy0RXooJU .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;
  }
}
@media (max-width: 767px) {
  .cid-spy0RXooJU .nav-link {
    justify-content: start !important;
  }
  .cid-spy0RXooJU .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-spy0RXooJU .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-spy0RXooJU .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-spy0RXooJU .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-spy0RXooJU .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-spy0RXooJU .nav-link:hover,
.cid-spy0RXooJU .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-spy0RXooJU .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-spy0RXooJU .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-spy0RYSuha {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-spy0RYSuha .mbr-overlay {
  background: #2bdc9d;
}
.cid-spy0RYSuha .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-spy0RYSuha .mbr-section-subtitle,
.cid-spy0RYSuha .mbr-section-btn {
  color: #e3ec1a;
}
.cid-spy0RYSuha H1 {
  color: #ff4f7b;
}
.cid-spy0RZuQ9z {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-spy0RZuQ9z .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-spy0RZuQ9z .mbr-section-title {
  margin: 0;
}
.cid-spy0RZuQ9z .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spy0RZuQ9z .card-img span {
  color: #1dc9cb;
}
.cid-spy0RZuQ9z .row-item {
  margin-bottom: 2rem;
}
.cid-spy0RZuQ9z .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-spy0RZuQ9z .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-spy0RZuQ9z .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-spy0RZuQ9z .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spy0RZuQ9z .mbr-card-title,
.cid-spy0RZuQ9z .card-img {
  color: #a61a3d;
}
.cid-spy0S09Uab {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-spy0S09Uab .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-spy0S09Uab .mbr-section-title {
  margin: 0;
}
.cid-spy0S09Uab .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spy0S09Uab .card-img span {
  color: #1dc9cb;
}
.cid-spy0S09Uab .row-item {
  margin-bottom: 2rem;
}
.cid-spy0S09Uab .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-spy0S09Uab .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-spy0S09Uab .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-spy0S09Uab .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spy0S09Uab .mbr-card-title,
.cid-spy0S09Uab .card-img {
  color: #a61a3d;
}
.cid-spy0S1wvO5 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0S1wvO5 .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0S1wvO5 .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0S1WCLj {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0S1WCLj .mbr-overlay {
  background: #232323;
}
.cid-spy0S2DhUZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0S2DhUZ .container-fluid {
  padding: 0 3rem;
}
.cid-spy0S2DhUZ .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-spy0S2DhUZ .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-spy0S2DhUZ .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-spy0S2DhUZ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-spy0S2DhUZ .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-spy0S2DhUZ a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-spy0S2DhUZ a.close:hover {
  color: #ffffff;
}
.cid-spy0S2DhUZ svg {
  transition: all 0.5s ease-in;
}
.cid-spy0S2DhUZ svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-spy0S2DhUZ svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-spy0S2DhUZ svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-spy0S2DhUZ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-spy0S3kKUT {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0S3kKUT .container-fluid {
  padding: 0 3rem;
}
.cid-spy0S3kKUT .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0S3kKUT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0S3kKUT .table-wrapper {
  margin: 0 auto;
}
.cid-spy0S3kKUT table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0S3kKUT table thead tr {
  border: none !important;
}
.cid-spy0S3kKUT table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0S3kKUT table tr td {
  border-color: #eceeef;
}
.cid-spy0S3kKUT table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0S3kKUT table.table {
  background: #ffffff;
}
.cid-spy0S3kKUT tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0S3kKUT th:after,
.cid-spy0S3kKUT th:before {
  display: none !important;
}
.cid-spy0S3kKUT .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0S3kKUT .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0S3kKUT table th,
  .cid-spy0S3kKUT table td {
    padding: .75rem;
  }
}
.cid-spy0S3kKUT .body-item {
  text-align: left;
}
.cid-spy0S3kKUT .mbr-text {
  color: #e7f10a;
}
.cid-spy0S3kKUT .head-item {
  color: #232323;
}
.cid-spy0S3kKUT .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0S3kKUT .mbr-section-title,
.cid-spy0S3kKUT .head-item {
  color: #a61a3d;
}
.cid-spy0S3kKUT .mbr-section-subtitle,
.cid-spy0S3kKUT .table tbody .tableColumns .body-item,
.cid-spy0S3kKUT .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0S3kKUT .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0S5C2pB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0S5C2pB .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0S5C2pB .mbr-text {
  color: #04367c;
}
.cid-spy0S66fet {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0S66fet .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0S66fet .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0S6DVdl {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0S6DVdl .mbr-overlay {
  background: #232323;
}
.cid-spy0S7zEZ3 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0S7zEZ3 .container-fluid {
  padding: 0 3rem;
}
.cid-spy0S7zEZ3 .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0S7zEZ3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0S7zEZ3 .table-wrapper {
  margin: 0 auto;
}
.cid-spy0S7zEZ3 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0S7zEZ3 table thead tr {
  border: none !important;
}
.cid-spy0S7zEZ3 table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0S7zEZ3 table tr td {
  border-color: #eceeef;
}
.cid-spy0S7zEZ3 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0S7zEZ3 table.table {
  background: #ffffff;
}
.cid-spy0S7zEZ3 tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0S7zEZ3 th:after,
.cid-spy0S7zEZ3 th:before {
  display: none !important;
}
.cid-spy0S7zEZ3 .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0S7zEZ3 .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0S7zEZ3 table th,
  .cid-spy0S7zEZ3 table td {
    padding: .75rem;
  }
}
.cid-spy0S7zEZ3 .body-item {
  text-align: left;
}
.cid-spy0S7zEZ3 .mbr-text {
  color: #e7f10a;
}
.cid-spy0S7zEZ3 .head-item {
  color: #232323;
}
.cid-spy0S7zEZ3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0S7zEZ3 .mbr-section-title,
.cid-spy0S7zEZ3 .head-item {
  color: #a61a3d;
}
.cid-spy0S7zEZ3 .mbr-section-subtitle,
.cid-spy0S7zEZ3 .table tbody .tableColumns .body-item,
.cid-spy0S7zEZ3 .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0S7zEZ3 .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0S9yHpM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0S9yHpM .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0S9yHpM .mbr-text {
  color: #04367c;
}
.cid-spy0Sa6cNn {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0Sa6cNn .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0Sa6cNn .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0SaW27A {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0SaW27A .mbr-overlay {
  background: #232323;
}
.cid-spy0SboJF2 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0SboJF2 .container-fluid {
  padding: 0 3rem;
}
.cid-spy0SboJF2 .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0SboJF2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0SboJF2 .table-wrapper {
  margin: 0 auto;
}
.cid-spy0SboJF2 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0SboJF2 table thead tr {
  border: none !important;
}
.cid-spy0SboJF2 table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0SboJF2 table tr td {
  border-color: #eceeef;
}
.cid-spy0SboJF2 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0SboJF2 table.table {
  background: #ffffff;
}
.cid-spy0SboJF2 tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0SboJF2 th:after,
.cid-spy0SboJF2 th:before {
  display: none !important;
}
.cid-spy0SboJF2 .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0SboJF2 .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0SboJF2 table th,
  .cid-spy0SboJF2 table td {
    padding: .75rem;
  }
}
.cid-spy0SboJF2 .body-item {
  text-align: left;
}
.cid-spy0SboJF2 .mbr-text {
  color: #e7f10a;
}
.cid-spy0SboJF2 .head-item {
  color: #232323;
}
.cid-spy0SboJF2 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0SboJF2 .mbr-section-title,
.cid-spy0SboJF2 .head-item {
  color: #a61a3d;
}
.cid-spy0SboJF2 .mbr-section-subtitle,
.cid-spy0SboJF2 .table tbody .tableColumns .body-item,
.cid-spy0SboJF2 .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0SboJF2 .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0SdAwSw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0SdAwSw .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0SdAwSw .mbr-text {
  color: #04367c;
}
.cid-spy0Se4KGt {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0Se4KGt .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0Se4KGt .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0SeBIxt {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0SeBIxt .mbr-overlay {
  background: #232323;
}
.cid-spy0Sfwo0L {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0Sfwo0L .container-fluid {
  padding: 0 3rem;
}
.cid-spy0Sfwo0L .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0Sfwo0L .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0Sfwo0L .table-wrapper {
  margin: 0 auto;
}
.cid-spy0Sfwo0L table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0Sfwo0L table thead tr {
  border: none !important;
}
.cid-spy0Sfwo0L table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0Sfwo0L table tr td {
  border-color: #eceeef;
}
.cid-spy0Sfwo0L table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0Sfwo0L table.table {
  background: #ffffff;
}
.cid-spy0Sfwo0L tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0Sfwo0L th:after,
.cid-spy0Sfwo0L th:before {
  display: none !important;
}
.cid-spy0Sfwo0L .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0Sfwo0L .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0Sfwo0L table th,
  .cid-spy0Sfwo0L table td {
    padding: .75rem;
  }
}
.cid-spy0Sfwo0L .body-item {
  text-align: left;
}
.cid-spy0Sfwo0L .mbr-text {
  color: #e7f10a;
}
.cid-spy0Sfwo0L .head-item {
  color: #232323;
}
.cid-spy0Sfwo0L .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0Sfwo0L .mbr-section-title,
.cid-spy0Sfwo0L .head-item {
  color: #a61a3d;
}
.cid-spy0Sfwo0L .mbr-section-subtitle,
.cid-spy0Sfwo0L .table tbody .tableColumns .body-item,
.cid-spy0Sfwo0L .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0Sfwo0L .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0ShFpDr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0ShFpDr .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0ShFpDr .mbr-text {
  color: #04367c;
}
.cid-spy0SiapFP {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0SiapFP .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0SiapFP .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0SiRwnr {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0SiRwnr .mbr-overlay {
  background: #232323;
}
.cid-spy0SjMapA {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0SjMapA .container-fluid {
  padding: 0 3rem;
}
.cid-spy0SjMapA .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0SjMapA .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0SjMapA .table-wrapper {
  margin: 0 auto;
}
.cid-spy0SjMapA table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0SjMapA table thead tr {
  border: none !important;
}
.cid-spy0SjMapA table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0SjMapA table tr td {
  border-color: #eceeef;
}
.cid-spy0SjMapA table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0SjMapA table.table {
  background: #ffffff;
}
.cid-spy0SjMapA tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0SjMapA th:after,
.cid-spy0SjMapA th:before {
  display: none !important;
}
.cid-spy0SjMapA .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0SjMapA .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0SjMapA table th,
  .cid-spy0SjMapA table td {
    padding: .75rem;
  }
}
.cid-spy0SjMapA .body-item {
  text-align: left;
}
.cid-spy0SjMapA .mbr-text {
  color: #e7f10a;
}
.cid-spy0SjMapA .head-item {
  color: #232323;
}
.cid-spy0SjMapA .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0SjMapA .mbr-section-title,
.cid-spy0SjMapA .head-item {
  color: #a61a3d;
}
.cid-spy0SjMapA .mbr-section-subtitle,
.cid-spy0SjMapA .table tbody .tableColumns .body-item,
.cid-spy0SjMapA .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0SjMapA .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0SlYrOa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0SlYrOa .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0SlYrOa .mbr-text {
  color: #04367c;
}
.cid-spy0SmwLJR {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0SmwLJR .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0SmwLJR .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0Sn7oq9 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0Sn7oq9 .mbr-overlay {
  background: #232323;
}
.cid-spy0SofGGh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0SofGGh .container-fluid {
  padding: 0 3rem;
}
.cid-spy0SofGGh .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0SofGGh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0SofGGh .table-wrapper {
  margin: 0 auto;
}
.cid-spy0SofGGh table {
  width: 95% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0SofGGh table thead tr {
  border: none !important;
}
.cid-spy0SofGGh table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0SofGGh table tr td {
  border-color: #eceeef;
}
.cid-spy0SofGGh table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0SofGGh table.table {
  background: #ffffff;
}
.cid-spy0SofGGh tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0SofGGh th:after,
.cid-spy0SofGGh th:before {
  display: none !important;
}
.cid-spy0SofGGh .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0SofGGh .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0SofGGh table th,
  .cid-spy0SofGGh table td {
    padding: .75rem;
  }
}
.cid-spy0SofGGh .body-item {
  text-align: left;
}
.cid-spy0SofGGh .mbr-text {
  color: #e7f10a;
}
.cid-spy0SofGGh .head-item {
  color: #232323;
}
.cid-spy0SofGGh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0SofGGh .mbr-section-title,
.cid-spy0SofGGh .head-item {
  color: #a61a3d;
}
.cid-spy0SofGGh .mbr-section-subtitle,
.cid-spy0SofGGh .table tbody .tableColumns .body-item,
.cid-spy0SofGGh .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0SofGGh .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0SqRO1X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0SqRO1X .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0SqRO1X .mbr-text {
  color: #04367c;
}
.cid-spy0SshAn1 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0SshAn1 .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0SshAn1 .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0StSXM7 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0StSXM7 .mbr-overlay {
  background: #232323;
}
.cid-spy0SvAnGX {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0SvAnGX .container-fluid {
  padding: 0 3rem;
}
.cid-spy0SvAnGX .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0SvAnGX .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0SvAnGX .table-wrapper {
  margin: 0 auto;
}
.cid-spy0SvAnGX table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0SvAnGX table thead tr {
  border: none !important;
}
.cid-spy0SvAnGX table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0SvAnGX table tr td {
  border-color: #eceeef;
}
.cid-spy0SvAnGX table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0SvAnGX table.table {
  background: #ffffff;
}
.cid-spy0SvAnGX tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0SvAnGX th:after,
.cid-spy0SvAnGX th:before {
  display: none !important;
}
.cid-spy0SvAnGX .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0SvAnGX .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0SvAnGX table th,
  .cid-spy0SvAnGX table td {
    padding: .75rem;
  }
}
.cid-spy0SvAnGX .body-item {
  text-align: left;
}
.cid-spy0SvAnGX .mbr-text {
  color: #e7f10a;
}
.cid-spy0SvAnGX .head-item {
  color: #232323;
}
.cid-spy0SvAnGX .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0SvAnGX .mbr-section-title,
.cid-spy0SvAnGX .head-item {
  color: #a61a3d;
}
.cid-spy0SvAnGX .mbr-section-subtitle,
.cid-spy0SvAnGX .table tbody .tableColumns .body-item,
.cid-spy0SvAnGX .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0SvAnGX .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0Szn63U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0Szn63U .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0Szn63U .mbr-text {
  color: #04367c;
}
.cid-spy0H5xrHh .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-spy0H5xrHh .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-spy0H5xrHh a {
  font-style: normal;
}
.cid-spy0H5xrHh .navbar-buttons {
  flex-wrap: wrap;
}
.cid-spy0H5xrHh .show {
  overflow: visible;
}
.cid-spy0H5xrHh .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-spy0H5xrHh .dropdown-item:active {
  background-color: transparent;
}
.cid-spy0H5xrHh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-spy0H5xrHh .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-spy0H5xrHh .nav-item:focus,
.cid-spy0H5xrHh .nav-link:focus {
  outline: none;
}
.cid-spy0H5xrHh .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spy0H5xrHh .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-spy0H5xrHh .menu-logo {
  margin-right: auto;
}
.cid-spy0H5xrHh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spy0H5xrHh .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-spy0H5xrHh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-spy0H5xrHh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-spy0H5xrHh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-spy0H5xrHh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-spy0H5xrHh .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-spy0H5xrHh .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-spy0H5xrHh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-spy0H5xrHh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spy0H5xrHh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-spy0H5xrHh .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-spy0H5xrHh .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-spy0H5xrHh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-spy0H5xrHh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spy0H5xrHh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-spy0H5xrHh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spy0H5xrHh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-spy0H5xrHh .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-spy0H5xrHh .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-spy0H5xrHh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-spy0H5xrHh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-spy0H5xrHh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-spy0H5xrHh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-spy0H5xrHh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-spy0H5xrHh button.navbar-toggler:focus {
  outline: none;
}
.cid-spy0H5xrHh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-spy0H5xrHh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spy0H5xrHh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spy0H5xrHh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spy0H5xrHh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spy0H5xrHh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spy0H5xrHh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spy0H5xrHh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spy0H5xrHh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-spy0H5xrHh .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-spy0H5xrHh .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spy0H5xrHh .collapsed .btn {
  display: -webkit-flex;
}
.cid-spy0H5xrHh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-spy0H5xrHh .collapsed .navbar-collapse.collapsing,
.cid-spy0H5xrHh .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-spy0H5xrHh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-spy0H5xrHh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-spy0H5xrHh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-spy0H5xrHh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-spy0H5xrHh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-spy0H5xrHh .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-spy0H5xrHh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-spy0H5xrHh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-spy0H5xrHh .collapsed button.navbar-toggler {
  display: block;
}
.cid-spy0H5xrHh .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-spy0H5xrHh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spy0H5xrHh .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-spy0H5xrHh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-spy0H5xrHh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-spy0H5xrHh .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;
}
@media (max-width: 991px) {
  .cid-spy0H5xrHh.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spy0H5xrHh img {
    height: 3.8rem !important;
  }
  .cid-spy0H5xrHh .btn {
    display: -webkit-flex;
  }
  .cid-spy0H5xrHh button.navbar-toggler {
    display: block;
  }
  .cid-spy0H5xrHh .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-spy0H5xrHh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spy0H5xrHh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-spy0H5xrHh .navbar-collapse.collapsing,
  .cid-spy0H5xrHh .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-spy0H5xrHh .navbar-collapse.collapsing .navbar-nav,
  .cid-spy0H5xrHh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-spy0H5xrHh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-spy0H5xrHh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-spy0H5xrHh .navbar-collapse.collapsing .navbar-buttons,
  .cid-spy0H5xrHh .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-spy0H5xrHh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-spy0H5xrHh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-spy0H5xrHh .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-spy0H5xrHh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-spy0H5xrHh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-spy0H5xrHh .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;
  }
}
@media (max-width: 767px) {
  .cid-spy0H5xrHh .nav-link {
    justify-content: start !important;
  }
  .cid-spy0H5xrHh .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-spy0H5xrHh .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-spy0H5xrHh .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-spy0H5xrHh .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-spy0H5xrHh .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-spy0H5xrHh .nav-link:hover,
.cid-spy0H5xrHh .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-spy0H5xrHh .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-spy0H5xrHh .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-spy0H6ZDg1 {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-spy0H6ZDg1 .mbr-overlay {
  background: #2bdc9d;
}
.cid-spy0H6ZDg1 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-spy0H6ZDg1 .mbr-section-subtitle,
.cid-spy0H6ZDg1 .mbr-section-btn {
  color: #e3ec1a;
}
.cid-spy0H6ZDg1 H1 {
  color: #ff4f7b;
}
.cid-spy0H7ARNA {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-spy0H7ARNA .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-spy0H7ARNA .mbr-section-title {
  margin: 0;
}
.cid-spy0H7ARNA .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spy0H7ARNA .card-img span {
  color: #1dc9cb;
}
.cid-spy0H7ARNA .row-item {
  margin-bottom: 2rem;
}
.cid-spy0H7ARNA .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-spy0H7ARNA .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-spy0H7ARNA .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-spy0H7ARNA .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spy0H7ARNA .mbr-card-title,
.cid-spy0H7ARNA .card-img {
  color: #a61a3d;
}
.cid-spy0H8mzDr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-spy0H8mzDr .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-spy0H8mzDr .mbr-section-title {
  margin: 0;
}
.cid-spy0H8mzDr .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spy0H8mzDr .card-img span {
  color: #1dc9cb;
}
.cid-spy0H8mzDr .row-item {
  margin-bottom: 2rem;
}
.cid-spy0H8mzDr .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-spy0H8mzDr .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-spy0H8mzDr .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-spy0H8mzDr .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spy0H8mzDr .mbr-card-title,
.cid-spy0H8mzDr .card-img {
  color: #a61a3d;
}
.cid-spy0H9JMZq {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0H9JMZq .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0H9JMZq .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0HacasG {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0HacasG .mbr-overlay {
  background: #232323;
}
.cid-spy0Hb8lED {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0Hb8lED .container-fluid {
  padding: 0 3rem;
}
.cid-spy0Hb8lED .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-spy0Hb8lED .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-spy0Hb8lED .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-spy0Hb8lED .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-spy0Hb8lED .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-spy0Hb8lED a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-spy0Hb8lED a.close:hover {
  color: #ffffff;
}
.cid-spy0Hb8lED svg {
  transition: all 0.5s ease-in;
}
.cid-spy0Hb8lED svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-spy0Hb8lED svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-spy0Hb8lED svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-spy0Hb8lED .container-fluid {
    padding: 0 1rem;
  }
}
.cid-spy0HbPRHv {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0HbPRHv .container-fluid {
  padding: 0 3rem;
}
.cid-spy0HbPRHv .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0HbPRHv .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0HbPRHv .table-wrapper {
  margin: 0 auto;
}
.cid-spy0HbPRHv table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0HbPRHv table thead tr {
  border: none !important;
}
.cid-spy0HbPRHv table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0HbPRHv table tr td {
  border-color: #eceeef;
}
.cid-spy0HbPRHv table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0HbPRHv table.table {
  background: #ffffff;
}
.cid-spy0HbPRHv tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0HbPRHv th:after,
.cid-spy0HbPRHv th:before {
  display: none !important;
}
.cid-spy0HbPRHv .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0HbPRHv .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0HbPRHv table th,
  .cid-spy0HbPRHv table td {
    padding: .75rem;
  }
}
.cid-spy0HbPRHv .body-item {
  text-align: left;
}
.cid-spy0HbPRHv .mbr-text {
  color: #e7f10a;
}
.cid-spy0HbPRHv .head-item {
  color: #232323;
}
.cid-spy0HbPRHv .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0HbPRHv .mbr-section-title,
.cid-spy0HbPRHv .head-item {
  color: #a61a3d;
}
.cid-spy0HbPRHv .mbr-section-subtitle,
.cid-spy0HbPRHv .table tbody .tableColumns .body-item,
.cid-spy0HbPRHv .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0HbPRHv .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0HeaCXS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0HeaCXS .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0HeaCXS .mbr-text {
  color: #04367c;
}
.cid-spy0HeEQ9D {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0HeEQ9D .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0HeEQ9D .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0Hf8NHI {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0Hf8NHI .mbr-overlay {
  background: #232323;
}
.cid-spy0Hg3bLM {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0Hg3bLM .container-fluid {
  padding: 0 3rem;
}
.cid-spy0Hg3bLM .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0Hg3bLM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0Hg3bLM .table-wrapper {
  margin: 0 auto;
}
.cid-spy0Hg3bLM table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0Hg3bLM table thead tr {
  border: none !important;
}
.cid-spy0Hg3bLM table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0Hg3bLM table tr td {
  border-color: #eceeef;
}
.cid-spy0Hg3bLM table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0Hg3bLM table.table {
  background: #ffffff;
}
.cid-spy0Hg3bLM tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0Hg3bLM th:after,
.cid-spy0Hg3bLM th:before {
  display: none !important;
}
.cid-spy0Hg3bLM .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0Hg3bLM .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0Hg3bLM table th,
  .cid-spy0Hg3bLM table td {
    padding: .75rem;
  }
}
.cid-spy0Hg3bLM .body-item {
  text-align: left;
}
.cid-spy0Hg3bLM .mbr-text {
  color: #e7f10a;
}
.cid-spy0Hg3bLM .head-item {
  color: #232323;
}
.cid-spy0Hg3bLM .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0Hg3bLM .mbr-section-title,
.cid-spy0Hg3bLM .head-item {
  color: #a61a3d;
}
.cid-spy0Hg3bLM .mbr-section-subtitle,
.cid-spy0Hg3bLM .table tbody .tableColumns .body-item,
.cid-spy0Hg3bLM .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0Hg3bLM .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0HkTmWv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0HkTmWv .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0HkTmWv .mbr-text {
  color: #04367c;
}
.cid-spy0HlKBJ4 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0HlKBJ4 .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0HlKBJ4 .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0HnCOL8 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0HnCOL8 .mbr-overlay {
  background: #232323;
}
.cid-spy0Hp2DLa {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0Hp2DLa .container-fluid {
  padding: 0 3rem;
}
.cid-spy0Hp2DLa .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0Hp2DLa .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0Hp2DLa .table-wrapper {
  margin: 0 auto;
}
.cid-spy0Hp2DLa table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0Hp2DLa table thead tr {
  border: none !important;
}
.cid-spy0Hp2DLa table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0Hp2DLa table tr td {
  border-color: #eceeef;
}
.cid-spy0Hp2DLa table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0Hp2DLa table.table {
  background: #ffffff;
}
.cid-spy0Hp2DLa tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0Hp2DLa th:after,
.cid-spy0Hp2DLa th:before {
  display: none !important;
}
.cid-spy0Hp2DLa .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0Hp2DLa .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0Hp2DLa table th,
  .cid-spy0Hp2DLa table td {
    padding: .75rem;
  }
}
.cid-spy0Hp2DLa .body-item {
  text-align: left;
}
.cid-spy0Hp2DLa .mbr-text {
  color: #e7f10a;
}
.cid-spy0Hp2DLa .head-item {
  color: #232323;
}
.cid-spy0Hp2DLa .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0Hp2DLa .mbr-section-title,
.cid-spy0Hp2DLa .head-item {
  color: #a61a3d;
}
.cid-spy0Hp2DLa .mbr-section-subtitle,
.cid-spy0Hp2DLa .table tbody .tableColumns .body-item,
.cid-spy0Hp2DLa .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0Hp2DLa .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0Hs7zUq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0Hs7zUq .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0Hs7zUq .mbr-text {
  color: #04367c;
}
.cid-spy0HsDHUu {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0HsDHUu .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0HsDHUu .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0HtlVTn {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0HtlVTn .mbr-overlay {
  background: #232323;
}
.cid-spy0HuFZW5 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0HuFZW5 .container-fluid {
  padding: 0 3rem;
}
.cid-spy0HuFZW5 .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0HuFZW5 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0HuFZW5 .table-wrapper {
  margin: 0 auto;
}
.cid-spy0HuFZW5 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0HuFZW5 table thead tr {
  border: none !important;
}
.cid-spy0HuFZW5 table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0HuFZW5 table tr td {
  border-color: #eceeef;
}
.cid-spy0HuFZW5 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0HuFZW5 table.table {
  background: #ffffff;
}
.cid-spy0HuFZW5 tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0HuFZW5 th:after,
.cid-spy0HuFZW5 th:before {
  display: none !important;
}
.cid-spy0HuFZW5 .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0HuFZW5 .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0HuFZW5 table th,
  .cid-spy0HuFZW5 table td {
    padding: .75rem;
  }
}
.cid-spy0HuFZW5 .body-item {
  text-align: left;
}
.cid-spy0HuFZW5 .mbr-text {
  color: #e7f10a;
}
.cid-spy0HuFZW5 .head-item {
  color: #232323;
}
.cid-spy0HuFZW5 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0HuFZW5 .mbr-section-title,
.cid-spy0HuFZW5 .head-item {
  color: #a61a3d;
}
.cid-spy0HuFZW5 .mbr-section-subtitle,
.cid-spy0HuFZW5 .table tbody .tableColumns .body-item,
.cid-spy0HuFZW5 .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0HuFZW5 .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0Hx90aB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0Hx90aB .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0Hx90aB .mbr-text {
  color: #04367c;
}
.cid-spy0HxHRY9 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0HxHRY9 .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0HxHRY9 .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0HyqstF {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0HyqstF .mbr-overlay {
  background: #232323;
}
.cid-spy0HzTXfy {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0HzTXfy .container-fluid {
  padding: 0 3rem;
}
.cid-spy0HzTXfy .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0HzTXfy .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0HzTXfy .table-wrapper {
  margin: 0 auto;
}
.cid-spy0HzTXfy table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0HzTXfy table thead tr {
  border: none !important;
}
.cid-spy0HzTXfy table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0HzTXfy table tr td {
  border-color: #eceeef;
}
.cid-spy0HzTXfy table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0HzTXfy table.table {
  background: #ffffff;
}
.cid-spy0HzTXfy tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0HzTXfy th:after,
.cid-spy0HzTXfy th:before {
  display: none !important;
}
.cid-spy0HzTXfy .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0HzTXfy .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0HzTXfy table th,
  .cid-spy0HzTXfy table td {
    padding: .75rem;
  }
}
.cid-spy0HzTXfy .body-item {
  text-align: left;
}
.cid-spy0HzTXfy .mbr-text {
  color: #e7f10a;
}
.cid-spy0HzTXfy .head-item {
  color: #232323;
}
.cid-spy0HzTXfy .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0HzTXfy .mbr-section-title,
.cid-spy0HzTXfy .head-item {
  color: #a61a3d;
}
.cid-spy0HzTXfy .mbr-section-subtitle,
.cid-spy0HzTXfy .table tbody .tableColumns .body-item,
.cid-spy0HzTXfy .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0HzTXfy .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0HCy1TA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0HCy1TA .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0HCy1TA .mbr-text {
  color: #04367c;
}
.cid-spy0HD6gfA {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy0HD6gfA .mbr-section-title {
  color: #e43f3f;
}
.cid-spy0HD6gfA .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy0HDIldp {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy0HDIldp .mbr-overlay {
  background: #232323;
}
.cid-spy0HERU0x {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy0HERU0x .container-fluid {
  padding: 0 3rem;
}
.cid-spy0HERU0x .mbr-section-subtitle {
  color: #767676;
}
.cid-spy0HERU0x .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy0HERU0x .table-wrapper {
  margin: 0 auto;
}
.cid-spy0HERU0x table {
  width: 95% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy0HERU0x table thead tr {
  border: none !important;
}
.cid-spy0HERU0x table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy0HERU0x table tr td {
  border-color: #eceeef;
}
.cid-spy0HERU0x table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy0HERU0x table.table {
  background: #ffffff;
}
.cid-spy0HERU0x tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy0HERU0x th:after,
.cid-spy0HERU0x th:before {
  display: none !important;
}
.cid-spy0HERU0x .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy0HERU0x .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy0HERU0x table th,
  .cid-spy0HERU0x table td {
    padding: .75rem;
  }
}
.cid-spy0HERU0x .body-item {
  text-align: left;
}
.cid-spy0HERU0x .mbr-text {
  color: #e7f10a;
}
.cid-spy0HERU0x .head-item {
  color: #232323;
}
.cid-spy0HERU0x .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy0HERU0x .mbr-section-title,
.cid-spy0HERU0x .head-item {
  color: #a61a3d;
}
.cid-spy0HERU0x .mbr-section-subtitle,
.cid-spy0HERU0x .table tbody .tableColumns .body-item,
.cid-spy0HERU0x .table {
  color: #04367c;
  text-align: center;
}
.cid-spy0HERU0x .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy0HHcrDg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy0HHcrDg .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy0HHcrDg .mbr-text {
  color: #04367c;
}
.cid-spy1c5WIaw .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-spy1c5WIaw .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-spy1c5WIaw a {
  font-style: normal;
}
.cid-spy1c5WIaw .navbar-buttons {
  flex-wrap: wrap;
}
.cid-spy1c5WIaw .show {
  overflow: visible;
}
.cid-spy1c5WIaw .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-spy1c5WIaw .dropdown-item:active {
  background-color: transparent;
}
.cid-spy1c5WIaw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-spy1c5WIaw .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-spy1c5WIaw .nav-item:focus,
.cid-spy1c5WIaw .nav-link:focus {
  outline: none;
}
.cid-spy1c5WIaw .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spy1c5WIaw .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-spy1c5WIaw .menu-logo {
  margin-right: auto;
}
.cid-spy1c5WIaw .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spy1c5WIaw .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-spy1c5WIaw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-spy1c5WIaw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-spy1c5WIaw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-spy1c5WIaw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-spy1c5WIaw .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-spy1c5WIaw .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-spy1c5WIaw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-spy1c5WIaw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spy1c5WIaw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-spy1c5WIaw .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-spy1c5WIaw .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-spy1c5WIaw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-spy1c5WIaw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spy1c5WIaw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-spy1c5WIaw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spy1c5WIaw .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-spy1c5WIaw .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-spy1c5WIaw .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-spy1c5WIaw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-spy1c5WIaw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-spy1c5WIaw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-spy1c5WIaw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-spy1c5WIaw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-spy1c5WIaw button.navbar-toggler:focus {
  outline: none;
}
.cid-spy1c5WIaw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-spy1c5WIaw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spy1c5WIaw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spy1c5WIaw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spy1c5WIaw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spy1c5WIaw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spy1c5WIaw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spy1c5WIaw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spy1c5WIaw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-spy1c5WIaw .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-spy1c5WIaw .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spy1c5WIaw .collapsed .btn {
  display: -webkit-flex;
}
.cid-spy1c5WIaw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-spy1c5WIaw .collapsed .navbar-collapse.collapsing,
.cid-spy1c5WIaw .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-spy1c5WIaw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-spy1c5WIaw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-spy1c5WIaw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-spy1c5WIaw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-spy1c5WIaw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-spy1c5WIaw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-spy1c5WIaw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-spy1c5WIaw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-spy1c5WIaw .collapsed button.navbar-toggler {
  display: block;
}
.cid-spy1c5WIaw .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-spy1c5WIaw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spy1c5WIaw .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-spy1c5WIaw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-spy1c5WIaw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-spy1c5WIaw .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;
}
@media (max-width: 991px) {
  .cid-spy1c5WIaw.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spy1c5WIaw img {
    height: 3.8rem !important;
  }
  .cid-spy1c5WIaw .btn {
    display: -webkit-flex;
  }
  .cid-spy1c5WIaw button.navbar-toggler {
    display: block;
  }
  .cid-spy1c5WIaw .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-spy1c5WIaw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spy1c5WIaw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-spy1c5WIaw .navbar-collapse.collapsing,
  .cid-spy1c5WIaw .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-spy1c5WIaw .navbar-collapse.collapsing .navbar-nav,
  .cid-spy1c5WIaw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-spy1c5WIaw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-spy1c5WIaw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-spy1c5WIaw .navbar-collapse.collapsing .navbar-buttons,
  .cid-spy1c5WIaw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-spy1c5WIaw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-spy1c5WIaw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-spy1c5WIaw .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-spy1c5WIaw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-spy1c5WIaw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-spy1c5WIaw .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;
  }
}
@media (max-width: 767px) {
  .cid-spy1c5WIaw .nav-link {
    justify-content: start !important;
  }
  .cid-spy1c5WIaw .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-spy1c5WIaw .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-spy1c5WIaw .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-spy1c5WIaw .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-spy1c5WIaw .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-spy1c5WIaw .nav-link:hover,
.cid-spy1c5WIaw .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-spy1c5WIaw .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-spy1c5WIaw .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-spy1c7rwWx {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-spy1c7rwWx .mbr-overlay {
  background: #2bdc9d;
}
.cid-spy1c7rwWx .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-spy1c7rwWx .mbr-section-subtitle,
.cid-spy1c7rwWx .mbr-section-btn {
  color: #e3ec1a;
}
.cid-spy1c7rwWx H1 {
  color: #ff4f7b;
}
.cid-spy1c8abiZ {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-spy1c8abiZ .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-spy1c8abiZ .mbr-section-title {
  margin: 0;
}
.cid-spy1c8abiZ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spy1c8abiZ .card-img span {
  color: #1dc9cb;
}
.cid-spy1c8abiZ .row-item {
  margin-bottom: 2rem;
}
.cid-spy1c8abiZ .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-spy1c8abiZ .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-spy1c8abiZ .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-spy1c8abiZ .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spy1c8abiZ .mbr-card-title,
.cid-spy1c8abiZ .card-img {
  color: #a61a3d;
}
.cid-spy1c8RrBd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-spy1c8RrBd .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-spy1c8RrBd .mbr-section-title {
  margin: 0;
}
.cid-spy1c8RrBd .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spy1c8RrBd .card-img span {
  color: #1dc9cb;
}
.cid-spy1c8RrBd .row-item {
  margin-bottom: 2rem;
}
.cid-spy1c8RrBd .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-spy1c8RrBd .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-spy1c8RrBd .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-spy1c8RrBd .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spy1c8RrBd .mbr-card-title,
.cid-spy1c8RrBd .card-img {
  color: #a61a3d;
}
.cid-spy1c9AASh {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-spy1c9AASh .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-spy1c9AASh .mbr-section-title {
  margin: 0;
}
.cid-spy1c9AASh .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spy1c9AASh .card-img span {
  color: #1dc9cb;
}
.cid-spy1c9AASh .row-item {
  margin-bottom: 2rem;
}
.cid-spy1c9AASh .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-spy1c9AASh .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-spy1c9AASh .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-spy1c9AASh .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spy1c9AASh .mbr-card-title,
.cid-spy1c9AASh .card-img {
  color: #a61a3d;
}
.cid-spy1calzQA {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy1calzQA .mbr-section-title {
  color: #e43f3f;
}
.cid-spy1calzQA .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy1caQMmY {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy1caQMmY .mbr-overlay {
  background: #232323;
}
.cid-spy1cbBPJb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy1cbBPJb .container-fluid {
  padding: 0 3rem;
}
.cid-spy1cbBPJb .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-spy1cbBPJb .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-spy1cbBPJb .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-spy1cbBPJb .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-spy1cbBPJb .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-spy1cbBPJb a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-spy1cbBPJb a.close:hover {
  color: #ffffff;
}
.cid-spy1cbBPJb svg {
  transition: all 0.5s ease-in;
}
.cid-spy1cbBPJb svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-spy1cbBPJb svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-spy1cbBPJb svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-spy1cbBPJb .container-fluid {
    padding: 0 1rem;
  }
}
.cid-spy1cctWY4 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy1cctWY4 .container-fluid {
  padding: 0 3rem;
}
.cid-spy1cctWY4 .mbr-section-subtitle {
  color: #767676;
}
.cid-spy1cctWY4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy1cctWY4 .table-wrapper {
  margin: 0 auto;
}
.cid-spy1cctWY4 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy1cctWY4 table thead tr {
  border: none !important;
}
.cid-spy1cctWY4 table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy1cctWY4 table tr td {
  border-color: #eceeef;
}
.cid-spy1cctWY4 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy1cctWY4 table.table {
  background: #ffffff;
}
.cid-spy1cctWY4 tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy1cctWY4 th:after,
.cid-spy1cctWY4 th:before {
  display: none !important;
}
.cid-spy1cctWY4 .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy1cctWY4 .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy1cctWY4 table th,
  .cid-spy1cctWY4 table td {
    padding: .75rem;
  }
}
.cid-spy1cctWY4 .body-item {
  text-align: left;
}
.cid-spy1cctWY4 .mbr-text {
  color: #e7f10a;
}
.cid-spy1cctWY4 .head-item {
  color: #232323;
}
.cid-spy1cctWY4 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy1cctWY4 .mbr-section-title,
.cid-spy1cctWY4 .head-item {
  color: #a61a3d;
}
.cid-spy1cctWY4 .mbr-section-subtitle,
.cid-spy1cctWY4 .table tbody .tableColumns .body-item,
.cid-spy1cctWY4 .table {
  color: #04367c;
  text-align: center;
}
.cid-spy1cctWY4 .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy1ceHLlt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy1ceHLlt .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy1ceHLlt .mbr-text {
  color: #04367c;
}
.cid-spy1cf6SqL {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy1cf6SqL .mbr-section-title {
  color: #e43f3f;
}
.cid-spy1cf6SqL .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy1cfz70D {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy1cfz70D .mbr-overlay {
  background: #232323;
}
.cid-spy1cgtObF {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy1cgtObF .container-fluid {
  padding: 0 3rem;
}
.cid-spy1cgtObF .mbr-section-subtitle {
  color: #767676;
}
.cid-spy1cgtObF .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy1cgtObF .table-wrapper {
  margin: 0 auto;
}
.cid-spy1cgtObF table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy1cgtObF table thead tr {
  border: none !important;
}
.cid-spy1cgtObF table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy1cgtObF table tr td {
  border-color: #eceeef;
}
.cid-spy1cgtObF table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy1cgtObF table.table {
  background: #ffffff;
}
.cid-spy1cgtObF tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy1cgtObF th:after,
.cid-spy1cgtObF th:before {
  display: none !important;
}
.cid-spy1cgtObF .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy1cgtObF .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy1cgtObF table th,
  .cid-spy1cgtObF table td {
    padding: .75rem;
  }
}
.cid-spy1cgtObF .body-item {
  text-align: left;
}
.cid-spy1cgtObF .mbr-text {
  color: #e7f10a;
}
.cid-spy1cgtObF .head-item {
  color: #232323;
}
.cid-spy1cgtObF .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy1cgtObF .mbr-section-title,
.cid-spy1cgtObF .head-item {
  color: #a61a3d;
}
.cid-spy1cgtObF .mbr-section-subtitle,
.cid-spy1cgtObF .table tbody .tableColumns .body-item,
.cid-spy1cgtObF .table {
  color: #04367c;
  text-align: center;
}
.cid-spy1cgtObF .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy1ciDFHe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy1ciDFHe .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy1ciDFHe .mbr-text {
  color: #04367c;
}
.cid-spy1cj4708 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy1cj4708 .mbr-section-title {
  color: #e43f3f;
}
.cid-spy1cj4708 .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy1cjYiyD {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy1cjYiyD .mbr-overlay {
  background: #232323;
}
.cid-spy1ckuBew {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy1ckuBew .container-fluid {
  padding: 0 3rem;
}
.cid-spy1ckuBew .mbr-section-subtitle {
  color: #767676;
}
.cid-spy1ckuBew .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy1ckuBew .table-wrapper {
  margin: 0 auto;
}
.cid-spy1ckuBew table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy1ckuBew table thead tr {
  border: none !important;
}
.cid-spy1ckuBew table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy1ckuBew table tr td {
  border-color: #eceeef;
}
.cid-spy1ckuBew table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy1ckuBew table.table {
  background: #ffffff;
}
.cid-spy1ckuBew tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy1ckuBew th:after,
.cid-spy1ckuBew th:before {
  display: none !important;
}
.cid-spy1ckuBew .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy1ckuBew .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy1ckuBew table th,
  .cid-spy1ckuBew table td {
    padding: .75rem;
  }
}
.cid-spy1ckuBew .body-item {
  text-align: left;
}
.cid-spy1ckuBew .mbr-text {
  color: #e7f10a;
}
.cid-spy1ckuBew .head-item {
  color: #232323;
}
.cid-spy1ckuBew .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy1ckuBew .mbr-section-title,
.cid-spy1ckuBew .head-item {
  color: #a61a3d;
}
.cid-spy1ckuBew .mbr-section-subtitle,
.cid-spy1ckuBew .table tbody .tableColumns .body-item,
.cid-spy1ckuBew .table {
  color: #04367c;
  text-align: center;
}
.cid-spy1ckuBew .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy1cmNink {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy1cmNink .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy1cmNink .mbr-text {
  color: #04367c;
}
.cid-spy1cnhFZo {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy1cnhFZo .mbr-section-title {
  color: #e43f3f;
}
.cid-spy1cnhFZo .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy1cnRpFO {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy1cnRpFO .mbr-overlay {
  background: #232323;
}
.cid-spy1coR5Ox {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy1coR5Ox .container-fluid {
  padding: 0 3rem;
}
.cid-spy1coR5Ox .mbr-section-subtitle {
  color: #767676;
}
.cid-spy1coR5Ox .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy1coR5Ox .table-wrapper {
  margin: 0 auto;
}
.cid-spy1coR5Ox table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy1coR5Ox table thead tr {
  border: none !important;
}
.cid-spy1coR5Ox table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy1coR5Ox table tr td {
  border-color: #eceeef;
}
.cid-spy1coR5Ox table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy1coR5Ox table.table {
  background: #ffffff;
}
.cid-spy1coR5Ox tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy1coR5Ox th:after,
.cid-spy1coR5Ox th:before {
  display: none !important;
}
.cid-spy1coR5Ox .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy1coR5Ox .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy1coR5Ox table th,
  .cid-spy1coR5Ox table td {
    padding: .75rem;
  }
}
.cid-spy1coR5Ox .body-item {
  text-align: left;
}
.cid-spy1coR5Ox .mbr-text {
  color: #e7f10a;
}
.cid-spy1coR5Ox .head-item {
  color: #232323;
}
.cid-spy1coR5Ox .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy1coR5Ox .mbr-section-title,
.cid-spy1coR5Ox .head-item {
  color: #a61a3d;
}
.cid-spy1coR5Ox .mbr-section-subtitle,
.cid-spy1coR5Ox .table tbody .tableColumns .body-item,
.cid-spy1coR5Ox .table {
  color: #04367c;
  text-align: center;
}
.cid-spy1coR5Ox .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy1cr90s2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy1cr90s2 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy1cr90s2 .mbr-text {
  color: #04367c;
}
.cid-spy1crINNS {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy1crINNS .mbr-section-title {
  color: #e43f3f;
}
.cid-spy1crINNS .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy1csiWPM {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy1csiWPM .mbr-overlay {
  background: #232323;
}
.cid-spy1ctIEpF {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy1ctIEpF .container-fluid {
  padding: 0 3rem;
}
.cid-spy1ctIEpF .mbr-section-subtitle {
  color: #767676;
}
.cid-spy1ctIEpF .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy1ctIEpF .table-wrapper {
  margin: 0 auto;
}
.cid-spy1ctIEpF table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy1ctIEpF table thead tr {
  border: none !important;
}
.cid-spy1ctIEpF table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy1ctIEpF table tr td {
  border-color: #eceeef;
}
.cid-spy1ctIEpF table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy1ctIEpF table.table {
  background: #ffffff;
}
.cid-spy1ctIEpF tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy1ctIEpF th:after,
.cid-spy1ctIEpF th:before {
  display: none !important;
}
.cid-spy1ctIEpF .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy1ctIEpF .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy1ctIEpF table th,
  .cid-spy1ctIEpF table td {
    padding: .75rem;
  }
}
.cid-spy1ctIEpF .body-item {
  text-align: left;
}
.cid-spy1ctIEpF .mbr-text {
  color: #e7f10a;
}
.cid-spy1ctIEpF .head-item {
  color: #232323;
}
.cid-spy1ctIEpF .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy1ctIEpF .mbr-section-title,
.cid-spy1ctIEpF .head-item {
  color: #a61a3d;
}
.cid-spy1ctIEpF .mbr-section-subtitle,
.cid-spy1ctIEpF .table tbody .tableColumns .body-item,
.cid-spy1ctIEpF .table {
  color: #04367c;
  text-align: center;
}
.cid-spy1ctIEpF .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy1cvZhqR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy1cvZhqR .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy1cvZhqR .mbr-text {
  color: #04367c;
}
.cid-spy1cwx8lS {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy1cwx8lS .mbr-section-title {
  color: #e43f3f;
}
.cid-spy1cwx8lS .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy1cxarhx {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy1cxarhx .mbr-overlay {
  background: #232323;
}
.cid-spy1cyh3WI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy1cyh3WI .container-fluid {
  padding: 0 3rem;
}
.cid-spy1cyh3WI .mbr-section-subtitle {
  color: #767676;
}
.cid-spy1cyh3WI .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy1cyh3WI .table-wrapper {
  margin: 0 auto;
}
.cid-spy1cyh3WI table {
  width: 95% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy1cyh3WI table thead tr {
  border: none !important;
}
.cid-spy1cyh3WI table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy1cyh3WI table tr td {
  border-color: #eceeef;
}
.cid-spy1cyh3WI table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy1cyh3WI table.table {
  background: #ffffff;
}
.cid-spy1cyh3WI tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy1cyh3WI th:after,
.cid-spy1cyh3WI th:before {
  display: none !important;
}
.cid-spy1cyh3WI .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy1cyh3WI .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy1cyh3WI table th,
  .cid-spy1cyh3WI table td {
    padding: .75rem;
  }
}
.cid-spy1cyh3WI .body-item {
  text-align: left;
}
.cid-spy1cyh3WI .mbr-text {
  color: #e7f10a;
}
.cid-spy1cyh3WI .head-item {
  color: #232323;
}
.cid-spy1cyh3WI .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy1cyh3WI .mbr-section-title,
.cid-spy1cyh3WI .head-item {
  color: #a61a3d;
}
.cid-spy1cyh3WI .mbr-section-subtitle,
.cid-spy1cyh3WI .table tbody .tableColumns .body-item,
.cid-spy1cyh3WI .table {
  color: #04367c;
  text-align: center;
}
.cid-spy1cyh3WI .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy1cAMXtD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy1cAMXtD .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy1cAMXtD .mbr-text {
  color: #04367c;
}
.cid-spy1cBncUv {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy1cBncUv .mbr-section-title {
  color: #e43f3f;
}
.cid-spy1cBncUv .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy1cC2Q0A {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy1cC2Q0A .mbr-overlay {
  background: #232323;
}
.cid-spy1cDcBJb {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy1cDcBJb .container-fluid {
  padding: 0 3rem;
}
.cid-spy1cDcBJb .mbr-section-subtitle {
  color: #767676;
}
.cid-spy1cDcBJb .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy1cDcBJb .table-wrapper {
  margin: 0 auto;
}
.cid-spy1cDcBJb table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy1cDcBJb table thead tr {
  border: none !important;
}
.cid-spy1cDcBJb table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy1cDcBJb table tr td {
  border-color: #eceeef;
}
.cid-spy1cDcBJb table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy1cDcBJb table.table {
  background: #ffffff;
}
.cid-spy1cDcBJb tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy1cDcBJb th:after,
.cid-spy1cDcBJb th:before {
  display: none !important;
}
.cid-spy1cDcBJb .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy1cDcBJb .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy1cDcBJb table th,
  .cid-spy1cDcBJb table td {
    padding: .75rem;
  }
}
.cid-spy1cDcBJb .body-item {
  text-align: left;
}
.cid-spy1cDcBJb .mbr-text {
  color: #e7f10a;
}
.cid-spy1cDcBJb .head-item {
  color: #232323;
}
.cid-spy1cDcBJb .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy1cDcBJb .mbr-section-title,
.cid-spy1cDcBJb .head-item {
  color: #a61a3d;
}
.cid-spy1cDcBJb .mbr-section-subtitle,
.cid-spy1cDcBJb .table tbody .tableColumns .body-item,
.cid-spy1cDcBJb .table {
  color: #04367c;
  text-align: center;
}
.cid-spy1cDcBJb .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy1cFv3Xc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy1cFv3Xc .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy1cFv3Xc .mbr-text {
  color: #04367c;
}
.cid-spy1cG7erH {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy1cG7erH .mbr-section-title {
  color: #e43f3f;
}
.cid-spy1cG7erH .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy1cH0MT4 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy1cH0MT4 .mbr-overlay {
  background: #232323;
}
.cid-spy1cI75OS {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy1cI75OS .container-fluid {
  padding: 0 3rem;
}
.cid-spy1cI75OS .mbr-section-subtitle {
  color: #767676;
}
.cid-spy1cI75OS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy1cI75OS .table-wrapper {
  margin: 0 auto;
}
.cid-spy1cI75OS table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy1cI75OS table thead tr {
  border: none !important;
}
.cid-spy1cI75OS table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy1cI75OS table tr td {
  border-color: #eceeef;
}
.cid-spy1cI75OS table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy1cI75OS table.table {
  background: #ffffff;
}
.cid-spy1cI75OS tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy1cI75OS th:after,
.cid-spy1cI75OS th:before {
  display: none !important;
}
.cid-spy1cI75OS .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy1cI75OS .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy1cI75OS table th,
  .cid-spy1cI75OS table td {
    padding: .75rem;
  }
}
.cid-spy1cI75OS .body-item {
  text-align: left;
}
.cid-spy1cI75OS .mbr-text {
  color: #e7f10a;
}
.cid-spy1cI75OS .head-item {
  color: #232323;
}
.cid-spy1cI75OS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy1cI75OS .mbr-section-title,
.cid-spy1cI75OS .head-item {
  color: #a61a3d;
}
.cid-spy1cI75OS .mbr-section-subtitle,
.cid-spy1cI75OS .table tbody .tableColumns .body-item,
.cid-spy1cI75OS .table {
  color: #04367c;
  text-align: center;
}
.cid-spy1cI75OS .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy1cKtEW8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy1cKtEW8 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy1cKtEW8 .mbr-text {
  color: #04367c;
}
.cid-spy1cLagDQ {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spy1cLagDQ .mbr-section-title {
  color: #e43f3f;
}
.cid-spy1cLagDQ .mbr-section-subtitle {
  color: #4479d9;
}
.cid-spy1cLRF30 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spy1cLRF30 .mbr-overlay {
  background: #232323;
}
.cid-spy1cNj9G5 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spy1cNj9G5 .container-fluid {
  padding: 0 3rem;
}
.cid-spy1cNj9G5 .mbr-section-subtitle {
  color: #767676;
}
.cid-spy1cNj9G5 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spy1cNj9G5 .table-wrapper {
  margin: 0 auto;
}
.cid-spy1cNj9G5 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spy1cNj9G5 table thead tr {
  border: none !important;
}
.cid-spy1cNj9G5 table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spy1cNj9G5 table tr td {
  border-color: #eceeef;
}
.cid-spy1cNj9G5 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spy1cNj9G5 table.table {
  background: #ffffff;
}
.cid-spy1cNj9G5 tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spy1cNj9G5 th:after,
.cid-spy1cNj9G5 th:before {
  display: none !important;
}
.cid-spy1cNj9G5 .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spy1cNj9G5 .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spy1cNj9G5 table th,
  .cid-spy1cNj9G5 table td {
    padding: .75rem;
  }
}
.cid-spy1cNj9G5 .body-item {
  text-align: left;
}
.cid-spy1cNj9G5 .mbr-text {
  color: #e7f10a;
}
.cid-spy1cNj9G5 .head-item {
  color: #232323;
}
.cid-spy1cNj9G5 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spy1cNj9G5 .mbr-section-title,
.cid-spy1cNj9G5 .head-item {
  color: #a61a3d;
}
.cid-spy1cNj9G5 .mbr-section-subtitle,
.cid-spy1cNj9G5 .table tbody .tableColumns .body-item,
.cid-spy1cNj9G5 .table {
  color: #04367c;
  text-align: center;
}
.cid-spy1cNj9G5 .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spy1cPxrUY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spy1cPxrUY .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spy1cPxrUY .mbr-text {
  color: #04367c;
}
.cid-spAApArsVK .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-spAApArsVK .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-spAApArsVK a {
  font-style: normal;
}
.cid-spAApArsVK .navbar-buttons {
  flex-wrap: wrap;
}
.cid-spAApArsVK .show {
  overflow: visible;
}
.cid-spAApArsVK .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-spAApArsVK .dropdown-item:active {
  background-color: transparent;
}
.cid-spAApArsVK .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-spAApArsVK .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-spAApArsVK .nav-item:focus,
.cid-spAApArsVK .nav-link:focus {
  outline: none;
}
.cid-spAApArsVK .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spAApArsVK .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-spAApArsVK .menu-logo {
  margin-right: auto;
}
.cid-spAApArsVK .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spAApArsVK .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-spAApArsVK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-spAApArsVK .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-spAApArsVK .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-spAApArsVK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-spAApArsVK .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-spAApArsVK .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-spAApArsVK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-spAApArsVK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spAApArsVK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-spAApArsVK .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-spAApArsVK .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-spAApArsVK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-spAApArsVK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spAApArsVK .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-spAApArsVK .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spAApArsVK .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-spAApArsVK .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-spAApArsVK .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-spAApArsVK .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-spAApArsVK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-spAApArsVK .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-spAApArsVK .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-spAApArsVK button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-spAApArsVK button.navbar-toggler:focus {
  outline: none;
}
.cid-spAApArsVK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-spAApArsVK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spAApArsVK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spAApArsVK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spAApArsVK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spAApArsVK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spAApArsVK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spAApArsVK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spAApArsVK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-spAApArsVK .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-spAApArsVK .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spAApArsVK .collapsed .btn {
  display: -webkit-flex;
}
.cid-spAApArsVK .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-spAApArsVK .collapsed .navbar-collapse.collapsing,
.cid-spAApArsVK .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-spAApArsVK .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-spAApArsVK .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-spAApArsVK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-spAApArsVK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-spAApArsVK .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-spAApArsVK .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-spAApArsVK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-spAApArsVK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-spAApArsVK .collapsed button.navbar-toggler {
  display: block;
}
.cid-spAApArsVK .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-spAApArsVK .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spAApArsVK .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-spAApArsVK .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-spAApArsVK .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-spAApArsVK .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;
}
@media (max-width: 991px) {
  .cid-spAApArsVK.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spAApArsVK img {
    height: 3.8rem !important;
  }
  .cid-spAApArsVK .btn {
    display: -webkit-flex;
  }
  .cid-spAApArsVK button.navbar-toggler {
    display: block;
  }
  .cid-spAApArsVK .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-spAApArsVK .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spAApArsVK .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-spAApArsVK .navbar-collapse.collapsing,
  .cid-spAApArsVK .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-spAApArsVK .navbar-collapse.collapsing .navbar-nav,
  .cid-spAApArsVK .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-spAApArsVK .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-spAApArsVK .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-spAApArsVK .navbar-collapse.collapsing .navbar-buttons,
  .cid-spAApArsVK .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-spAApArsVK .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-spAApArsVK .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-spAApArsVK .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-spAApArsVK .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-spAApArsVK .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-spAApArsVK .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;
  }
}
@media (max-width: 767px) {
  .cid-spAApArsVK .nav-link {
    justify-content: start !important;
  }
  .cid-spAApArsVK .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-spAApArsVK .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-spAApArsVK .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-spAApArsVK .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-spAApArsVK .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-spAApArsVK .nav-link:hover,
.cid-spAApArsVK .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-spAApArsVK .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-spAApArsVK .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-spAApBSQyI {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-spAApBSQyI .mbr-overlay {
  background: #2bdc9d;
}
.cid-spAApBSQyI .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-spAApBSQyI .mbr-section-subtitle,
.cid-spAApBSQyI .mbr-section-btn {
  color: #e3ec1a;
}
.cid-spAApBSQyI H1 {
  color: #ff4f7b;
}
.cid-spCveWfcd7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/view02-1182x1182.jpg");
}
.cid-spCveWfcd7 li {
  list-style: none;
}
.cid-spCveWfcd7 .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-spCveWfcd7 .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-spCveWfcd7 h4 {
  margin: 0;
}
.cid-spCveWfcd7 .item {
  color: #57468b;
}
.cid-spCveWfcd7 ul {
  padding: 0;
  margin: 0;
}
.cid-spCveWfcd7 .col-title {
  color: #57468b;
}
.cid-spCveWfcd7 .col-title1 {
  color: #000000;
}
.cid-spCveWfcd7 .col-title2 {
  color: #04367c;
}
.cid-spCveWfcd7 .col-title3 {
  color: #ff8a73;
}
.cid-spCveWfcd7 .col-title4 {
  color: #7516d2;
}
.cid-spCveWfcd7 .item1 {
  color: #000000;
  text-align: left;
}
.cid-spCveWfcd7 .item2 {
  color: #04367c;
}
.cid-spCveWfcd7 .item3 {
  color: #f25916;
}
.cid-spCveWfcd7 .item4 {
  color: #7516d2;
}
@media (max-width: 768px) {
  .cid-spCveWfcd7 .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-spAApG5bHJ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spAApG5bHJ .container-fluid {
  padding: 0 3rem;
}
.cid-spAApG5bHJ .mbr-section-subtitle {
  color: #767676;
}
.cid-spAApG5bHJ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spAApG5bHJ .table-wrapper {
  margin: 0 auto;
}
.cid-spAApG5bHJ table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spAApG5bHJ table thead tr {
  border: none !important;
}
.cid-spAApG5bHJ table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spAApG5bHJ table tr td {
  border-color: #eceeef;
}
.cid-spAApG5bHJ table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spAApG5bHJ table.table {
  background: #ffffff;
}
.cid-spAApG5bHJ tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spAApG5bHJ th:after,
.cid-spAApG5bHJ th:before {
  display: none !important;
}
.cid-spAApG5bHJ .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spAApG5bHJ .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spAApG5bHJ table th,
  .cid-spAApG5bHJ table td {
    padding: .75rem;
  }
}
.cid-spAApG5bHJ .body-item {
  text-align: left;
}
.cid-spAApG5bHJ .mbr-text {
  color: #e7f10a;
}
.cid-spAApG5bHJ .head-item {
  color: #232323;
}
.cid-spAApG5bHJ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spAApG5bHJ .mbr-section-title,
.cid-spAApG5bHJ .head-item {
  color: #f25916;
}
.cid-spAApG5bHJ .mbr-section-subtitle,
.cid-spAApG5bHJ .table tbody .tableColumns .body-item,
.cid-spAApG5bHJ .table {
  color: #04367c;
  text-align: center;
}
.cid-spAApG5bHJ .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spAApEMs9N {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spAApEMs9N .mbr-overlay {
  background: #232323;
}
.cid-spAApISRBm {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spAApISRBm .mbr-overlay {
  background: #232323;
}
.cid-spAApMWMmS {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spAApMWMmS .mbr-overlay {
  background: #232323;
}
.cid-spAApQnn5D {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spAApQnn5D .mbr-overlay {
  background: #232323;
}
.cid-spACI27e3d .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-spACI27e3d .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-spACI27e3d a {
  font-style: normal;
}
.cid-spACI27e3d .navbar-buttons {
  flex-wrap: wrap;
}
.cid-spACI27e3d .show {
  overflow: visible;
}
.cid-spACI27e3d .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-spACI27e3d .dropdown-item:active {
  background-color: transparent;
}
.cid-spACI27e3d .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-spACI27e3d .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-spACI27e3d .nav-item:focus,
.cid-spACI27e3d .nav-link:focus {
  outline: none;
}
.cid-spACI27e3d .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spACI27e3d .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-spACI27e3d .menu-logo {
  margin-right: auto;
}
.cid-spACI27e3d .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spACI27e3d .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-spACI27e3d .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-spACI27e3d .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-spACI27e3d .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-spACI27e3d .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-spACI27e3d .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-spACI27e3d .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-spACI27e3d .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-spACI27e3d .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spACI27e3d .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-spACI27e3d .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-spACI27e3d .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-spACI27e3d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-spACI27e3d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spACI27e3d .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-spACI27e3d .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spACI27e3d .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-spACI27e3d .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-spACI27e3d .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-spACI27e3d .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-spACI27e3d .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-spACI27e3d .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-spACI27e3d .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-spACI27e3d button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-spACI27e3d button.navbar-toggler:focus {
  outline: none;
}
.cid-spACI27e3d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-spACI27e3d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spACI27e3d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spACI27e3d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spACI27e3d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spACI27e3d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spACI27e3d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spACI27e3d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spACI27e3d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-spACI27e3d .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-spACI27e3d .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spACI27e3d .collapsed .btn {
  display: -webkit-flex;
}
.cid-spACI27e3d .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-spACI27e3d .collapsed .navbar-collapse.collapsing,
.cid-spACI27e3d .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-spACI27e3d .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-spACI27e3d .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-spACI27e3d .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-spACI27e3d .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-spACI27e3d .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-spACI27e3d .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-spACI27e3d .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-spACI27e3d .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-spACI27e3d .collapsed button.navbar-toggler {
  display: block;
}
.cid-spACI27e3d .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-spACI27e3d .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spACI27e3d .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-spACI27e3d .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-spACI27e3d .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-spACI27e3d .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;
}
@media (max-width: 991px) {
  .cid-spACI27e3d.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spACI27e3d img {
    height: 3.8rem !important;
  }
  .cid-spACI27e3d .btn {
    display: -webkit-flex;
  }
  .cid-spACI27e3d button.navbar-toggler {
    display: block;
  }
  .cid-spACI27e3d .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-spACI27e3d .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spACI27e3d .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-spACI27e3d .navbar-collapse.collapsing,
  .cid-spACI27e3d .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-spACI27e3d .navbar-collapse.collapsing .navbar-nav,
  .cid-spACI27e3d .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-spACI27e3d .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-spACI27e3d .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-spACI27e3d .navbar-collapse.collapsing .navbar-buttons,
  .cid-spACI27e3d .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-spACI27e3d .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-spACI27e3d .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-spACI27e3d .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-spACI27e3d .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-spACI27e3d .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-spACI27e3d .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;
  }
}
@media (max-width: 767px) {
  .cid-spACI27e3d .nav-link {
    justify-content: start !important;
  }
  .cid-spACI27e3d .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-spACI27e3d .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-spACI27e3d .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-spACI27e3d .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-spACI27e3d .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-spACI27e3d .nav-link:hover,
.cid-spACI27e3d .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-spACI27e3d .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-spACI27e3d .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-spACI3F5ff {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-spACI3F5ff .mbr-overlay {
  background: #2bdc9d;
}
.cid-spACI3F5ff .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-spACI3F5ff .mbr-section-subtitle,
.cid-spACI3F5ff .mbr-section-btn {
  color: #e3ec1a;
}
.cid-spACI3F5ff H1 {
  color: #ff4f7b;
}
.cid-spZYfbsCwN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spZYfbsCwN .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spZYfbsCwN .mbr-text {
  color: #04367c;
}
.cid-spACI6L8AD {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spACI6L8AD .mbr-overlay {
  background: #232323;
}
.cid-spACI7wUMs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spACI7wUMs .container-fluid {
  padding: 0 3rem;
}
.cid-spACI7wUMs .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-spACI7wUMs .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-spACI7wUMs .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-spACI7wUMs .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-spACI7wUMs .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-spACI7wUMs a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-spACI7wUMs a.close:hover {
  color: #ffffff;
}
.cid-spACI7wUMs svg {
  transition: all 0.5s ease-in;
}
.cid-spACI7wUMs svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-spACI7wUMs svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-spACI7wUMs svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-spACI7wUMs .container-fluid {
    padding: 0 1rem;
  }
}
.cid-spACI8hhBQ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spACI8hhBQ .container-fluid {
  padding: 0 3rem;
}
.cid-spACI8hhBQ .mbr-section-subtitle {
  color: #767676;
}
.cid-spACI8hhBQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spACI8hhBQ .table-wrapper {
  margin: 0 auto;
}
.cid-spACI8hhBQ table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spACI8hhBQ table thead tr {
  border: none !important;
}
.cid-spACI8hhBQ table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spACI8hhBQ table tr td {
  border-color: #eceeef;
}
.cid-spACI8hhBQ table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spACI8hhBQ table.table {
  background: #ffffff;
}
.cid-spACI8hhBQ tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spACI8hhBQ th:after,
.cid-spACI8hhBQ th:before {
  display: none !important;
}
.cid-spACI8hhBQ .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spACI8hhBQ .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spACI8hhBQ table th,
  .cid-spACI8hhBQ table td {
    padding: .75rem;
  }
}
.cid-spACI8hhBQ .body-item {
  text-align: left;
}
.cid-spACI8hhBQ .mbr-text {
  color: #e7f10a;
}
.cid-spACI8hhBQ .head-item {
  color: #232323;
}
.cid-spACI8hhBQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spACI8hhBQ .mbr-section-title,
.cid-spACI8hhBQ .head-item {
  color: #a61a3d;
}
.cid-spACI8hhBQ .mbr-section-subtitle,
.cid-spACI8hhBQ .table tbody .tableColumns .body-item,
.cid-spACI8hhBQ .table {
  color: #04367c;
  text-align: center;
}
.cid-spACI8hhBQ .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spACIbngFz {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spACIbngFz .mbr-overlay {
  background: #232323;
}
.cid-spACIeG9hh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spACIeG9hh .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spACIeG9hh .mbr-text {
  color: #04367c;
}
.cid-sq6xcC4xbm {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-sq6xcC4xbm .mbr-overlay {
  background: #232323;
}
.cid-spZVlXXxH6 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-spZVlXXxH6 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-spZVlXXxH6 a {
  font-style: normal;
}
.cid-spZVlXXxH6 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-spZVlXXxH6 .show {
  overflow: visible;
}
.cid-spZVlXXxH6 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-spZVlXXxH6 .dropdown-item:active {
  background-color: transparent;
}
.cid-spZVlXXxH6 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-spZVlXXxH6 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-spZVlXXxH6 .nav-item:focus,
.cid-spZVlXXxH6 .nav-link:focus {
  outline: none;
}
.cid-spZVlXXxH6 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-spZVlXXxH6 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-spZVlXXxH6 .menu-logo {
  margin-right: auto;
}
.cid-spZVlXXxH6 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spZVlXXxH6 .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-spZVlXXxH6 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-spZVlXXxH6 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-spZVlXXxH6 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-spZVlXXxH6 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-spZVlXXxH6 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-spZVlXXxH6 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-spZVlXXxH6 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-spZVlXXxH6 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-spZVlXXxH6 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-spZVlXXxH6 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-spZVlXXxH6 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-spZVlXXxH6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-spZVlXXxH6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spZVlXXxH6 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-spZVlXXxH6 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spZVlXXxH6 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-spZVlXXxH6 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-spZVlXXxH6 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-spZVlXXxH6 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-spZVlXXxH6 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-spZVlXXxH6 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-spZVlXXxH6 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-spZVlXXxH6 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-spZVlXXxH6 button.navbar-toggler:focus {
  outline: none;
}
.cid-spZVlXXxH6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-spZVlXXxH6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spZVlXXxH6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spZVlXXxH6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spZVlXXxH6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spZVlXXxH6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spZVlXXxH6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spZVlXXxH6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spZVlXXxH6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-spZVlXXxH6 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-spZVlXXxH6 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spZVlXXxH6 .collapsed .btn {
  display: -webkit-flex;
}
.cid-spZVlXXxH6 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-spZVlXXxH6 .collapsed .navbar-collapse.collapsing,
.cid-spZVlXXxH6 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-spZVlXXxH6 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-spZVlXXxH6 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-spZVlXXxH6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-spZVlXXxH6 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-spZVlXXxH6 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-spZVlXXxH6 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-spZVlXXxH6 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-spZVlXXxH6 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-spZVlXXxH6 .collapsed button.navbar-toggler {
  display: block;
}
.cid-spZVlXXxH6 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-spZVlXXxH6 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-spZVlXXxH6 .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-spZVlXXxH6 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-spZVlXXxH6 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-spZVlXXxH6 .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;
}
@media (max-width: 991px) {
  .cid-spZVlXXxH6.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spZVlXXxH6 img {
    height: 3.8rem !important;
  }
  .cid-spZVlXXxH6 .btn {
    display: -webkit-flex;
  }
  .cid-spZVlXXxH6 button.navbar-toggler {
    display: block;
  }
  .cid-spZVlXXxH6 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-spZVlXXxH6 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-spZVlXXxH6 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-spZVlXXxH6 .navbar-collapse.collapsing,
  .cid-spZVlXXxH6 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-spZVlXXxH6 .navbar-collapse.collapsing .navbar-nav,
  .cid-spZVlXXxH6 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-spZVlXXxH6 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-spZVlXXxH6 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-spZVlXXxH6 .navbar-collapse.collapsing .navbar-buttons,
  .cid-spZVlXXxH6 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-spZVlXXxH6 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-spZVlXXxH6 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-spZVlXXxH6 .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-spZVlXXxH6 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-spZVlXXxH6 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-spZVlXXxH6 .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;
  }
}
@media (max-width: 767px) {
  .cid-spZVlXXxH6 .nav-link {
    justify-content: start !important;
  }
  .cid-spZVlXXxH6 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-spZVlXXxH6 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-spZVlXXxH6 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-spZVlXXxH6 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-spZVlXXxH6 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-spZVlXXxH6 .nav-link:hover,
.cid-spZVlXXxH6 .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-spZVlXXxH6 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-spZVlXXxH6 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-spZVlZQheW {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-spZVlZQheW .mbr-overlay {
  background: #2bdc9d;
}
.cid-spZVlZQheW .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-spZVlZQheW .mbr-section-subtitle,
.cid-spZVlZQheW .mbr-section-btn {
  color: #e3ec1a;
}
.cid-spZVlZQheW H1 {
  color: #ff4f7b;
}
.cid-sq0jbJAzBV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sq0jbJAzBV .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sq0jbJAzBV .mbr-text {
  color: #04367c;
}
.cid-spZVm0pglG {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-spZVm0pglG .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-spZVm0pglG .mbr-section-title {
  margin: 0;
  color: #f25916;
}
.cid-spZVm0pglG .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spZVm0pglG .card-img span {
  color: #1dc9cb;
}
.cid-spZVm0pglG .row-item {
  margin-bottom: 2rem;
}
.cid-spZVm0pglG .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-spZVm0pglG .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-spZVm0pglG .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-spZVm0pglG .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spZVm0pglG .mbr-card-title,
.cid-spZVm0pglG .card-img {
  color: #a61a3d;
}
.cid-spZVm15r4E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-spZVm15r4E .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-spZVm15r4E .mbr-section-title {
  margin: 0;
}
.cid-spZVm15r4E .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spZVm15r4E .card-img span {
  color: #1dc9cb;
}
.cid-spZVm15r4E .row-item {
  margin-bottom: 2rem;
}
.cid-spZVm15r4E .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-spZVm15r4E .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-spZVm15r4E .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-spZVm15r4E .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spZVm15r4E .mbr-card-title,
.cid-spZVm15r4E .card-img {
  color: #a61a3d;
}
.cid-spZVm1KxU9 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-spZVm1KxU9 .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-spZVm1KxU9 .mbr-section-title {
  margin: 0;
}
.cid-spZVm1KxU9 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-spZVm1KxU9 .card-img span {
  color: #1dc9cb;
}
.cid-spZVm1KxU9 .row-item {
  margin-bottom: 2rem;
}
.cid-spZVm1KxU9 .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-spZVm1KxU9 .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-spZVm1KxU9 .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-spZVm1KxU9 .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-spZVm1KxU9 .mbr-card-title,
.cid-spZVm1KxU9 .card-img {
  color: #a61a3d;
}
.cid-spZVm2MBrI {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spZVm2MBrI .mbr-overlay {
  background: #232323;
}
.cid-spZVm4bl2x {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-spZVm4bl2x .container-fluid {
  padding: 0 3rem;
}
.cid-spZVm4bl2x .mbr-section-subtitle {
  color: #767676;
}
.cid-spZVm4bl2x .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-spZVm4bl2x .table-wrapper {
  margin: 0 auto;
}
.cid-spZVm4bl2x table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-spZVm4bl2x table thead tr {
  border: none !important;
}
.cid-spZVm4bl2x table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-spZVm4bl2x table tr td {
  border-color: #eceeef;
}
.cid-spZVm4bl2x table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-spZVm4bl2x table.table {
  background: #ffffff;
}
.cid-spZVm4bl2x tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-spZVm4bl2x th:after,
.cid-spZVm4bl2x th:before {
  display: none !important;
}
.cid-spZVm4bl2x .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-spZVm4bl2x .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-spZVm4bl2x table th,
  .cid-spZVm4bl2x table td {
    padding: .75rem;
  }
}
.cid-spZVm4bl2x .body-item {
  text-align: left;
}
.cid-spZVm4bl2x .mbr-text {
  color: #e7f10a;
}
.cid-spZVm4bl2x .head-item {
  color: #232323;
}
.cid-spZVm4bl2x .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-spZVm4bl2x .mbr-section-title,
.cid-spZVm4bl2x .head-item {
  color: #a61a3d;
}
.cid-spZVm4bl2x .mbr-section-subtitle,
.cid-spZVm4bl2x .table tbody .tableColumns .body-item,
.cid-spZVm4bl2x .table {
  color: #04367c;
  text-align: center;
}
.cid-spZVm4bl2x .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spZVm7lUBy {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spZVm7lUBy .mbr-overlay {
  background: #232323;
}
.cid-sq6cHsk1Pi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sq6cHsk1Pi .mbr-section-title {
  color: #f25916;
}
.cid-sq61k5oZPB {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sq61k5oZPB .container-fluid {
  padding: 0 3rem;
}
.cid-sq61k5oZPB .mbr-section-subtitle {
  color: #767676;
}
.cid-sq61k5oZPB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sq61k5oZPB .table-wrapper {
  margin: 0 auto;
}
.cid-sq61k5oZPB table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sq61k5oZPB table thead tr {
  border: none !important;
}
.cid-sq61k5oZPB table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-sq61k5oZPB table tr td {
  border-color: #eceeef;
}
.cid-sq61k5oZPB table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sq61k5oZPB table.table {
  background: #ffffff;
}
.cid-sq61k5oZPB tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-sq61k5oZPB th:after,
.cid-sq61k5oZPB th:before {
  display: none !important;
}
.cid-sq61k5oZPB .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sq61k5oZPB .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sq61k5oZPB table th,
  .cid-sq61k5oZPB table td {
    padding: .75rem;
  }
}
.cid-sq61k5oZPB .body-item {
  text-align: left;
}
.cid-sq61k5oZPB .mbr-text {
  color: #e7f10a;
}
.cid-sq61k5oZPB .head-item {
  color: #232323;
}
.cid-sq61k5oZPB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-sq61k5oZPB .mbr-section-title,
.cid-sq61k5oZPB .head-item {
  color: #a61a3d;
}
.cid-sq61k5oZPB .mbr-section-subtitle,
.cid-sq61k5oZPB .table tbody .tableColumns .body-item,
.cid-sq61k5oZPB .table {
  color: #04367c;
  text-align: center;
}
.cid-sq61k5oZPB .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spZVmdiLaW {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spZVmdiLaW .mbr-overlay {
  background: #232323;
}
.cid-sq6cDsXptz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sq6cDsXptz .mbr-section-title {
  color: #f25916;
}
.cid-sq61lnuVcf {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sq61lnuVcf .container-fluid {
  padding: 0 3rem;
}
.cid-sq61lnuVcf .mbr-section-subtitle {
  color: #767676;
}
.cid-sq61lnuVcf .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sq61lnuVcf .table-wrapper {
  margin: 0 auto;
}
.cid-sq61lnuVcf table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sq61lnuVcf table thead tr {
  border: none !important;
}
.cid-sq61lnuVcf table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-sq61lnuVcf table tr td {
  border-color: #eceeef;
}
.cid-sq61lnuVcf table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sq61lnuVcf table.table {
  background: #ffffff;
}
.cid-sq61lnuVcf tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-sq61lnuVcf th:after,
.cid-sq61lnuVcf th:before {
  display: none !important;
}
.cid-sq61lnuVcf .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sq61lnuVcf .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sq61lnuVcf table th,
  .cid-sq61lnuVcf table td {
    padding: .75rem;
  }
}
.cid-sq61lnuVcf .body-item {
  text-align: left;
}
.cid-sq61lnuVcf .mbr-text {
  color: #e7f10a;
}
.cid-sq61lnuVcf .head-item {
  color: #232323;
}
.cid-sq61lnuVcf .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-sq61lnuVcf .mbr-section-title,
.cid-sq61lnuVcf .head-item {
  color: #a61a3d;
}
.cid-sq61lnuVcf .mbr-section-subtitle,
.cid-sq61lnuVcf .table tbody .tableColumns .body-item,
.cid-sq61lnuVcf .table {
  color: #04367c;
  text-align: center;
}
.cid-sq61lnuVcf .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spZVmlAAKu {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spZVmlAAKu .mbr-overlay {
  background: #232323;
}
.cid-sq6cABcdYx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sq6cABcdYx .mbr-section-title {
  color: #f25916;
}
.cid-sq61mqjEQD {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sq61mqjEQD .container-fluid {
  padding: 0 3rem;
}
.cid-sq61mqjEQD .mbr-section-subtitle {
  color: #767676;
}
.cid-sq61mqjEQD .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sq61mqjEQD .table-wrapper {
  margin: 0 auto;
}
.cid-sq61mqjEQD table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sq61mqjEQD table thead tr {
  border: none !important;
}
.cid-sq61mqjEQD table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-sq61mqjEQD table tr td {
  border-color: #eceeef;
}
.cid-sq61mqjEQD table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sq61mqjEQD table.table {
  background: #ffffff;
}
.cid-sq61mqjEQD tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-sq61mqjEQD th:after,
.cid-sq61mqjEQD th:before {
  display: none !important;
}
.cid-sq61mqjEQD .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sq61mqjEQD .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sq61mqjEQD table th,
  .cid-sq61mqjEQD table td {
    padding: .75rem;
  }
}
.cid-sq61mqjEQD .body-item {
  text-align: left;
}
.cid-sq61mqjEQD .mbr-text {
  color: #e7f10a;
}
.cid-sq61mqjEQD .head-item {
  color: #232323;
}
.cid-sq61mqjEQD .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-sq61mqjEQD .mbr-section-title,
.cid-sq61mqjEQD .head-item {
  color: #a61a3d;
}
.cid-sq61mqjEQD .mbr-section-subtitle,
.cid-sq61mqjEQD .table tbody .tableColumns .body-item,
.cid-sq61mqjEQD .table {
  color: #04367c;
  text-align: center;
}
.cid-sq61mqjEQD .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spZVmuAIlf {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spZVmuAIlf .mbr-overlay {
  background: #232323;
}
.cid-sq6cxc2SFX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sq6cxc2SFX .mbr-section-title {
  color: #f25916;
}
.cid-sq61nnOK9N {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sq61nnOK9N .container-fluid {
  padding: 0 3rem;
}
.cid-sq61nnOK9N .mbr-section-subtitle {
  color: #767676;
}
.cid-sq61nnOK9N .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sq61nnOK9N .table-wrapper {
  margin: 0 auto;
}
.cid-sq61nnOK9N table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sq61nnOK9N table thead tr {
  border: none !important;
}
.cid-sq61nnOK9N table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-sq61nnOK9N table tr td {
  border-color: #eceeef;
}
.cid-sq61nnOK9N table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sq61nnOK9N table.table {
  background: #ffffff;
}
.cid-sq61nnOK9N tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-sq61nnOK9N th:after,
.cid-sq61nnOK9N th:before {
  display: none !important;
}
.cid-sq61nnOK9N .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sq61nnOK9N .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sq61nnOK9N table th,
  .cid-sq61nnOK9N table td {
    padding: .75rem;
  }
}
.cid-sq61nnOK9N .body-item {
  text-align: left;
}
.cid-sq61nnOK9N .mbr-text {
  color: #e7f10a;
}
.cid-sq61nnOK9N .head-item {
  color: #232323;
}
.cid-sq61nnOK9N .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-sq61nnOK9N .mbr-section-title,
.cid-sq61nnOK9N .head-item {
  color: #a61a3d;
}
.cid-sq61nnOK9N .mbr-section-subtitle,
.cid-sq61nnOK9N .table tbody .tableColumns .body-item,
.cid-sq61nnOK9N .table {
  color: #04367c;
  text-align: center;
}
.cid-sq61nnOK9N .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spZVmEL8RF {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-spZVmEL8RF .mbr-overlay {
  background: #232323;
}
.cid-sq6cub127X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sq6cub127X .mbr-section-title {
  color: #f25916;
}
.cid-sq61orXCNy {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sq61orXCNy .container-fluid {
  padding: 0 3rem;
}
.cid-sq61orXCNy .mbr-section-subtitle {
  color: #767676;
}
.cid-sq61orXCNy .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sq61orXCNy .table-wrapper {
  margin: 0 auto;
}
.cid-sq61orXCNy table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sq61orXCNy table thead tr {
  border: none !important;
}
.cid-sq61orXCNy table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-sq61orXCNy table tr td {
  border-color: #eceeef;
}
.cid-sq61orXCNy table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sq61orXCNy table.table {
  background: #ffffff;
}
.cid-sq61orXCNy tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-sq61orXCNy th:after,
.cid-sq61orXCNy th:before {
  display: none !important;
}
.cid-sq61orXCNy .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sq61orXCNy .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sq61orXCNy table th,
  .cid-sq61orXCNy table td {
    padding: .75rem;
  }
}
.cid-sq61orXCNy .body-item {
  text-align: left;
}
.cid-sq61orXCNy .mbr-text {
  color: #e7f10a;
}
.cid-sq61orXCNy .head-item {
  color: #232323;
}
.cid-sq61orXCNy .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-sq61orXCNy .mbr-section-title,
.cid-sq61orXCNy .head-item {
  color: #a61a3d;
}
.cid-sq61orXCNy .mbr-section-subtitle,
.cid-sq61orXCNy .table tbody .tableColumns .body-item,
.cid-sq61orXCNy .table {
  color: #04367c;
  text-align: center;
}
.cid-sq61orXCNy .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-sq0UXKG9Df {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-sq0UXKG9Df .mbr-overlay {
  background: #232323;
}
.cid-sq6cj79XAB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sq6cj79XAB .mbr-section-title {
  color: #f25916;
}
.cid-sq61pqKLqO {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sq61pqKLqO .container-fluid {
  padding: 0 3rem;
}
.cid-sq61pqKLqO .mbr-section-subtitle {
  color: #767676;
}
.cid-sq61pqKLqO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sq61pqKLqO .table-wrapper {
  margin: 0 auto;
}
.cid-sq61pqKLqO table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sq61pqKLqO table thead tr {
  border: none !important;
}
.cid-sq61pqKLqO table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-sq61pqKLqO table tr td {
  border-color: #eceeef;
}
.cid-sq61pqKLqO table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sq61pqKLqO table.table {
  background: #ffffff;
}
.cid-sq61pqKLqO tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-sq61pqKLqO th:after,
.cid-sq61pqKLqO th:before {
  display: none !important;
}
.cid-sq61pqKLqO .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sq61pqKLqO .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sq61pqKLqO table th,
  .cid-sq61pqKLqO table td {
    padding: .75rem;
  }
}
.cid-sq61pqKLqO .body-item {
  text-align: left;
}
.cid-sq61pqKLqO .mbr-text {
  color: #e7f10a;
}
.cid-sq61pqKLqO .head-item {
  color: #232323;
}
.cid-sq61pqKLqO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-sq61pqKLqO .mbr-section-title,
.cid-sq61pqKLqO .head-item {
  color: #a61a3d;
}
.cid-sq61pqKLqO .mbr-section-subtitle,
.cid-sq61pqKLqO .table tbody .tableColumns .body-item,
.cid-sq61pqKLqO .table {
  color: #04367c;
  text-align: center;
}
.cid-sq61pqKLqO .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-sq0MBAsjls {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-sq0MBAsjls .mbr-overlay {
  background: #232323;
}
.cid-sq6cgDufVD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sq6cgDufVD .mbr-section-title {
  color: #f25916;
}
.cid-sq63VUE6Ow {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sq63VUE6Ow .container-fluid {
  padding: 0 3rem;
}
.cid-sq63VUE6Ow .mbr-section-subtitle {
  color: #767676;
}
.cid-sq63VUE6Ow .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sq63VUE6Ow .table-wrapper {
  margin: 0 auto;
}
.cid-sq63VUE6Ow table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sq63VUE6Ow table thead tr {
  border: none !important;
}
.cid-sq63VUE6Ow table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-sq63VUE6Ow table tr td {
  border-color: #eceeef;
}
.cid-sq63VUE6Ow table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sq63VUE6Ow table.table {
  background: #ffffff;
}
.cid-sq63VUE6Ow tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-sq63VUE6Ow th:after,
.cid-sq63VUE6Ow th:before {
  display: none !important;
}
.cid-sq63VUE6Ow .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sq63VUE6Ow .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sq63VUE6Ow table th,
  .cid-sq63VUE6Ow table td {
    padding: .75rem;
  }
}
.cid-sq63VUE6Ow .body-item {
  text-align: left;
}
.cid-sq63VUE6Ow .mbr-text {
  color: #e7f10a;
}
.cid-sq63VUE6Ow .head-item {
  color: #232323;
}
.cid-sq63VUE6Ow .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-sq63VUE6Ow .mbr-section-title,
.cid-sq63VUE6Ow .head-item {
  color: #a61a3d;
}
.cid-sq63VUE6Ow .mbr-section-subtitle,
.cid-sq63VUE6Ow .table tbody .tableColumns .body-item,
.cid-sq63VUE6Ow .table {
  color: #04367c;
  text-align: center;
}
.cid-sq63VUE6Ow .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-sq63TWVaQJ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-sq63TWVaQJ .mbr-overlay {
  background: #232323;
}
.cid-sq6b8Oxay7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sq6b8Oxay7 .mbr-section-title {
  color: #f25916;
}
.cid-sq63X8RFrS {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sq63X8RFrS .container-fluid {
  padding: 0 3rem;
}
.cid-sq63X8RFrS .mbr-section-subtitle {
  color: #767676;
}
.cid-sq63X8RFrS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sq63X8RFrS .table-wrapper {
  margin: 0 auto;
}
.cid-sq63X8RFrS table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sq63X8RFrS table thead tr {
  border: none !important;
}
.cid-sq63X8RFrS table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-sq63X8RFrS table tr td {
  border-color: #eceeef;
}
.cid-sq63X8RFrS table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sq63X8RFrS table.table {
  background: #ffffff;
}
.cid-sq63X8RFrS tr:hover {
  background-color: #f9e7a9 !important;
}
.cid-sq63X8RFrS th:after,
.cid-sq63X8RFrS th:before {
  display: none !important;
}
.cid-sq63X8RFrS .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sq63X8RFrS .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sq63X8RFrS table th,
  .cid-sq63X8RFrS table td {
    padding: .75rem;
  }
}
.cid-sq63X8RFrS .body-item {
  text-align: left;
}
.cid-sq63X8RFrS .mbr-text {
  color: #e7f10a;
}
.cid-sq63X8RFrS .head-item {
  color: #232323;
}
.cid-sq63X8RFrS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-sq63X8RFrS .mbr-section-title,
.cid-sq63X8RFrS .head-item {
  color: #a61a3d;
}
.cid-sq63X8RFrS .mbr-section-subtitle,
.cid-sq63X8RFrS .table tbody .tableColumns .body-item,
.cid-sq63X8RFrS .table {
  color: #04367c;
  text-align: center;
}
.cid-sq63X8RFrS .table-info-container .dataTables_info {
  color: #55eb26;
}
.cid-spZVmIwF3q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spZVmIwF3q .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-spZVmIwF3q .mbr-text {
  color: #04367c;
}
.cid-sq5tw7LjXz .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sq5tw7LjXz .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sq5tw7LjXz a {
  font-style: normal;
}
.cid-sq5tw7LjXz .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sq5tw7LjXz .show {
  overflow: visible;
}
.cid-sq5tw7LjXz .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sq5tw7LjXz .dropdown-item:active {
  background-color: transparent;
}
.cid-sq5tw7LjXz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sq5tw7LjXz .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sq5tw7LjXz .nav-item:focus,
.cid-sq5tw7LjXz .nav-link:focus {
  outline: none;
}
.cid-sq5tw7LjXz .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sq5tw7LjXz .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sq5tw7LjXz .menu-logo {
  margin-right: auto;
}
.cid-sq5tw7LjXz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sq5tw7LjXz .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-sq5tw7LjXz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sq5tw7LjXz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sq5tw7LjXz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sq5tw7LjXz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sq5tw7LjXz .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sq5tw7LjXz .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sq5tw7LjXz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sq5tw7LjXz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sq5tw7LjXz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sq5tw7LjXz .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sq5tw7LjXz .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sq5tw7LjXz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sq5tw7LjXz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sq5tw7LjXz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sq5tw7LjXz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sq5tw7LjXz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sq5tw7LjXz .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sq5tw7LjXz .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sq5tw7LjXz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sq5tw7LjXz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sq5tw7LjXz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sq5tw7LjXz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sq5tw7LjXz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sq5tw7LjXz button.navbar-toggler:focus {
  outline: none;
}
.cid-sq5tw7LjXz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-sq5tw7LjXz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sq5tw7LjXz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq5tw7LjXz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq5tw7LjXz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sq5tw7LjXz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq5tw7LjXz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sq5tw7LjXz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sq5tw7LjXz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sq5tw7LjXz .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sq5tw7LjXz .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sq5tw7LjXz .collapsed .btn {
  display: -webkit-flex;
}
.cid-sq5tw7LjXz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sq5tw7LjXz .collapsed .navbar-collapse.collapsing,
.cid-sq5tw7LjXz .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sq5tw7LjXz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sq5tw7LjXz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sq5tw7LjXz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sq5tw7LjXz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sq5tw7LjXz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sq5tw7LjXz .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sq5tw7LjXz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sq5tw7LjXz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sq5tw7LjXz .collapsed button.navbar-toggler {
  display: block;
}
.cid-sq5tw7LjXz .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sq5tw7LjXz .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sq5tw7LjXz .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-sq5tw7LjXz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sq5tw7LjXz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sq5tw7LjXz .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;
}
@media (max-width: 991px) {
  .cid-sq5tw7LjXz.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sq5tw7LjXz img {
    height: 3.8rem !important;
  }
  .cid-sq5tw7LjXz .btn {
    display: -webkit-flex;
  }
  .cid-sq5tw7LjXz button.navbar-toggler {
    display: block;
  }
  .cid-sq5tw7LjXz .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sq5tw7LjXz .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sq5tw7LjXz .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sq5tw7LjXz .navbar-collapse.collapsing,
  .cid-sq5tw7LjXz .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sq5tw7LjXz .navbar-collapse.collapsing .navbar-nav,
  .cid-sq5tw7LjXz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sq5tw7LjXz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sq5tw7LjXz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sq5tw7LjXz .navbar-collapse.collapsing .navbar-buttons,
  .cid-sq5tw7LjXz .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sq5tw7LjXz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sq5tw7LjXz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sq5tw7LjXz .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-sq5tw7LjXz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sq5tw7LjXz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sq5tw7LjXz .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;
  }
}
@media (max-width: 767px) {
  .cid-sq5tw7LjXz .nav-link {
    justify-content: start !important;
  }
  .cid-sq5tw7LjXz .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sq5tw7LjXz .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sq5tw7LjXz .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sq5tw7LjXz .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sq5tw7LjXz .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sq5tw7LjXz .nav-link:hover,
.cid-sq5tw7LjXz .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-sq5tw7LjXz .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sq5tw7LjXz .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sq5tw8snHD {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sq5tw8snHD .mbr-overlay {
  background: #2bdc9d;
}
.cid-sq5tw8snHD .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-sq5tw8snHD .mbr-section-subtitle,
.cid-sq5tw8snHD .mbr-section-btn {
  color: #e3ec1a;
}
.cid-sq5tw8snHD H1 {
  color: #ff4f7b;
}
.cid-sq5wKhtXaH {
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-sq5wKhtXaH .mbr-text,
.cid-sq5wKhtXaH .typed-text,
.cid-sq5wKhtXaH .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sq5wKhtXaH .btn {
  margin-left: 4px !important;
}
.cid-sq5wKhtXaH .animated-element {
  color: #ffbc00;
}
.cid-sq5wKhtXaH .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sq5wh3pGyI {
  background-image: url("../../../assets/images/network1-1-2000x1125.png");
}
.cid-sq5wh3pGyI .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-sq5wh3pGyI .mbr-arrow i {
  color: #ffffff !important;
}
.cid-sq5wh3pGyI .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sq5wh3pGyI .animated-element,
.cid-sq5wh3pGyI .typed-cursor {
  color: #ffffff;
}
.cid-sq5wh3pGyI .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-sq5wh3pGyI .typed-text {
    text-align: center;
  }
}
.cid-sq5wh3pGyI .mbr-section-title {
  color: #04367c;
}
.cid-sq5wh3pGyI .mbr-section-subtitle,
.cid-sq5wh3pGyI .underline {
  color: #f25916;
}
.cid-sq5DwR7LtC {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sq5DwR7LtC .mbr-section-title {
  color: #f25916;
}
.cid-sqnd4nrI9j {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqnd4nrI9j .mbr-text {
  color: #8d97ad;
}
.cid-sqnd4nrI9j .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-sqnd4nrI9j .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-sqnd4nrI9j .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #000000;
  background: #e3ec1a;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3ec1a, #a61a3d);
}
.cid-sq5DyLU0ZH {
  background: #ffffff;
  padding-top: 90px;
  padding-bottom: 0px;
}
.cid-sq5DyLU0ZH .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.cid-sq5DyLU0ZH .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sq5DyLU0ZH .image-block:hover:before {
  opacity: 0.2;
}
.cid-sq5DyLU0ZH .image-block:hover .wrap {
  opacity: 1;
}
.cid-sq5DyLU0ZH .image-block:hover img {
  transform: scale(1.05);
}
.cid-sq5DyLU0ZH h4 {
  letter-spacing: 2px;
}
.cid-sq5DyLU0ZH figcaption {
  position: relative;
}
.cid-sq5DyLU0ZH figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sq5DyLU0ZH img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-sq5DyLU0ZH .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sq5DyLU0ZH .wrap {
    opacity: 1!important;
  }
  .cid-sq5DyLU0ZH .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-sq5DyLU0ZH H4 {
  color: #e3ec1a;
}
.cid-sq5DyLU0ZH P {
  text-align: right;
}
.cid-sqahp97Jtb {
  padding-top: 135px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background12-1.jpg");
}
.cid-sqahp97Jtb .mbr-section-title {
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #04367c;
  text-align: center;
}
.cid-sqahp97Jtb .nav {
  border: none;
}
.cid-sqahp97Jtb .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqahp97Jtb .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #232323;
  font-style: normal;
  font-weight: 500;
  padding: 1rem 3rem;
  margin: 0px -0.5px 1rem -0.5px;
  transition: all .5s;
  border-radius: 0px !important;
  border-bottom: 1px solid #232323;
}
.cid-sqahp97Jtb .nav-tabs .nav-link:hover {
  border: 1px solid #232323;
  background-color: #232323;
  color: #ffffff;
}
.cid-sqahp97Jtb .nav-tabs .nav-link.active {
  border: 1px solid #232323;
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #232323;
}
.cid-sqahp97Jtb P {
  text-align: center;
  color: #04367c;
}
.cid-sq5Dzm5Cz0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sq5Dzm5Cz0 .video-wrapper iframe {
  width: 100%;
}
.cid-sq5Dzm5Cz0 .mbr-section-title,
.cid-sq5Dzm5Cz0 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sq5Dzm5Cz0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sq5Dzm5Cz0 .mbr-section-title {
  color: #04367c;
}
.cid-sq5Dzm5Cz0 .mbr-description {
  color: #a61a3d;
  text-align: center;
}
.cid-sqnQyqEvE6 {
  padding-top: 75px;
  padding-bottom: 45px;
  background: #f4f8fa;
}
.cid-sqnQyqEvE6 .mbr-section-subtitle,
.cid-sqnQyqEvE6 .caption-text {
  color: #8d97ad;
}
.cid-sqnQyqEvE6 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-sqnQyqEvE6 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-sqnQyqEvE6 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-sqnQyqEvE6 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-sqnQyqEvE6 .mbr-section-title {
  color: #f25916;
}
.cid-sqnQyqEvE6 .mbr-section-subtitle {
  color: #000000;
}
.cid-sq5DzSnmis {
  display: flex;
  background-image: url("../../../assets/images/background12.jpg");
}
.cid-sq5DzSnmis .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sq5DzSnmis .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sq5DzSnmis {
    align-items: flex-end;
  }
  .cid-sq5DzSnmis .row {
    justify-content: flex-start;
  }
  .cid-sq5DzSnmis .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sq5DzSnmis .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sq5DzSnmis {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sq5DzSnmis .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sq5DzSnmis .content-wrap {
    width: 100%;
  }
}
.cid-sqziOUYV5y .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sqziOUYV5y .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sqziOUYV5y a {
  font-style: normal;
}
.cid-sqziOUYV5y .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sqziOUYV5y .show {
  overflow: visible;
}
.cid-sqziOUYV5y .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sqziOUYV5y .dropdown-item:active {
  background-color: transparent;
}
.cid-sqziOUYV5y .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sqziOUYV5y .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sqziOUYV5y .nav-item:focus,
.cid-sqziOUYV5y .nav-link:focus {
  outline: none;
}
.cid-sqziOUYV5y .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqziOUYV5y .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sqziOUYV5y .menu-logo {
  margin-right: auto;
}
.cid-sqziOUYV5y .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqziOUYV5y .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-sqziOUYV5y .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqziOUYV5y .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqziOUYV5y .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sqziOUYV5y .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqziOUYV5y .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sqziOUYV5y .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sqziOUYV5y .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqziOUYV5y .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqziOUYV5y .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqziOUYV5y .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sqziOUYV5y .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sqziOUYV5y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sqziOUYV5y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqziOUYV5y .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqziOUYV5y .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqziOUYV5y .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sqziOUYV5y .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sqziOUYV5y .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sqziOUYV5y .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqziOUYV5y .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqziOUYV5y .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sqziOUYV5y .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqziOUYV5y button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sqziOUYV5y button.navbar-toggler:focus {
  outline: none;
}
.cid-sqziOUYV5y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-sqziOUYV5y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sqziOUYV5y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqziOUYV5y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqziOUYV5y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sqziOUYV5y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqziOUYV5y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sqziOUYV5y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sqziOUYV5y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sqziOUYV5y .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sqziOUYV5y .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqziOUYV5y .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqziOUYV5y .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqziOUYV5y .collapsed .navbar-collapse.collapsing,
.cid-sqziOUYV5y .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sqziOUYV5y .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqziOUYV5y .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqziOUYV5y .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqziOUYV5y .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqziOUYV5y .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqziOUYV5y .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sqziOUYV5y .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqziOUYV5y .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sqziOUYV5y .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqziOUYV5y .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sqziOUYV5y .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqziOUYV5y .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-sqziOUYV5y .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqziOUYV5y .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqziOUYV5y .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;
}
@media (max-width: 991px) {
  .cid-sqziOUYV5y.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqziOUYV5y img {
    height: 3.8rem !important;
  }
  .cid-sqziOUYV5y .btn {
    display: -webkit-flex;
  }
  .cid-sqziOUYV5y button.navbar-toggler {
    display: block;
  }
  .cid-sqziOUYV5y .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sqziOUYV5y .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqziOUYV5y .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqziOUYV5y .navbar-collapse.collapsing,
  .cid-sqziOUYV5y .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sqziOUYV5y .navbar-collapse.collapsing .navbar-nav,
  .cid-sqziOUYV5y .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqziOUYV5y .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqziOUYV5y .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqziOUYV5y .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqziOUYV5y .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sqziOUYV5y .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqziOUYV5y .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqziOUYV5y .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-sqziOUYV5y .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqziOUYV5y .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqziOUYV5y .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;
  }
}
@media (max-width: 767px) {
  .cid-sqziOUYV5y .nav-link {
    justify-content: start !important;
  }
  .cid-sqziOUYV5y .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sqziOUYV5y .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sqziOUYV5y .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sqziOUYV5y .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sqziOUYV5y .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sqziOUYV5y .nav-link:hover,
.cid-sqziOUYV5y .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-sqziOUYV5y .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sqziOUYV5y .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sqziOVDzyP {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sqziOVDzyP .mbr-overlay {
  background: #2bdc9d;
}
.cid-sqziOVDzyP .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-sqziOVDzyP .mbr-section-subtitle,
.cid-sqziOVDzyP .mbr-section-btn {
  color: #e3ec1a;
}
.cid-sqziOVDzyP H1 {
  color: #ff4f7b;
}
.cid-sqzk47pcED {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sqzk47pcED .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sqzk47pcED .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sqzk47pcED .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sqzk47pcED .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sqzk47pcED .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #e3ec1a);
}
.cid-sqzk47pcED .icon-focus {
  display: none;
}
.cid-sqzk47pcED .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sqzk47pcED ul {
  font-size: 0;
}
.cid-sqzk47pcED .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sqzk47pcED .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-sqzk47pcED .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
}
.cid-sqzk47pcED .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-sqzk47pcED .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-sqzk47pcED .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-sqzk47pcED .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-sqzk47pcED .btn:hover {
  background: transparent !important;
}
.cid-sqzk47pcED .btn:hover:before {
  background: transparent !important;
}
.cid-sqzk47pcED .btn:before {
  background-color: transparent !important;
}
.cid-sqzk47pcED .btn:focus {
  box-shadow: none;
}
.cid-sqzk47pcED .mbr-section-title {
  position: relative;
  z-index: 1;
  color: #f25916;
}
.cid-sqE4JLQ0bT .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sqE4JLQ0bT .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sqE4JLQ0bT a {
  font-style: normal;
}
.cid-sqE4JLQ0bT .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sqE4JLQ0bT .show {
  overflow: visible;
}
.cid-sqE4JLQ0bT .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sqE4JLQ0bT .dropdown-item:active {
  background-color: transparent;
}
.cid-sqE4JLQ0bT .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sqE4JLQ0bT .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sqE4JLQ0bT .nav-item:focus,
.cid-sqE4JLQ0bT .nav-link:focus {
  outline: none;
}
.cid-sqE4JLQ0bT .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sqE4JLQ0bT .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sqE4JLQ0bT .menu-logo {
  margin-right: auto;
}
.cid-sqE4JLQ0bT .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqE4JLQ0bT .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-sqE4JLQ0bT .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqE4JLQ0bT .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqE4JLQ0bT .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sqE4JLQ0bT .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqE4JLQ0bT .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sqE4JLQ0bT .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sqE4JLQ0bT .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqE4JLQ0bT .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqE4JLQ0bT .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqE4JLQ0bT .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sqE4JLQ0bT .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sqE4JLQ0bT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sqE4JLQ0bT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqE4JLQ0bT .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqE4JLQ0bT .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqE4JLQ0bT .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sqE4JLQ0bT .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sqE4JLQ0bT .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sqE4JLQ0bT .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqE4JLQ0bT .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqE4JLQ0bT .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sqE4JLQ0bT .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqE4JLQ0bT button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sqE4JLQ0bT button.navbar-toggler:focus {
  outline: none;
}
.cid-sqE4JLQ0bT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-sqE4JLQ0bT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sqE4JLQ0bT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqE4JLQ0bT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqE4JLQ0bT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sqE4JLQ0bT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqE4JLQ0bT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sqE4JLQ0bT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sqE4JLQ0bT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sqE4JLQ0bT .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sqE4JLQ0bT .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqE4JLQ0bT .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqE4JLQ0bT .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqE4JLQ0bT .collapsed .navbar-collapse.collapsing,
.cid-sqE4JLQ0bT .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sqE4JLQ0bT .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqE4JLQ0bT .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqE4JLQ0bT .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqE4JLQ0bT .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqE4JLQ0bT .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqE4JLQ0bT .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sqE4JLQ0bT .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqE4JLQ0bT .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sqE4JLQ0bT .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqE4JLQ0bT .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sqE4JLQ0bT .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sqE4JLQ0bT .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-sqE4JLQ0bT .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqE4JLQ0bT .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqE4JLQ0bT .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;
}
@media (max-width: 991px) {
  .cid-sqE4JLQ0bT.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqE4JLQ0bT img {
    height: 3.8rem !important;
  }
  .cid-sqE4JLQ0bT .btn {
    display: -webkit-flex;
  }
  .cid-sqE4JLQ0bT button.navbar-toggler {
    display: block;
  }
  .cid-sqE4JLQ0bT .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sqE4JLQ0bT .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sqE4JLQ0bT .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqE4JLQ0bT .navbar-collapse.collapsing,
  .cid-sqE4JLQ0bT .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sqE4JLQ0bT .navbar-collapse.collapsing .navbar-nav,
  .cid-sqE4JLQ0bT .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqE4JLQ0bT .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqE4JLQ0bT .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqE4JLQ0bT .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqE4JLQ0bT .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sqE4JLQ0bT .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqE4JLQ0bT .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqE4JLQ0bT .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-sqE4JLQ0bT .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqE4JLQ0bT .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqE4JLQ0bT .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;
  }
}
@media (max-width: 767px) {
  .cid-sqE4JLQ0bT .nav-link {
    justify-content: start !important;
  }
  .cid-sqE4JLQ0bT .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sqE4JLQ0bT .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sqE4JLQ0bT .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sqE4JLQ0bT .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sqE4JLQ0bT .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sqE4JLQ0bT .nav-link:hover,
.cid-sqE4JLQ0bT .dropdown-item:hover {
  color: #ed4266 !important;
}
@media (min-width: 1500px) {
  .cid-sqE4JLQ0bT .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sqE4JLQ0bT .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sqLItm5bk7 {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-sqLItm5bk7 .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-sqE4JOixzp {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqE4JOixzp .counter-container {
  color: #464646;
}
.cid-sqE4JOixzp .counter-container div {
  margin-bottom: 1rem;
  padding-left: 5rem;
}
.cid-sqE4JOixzp .counter-container li {
  list-style: none;
  padding-left: 6rem;
  position: relative;
}
.cid-sqE4JOixzp .counter-container .counter {
  text-overflow: clip;
  overflow: hidden;
  white-space: nowrap;
  font-size: 40px;
  position: absolute;
  left: 0;
  display: inline-block;
  margin: 0 0 5px;
  line-height: 40px;
  transition: all .2s;
  width: 60px;
  height: 40px;
}
.cid-sqE4JOixzp P {
  text-align: left;
  color: #04367c;
}
.cid-sqE4JOixzp H4 {
  color: #a61a3d;
}
.cid-sqE4JT2DPu {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-sqE4JT2DPu .mbr-overlay {
  background: #232323;
}
.cid-sqE4JQp79V {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #f4f8fa;
}
.cid-sqE4JQp79V .mbr-section-subtitle,
.cid-sqE4JQp79V .caption-text {
  color: #8d97ad;
}
.cid-sqE4JQp79V .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-sqE4JQp79V .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: 0;
}
.cid-sqE4JQp79V .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-sqE4JQp79V .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-sqE4JQp79V .mbr-section-subtitle {
  color: #a61a3d;
}
.cid-sqE4JQp79V .caption-text {
  color: #2461d8;
}
.cid-sqE4JQp79V .mbr-section-title {
  color: #2461d8;
}
.cid-sqE6mOrO1s {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqE6mOrO1s .mbr-section-subtitle {
  color: #f25916;
  text-align: center;
}
.cid-sqE6mOrO1s .mbr-section-title {
  text-align: center;
  color: #2461d8;
}
.cid-sqE4JPCwDX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sqE4JPCwDX .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sqE4JPCwDX .modal-body .close {
  background: #1b1b1b;
}
.cid-sqE4JPCwDX .modal-body .close span {
  font-style: normal;
}
.cid-sqE4JPCwDX .carousel-inner > .active,
.cid-sqE4JPCwDX .carousel-inner > .next,
.cid-sqE4JPCwDX .carousel-inner > .prev {
  display: flex;
}
.cid-sqE4JPCwDX .carousel-control .icon-next,
.cid-sqE4JPCwDX .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sqE4JPCwDX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sqE4JPCwDX .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sqE4JPCwDX .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-sqE4JPCwDX .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sqE4JPCwDX .boxed-slider > div {
  position: relative;
}
.cid-sqE4JPCwDX .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-sqE4JPCwDX .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sqE4JPCwDX .mbr-table-cell {
  padding: 0;
}
.cid-sqE4JPCwDX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sqE4JPCwDX .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-sqE4JPCwDX .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-sqE4JPCwDX .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sqE4JPCwDX .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sqE4JPCwDX .carousel-item.active.right,
.cid-sqE4JPCwDX .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sqE4JPCwDX .carousel-item.active.left,
.cid-sqE4JPCwDX .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sqE4JPCwDX .carousel-item.active,
.cid-sqE4JPCwDX .carousel-item.next.left,
.cid-sqE4JPCwDX .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sqE4JPCwDX .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-sqE4JPCwDX .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sqE4JPCwDX .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sqE4JPCwDX .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-sqE4JPCwDX .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sqE4JPCwDX .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sqE4JPCwDX .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-sqE4JPCwDX .mbr-slider .carousel-indicators li.active,
.cid-sqE4JPCwDX .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sqE4JPCwDX .mbr-slider .carousel-indicators li::after,
.cid-sqE4JPCwDX .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sqE4JPCwDX .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sqE4JPCwDX .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sqE4JPCwDX .mbr-slider > .container img {
  width: 100%;
}
.cid-sqE4JPCwDX .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-sqE4JPCwDX .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .cid-sqE4JPCwDX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sqE4JPCwDX .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sqE4JPCwDX .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sqE4JPCwDX .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sqE4JPCwDX .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sqE4JPCwDX .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sqE4JPCwDX .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sqE4JPCwDX .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sqE4JPCwDX .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sqE4JPCwDX .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sqE4JPCwDX .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sqE4JPCwDX .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sqE4JPCwDX .carousel-inner {
  height: 100%;
}
.cid-sqE4JPCwDX .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sqE4JPCwDX .image_wrapper {
  height: 700px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-sqE4JPCwDX .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-sqE4JPCwDX .carousel-item .container-slide {
  text-align: center;
}
.cid-sqE4JPCwDX .content-slider-wrap {
  width: 100%;
}
.cid-sqE4JPCwDX .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-sqE4JPCwDX .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-sqE4JPCwDX .carousel-control {
  margin-left: 2px!important;
}
.cid-sqE4JPCwDX P {
  color: #a61a3d;
  text-align: center;
}
.cid-sqE4JS3i8y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a61a3d;
}
.cid-sqE4JS3i8y .carousel {
  height: 800px;
}
.cid-sqE4JS3i8y .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sqE4JS3i8y .carousel-item,
.cid-sqE4JS3i8y .carousel-inner {
  height: 100%;
}
.cid-sqE4JS3i8y .mbr-overlay {
  z-index: 1;
}
.cid-sqE4JS3i8y .carousel-caption {
  bottom: 20px;
  position: absolute;
  top: 40%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .cid-sqE4JS3i8y .carousel-caption {
    left: 15%;
    right: 70%;
    width: 64%;
  }
}
.cid-sqE4JS3i8y .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sqE4JS3i8y .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sqE4JS3i8y .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sqE4JS3i8y .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sqE4JS3i8y .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sqE4JS3i8y .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sqE4JS3i8y .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sqE4JS3i8y .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
@media (max-width: 768px) {
  .cid-sqE4JS3i8y .carousel-indicators {
    display: none;
  }
}
.cid-sqE4JS3i8y .carousel-indicators li {
  max-width: 10px;
  height: 10px;
  width: 10px;
  max-height: 10px;
  margin: 3px 10px;
  background-color: #f7f7f7;
  border: 0px solid #1dc9cb;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-sqE4JS3i8y .carousel-indicators li.active,
.cid-sqE4JS3i8y .carousel-indicators li:hover {
  background-color: #ffe161;
}
.cid-sqE4JS3i8y .carousel-indicators li::after,
.cid-sqE4JS3i8y .carousel-indicators li::before {
  content: none;
}
.cid-sqE4JS3i8y .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-sqE4JS3i8y .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sqE4JS3i8y .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sqE4JS3i8y .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sqE4JS3i8y .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sqE4JS3i8y .right-block {
  position: absolute;
  margin: 0 !important;
  top: 50%;
  right: 0;
  left: auto;
  width: 10%;
  height: 3%;
  transform: rotate(90deg);
  min-width: 90px;
}
.cid-sqE4JS3i8y H5 {
  text-align: left;
}
.cid-sqE4JS3i8y P {
  text-align: left;
}
.cid-sqE4JS3i8y .mbr-text,
.cid-sqE4JS3i8y .mbr-section-btn {
  text-align: left;
}
.cid-sqE4JS3i8y .mbr-text {
  margin-top: 0 !important;
  line-height: 1.4;
}
.cid-sqE4JS3i8y .mbr-section-btn {
  margin-top: 1rem !important;
}
.cid-sqE4JS3i8y .second-img {
  z-index: 1;
  cursor: pointer;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #a61a3d;
  top: 0%;
  opacity: 34%;
  transition: .5s all;
  pointer-events: none;
}
.cid-sqE4JMFo9i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqE4JMFo9i h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sqE4JMFo9i p {
  color: #767676;
  text-align: left;
}
.cid-sqE4JMFo9i .card-wrapper {
  height: 100%;
}
.cid-sqE4JMFo9i .container-fluid {
  max-width: 1600px;
}
.cid-sqE4JMFo9i .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sqE4JMFo9i img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sqE4JMFo9i .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sqE4JMFo9i .card:hover img {
  filter: blur(3px);
}
.cid-sqE4JMFo9i .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-sqE4JMFo9i .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sqE4JMFo9i .mbr-iconfont {
    opacity: 1;
  }
  .cid-sqE4JMFo9i img {
    filter: blur(3px);
  }
}
.cid-sqE4JOVYG5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqE4JOVYG5 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sqE4JOVYG5 .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sqE4JOVYG5 .list-img {
  width: 100px;
}
.cid-sqE4JOVYG5 .ico2 {
  color: #767676;
  font-size: 1.2rem;
}
.cid-sqE4JOVYG5 .btn {
  margin: 0px !important;
}
.cid-sqE4JOVYG5 .text-box {
  padding: 1rem;
}
.cid-sqE4JOVYG5 .text-box p {
  margin: 0;
}
.cid-sqE4JOVYG5 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sqE4JOVYG5 .ico-box p {
  margin: 0;
}
.cid-sqE4JOVYG5 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqE4JOVYG5 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqE4JOVYG5 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sqE4JOVYG5 .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sqE4JOVYG5 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sqE4JOVYG5 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sqE4JOVYG5 .carousel-indicators li {
  display: inline-block;
}
.cid-sqE4JOVYG5 .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sqE4JOVYG5 .carousel-indicators li.active {
  border: 0px;
}
.cid-sqE4JOVYG5 .li1,
.cid-sqE4JOVYG5 .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/02.jpg");
}
.cid-sqE4JOVYG5 .li2,
.cid-sqE4JOVYG5 .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/03.jpg");
}
.cid-sqE4JOVYG5 .li3,
.cid-sqE4JOVYG5 .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/04.jpg");
}
.cid-sqE4JOVYG5 .li4,
.cid-sqE4JOVYG5 .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/05.jpg");
}
.cid-sqE4JOVYG5 .li5,
.cid-sqE4JOVYG5 .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/06.jpg");
}
.cid-sqE4JOVYG5 .li6,
.cid-sqE4JOVYG5 .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/08.jpg");
}
@media (max-width: 992px) {
  .cid-sqE4JOVYG5 .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sqE4JOVYG5 .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sqE4JOVYG5 .card-title2 {
  color: #149dcc;
}
.cid-sqE4JOVYG5 .sq {
  color: #767676;
}
.cid-sqE4JOVYG5 .item {
  color: #767676;
}
.cid-sqLK7mRhDp {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqLK7mRhDp .mbr-section-subtitle {
  color: #f25916;
  text-align: center;
}
.cid-sqLK7mRhDp .mbr-section-title {
  text-align: center;
  color: #2461d8;
}
.cid-sqLKPn6FSW {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqLKPn6FSW .mbr-section-subtitle {
  color: #f25916;
  text-align: center;
}
.cid-sqLKPn6FSW .mbr-section-title {
  text-align: center;
  color: #2461d8;
}
.cid-sqFmWXBD1c {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background8-1.jpg");
}
.cid-sqFmWXBD1c .container-fluid {
  padding: 0 3rem;
}
.cid-sqFmWXBD1c .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-sqFmWXBD1c .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sqFmWXBD1c .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sqFmWXBD1c .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sqFmWXBD1c .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-sqFmWXBD1c a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sqFmWXBD1c a.close:hover {
  color: #ffffff;
}
.cid-sqFmWXBD1c svg {
  transition: all 0.5s ease-in;
}
.cid-sqFmWXBD1c svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-sqFmWXBD1c svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-sqFmWXBD1c svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-sqFmWXBD1c .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sqE4JRmKO0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f4f8fa;
}
.cid-sqE4JRmKO0 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sqE4JRmKO0 .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sqE4JRmKO0 .video-block {
    width: 100% !important;
  }
}
.cid-sqE4JRmKO0 .mbr-section-title {
  color: #a61a3d;
}
.cid-sqE4JRGNsC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sqE4JRGNsC .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
