body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
}
.display-4 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- 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: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #ffda00 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #767676 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-white {
  color: #222222 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #998300;
  color: #998300;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #ffda00;
  border-color: #ffda00;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !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: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #ffda00 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #767676 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #57c8ef !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff99b3 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffe966 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a9a9a9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #767676;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff8cc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  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: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !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='%23149dcc' %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-sIdUTz8arw .navbar {
  background: #efeeee;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
}
.cid-sIdUTz8arw .navbar-dropdown.bg-color.transparent.opened {
  background: #efeeee;
}
.cid-sIdUTz8arw a {
  font-style: normal;
}
.cid-sIdUTz8arw .show {
  overflow: visible;
}
.cid-sIdUTz8arw .dropdown-menu {
  max-height: 400px;
}
.cid-sIdUTz8arw .dropdown-item:active {
  background-color: transparent;
}
.cid-sIdUTz8arw .nav-link {
  font-weight: 600 !important;
}
.cid-sIdUTz8arw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sIdUTz8arw .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-sIdUTz8arw .nav-item:focus,
.cid-sIdUTz8arw .nav-link:focus {
  outline: none;
}
.cid-sIdUTz8arw .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sIdUTz8arw .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sIdUTz8arw .menu-logo {
  margin-right: auto;
}
.cid-sIdUTz8arw .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-sIdUTz8arw .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-sIdUTz8arw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600 !important;
  padding-right: 2rem;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sIdUTz8arw .dropdown .dropdown-menu {
  background: #efeeee;
  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-sIdUTz8arw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #efeeee !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-sIdUTz8arw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIdUTz8arw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sIdUTz8arw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIdUTz8arw .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-sIdUTz8arw .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sIdUTz8arw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sIdUTz8arw button.navbar-toggler:focus {
  outline: none;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282124;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIdUTz8arw .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sIdUTz8arw .collapsed .btn {
  display: -webkit-flex;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sIdUTz8arw .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 85vh;
  }
}
.cid-sIdUTz8arw .collapsed button.navbar-toggler {
  display: block;
}
.cid-sIdUTz8arw .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sIdUTz8arw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sIdUTz8arw .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-sIdUTz8arw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sIdUTz8arw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sIdUTz8arw .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-sIdUTz8arw.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sIdUTz8arw img {
    height: 3.8rem !important;
  }
  .cid-sIdUTz8arw .btn {
    display: -webkit-flex;
  }
  .cid-sIdUTz8arw button.navbar-toggler {
    display: block;
  }
  .cid-sIdUTz8arw .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sIdUTz8arw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sIdUTz8arw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing,
  .cid-sIdUTz8arw .navbar-collapse.show {
    display: block !important;
    overflow: auto;
    width: 100%;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-nav,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-buttons,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sIdUTz8arw .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-sIdUTz8arw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sIdUTz8arw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sIdUTz8arw .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-sIdUTz8arw .nav-link {
    justify-content: start !important;
  }
  .cid-sIdUTz8arw .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sIdUTz8arw .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sIdUTz8arw .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sIdUTz8arw .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sIdUTz8arw .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sIdUTz8arw .nav-link:hover,
.cid-sIdUTz8arw .dropdown-item:hover {
  color: #cccccc !important;
}
@media (min-width: 1500px) {
  .cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sIdUTz8arw .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sHcIcASkCp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sHcIcASkCp .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-sHcIcASkCp .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/20170925-134726-2000x1125.jpg");
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.cid-sHcIcASkCp .overlay {
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: #ffda00;
}
.cid-sHcIcASkCp .wrap {
  width: 100%;
  min-height: 400px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.cid-sHcIcASkCp .wrap:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-sHcIcASkCp .wrap:hover .img-content {
  opacity: 1;
  transition-delay: 0.3s;
}
.cid-sHcIcASkCp .wrap:hover .box-title2,
.cid-sHcIcASkCp .wrap:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-sHcIcASkCp .wrap:hover .box-content {
  transition-delay: 0.3s;
  background: transparent;
}
.cid-sHcIcASkCp .box-title2,
.cid-sHcIcASkCp .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-sHcIcASkCp .box-content {
  transition: all 0.3s;
  background: #ffda00;
  width: 50%;
}
.cid-sHcIcASkCp .content-box {
  padding: 4rem 3rem;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .cid-sHcIcASkCp .img-content {
    opacity: 1;
  }
  .cid-sHcIcASkCp .box-title2,
  .cid-sHcIcASkCp .box-text2 {
    color: #ffffff !important;
  }
  .cid-sHcIcASkCp .content-block,
  .cid-sHcIcASkCp .box-content {
    padding: 3rem 1rem;
  }
  .cid-sHcIcASkCp .wrap {
    min-height: 300px;
  }
  .cid-sHcIcASkCp .box-content {
    width: 100%;
    background: transparent;
  }
}
.cid-sHcIcASkCp .box-text2 {
  color: #ffffff;
}
.cid-rpSfjvEG19 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-rpSfjvEG19 .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-rpSfjvEG19 .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-rpSfjvEG19 .card-wrapper {
    margin: 0rem;
  }
}
.cid-rpSfjvEG19 .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-rpSfjvEG19 .row {
    padding: 0 4rem;
  }
}
.cid-rpSfjvEG19 .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #ffda00;
}
.cid-rpSfjvEG19 .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-rpSfjvEG19 .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-rpSfjvEG19 .card1 {
  background-color: #333333;
}
.cid-rpSfjvEG19 .card2 {
  background-color: #333333;
}
.cid-rpSfjvEG19 .card3 {
  background-color: #333333;
}
.cid-rpSfjvEG19 .card4 {
  background-color: #333333;
}
.cid-rpSfjvEG19 img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-rpSfjvEG19 .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-rpSfjvEG19 .container {
  max-width: 1500px;
}
.cid-rpSfjvEG19 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rpSfjvEG19 .mbr-iconfont {
  font-size: 1.3rem;
  color: #333333;
  display: flex;
  justify-content: center;
}
.cid-rpSfjvEG19 P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-rpSfjvEG19 .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-rpSfjvEG19 .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-rpSfjvEG19 .col2,
  .cid-rpSfjvEG19 .col3,
  .cid-rpSfjvEG19 .col4 {
    margin-top: 0rem;
  }
  .cid-rpSfjvEG19 .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-rpSfjvEG19 .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-rpSfjvEG19 .number {
    margin: auto;
  }
}
.cid-rpSfjvEG19 .mbr-text {
  color: #cccccc;
}
.cid-rpSfjvEG19 .text2 {
  color: #ffffff;
}
.cid-rpSfjvEG19 .text3 {
  color: #ffffff;
}
.cid-rpSfjvEG19 .title2 {
  color: #c1c1c1;
}
.cid-rpSfjvEG19 .title1 {
  color: #c1c1c1;
}
.cid-rpSfjvEG19 .title3 {
  color: #c1c1c1;
}
.cid-rpSfjvEG19 .title4 {
  color: #c1c1c1;
}
.cid-rpSfjvEG19 .text4 {
  color: #efeeee;
}
.cid-rpSfjvEG19 .text1 {
  color: #efeeee;
}
.cid-rpSfjvEG19 .title3 B {
  color: #c1c1c1;
}
.cid-rpSfjvEG19 H1 {
  color: #333333;
}
.cid-sQgdWv4tE5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efeeee;
}
.cid-sQgdWv4tE5 .video-wrapper iframe {
  width: 100%;
}
.cid-sQgdWv4tE5 .mbr-section-title {
  align-self: left;
  width: 100%;
}
.cid-sQgdWv4tE5 .mbr-text {
  align-self: right;
  color: #9b9ba5;
}
@media (max-width: 767px) {
  .cid-sQgdWv4tE5 .mbr-section-title,
  .cid-sQgdWv4tE5 .mbr-text {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-sQgdWv4tE5 .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-rpSfqF8N8V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-rpSfqF8N8V img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rpSfqF8N8V img:hover {
  transform: scale(1.1);
}
.cid-rpSfqF8N8V .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rpSfqF8N8V h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfqF8N8V .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rpSfqF8N8V .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rpSfqF8N8V .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-rpSfqF8N8V .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-rpSfqF8N8V .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-rpSfqF8N8V .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-rpSfqF8N8V .mbr-iconfont {
  margin: 0!important;
}
.cid-rpSfqF8N8V .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rpSfqF8N8V .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfqF8N8V .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rpSfqF8N8V .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-rpSfqF8N8V .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rpSfqF8N8V H2 {
  color: #333333;
}
.cid-rpSfqF8N8V .mbr-text {
  color: #767676;
}
.cid-rpSfqvjGS3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-rpSfqvjGS3 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rpSfqvjGS3 img:hover {
  transform: scale(1.1);
}
.cid-rpSfqvjGS3 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rpSfqvjGS3 h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfqvjGS3 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rpSfqvjGS3 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rpSfqvjGS3 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rpSfqvjGS3 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
}
.cid-rpSfqvjGS3 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rpSfqvjGS3 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfqvjGS3 .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-rpSfqvjGS3 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rpSfqvjGS3 H2 {
  color: #333333;
}
.cid-rpSfqvjGS3 .mbr-text {
  color: #767676;
}
.cid-rpSfxBmryu {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-rpSfxBmryu .container {
  max-width: 1500px;
}
.cid-rpSfxBmryu img {
  width: 100%;
}
.cid-rpSfxBmryu h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfxBmryu .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-rpSfxBmryu .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-rpSfxBmryu .img-col {
  position: relative;
}
.cid-rpSfxBmryu .img2 {
  position: absolute;
  right: 6rem;
  top: -6rem;
  width: 320px;
}
@media (max-width: 1200px) {
  .cid-rpSfxBmryu .img2 {
    right: 3rem;
  }
}
@media (max-width: 992px) {
  .cid-rpSfxBmryu .title-col {
    margin-bottom: 4rem!important;
  }
  .cid-rpSfxBmryu .img2 {
    top: -2rem;
  }
  .cid-rpSfxBmryu .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-rpSfxBmryu .img2 {
    width: 50%;
  }
  .cid-rpSfxBmryu .number {
    margin: auto;
  }
}
.cid-rpSfxBmryu .mbr-text {
  color: #767676;
}
.cid-rpSfLZlmw9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-rpSfLZlmw9 .container {
  max-width: 1500px;
}
.cid-rpSfLZlmw9 img {
  width: 100%;
}
.cid-rpSfLZlmw9 h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfLZlmw9 .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-rpSfLZlmw9 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-rpSfLZlmw9 .img-col {
  position: relative;
}
.cid-rpSfLZlmw9 .img2 {
  position: absolute;
  left: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-rpSfLZlmw9 .img2 {
    left: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-rpSfLZlmw9 .img-col {
    margin-bottom: 3rem;
  }
  .cid-rpSfLZlmw9 .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-rpSfLZlmw9 .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-rpSfLZlmw9 .number {
    margin: auto;
  }
}
.cid-rpSfLZlmw9 .mbr-text {
  color: #767676;
}
.cid-sGeOkpys6t {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #282124;
}
.cid-sGeOkpys6t .card-box {
  background-color: #333333;
  padding: 4rem 4rem;
  margin: 0.5rem;
  width: 100%;
}
@media (min-width: 767px) {
  .cid-sGeOkpys6t .row {
    padding: 0 4rem;
  }
}
.cid-sGeOkpys6t .container {
  max-width: 1500px;
}
.cid-sGeOkpys6t .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sGeOkpys6t .mbr-iconfont {
  font-size: 9rem;
  color: #ffda00;
  padding-bottom: 2rem;
  display: block;
}
.cid-sGeOkpys6t P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-sGeOkpys6t .card-box {
    margin: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sGeOkpys6t .card-box {
    padding: 2rem 1rem;
  }
}
.cid-sGfwNm9GHP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-sGfwNm9GHP .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sGfwNm9GHP .card .card-block {
  background: #cccccc;
  padding: 2rem;
  position: relative;
}
.cid-sGfwNm9GHP .card .card-block:before {
  position: absolute;
  left: calc(50% - 7px);
  bottom: -7px;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #cccccc;
  content: "";
  display: block;
}
.cid-sGfwNm9GHP .card .mbr-author {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 0;
  border-top: none;
  padding: 1.25rem;
  background: transparent;
}
.cid-sGfwNm9GHP .card .mbr-author .mbr-author-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.cid-sGfwNm9GHP .card .mbr-author .mbr-author-img.img-margin {
  margin-right: 1.25rem;
}
.cid-sGfwNm9GHP .card .mbr-author .mbr-author-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sGfwNm9GHP .card .mbr-author .name-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGfwNm9GHP .card .mbr-author .name-wrap .mbr-author-name p {
  margin-bottom: 0px;
}
.cid-sGfwNm9GHP .card .mbr-author .name-wrap .mbr-author-desc p {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .cid-sGfwNm9GHP .card:not(.last-card) {
    margin-bottom: 2rem;
  }
}
.cid-sGfwNm9GHP .main-title {
  color: #ffffff;
}
.cid-sGfjuTzr1B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sGfjuTzr1B .mbr-text {
  color: #767676;
}
.cid-sGfjuTzr1B .mbr-iconfont {
  color: #ffbf00;
  font-size: 3rem;
  transition: 0.3s;
}
.cid-sGfjuTzr1B .link {
  margin: 0;
}
.cid-sGfjuTzr1B .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sGfjuTzr1B .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sGfjuTzr1B .card {
    margin-bottom: 3rem;
  }
}
.cid-sGfjuTzr1B .card-img {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sGfjuTzr1B .row {
    padding: 0 1rem;
  }
}
.cid-sGfjuTzr1B .card-inner {
  transition: 0.3s;
  border-bottom: 3px solid;
  border-color: rgba(233, 32, 79, 0);
  padding: 2.2rem 1.4rem;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0);
}
.cid-sGfjuTzr1B .card-title {
  transition: 0.3s;
}
.cid-sGfjuTzr1B .card:hover .card-inner {
  border-bottom: 3px solid #e9204f;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.12);
}
.cid-sGfjuTzr1B .card:hover .card-title {
  color: #b1a374;
}
.cid-sGfjuTzr1B .card:hover .mbr-iconfont {
  color: #000000;
}
@media (min-width: 767px) {
  .cid-sGfjuTzr1B .row {
    margin: 0;
  }
}
.cid-sGfjpy3iUs .stats-item:hover span {
  color: #282124;
}
.cid-sGfjpy3iUs .stats-item {
  padding: 80px 20px;
}
.cid-sGfjpy3iUs .stats-item:nth-child(2n) {
  background-color: #cccccc;
}
.cid-sGfjpy3iUs .stats-item:nth-child(odd) {
  background-color: #efefef;
}
.cid-sGfjpy3iUs .stats-item > span {
  transition: all 0.3s ease-in-out;
}
.cid-sGfjpy3iUs .mbr-iconfont {
  font-size: 50px;
}
.cid-sGfjpy3iUs .heading {
  margin: 20px 0;
  color: #232323;
}
.cid-sGfjpy3iUs .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 768px) and (min-width: 577px) {
  .cid-sGfjpy3iUs .stats-item:first-child {
    background: #cccccc;
  }
  .cid-sGfjpy3iUs .stats-item:nth-child(2n) {
    background: #efefef;
  }
  .cid-sGfjpy3iUs .stats-item:nth-child(0n+3) {
    background: #efefef none repeat scroll 0 center;
  }
  .cid-sGfjpy3iUs .stats-item:last-child {
    background: #cccccc;
  }
}
.cid-sGfjpy3iUs .counter {
  text-align: center;
  color: #000000;
}
.cid-sGfjpy3iUs .mbr-card-title,
.cid-sGfjpy3iUs .mbr-iconfont {
  text-align: center;
  color: #000000;
  display: block;
}
.cid-sGf3xef0Hh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1c1c25;
}
.cid-sGf3xef0Hh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sGf3xef0Hh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sGf3xef0Hh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu li:hover {
  color: #ff3366;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sGf3xef0Hh .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sGf3xef0Hh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sGf3xef0Hh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sGf3xef0Hh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sGf3xef0Hh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGf3xef0Hh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGf3xef0Hh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sGf3xef0Hh .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sGf3xef0Hh .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sGf3xef0Hh .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-sGUhXPCJOo {
  padding-top: 105px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/19224790-635800923283063-5131988535905661048-n-960x720.jpeg");
}
.cid-sGUhXPCJOo .row {
  justify-content: flex-end;
}
.cid-sGUhXPCJOo .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #ffffff;
}
.cid-sGUhXPCJOo .block {
  background-color: #ffbf00;
}
.cid-sGUhXPCJOo img {
  width: 100%;
}
.cid-sGUhXPCJOo .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sGUhXPCJOo .content {
  max-width: 600px;
}
.cid-sGUhXPCJOo h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sGUhXPCJOo .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sGUhXPCJOo h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-sGUhXPCJOo .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sGUhXPCJOo h4 {
    right: 2rem;
    bottom: 30%;
  }
  .cid-sGUhXPCJOo .content-wrapper {
    padding: 4rem 3rem 4rem 0rem;
  }
}
.cid-sGeKGILNil {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #efeeee;
}
.cid-sGeKGILNil .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #f7ed4a;
  margin-bottom: 1.5rem;
}
.cid-sGeKGILNil .col-lg-4,
.cid-sGeKGILNil .col-12 {
  padding: 0 2rem;
}
.cid-sGeKGILNil .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-sGeKGILNil .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-sGeKGILNil .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sGeKGILNil .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-sGeKGILNil .card-title,
.cid-sGeKGILNil .iconfont-wrapper {
  color: #36187d;
  text-align: center;
}
.cid-sGeKGILNil .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-sGeKGILNil .mbr-section-subtitle {
  color: #6c758f;
}
.cid-sGeKGILNil .mbr-section-title {
  color: #282124;
}
.cid-sGeKxG4RUn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sGeKxG4RUn .google-map {
  height: 30rem;
  position: relative;
}
.cid-sGeKxG4RUn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sGeKxG4RUn .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sGeKxG4RUn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sGeKxG4RUn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sHgP1zMBbY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sHgP1zMBbY .fb-page,
.cid-sHgP1zMBbY span,
.cid-sHgP1zMBbY iframe {
  width: 500px;
  height: 620px;
}
.cid-sHgP1zMBbY blockquote {
  display: none;
}
.cid-sHgP1zMBbY .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-sGf3xef0Hh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1c1c25;
}
.cid-sGf3xef0Hh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sGf3xef0Hh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sGf3xef0Hh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu li:hover {
  color: #ff3366;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sGf3xef0Hh .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sGf3xef0Hh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sGf3xef0Hh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sGf3xef0Hh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sGf3xef0Hh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGf3xef0Hh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGf3xef0Hh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sGf3xef0Hh .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sGf3xef0Hh .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sGf3xef0Hh .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-sIdUTz8arw .navbar {
  background: #efeeee;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
}
.cid-sIdUTz8arw .navbar-dropdown.bg-color.transparent.opened {
  background: #efeeee;
}
.cid-sIdUTz8arw a {
  font-style: normal;
}
.cid-sIdUTz8arw .show {
  overflow: visible;
}
.cid-sIdUTz8arw .dropdown-menu {
  max-height: 400px;
}
.cid-sIdUTz8arw .dropdown-item:active {
  background-color: transparent;
}
.cid-sIdUTz8arw .nav-link {
  font-weight: 600 !important;
}
.cid-sIdUTz8arw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sIdUTz8arw .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-sIdUTz8arw .nav-item:focus,
.cid-sIdUTz8arw .nav-link:focus {
  outline: none;
}
.cid-sIdUTz8arw .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sIdUTz8arw .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sIdUTz8arw .menu-logo {
  margin-right: auto;
}
.cid-sIdUTz8arw .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-sIdUTz8arw .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-sIdUTz8arw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600 !important;
  padding-right: 2rem;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sIdUTz8arw .dropdown .dropdown-menu {
  background: #efeeee;
  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-sIdUTz8arw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #efeeee !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-sIdUTz8arw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIdUTz8arw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sIdUTz8arw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIdUTz8arw .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-sIdUTz8arw .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sIdUTz8arw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sIdUTz8arw button.navbar-toggler:focus {
  outline: none;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282124;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIdUTz8arw .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sIdUTz8arw .collapsed .btn {
  display: -webkit-flex;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sIdUTz8arw .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 85vh;
  }
}
.cid-sIdUTz8arw .collapsed button.navbar-toggler {
  display: block;
}
.cid-sIdUTz8arw .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sIdUTz8arw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sIdUTz8arw .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-sIdUTz8arw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sIdUTz8arw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sIdUTz8arw .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-sIdUTz8arw.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sIdUTz8arw img {
    height: 3.8rem !important;
  }
  .cid-sIdUTz8arw .btn {
    display: -webkit-flex;
  }
  .cid-sIdUTz8arw button.navbar-toggler {
    display: block;
  }
  .cid-sIdUTz8arw .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sIdUTz8arw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sIdUTz8arw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing,
  .cid-sIdUTz8arw .navbar-collapse.show {
    display: block !important;
    overflow: auto;
    width: 100%;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-nav,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-buttons,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sIdUTz8arw .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-sIdUTz8arw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sIdUTz8arw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sIdUTz8arw .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-sIdUTz8arw .nav-link {
    justify-content: start !important;
  }
  .cid-sIdUTz8arw .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sIdUTz8arw .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sIdUTz8arw .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sIdUTz8arw .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sIdUTz8arw .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sIdUTz8arw .nav-link:hover,
.cid-sIdUTz8arw .dropdown-item:hover {
  color: #cccccc !important;
}
@media (min-width: 1500px) {
  .cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sIdUTz8arw .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sGeQ7oQQUs {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sGeQ7oQQUs .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sGeQ7oQQUs .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sGeQ7oQQUs .list-img {
  width: 100px;
}
.cid-sGeQ7oQQUs .ico2 {
  color: #767676;
  font-size: 2rem;
}
.cid-sGeQ7oQQUs .btn {
  margin: 0px !important;
}
.cid-sGeQ7oQQUs .text-box {
  padding: 1rem;
}
.cid-sGeQ7oQQUs .text-box p {
  margin: 0;
}
.cid-sGeQ7oQQUs .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sGeQ7oQQUs .ico-box p {
  margin: 0;
}
.cid-sGeQ7oQQUs .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGeQ7oQQUs .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGeQ7oQQUs .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sGeQ7oQQUs .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-sGeQ7oQQUs .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sGeQ7oQQUs .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sGeQ7oQQUs .carousel-indicators li {
  display: inline-block;
}
.cid-sGeQ7oQQUs .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sGeQ7oQQUs .carousel-indicators li.active {
  border: 0px;
}
.cid-sGeQ7oQQUs .li1,
.cid-sGeQ7oQQUs .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/71942644-1124678384395312-2496330598407208960-n-1440x1080.jpeg");
}
.cid-sGeQ7oQQUs .li2,
.cid-sGeQ7oQQUs .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/17156058-593616614168161-496768234409215182-n-960x720.jpeg");
}
.cid-sGeQ7oQQUs .li3,
.cid-sGeQ7oQQUs .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/16832006-585319628331193-4734044455876142631-n-720x960.jpeg");
}
.cid-sGeQ7oQQUs .li4,
.cid-sGeQ7oQQUs .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/23376342-700318670164621-6869912941145447073-n-960x720.jpeg");
}
.cid-sGeQ7oQQUs .li5,
.cid-sGeQ7oQQUs .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/173692219-1580913188771827-3057851155098532725-n-960x720.jpeg");
}
.cid-sGeQ7oQQUs .li6,
.cid-sGeQ7oQQUs .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/100609107-1326389927557489-4556107049968074752-n-1440x1080.jpeg");
}
@media (max-width: 992px) {
  .cid-sGeQ7oQQUs .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sGeQ7oQQUs .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sGeQ7oQQUs .card-title2 {
  color: #149dcc;
}
.cid-sGeQ7oQQUs .sq {
  color: #767676;
}
.cid-sGeQ7oQQUs .item {
  color: #767676;
}
.cid-sGs1gM9T2J {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-sGs1gM9T2J .block {
  width: 100%;
  height: 550px;
  display: block;
}
.cid-sGs1gM9T2J img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sGs1gM9T2J .first img {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.cid-sGs1gM9T2J .last img {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}
@media (max-width: 992px) {
  .cid-sGs1gM9T2J .block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sGs1gM9T2J img {
    padding-bottom: 1rem;
  }
  .cid-sGs1gM9T2J .first img {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }
  .cid-sGs1gM9T2J .last img {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    padding-bottom: 0;
  }
}
.cid-sKoCeYhI9i {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efeeee;
}
.cid-sKoCeYhI9i .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sKoCeYhI9i .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sKoCeYhI9i .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sKoCeYhI9i .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sKoCeYhI9i .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sKoCeYhI9i .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sKoCeYhI9i .carousel-control,
.cid-sKoCeYhI9i .close {
  background: #1b1b1b;
}
.cid-sKoCeYhI9i .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sKoCeYhI9i .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sKoCeYhI9i .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sKoCeYhI9i .carousel-control-next span {
  margin-left: 5px;
}
.cid-sKoCeYhI9i .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sKoCeYhI9i .close::before {
  content: '\e91a';
}
.cid-sKoCeYhI9i .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sKoCeYhI9i .carousel-control {
  display: flex;
  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-sKoCeYhI9i .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKoCeYhI9i .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sKoCeYhI9i .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sKoCeYhI9i .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sKoCeYhI9i .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-sKoCeYhI9i .carousel-indicators li.active,
.cid-sKoCeYhI9i .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sKoCeYhI9i .carousel-indicators li::after,
.cid-sKoCeYhI9i .carousel-indicators li::before {
  content: none;
}
.cid-sKoCeYhI9i .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sKoCeYhI9i .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sKoCeYhI9i .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sKoCeYhI9i .carousel-indicators {
    display: none;
  }
}
.cid-sKoCeYhI9i .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sKoCeYhI9i .carousel-inner > .active {
  display: block;
}
.cid-sKoCeYhI9i .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKoCeYhI9i .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sKoCeYhI9i .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sKoCeYhI9i .carousel-control,
  .cid-sKoCeYhI9i .carousel-indicators,
  .cid-sKoCeYhI9i .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sKoCeYhI9i .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sKoCeYhI9i .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sKoCeYhI9i .carousel-indicators .active,
.cid-sKoCeYhI9i .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sKoCeYhI9i .carousel-indicators .active {
  background: #fff;
}
.cid-sKoCeYhI9i .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sKoCeYhI9i .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sKoCeYhI9i .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sKoCeYhI9i .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sKoCeYhI9i .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sKoCeYhI9i .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sKoCeYhI9i .carousel {
  width: 100%;
}
.cid-sKoCeYhI9i .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sKoCeYhI9i .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sKoCeYhI9i .modal.fade .modal-dialog,
.cid-sKoCeYhI9i .modal.in .modal-dialog {
  transform: none;
}
.cid-sKoCeYhI9i .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sKoCeYhI9i H6 {
  text-align: center;
}
.cid-sHcRVd40Zq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-sHcRVd40Zq .block {
  width: 100%;
  height: 550px;
  display: block;
}
.cid-sHcRVd40Zq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sHcRVd40Zq .first img {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.cid-sHcRVd40Zq .last img {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}
@media (max-width: 992px) {
  .cid-sHcRVd40Zq .block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sHcRVd40Zq img {
    padding-bottom: 1rem;
  }
  .cid-sHcRVd40Zq .first img {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }
  .cid-sHcRVd40Zq .last img {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    padding-bottom: 0;
  }
}
.cid-sGs2xWC6rH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sGs2xWC6rH img {
  height: 500px;
  object-fit: cover;
}
.cid-sGs2xWC6rH .card-img {
  position: relative;
}
.cid-sGs2xWC6rH .card-img img {
  height: 100%;
  object-fit: cover;
  z-index: 2;
  position: relative;
}
.cid-sGs2xWC6rH .card-img:after {
  content: '';
  position: absolute;
  transition: all 0.3s;
  border-radius: 100%;
  z-index: 1;
  bottom: 5px;
  left: 50%;
  right: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 40px;
  box-shadow: 0 35px 30px 0 rgba(0, 0, 0, 0.35);
}
@media (max-width: 767px) {
  .cid-sGs2xWC6rH .card-img {
    margin-bottom: 2rem;
  }
}
.cid-sGfDqpu45t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/conference28-1920.jpg");
}
.cid-sGfDqpu45t .title__block {
  margin-bottom: 40px;
}
.cid-sGfDqpu45t .mbr-text {
  margin-bottom: 0;
}
.cid-sGfDqpu45t .carousel-item {
  justify-content: center;
}
.cid-sGfDqpu45t .carousel-control-prev {
  left: -8%;
  justify-content: flex-start !important;
  width: 10%;
}
.cid-sGfDqpu45t .carousel-control-next {
  justify-content: flex-end !important;
  right: -8%;
  width: 10%;
}
.cid-sGfDqpu45t .carousel-controls a span {
  width: 56px;
  height: 56px;
  line-height: 36px;
  font-size: 18px;
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(25, 31, 35, 0.3);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sGfDqpu45t .carousel-controls a:hover span {
  background: rgba(25, 31, 35, 0.6);
}
.cid-sGfDqpu45t .user_image {
  display: flex;
  width: 100%;
  height: 540px;
  margin: auto;
  perspective: 900px;
}
.cid-sGfDqpu45t .user_image img {
  transition: transform 0.5s;
  width: 100%;
  height: 95%;
  object-fit: cover;
  border-radius: 6px;
}
.cid-sGfDqpu45t .user_image img:hover {
  transform: rotateX(-3deg);
}
@media (max-width: 1350px) {
  .cid-sGfDqpu45t .user {
    max-width: 87%;
  }
  .cid-sGfDqpu45t .carousel-control-prev {
    justify-content: center !important;
    left: -3%;
  }
  .cid-sGfDqpu45t .carousel-control-next {
    justify-content: center !important;
    right: -3%;
  }
}
@media (max-width: 991px) {
  .cid-sGfDqpu45t .user {
    max-width: 100%;
  }
  .cid-sGfDqpu45t .carousel-control-prev {
    left: -5%;
  }
  .cid-sGfDqpu45t .carousel-control-next {
    right: -5%;
  }
  .cid-sGfDqpu45t .user_image {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sGfDqpu45t .title__block {
    margin-bottom: 20px;
  }
  .cid-sGfDqpu45t .carousel-controls {
    display: none;
  }
}
.cid-sGUj1MSGAp .stats-item:hover span {
  color: #282124;
}
.cid-sGUj1MSGAp .stats-item {
  padding: 80px 20px;
}
.cid-sGUj1MSGAp .stats-item:nth-child(2n) {
  background-color: #ffffff;
}
.cid-sGUj1MSGAp .stats-item:nth-child(odd) {
  background-color: #efefef;
}
.cid-sGUj1MSGAp .stats-item > span {
  transition: all 0.3s ease-in-out;
}
.cid-sGUj1MSGAp .mbr-iconfont {
  font-size: 50px;
}
.cid-sGUj1MSGAp .heading {
  margin: 20px 0;
  color: #232323;
}
.cid-sGUj1MSGAp .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 768px) and (min-width: 577px) {
  .cid-sGUj1MSGAp .stats-item:first-child {
    background: #ffffff;
  }
  .cid-sGUj1MSGAp .stats-item:nth-child(2n) {
    background: #efefef;
  }
  .cid-sGUj1MSGAp .stats-item:nth-child(0n+3) {
    background: #efefef none repeat scroll 0 center;
  }
  .cid-sGUj1MSGAp .stats-item:last-child {
    background: #ffffff;
  }
}
.cid-sGUj1MSGAp .counter {
  text-align: center;
  color: #000000;
}
.cid-sGUj1MSGAp .mbr-card-title,
.cid-sGUj1MSGAp .mbr-iconfont {
  text-align: center;
  color: #000000;
  display: block;
}
.cid-sGs4N9vVY3 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sGs4N9vVY3 .mbr-text {
  color: #767676;
}
.cid-sGs4N9vVY3 .mbr-iconfont {
  color: #ffbf00;
  font-size: 3rem;
  transition: 0.3s;
}
.cid-sGs4N9vVY3 .link {
  margin: 0;
}
.cid-sGs4N9vVY3 .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sGs4N9vVY3 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sGs4N9vVY3 .card {
    margin-bottom: 3rem;
  }
}
.cid-sGs4N9vVY3 .card-img {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sGs4N9vVY3 .row {
    padding: 0 1rem;
  }
}
.cid-sGs4N9vVY3 .card-inner {
  transition: 0.3s;
  border-bottom: 3px solid;
  border-color: rgba(233, 32, 79, 0);
  padding: 2.2rem 1.4rem;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0);
}
.cid-sGs4N9vVY3 .card-title {
  transition: 0.3s;
}
.cid-sGs4N9vVY3 .card:hover .card-inner {
  border-bottom: 3px solid #e9204f;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.12);
}
.cid-sGs4N9vVY3 .card:hover .card-title {
  color: #b1a374;
}
.cid-sGs4N9vVY3 .card:hover .mbr-iconfont {
  color: #000000;
}
@media (min-width: 767px) {
  .cid-sGs4N9vVY3 .row {
    margin: 0;
  }
}
.cid-sGf3xef0Hh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1c1c25;
}
.cid-sGf3xef0Hh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sGf3xef0Hh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sGf3xef0Hh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu li:hover {
  color: #ff3366;
}
.cid-sGf3xef0Hh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sGf3xef0Hh .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sGf3xef0Hh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sGf3xef0Hh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sGf3xef0Hh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sGf3xef0Hh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGf3xef0Hh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGf3xef0Hh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sGf3xef0Hh .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sGf3xef0Hh .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sGf3xef0Hh .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-sIdUTz8arw .navbar {
  background: #efeeee;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
}
.cid-sIdUTz8arw .navbar-dropdown.bg-color.transparent.opened {
  background: #efeeee;
}
.cid-sIdUTz8arw a {
  font-style: normal;
}
.cid-sIdUTz8arw .show {
  overflow: visible;
}
.cid-sIdUTz8arw .dropdown-menu {
  max-height: 400px;
}
.cid-sIdUTz8arw .dropdown-item:active {
  background-color: transparent;
}
.cid-sIdUTz8arw .nav-link {
  font-weight: 600 !important;
}
.cid-sIdUTz8arw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sIdUTz8arw .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-sIdUTz8arw .nav-item:focus,
.cid-sIdUTz8arw .nav-link:focus {
  outline: none;
}
.cid-sIdUTz8arw .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sIdUTz8arw .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sIdUTz8arw .menu-logo {
  margin-right: auto;
}
.cid-sIdUTz8arw .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-sIdUTz8arw .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-sIdUTz8arw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600 !important;
  padding-right: 2rem;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sIdUTz8arw .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sIdUTz8arw .dropdown .dropdown-menu {
  background: #efeeee;
  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-sIdUTz8arw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #efeeee !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-sIdUTz8arw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIdUTz8arw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sIdUTz8arw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIdUTz8arw .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-sIdUTz8arw .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sIdUTz8arw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sIdUTz8arw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sIdUTz8arw button.navbar-toggler:focus {
  outline: none;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282124;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIdUTz8arw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIdUTz8arw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIdUTz8arw .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sIdUTz8arw .collapsed .btn {
  display: -webkit-flex;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sIdUTz8arw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sIdUTz8arw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sIdUTz8arw .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 85vh;
  }
}
.cid-sIdUTz8arw .collapsed button.navbar-toggler {
  display: block;
}
.cid-sIdUTz8arw .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sIdUTz8arw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sIdUTz8arw .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-sIdUTz8arw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sIdUTz8arw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sIdUTz8arw .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-sIdUTz8arw.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sIdUTz8arw img {
    height: 3.8rem !important;
  }
  .cid-sIdUTz8arw .btn {
    display: -webkit-flex;
  }
  .cid-sIdUTz8arw button.navbar-toggler {
    display: block;
  }
  .cid-sIdUTz8arw .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sIdUTz8arw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sIdUTz8arw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing,
  .cid-sIdUTz8arw .navbar-collapse.show {
    display: block !important;
    overflow: auto;
    width: 100%;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-nav,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-buttons,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sIdUTz8arw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sIdUTz8arw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sIdUTz8arw .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-sIdUTz8arw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sIdUTz8arw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sIdUTz8arw .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-sIdUTz8arw .nav-link {
    justify-content: start !important;
  }
  .cid-sIdUTz8arw .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sIdUTz8arw .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sIdUTz8arw .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sIdUTz8arw .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sIdUTz8arw .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sIdUTz8arw .nav-link:hover,
.cid-sIdUTz8arw .dropdown-item:hover {
  color: #cccccc !important;
}
@media (min-width: 1500px) {
  .cid-sIdUTz8arw .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sIdUTz8arw .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
